/* ============================================================
   DO IT. LEGAL — Landing Page
   Design system & styles
   ============================================================ */

/* ---------- Fonts (self-hosted — DSGVO-konform, kein externer Request) ----------
   Lege die woff2-Dateien in den Ordner /fonts (siehe fonts/README.txt).
   Solange die Dateien fehlen, greift der System-Fallback (Georgia / System-Sans). */
@font-face { font-family:'Spectral'; font-style:normal; font-weight:400; font-display:swap; src:url('fonts/spectral-regular.woff2') format('woff2'); }
@font-face { font-family:'Spectral'; font-style:normal; font-weight:500; font-display:swap; src:url('fonts/spectral-500.woff2') format('woff2'); }
@font-face { font-family:'Spectral'; font-style:normal; font-weight:600; font-display:swap; src:url('fonts/spectral-600.woff2') format('woff2'); }
@font-face { font-family:'Spectral'; font-style:normal; font-weight:700; font-display:swap; src:url('fonts/spectral-700.woff2') format('woff2'); }
@font-face { font-family:'Spectral'; font-style:italic; font-weight:400; font-display:swap; src:url('fonts/spectral-italic.woff2') format('woff2'); }
@font-face { font-family:'Spectral'; font-style:italic; font-weight:500; font-display:swap; src:url('fonts/spectral-500italic.woff2') format('woff2'); }
@font-face { font-family:'Manrope'; font-style:normal; font-weight:400; font-display:swap; src:url('fonts/manrope-regular.woff2') format('woff2'); }
@font-face { font-family:'Manrope'; font-style:normal; font-weight:500; font-display:swap; src:url('fonts/manrope-500.woff2') format('woff2'); }
@font-face { font-family:'Manrope'; font-style:normal; font-weight:600; font-display:swap; src:url('fonts/manrope-600.woff2') format('woff2'); }
@font-face { font-family:'Manrope'; font-style:normal; font-weight:700; font-display:swap; src:url('fonts/manrope-700.woff2') format('woff2'); }
@font-face { font-family:'Manrope'; font-style:normal; font-weight:800; font-display:swap; src:url('fonts/manrope-800.woff2') format('woff2'); }

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --terra: #C0562C;
  --terra-deep: #A4451F;
  --terra-bright: #D2683A;
  --terra-tint: #F3E2D7;
  --terra-wash: #FBF1EA;

  /* Neutrals (warm) */
  --paper: #F7F3EC;
  --paper-2: #FBF8F2;
  --card: #FFFFFF;
  --ink: #211C16;
  --ink-soft: #463F36;
  --gray: #6B645A;
  --gray-soft: #8C857A;
  --line: rgba(33, 28, 22, 0.12);
  --line-soft: rgba(33, 28, 22, 0.07);

  /* Dark section */
  --dark: #211C17;
  --dark-2: #2C261F;
  --dark-line: rgba(255, 255, 255, 0.12);

  /* Type */
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(33, 28, 22, 0.05), 0 2px 8px rgba(33, 28, 22, 0.05);
  --shadow-md: 0 4px 12px rgba(33, 28, 22, 0.07), 0 18px 40px rgba(33, 28, 22, 0.09);
  --shadow-lg: 0 10px 30px rgba(33, 28, 22, 0.10), 0 30px 70px rgba(33, 28, 22, 0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--terra); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--terra);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: "§"; font-family: var(--serif); font-weight: 600;
  font-size: 17px; letter-spacing: 0; transform: translateY(1px);
}
.eyebrow.no-mark::before { content: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
.h-display {
  font-size: clamp(2.6rem, 6.4vw, 4.7rem);
  line-height: 1.02; letter-spacing: -0.02em; font-weight: 600;
}
.h-2 { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.06; }
.h-3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: var(--ink-soft); line-height: 1.6; font-weight: 400; }
.muted { color: var(--gray); }
.serif-em { font-style: italic; color: var(--terra-deep); }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 15.5px;
  padding: 15px 26px; border-radius: 100px; line-height: 1;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .2s, color .2s;
  white-space: nowrap; letter-spacing: 0.005em;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 1px 2px rgba(164,69,31,.3), 0 8px 22px rgba(164,69,31,.28); }
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(164,69,31,.3), 0 14px 32px rgba(164,69,31,.34); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-on-dark { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px var(--dark-line); }
.btn-on-dark:hover { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 16.5px; }
.btn-block { width: 100%; }
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px;
  color: var(--terra-deep); transition: gap .2s;
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .2s; }
.arrow-link:hover { gap: 12px; }

