/* retreat.at — Landingpage Token + Komponenten */

:root {
  /* Palette: Terracotta + Sage (Standard) */
  --bg: #f6efe2;
  --bg-soft: #efe5d2;
  --bg-card: #fbf6ec;
  --ink: #2a1f17;
  --ink-soft: #5a4a3c;
  --ink-mute: #8a7a6c;
  --accent: #c8704a;
  --accent-deep: #a85734;
  --accent-soft: #e9b89e;
  --second: #8a9a7b;
  --second-deep: #6a7a5b;
  --line: rgba(42, 31, 23, 0.14);
  --line-soft: rgba(42, 31, 23, 0.08);

  /* Typography */
  --font-display: "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-hand: "Caveat", "Comic Sans MS", cursive;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Spacing */
  --pad-x: clamp(20px, 4vw, 64px);
  --section-y: clamp(72px, 9vw, 140px);
  --radius: 22px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 22% 18%, color-mix(in oklch, var(--accent-soft) 35%, transparent) 0%, transparent 38%),
    radial-gradient(circle at 86% 78%, color-mix(in oklch, var(--second) 22%, transparent) 0%, transparent 42%);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
  z-index: 1;
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }

/* ── Typography ─────────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hand {
  font-family: var(--font-hand);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
}

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 2px 4px;
  align-self: flex-end;
}
.brand-tld { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-deep); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 8px 20px -8px rgba(42, 31, 23, 0.5);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-card); border-color: var(--ink-soft); }
.btn-accent {
  background: var(--accent);
  color: var(--bg-card);
}
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn .arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(56px, 6vw, 92px);
  padding-bottom: clamp(56px, 6vw, 92px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero-title {
  font-size: clamp(46px, 7.2vw, 104px);
  margin: 22px 0 24px;
}
.hero-title .hand {
  font-size: 1.15em;
  display: inline-block;
  transform: translateY(0.08em) rotate(-2deg);
  margin: 0 0.04em;
}
.hero-sub { margin-bottom: 36px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 48px;
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  align-items: flex-end;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-n {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
}
.hero-stat-l {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
}
.hero-art svg { width: 100%; height: 100%; display: block; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; margin: 0 auto; aspect-ratio: 1/1; }
}

/* ── How it works ───────────────────────────────────────────── */
.howto {
  background: var(--bg-soft);
  position: relative;
  border-radius: 36px;
  margin: 0 var(--pad-x);
}
.howto-inner { padding-left: var(--pad-x); padding-right: var(--pad-x); }
.howto-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.howto-h {
  font-size: clamp(36px, 4.6vw, 60px);
  margin: 14px 0 0;
}
.howto-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.step {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 30px 36px;
  border: 1px solid var(--line-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.step-n {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.9;
  color: var(--accent);
  margin-bottom: 20px;
}
.step-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  opacity: 0.85;
}
.step-h {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 12px;
}
.step-p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 0 0 18px; flex: 1; }
.step-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.step-list li {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .howto-head { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: 1fr; }
}

/* ── Calculator ─────────────────────────────────────────────── */
.calc-wrap {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}
.calc-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}
.calc-h {
  font-size: clamp(36px, 4.6vw, 60px);
  margin: 14px 0 0;
}
.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px;
}
.calc-card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.calc-card-title h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}
.calc-card-title .badge {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--second-deep);
  background: color-mix(in oklch, var(--second) 25%, transparent);
  padding: 5px 10px;
  border-radius: 999px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.input-row:last-child { border-bottom: 0; }
.input-row label {
  font-size: 14.5px;
  color: var(--ink);
}
.input-row label small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-top: 2px;
  font-weight: 400;
}
.num-field {
  display: inline-flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 4px 0 12px;
  height: 40px;
  min-width: 130px;
  transition: border-color 0.12s, background 0.12s;
}
.num-field:focus-within { border-color: var(--accent); background: var(--bg-card); }
.num-field input {
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  text-align: right;
  width: 76px;
  outline: none;
  color: var(--ink);
  padding: 0;
  -moz-appearance: textfield;
}
.num-field input::-webkit-inner-spin-button,
.num-field input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.num-field .unit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  font-size: 13px;
  color: var(--ink-mute);
}
.num-field-h { font-size: 12.5px; color: var(--ink-mute); margin-right: 4px; }

