* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1b16;
  --muted: #6b5f55;
  --brand: #8a6a2a;
  --brand-dark: #5f481c;
  --paper: #f7f1e8;
  --panel: #ffffff;
  --line: #e4d7c8;
  --accent: #c49b4c;
  --shadow: 0 18px 40px rgba(31, 27, 22, 0.12);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7%;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--panel);
}

.hero {
  position: relative;
  padding: 80px 7% 90px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.hero-visual {
  flex: 1.1;
  background: #e7dcc8;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-content {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: var(--brand);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.button.secondary {
  background: #fff;
  color: var(--brand-dark);
  border: 1px solid var(--line);
}

.section {
  padding: 70px 7%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--panel);
}

.section.background {
  background-image: url("https://images.unsplash.com/photo-1519682337058-a94d519337bc?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section.background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 30, 18, 0.65);
}

.section.background > * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
  min-width: 260px;
}

.split .media-frame {
  flex: 1;
  min-width: 260px;
  background: #e8dbc7;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--panel);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media-frame {
  background: #efe5d6;
  border-radius: 14px;
  overflow: hidden;
}

.card-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.muted {
  color: var(--muted);
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f1e6d8;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: #fff8ee;
  border: 1px solid var(--line);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-row:last-child {
  border-bottom: none;
}

.selection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.select-card {
  flex: 1;
  min-width: 220px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.select-card.selected {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.footer {
  margin-top: auto;
  padding: 40px 7% 60px;
  background: #efe4d5;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  padding: 14px 18px;
  border-radius: 16px;
  background: #fff4e4;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