/* ============================================================
   Logo / Wordmark (CSS recreation)
   ============================================================ */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.wordmark {
  font-family: var(--sans); font-weight: 800; letter-spacing: -0.02em;
  line-height: 0.92; text-transform: uppercase; color: var(--terra);
  display: inline-flex; flex-direction: column; font-size: 19px;
}
.wordmark .wm-row { display: inline-flex; align-items: baseline; }
.wordmark .wm-check {
  color: var(--gray); font-weight: 800; margin-left: 0.06em;
  transform: translateY(-0.04em); display: inline-block;
}
.wordmark .wm-dot { color: var(--terra); }
/* footer / hero large variant */
.wordmark.lg { font-size: 30px; }

/* Framed lockup (full logo with frame + § + tagline) */
.logo-lockup {
  display: inline-grid; grid-template-columns: auto auto; align-items: center;
  gap: 0 14px; position: relative; padding: 22px 26px 20px 30px;
}
.logo-lockup::before {
  content: ""; position: absolute; inset: 0;
  border: 2px solid var(--gray); border-radius: 4px;
}
.logo-lockup .ll-para {
  position: absolute; left: -16px; bottom: -10px;
  font-family: var(--serif); font-size: 62px; font-weight: 500;
  color: var(--gray); line-height: 1;
}
.logo-lockup .ll-mark {
  font-family: var(--sans); font-weight: 800; text-transform: uppercase;
  color: var(--terra); font-size: 44px; line-height: 0.92; letter-spacing: -0.02em;
  grid-column: 1 / -1;
}
.logo-lockup .ll-mark .wm-check { color: var(--gray); }
.logo-lockup .ll-rule { grid-column: 1 / -1; height: 2px; background: var(--gray); margin: 8px 0 9px; }
.logo-lockup .ll-tag {
  grid-column: 1 / -1; font-family: var(--sans); font-weight: 500; color: var(--gray);
  font-size: 16px; line-height: 1.25; text-transform: none; letter-spacing: 0;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding-block: 18px;
}
.site-header.scrolled {
  background: rgba(247, 243, 236, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 11px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--ink-soft); padding: 8px 14px;
  border-radius: 100px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(33,28,22,.05); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .25s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: .25s; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(130px, 17vw, 200px); padding-bottom: clamp(60px, 9vw, 110px); position: relative; overflow: hidden; }
.hero::before {
  /* faint § watermark */
  content: "§"; position: absolute; right: -4vw; top: -6vw;
  font-family: var(--serif); font-weight: 500; font-size: 56vw;
  color: var(--terra); opacity: 0.04; line-height: 1; pointer-events: none; z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 6vw, 80px);
  align-items: center; position: relative; z-index: 1;
}
.hero-copy { max-width: 640px; }
.hero h1 { margin: 22px 0 24px; }
.hero .lead { max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  margin-top: 30px; display: flex; align-items: center; gap: 16px;
  font-size: 14.5px; color: var(--gray); font-weight: 500;
}
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--terra); }

.hero-media { position: relative; }
.hero-portrait {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; background: var(--terra-tint);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero-badge {
  position: absolute; bottom: -22px; left: -26px; background: var(--card);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.hero-badge .hb-mark {
  width: 42px; height: 42px; border-radius: 11px; background: var(--terra-wash);
  display: grid; place-items: center; color: var(--terra); flex-shrink: 0;
  font-family: var(--serif); font-size: 24px; font-weight: 600;
}
.hero-badge .hb-text { font-size: 13.5px; line-height: 1.35; font-weight: 600; color: var(--ink); }
.hero-badge .hb-text small { display: block; font-weight: 500; color: var(--gray); font-size: 12.5px; }

/* logo strip / value chips under hero */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600;
  color: var(--ink-soft); background: var(--paper-2); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 100px;
}
.chip svg { width: 15px; height: 15px; color: var(--terra); }

/* ============================================================
   Konzept / Steps
   ============================================================ */
.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 20px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 34px); }
.step {
  position: relative; padding: 34px 30px 32px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .step-num {
  font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--terra);
  letter-spacing: 0.04em; margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.step .step-num::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.step h3 { font-size: 1.4rem; margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 15.5px; line-height: 1.6; }

/* pillars row */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 30px); margin-top: clamp(28px, 4vw, 44px); }
.pillar { display: flex; gap: 16px; align-items: flex-start; padding: 4px 8px; }
.pillar .p-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--terra-wash); display: grid; place-items: center; color: var(--terra);
}
.pillar .p-icon svg { width: 22px; height: 22px; }
.pillar h4 { font-family: var(--sans); font-weight: 700; font-size: 16px; margin-bottom: 4px; letter-spacing: -0.01em; }
.pillar p { font-size: 14.5px; color: var(--gray); line-height: 1.55; }

/* ============================================================
   Module
   ============================================================ */