/* Results panel */
.results {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.results::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--accent) 40%, transparent), transparent 70%);
  pointer-events: none;
}
.results h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 4px;
  color: var(--bg);
}
.results-sub { color: color-mix(in oklch, var(--bg) 65%, transparent); font-size: 13.5px; margin-bottom: 26px; }

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  background: color-mix(in oklch, var(--bg) 8%, transparent);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}
.kpi {
  padding: 18px 20px;
  background: color-mix(in oklch, var(--ink) 88%, var(--bg));
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kpi-l {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--bg) 55%, transparent);
}
.kpi-v {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--bg);
  font-variant-numeric: tabular-nums;
}
.kpi-v.positive { color: color-mix(in oklch, var(--second) 75%, white); }
.kpi-v.negative { color: var(--accent-soft); }
.kpi-sub { font-size: 12px; color: color-mix(in oklch, var(--bg) 50%, transparent); }

.break-even {
  background: color-mix(in oklch, var(--bg) 6%, transparent);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  z-index: 1;
}
.be-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.be-head .l { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: color-mix(in oklch, var(--bg) 55%, transparent); }
.be-head .v {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--bg);
}
.be-bar {
  position: relative;
  height: 10px;
  background: color-mix(in oklch, var(--bg) 14%, transparent);
  border-radius: 999px;
  overflow: visible;
}
.be-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.4s cubic-bezier(0.3, 0.7, 0.4, 1);
}
.be-mark {
  position: absolute;
  top: -8px;
  bottom: -8px;
  width: 2px;
  background: var(--second);
  transition: left 0.4s;
}
.be-mark::after {
  content: attr(data-l);
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  white-space: nowrap;
  color: var(--second);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.be-legend {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  font-size: 12.5px;
  color: color-mix(in oklch, var(--bg) 65%, transparent);
}
.be-legend span { display: inline-flex; align-items: center; gap: 6px; }
.be-legend i {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block;
}

.results-note {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 13px;
  color: color-mix(in oklch, var(--bg) 70%, transparent);
  line-height: 1.5;
}
.results-note .hand {
  color: var(--accent-soft);
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-head { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Blog ───────────────────────────────────────────────────── */
.blog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.blog-h {
  font-size: clamp(36px, 4.6vw, 60px);
  margin: 14px 0 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.post-cover {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
}
.post-cover svg { width: 100%; height: 100%; display: block; }
.post-tag {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.post-h {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  margin: 4px 0 8px;
  color: var(--ink);
}
.post-p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.post-read {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .blog-head { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.3fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq-side .faq-h {
  font-size: clamp(36px, 4.6vw, 60px);
  margin: 14px 0 22px;
}
.faq-side p { color: var(--ink-soft); margin: 0 0 28px; max-width: 38ch; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.3s, background 0.2s;
  color: var(--ink-soft);
}
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--accent); color: var(--bg); border-color: var(--accent); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.3, 0.7, 0.4, 1), padding 0.3s;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 0 26px;
}

@media (max-width: 880px) {
  .faq-wrap { grid-template-columns: 1fr; }
}

/* ── Guide CTA ──────────────────────────────────────────────── */
.guide {
  background: var(--ink);
  color: var(--bg);
  border-radius: 36px;
  margin: 0 var(--pad-x) var(--section-y);
  padding: clamp(56px, 7vw, 96px) clamp(36px, 5vw, 84px);
  position: relative;
  overflow: hidden;
}
.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.guide h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  margin: 18px 0 22px;
  color: var(--bg);
}
.guide h2 .hand { color: var(--accent-soft); font-size: 1.1em; transform: rotate(-2deg) translateY(0.06em); display: inline-block; }
.guide .eyebrow { color: color-mix(in oklch, var(--bg) 75%, transparent); }
.guide .eyebrow::before { background: var(--accent); opacity: 1; }
.guide p { color: color-mix(in oklch, var(--bg) 70%, transparent); max-width: 50ch; margin: 0 0 28px; font-size: 16.5px; }
.guide-checklist { list-style: none; padding: 0; margin: 0 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.guide-checklist li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  color: color-mix(in oklch, var(--bg) 88%, transparent);
}
.guide-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-soft);
  font-weight: 600;
}
.guide-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: color-mix(in oklch, var(--bg) 8%, transparent);
  padding: 8px;
  border-radius: 14px;
  max-width: 480px;
}
.guide-form input {
  background: var(--bg-card);
  border: 0;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.guide-form input::placeholder { color: var(--ink-mute); }
.guide-form .btn { width: 100%; justify-content: center; padding: 16px 22px; }
.guide-art {
  position: relative;
  aspect-ratio: 0.78 / 1;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
}
.guide-art svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.3)); }

