* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1d;
  --muted: #5d5f65;
  --paper: #f6f4f1;
  --accent: #c58c3b;
  --accent-dark: #8f6324;
  --soft: #ece7e1;
  --deep: #16181c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 18px;
  background: #ffffff;
  border-bottom: 1px solid #e8e2dc;
}

.nav-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 0.9rem;
  color: #7a4f1b;
  background: #f4e2cd;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 42px 6vw 28px;
  background: var(--paper);
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  max-width: 640px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.section {
  padding: 46px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section h2 {
  font-size: 1.8rem;
  line-height: 1.3;
}

.section p {
  color: var(--muted);
}

.story-band {
  background: #fefaf6;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.image-frame {
  background: #e4ddd5;
  border-radius: 18px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #ece4db;
  border-radius: 16px;
}

.card h3 {
  font-size: 1.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2ede8;
  color: #5e4530;
  font-size: 0.9rem;
}

.bg-ambient {
  background: #151515;
  color: #f5f0ea;
  position: relative;
}

.bg-ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.bg-ambient > * {
  position: relative;
  z-index: 1;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid #e6ded5;
  border-radius: 16px;
  background: #ffffff;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eadfd5;
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dcd3c9;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-cta {
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 14px 16px;
  border-radius: 14px;
  background: #f8f4f0;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #151515;
  color: #d8d1c8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #f4d8ad;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cfc4b8;
}

.cta-sticky {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.cta-sticky button {
  background: #1f1f23;
  color: #f3e7d7;
  border: 1px solid #3b2c1d;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1b1b1d;
  color: #f6f0e8;
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid #f5d4a6;
  padding: 8px 16px;
  background: transparent;
  color: #f5d4a6;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #f5d4a6;
  color: #2a1f14;
}

.legal-section {
  max-width: 820px;
}

.notice {
  padding: 18px;
  border-radius: 14px;
  background: #fff8ef;
  border: 1px solid #f0dfc9;
}

@media (min-width: 900px) {
  .hero-split {
    flex-direction: row;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card,
  .price-card {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row > * {
    flex: 1;
  }
}