.modules-section { background: var(--paper-2); border-block: 1px solid var(--line-soft); }
.modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.module {
  background: var(--card); padding: 34px clamp(26px, 3vw, 40px); position: relative;
  transition: background .25s; display: flex; gap: 22px; align-items: flex-start;
}
.module:hover { background: var(--terra-wash); }
.module .mod-no {
  font-family: var(--serif); font-weight: 500; font-size: 38px; color: var(--terra);
  line-height: 1; flex-shrink: 0; width: 64px; opacity: .85;
}
.module .mod-no small { font-size: 15px; display: block; color: var(--gray-soft); margin-top: 4px; font-family: var(--sans); font-weight: 600; }
.module h3 { font-size: 1.32rem; margin-bottom: 8px; }
.module p { color: var(--gray); font-size: 15px; line-height: 1.58; }
.module .mod-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.module .mod-tags span {
  font-size: 12px; font-weight: 600; color: var(--ink-soft); background: var(--paper);
  border: 1px solid var(--line); padding: 4px 10px; border-radius: 100px;
}
.modules-note { margin-top: 26px; font-size: 14.5px; color: var(--gray); display: flex; align-items: center; gap: 10px; }
.modules-note svg { width: 17px; height: 17px; color: var(--terra); flex-shrink: 0; }

/* ============================================================
   Angebote / Pricing
   ============================================================ */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); align-items: stretch; }
.offer {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px 32px;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; position: relative;
}
.offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.offer.featured {
  background: var(--dark); color: #F2EDE4; border-color: var(--dark);
  box-shadow: var(--shadow-lg); transform: translateY(-8px);
}
.offer.featured:hover { transform: translateY(-12px); }
.offer .offer-flag {
  position: absolute; top: -13px; left: 30px; background: var(--terra); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.offer .offer-name { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; margin-bottom: 6px; }
.offer .offer-tag { font-size: 14px; color: var(--gray); margin-bottom: 22px; min-height: 40px; }
.offer.featured .offer-tag { color: rgba(242,237,228,.7); }
.offer .offer-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; }
.offer .offer-price .amount { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; line-height: 1; white-space: nowrap; }
.offer .offer-price .per { font-size: 14px; color: var(--gray); font-weight: 600; }
.offer.featured .offer-price .per { color: rgba(242,237,228,.7); }
.offer .offer-sub { font-size: 13px; color: var(--gray-soft); margin-bottom: 24px; }
.offer.featured .offer-sub { color: rgba(242,237,228,.55); }
.offer .offer-divider { height: 1px; background: var(--line); margin-bottom: 22px; }
.offer.featured .offer-divider { background: var(--dark-line); }
.offer ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.offer li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.45; color: var(--ink-soft); }
.offer.featured li { color: rgba(242,237,228,.92); }
.offer li svg { width: 17px; height: 17px; color: var(--terra); flex-shrink: 0; margin-top: 2px; }
.offer.featured li svg { color: var(--terra-bright); }
.offer .btn { margin-top: auto; }

.offers-foot { text-align: center; margin-top: 34px; font-size: 14.5px; color: var(--gray); }
.offers-foot strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   Über mich
   ============================================================ */