.guide::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--second) 60%, transparent), transparent 70%);
  pointer-events: none;
}

@media (max-width: 920px) {
  .guide-grid { grid-template-columns: 1fr; }
  .guide-checklist { grid-template-columns: 1fr; }
  .guide-art { display: none; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 40px 0;
  font-size: 14px;
  color: var(--ink-mute);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--ink); }

/* ── Section heads ──────────────────────────────────────────── */
.section-head-sub {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 42ch;
  line-height: 1.55;
}
.section-head-sub.hand-emph .hand {
  font-size: 1.45em;
  display: inline-block;
  transform: translateY(0.1em) rotate(-2deg);
  margin: 0 0.05em;
}

/* ── Audrey block ───────────────────────────────────────────── */
.audrey {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.audrey-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  width: 100%;
}
.audrey-photo image-slot {
  width: 100%;
  height: 100%;
  display: block;
  --slot-bg: var(--bg-soft);
  --slot-border: 1px dashed var(--ink-mute);
  --slot-text: var(--ink-mute);
}
.audrey-photo::after {
  content: "";
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid var(--accent);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.5;
}
.audrey-photo-frame {
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.audrey-body { padding: 8px 0; }
.audrey-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 18px 0 24px;
}
.audrey-quote .hand {
  font-size: 1.1em;
  display: inline-block;
  transform: translateY(0.08em) rotate(-2deg);
}
.audrey-sig {
  font-family: var(--font-hand);
  font-size: 36px;
  color: var(--accent-deep);
  line-height: 1;
  margin-top: 18px;
}
.audrey-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.audrey-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 14px;
  border-right: 1px solid var(--line-soft);
}
.audrey-stat:last-child { border-right: 0; }
.audrey-stat-n {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1;
  color: var(--ink);
}
.audrey-stat-n .accent { color: var(--accent); }
.audrey-stat-l {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 880px) {
  .audrey { grid-template-columns: 1fr; }
  .audrey-photo { margin: 0 auto; }
  .audrey-stats { grid-template-columns: repeat(2, 1fr); }
  .audrey-stat:nth-child(2) { border-right: 0; }
}

/* ── Pain section ───────────────────────────────────────────── */
.pain {
  background: var(--bg-soft);
  border-radius: 36px;
  margin: 0 var(--pad-x);
  padding: clamp(48px, 6vw, 84px) clamp(28px, 4vw, 64px);
}
.pain-head {
  text-align: center;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pain-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  margin: 14px 0 16px;
}
.pain-h .hand { font-size: 1.1em; display: inline-block; transform: translateY(0.08em) rotate(-2deg); }
.pain-sub { color: var(--ink-soft); max-width: 56ch; margin: 0 auto; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.pain-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 22px 22px 24px;
  border: 1px solid var(--line-soft);
  position: relative;
}
.pain-card .quote-mark {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 0.6;
  color: var(--accent);
  position: absolute;
  top: 18px;
  right: 22px;
}
.pain-card p {
  font-family: var(--font-display);
  font-size: 17.5px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  max-width: 24ch;
}
.pain-card .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 14px;
  display: block;
}

@media (max-width: 980px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .pain-grid { grid-template-columns: 1fr; } }

/* ── Calculator: comparison + diagnostic + email ────────────── */
.compare {
  background: color-mix(in oklch, var(--bg) 8%, transparent);
  border-radius: 14px;
  padding: 22px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}
.compare-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.compare-head .l { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: color-mix(in oklch, var(--bg) 55%, transparent); }
.compare-rows { display: flex; flex-direction: column; gap: 10px; }
.compare-row {
  display: grid;
  grid-template-columns: 50px 1fr 90px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}
