* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f8f7f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b5f62;
  max-width: 280px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 0 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero {
  padding-top: 20px;
}

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(31, 41, 51, 0.08);
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  background: #e7e3dd;
  min-height: 360px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-title {
  font-size: 2rem;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(31, 41, 51, 0.07);
}

.card-img {
  border-radius: 16px;
  overflow: hidden;
  background: #e2ddd6;
  height: 180px;
}

.card-img img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 700;
  color: #1d5b4f;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  background: #1d5b4f;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn.alt {
  background: #ffffff;
  color: #1d5b4f;
  border: 1px solid #1d5b4f;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f0ebe5;
  font-size: 0.9rem;
}

.inline-image {
  background: #e4dfd9;
  border-radius: 20px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 320px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(31, 41, 51, 0.08);
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6d2cb;
  font-size: 1rem;
  font-family: inherit;
}

.form-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-grid .field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.divider {
  height: 1px;
  background: #e2ddd6;
  margin: 6px 0;
}

.story-band {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #efe9e2;
  padding: 22px;
  border-radius: 24px;
  flex-wrap: wrap;
}

.story-band .story-text {
  flex: 2;
}

.story-band .story-visual {
  flex: 1;
  min-width: 200px;
  background: #e4dfd9;
  border-radius: 18px;
  overflow: hidden;
  height: 220px;
}

.story-band .story-visual img {
  width: 100%;
  height: 100%;
}

.footer {
  padding: 30px 6vw 40px;
  background: #1f2933;
  color: #f4f2ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  padding: 14px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e2ddd6;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(31, 41, 51, 0.2);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 16px 40px rgba(31, 41, 51, 0.07);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