.about { background: var(--dark); color: #F2EDE4; overflow: hidden; }
.about::before {
  content: "§"; position: absolute; left: -3vw; bottom: -10vw;
  font-family: var(--serif); font-size: 40vw; color: #fff; opacity: .03; line-height: 1; pointer-events: none;
}
.about .eyebrow { color: var(--terra-bright); }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: center; position: relative; z-index: 1; }
.about-portrait { position: relative; }
.about-portrait img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; }
.about-portrait .ap-frame { position: absolute; inset: 14px -14px -14px 14px; border: 2px solid var(--terra); border-radius: var(--radius-lg); z-index: -1; }
.about h2 { color: #fff; margin: 20px 0 22px; }
.about .lead { color: rgba(242,237,228,.82); }
.about-quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem,2.2vw,1.7rem);
  line-height: 1.4; color: #fff; margin: 26px 0; padding-left: 22px;
  border-left: 3px solid var(--terra);
}
.about-sign { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.about-sign .as-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: #fff; }
.about-sign .as-role { font-size: 14px; color: rgba(242,237,228,.6); }
.about-stats { display: flex; gap: 36px; margin-top: 32px; flex-wrap: wrap; }
.about-stats .stat .num { font-family: var(--serif); font-size: 2.1rem; font-weight: 600; color: var(--terra-bright); line-height: 1; }
.about-stats .stat .lbl { font-size: 13.5px; color: rgba(242,237,228,.65); margin-top: 6px; }

/* ============================================================
   Warteliste
   ============================================================ */
.waitlist { position: relative; }
.waitlist-card {
  background: var(--card); border: 1px solid var(--line); border-radius: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.waitlist-intro { padding: clamp(40px, 5vw, 60px); background: var(--terra-wash); position: relative; }
.waitlist-intro::before {
  content: "✓"; position: absolute; right: 24px; bottom: 18px; font-size: 13vw;
  color: var(--terra); opacity: .08; font-weight: 800; line-height: 1;
}
.waitlist-intro .eyebrow { margin-bottom: 18px; }
.waitlist-intro h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 18px; }
.waitlist-intro p { color: var(--ink-soft); font-size: 16px; }
.waitlist-perks { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.waitlist-perks li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; font-weight: 600; color: var(--ink); }
.waitlist-perks li svg { width: 18px; height: 18px; color: var(--terra); flex-shrink: 0; margin-top: 2px; }

.waitlist-form { padding: clamp(40px, 5vw, 60px); display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink); letter-spacing: 0.01em; }
.field label .req { color: var(--terra); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper-2);
  transition: border-color .2s, box-shadow .2s, background .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terra); background: #fff;
  box-shadow: 0 0 0 4px var(--terra-wash);
}
.field.error input, .field.error select { border-color: #C0392B; }
.field .err-msg { font-size: 12.5px; color: #C0392B; font-weight: 600; display: none; }
.field.error .err-msg { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--gray); line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--terra); flex-shrink: 0; }
.consent a { color: var(--terra-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.form-foot { font-size: 12.5px; color: var(--gray-soft); text-align: center; }
/* Honeypot: hidden from humans, tempting to bots */
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* success state */
.form-success {
  display: none; flex-direction: column; align-items: center; text-align: center;
  padding: clamp(40px, 5vw, 60px); justify-content: center; gap: 16px;
}
.form-success.show { display: flex; }
.waitlist-form.hide { display: none; }
.form-success .fs-check {
  width: 68px; height: 68px; border-radius: 50%; background: var(--terra);
  display: grid; place-items: center; color: #fff; box-shadow: 0 10px 24px rgba(164,69,31,.3);
}
.form-success .fs-check svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.6rem; }
.form-success p { color: var(--gray); font-size: 15.5px; max-width: 340px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--paper-2); border-top: 1px solid var(--line-soft); }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 24px 4px; font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  font-weight: 600; color: var(--ink); line-height: 1.3;
}
.faq-q .faq-ico { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-q .faq-ico::before, .faq-q .faq-ico::after {
  content: ""; position: absolute; background: var(--terra); border-radius: 2px; transition: transform .3s, opacity .3s;
}
.faq-q .faq-ico::before { top: 12px; left: 4px; width: 18px; height: 2.5px; }
.faq-q .faq-ico::after { top: 3px; left: 11.75px; width: 2.5px; height: 20px; }
.faq-item.open .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 4px 24px; color: var(--gray); font-size: 15.5px; line-height: 1.65; max-width: 60ch; }
.faq-side h2 { margin-bottom: 18px; }
.faq-side .lead { margin-bottom: 24px; }

/* ============================================================
   Final CTA band
   ============================================================ */
.cta-band { background: var(--terra); color: #fff; text-align: center; }
.cta-band::before {
  content: "§"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: var(--serif); font-size: 38vw; opacity: .07; line-height: 1; pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: clamp(1.05rem,1.6vw,1.25rem); max-width: 580px; margin: 0 auto 32px; }
.cta-band .btn-light { color: var(--terra-deep); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(242,237,228,.7); padding-block: clamp(56px, 7vw, 84px) 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--dark-line); }
.footer-brand .wordmark { font-size: 24px; }
.footer-brand p { margin-top: 18px; font-size: 14.5px; line-height: 1.6; max-width: 280px; color: rgba(242,237,228,.6); }
.footer-col h5 { font-family: var(--sans); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(242,237,228,.45); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: rgba(242,237,228,.72); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: 13px; color: rgba(242,237,228,.45); }
.footer-bottom .fb-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   Mobile menu panel
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); background: var(--paper);
  z-index: 99; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 60px rgba(33,28,22,.18); padding: 96px 32px 40px;
  display: flex; flex-direction: column; gap: 6px;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 24px; }
.menu-overlay { position: fixed; inset: 0; background: rgba(33,28,22,.4); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 98; }
body.menu-open .menu-overlay { opacity: 1; pointer-events: auto; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 420px; margin-top: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 360px; }
  .faq-grid { grid-template-columns: 1fr; }
  .waitlist-card { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .offer.featured { transform: none; }
  .offer.featured:hover { transform: translateY(-4px); }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .modules { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .hero-badge { left: 0; right: 0; max-width: none; bottom: -28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
}