.compare-row .pax {
  font-family: var(--font-display);
  font-size: 18px;
  color: color-mix(in oklch, var(--bg) 78%, transparent);
}
.compare-row .pax.current { color: var(--accent-soft); }
.compare-row .bar-wrap {
  position: relative;
  height: 22px;
  display: flex;
  align-items: center;
}
.compare-row .bar-track {
  position: absolute;
  inset: 8px 0;
  background: color-mix(in oklch, var(--bg) 12%, transparent);
  border-radius: 999px;
}
.compare-row .bar-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: color-mix(in oklch, var(--bg) 28%, transparent);
}
.compare-row .bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  z-index: 1;
}
.compare-row .bar.profit { background: var(--second); }
.compare-row .bar.loss { background: var(--accent-deep); }
.compare-row .v {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--bg);
}
.compare-row .v.loss { color: var(--accent-soft); }

.diagnostic {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.diag-q {
  background: color-mix(in oklch, var(--bg) 6%, transparent);
  border-radius: 14px;
  padding: 18px 20px;
}
.diag-q-h {
  font-size: 13.5px;
  color: color-mix(in oklch, var(--bg) 85%, transparent);
  margin: 0 0 12px;
  line-height: 1.35;
  font-weight: 500;
}
.diag-buttons {
  display: flex;
  gap: 8px;
}
.diag-btn {
  flex: 1;
  background: transparent;
  border: 1px solid color-mix(in oklch, var(--bg) 22%, transparent);
  color: var(--bg);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-family: inherit;
  transition: background 0.12s, border-color 0.12s;
}
.diag-btn:hover { background: color-mix(in oklch, var(--bg) 10%, transparent); border-color: var(--bg); }
.diag-btn[data-on="1"] { background: var(--accent); border-color: var(--accent); color: var(--bg-card); }

.mail-save {
  margin-top: 22px;
  display: flex;
  gap: 8px;
  background: color-mix(in oklch, var(--bg) 6%, transparent);
  border-radius: 12px;
  padding: 6px;
}
.mail-save input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--bg);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  min-width: 0;
}
.mail-save input::placeholder { color: color-mix(in oklch, var(--bg) 50%, transparent); }
.mail-save button {
  background: var(--accent);
  color: var(--bg-card);
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
}
.mail-save button:hover { background: var(--accent-deep); }
.mail-sent {
  font-size: 13px;
  color: color-mix(in oklch, var(--second) 80%, white);
  padding: 12px 14px;
  background: color-mix(in oklch, var(--second) 18%, transparent);
  border-radius: 12px;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .diagnostic { grid-template-columns: 1fr; }
}

/* ── Two paths ──────────────────────────────────────────────── */
.paths-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}
.paths-h {
  font-size: clamp(36px, 4.6vw, 56px);
  margin: 14px 0 0;
}
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.path-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.path-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--blob);
  opacity: 0.6;
  pointer-events: none;
}
.path-card.a { --blob: color-mix(in oklch, var(--accent) 32%, transparent); }
.path-card.b { --blob: color-mix(in oklch, var(--second) 38%, transparent); }
.path-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(42, 31, 23, 0.18);
}
.path-tag {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  position: relative;
  z-index: 1;
}
.path-card.b .path-tag { color: var(--second-deep); }
.path-h {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
  margin: 0;
  position: relative;
  z-index: 1;
}
.path-p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}
.path-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.path-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.path-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-deep);
}
.path-card.b .path-list li::before { color: var(--second-deep); }
.path-cta {
  margin-top: 12px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .paths-head { grid-template-columns: 1fr; }
  .paths-grid { grid-template-columns: 1fr; }
}

/* ── Packages (placeholder) ─────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.pkg {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.pkg.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.pkg.featured .pkg-h { color: var(--bg); }
.pkg.featured .pkg-p { color: color-mix(in oklch, var(--bg) 65%, transparent); }
.pkg.featured .pkg-list li { color: color-mix(in oklch, var(--bg) 85%, transparent); }
.pkg.featured .pkg-list li::before { color: var(--accent-soft); }
.pkg.featured .pkg-pre { color: color-mix(in oklch, var(--bg) 55%, transparent); }
.pkg-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg-card);
  padding: 4px 10px;
  border-radius: 999px;
}
.pkg-pre {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pkg-h {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
}
.pkg-p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.pkg-list { list-style: none; padding: 0; margin: 10px 0 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pkg-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.pkg-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.pkg-cta {
  margin-top: auto;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 12px;
  border-top: 1px solid var(--line-soft);
}
.pkg.featured .pkg-cta { color: color-mix(in oklch, var(--bg) 75%, transparent); border-top-color: color-mix(in oklch, var(--bg) 15%, transparent); }

@media (max-width: 900px) { .packages-grid { grid-template-columns: 1fr; } }

/* ── Trustpilot strip + Testimonials ────────────────────────── */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}
.trust-piece {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}
.trust-piece strong { color: var(--ink); font-weight: 600; }
.trust-stars {
  display: inline-flex;
  gap: 2px;
  color: #00b67a;
}
.trust-stars svg { width: 18px; height: 18px; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
  display: inline-block;
}

.testimonials-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}
.testimonials-h {
  font-size: clamp(36px, 4.6vw, 56px);
  margin: 14px 0 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tcard-quote {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.tcard-quote::before {
  content: "“";
  font-size: 44px;
  line-height: 0.5;
  color: var(--accent);
  margin-right: 4px;
  display: inline-block;
  transform: translateY(8px);
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  overflow: hidden;
  flex: none;
}
.tcard-avatar image-slot {
  width: 100%; height: 100%; display: block;
  --slot-bg: var(--bg-soft);
  --slot-border: 1px dashed var(--ink-mute);
  --slot-text: var(--ink-mute);
}
.tcard-name { font-size: 14.5px; color: var(--ink); font-weight: 600; }
.tcard-role { font-size: 12.5px; color: var(--ink-mute); }

@media (max-width: 980px) { .testimonials-grid { grid-template-columns: 1fr; } .testimonials-head { grid-template-columns: 1fr; } }

/* ── Quiz ───────────────────────────────────────────────────── */
.quiz {
  background: var(--bg-soft);
  border-radius: 36px;
  margin: 0 var(--pad-x);
  padding: clamp(56px, 7vw, 96px) clamp(28px, 4vw, 64px);
}
.quiz-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.quiz-side .quiz-h {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  margin: 14px 0 18px;
}
.quiz-side p { color: var(--ink-soft); max-width: 40ch; margin: 0 0 22px; }
.quiz-meta {
  display: flex;
  gap: 24px;
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.quiz-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 30px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 50px -30px rgba(42, 31, 23, 0.2);
}
.quiz-progress {
  height: 4px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 22px;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.3s;
}
.quiz-step-label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
  display: block;
}
.quiz-q {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  margin: 0 0 22px;
  color: var(--ink);
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.quiz-opt {
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: background 0.12s, border-color 0.12s, transform 0.12s;
}
.quiz-opt:hover {
  border-color: var(--accent);
  background: color-mix(in oklch, var(--accent-soft) 22%, var(--bg));
  transform: translateX(2px);
}
.quiz-opt[data-on="1"] {
  border-color: var(--accent);
  background: color-mix(in oklch, var(--accent-soft) 30%, var(--bg));
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quiz-nav .quiz-back {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 8px 4px;
}
.quiz-nav .quiz-back:disabled { opacity: 0.3; cursor: default; }
.quiz-result {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quiz-score {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
}
.quiz-score-label {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
}
.quiz-result-p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; margin: 0; }
.quiz-result-bars {
  margin: 8px 0 4px;
  display: flex;
  gap: 6px;
}
.quiz-result-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-soft);
  border-radius: 999px;
}
.quiz-result-bar.on { background: var(--accent); }
.quiz-result-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

@media (max-width: 880px) { .quiz-inner { grid-template-columns: 1fr; } }

/* ── Density variants (controlled by data-density on body) ──── */
body[data-density="compact"] {
  --section-y: clamp(56px, 6vw, 96px);
}
body[data-density="comfy"] {
  --section-y: clamp(96px, 11vw, 180px);
}
