/* Labels — shared site styles (brand system) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #15191E;
  --bg2: #20252B;
  --bg3: #1B2127;
  --sage: #6CA690;
  --mint: #7BC0AA;
  --mint-light: #8BD1BA;
  --pale: #A8D6C4;
  --pale-2: #D3EFE3;
  --text: #F0EDE8;
  --text-dim: rgba(240,237,232,0.55);
  --text-muted: rgba(240,237,232,0.3);
  --blue: #7C9AF2;      /* future worry */
  --purple: #9B8AFB;    /* past replay */
  --red: #F28A8A;       /* self-criticism */
  --teal: #6DBBD1;      /* comparison */
  --green: #69BFA3;     /* problem-solving */
  --orange: #F29F67;    /* catastrophising */
  --lav: #C58BF2;       /* mind reading */
  --yellow: #F2C96B;    /* urgency / positive */
  --grey: #98A2B3;      /* random noise */
  --line: rgba(255,255,255,0.07);
  --nav-bg: rgba(21,25,30,0.85);
  --surface-soft: rgba(255,255,255,0.06);
  --surface-soft-hover: rgba(255,255,255,0.1);
  --line-strong: rgba(255,255,255,0.09);
  --track: rgba(255,255,255,0.05);
  --phone-screen: #0F1216;
  --cookie-bg: rgba(27,33,39,0.97);
  color-scheme: dark;
}

/* ── LIGHT MODE (follows system setting) ── */
@media (prefers-color-scheme: light) {
  :root {
    --bg: #F4F1EC;
    --bg2: #ECE8E2;
    --bg3: #E7E2DA;
    --sage: #578E77;
    --mint: #63A48B;
    --text: #1E2429;
    --text-dim: rgba(30,36,41,0.62);
    --text-muted: rgba(30,36,41,0.38);
    --line: rgba(21,25,30,0.08);
    --nav-bg: rgba(244,241,236,0.85);
    --surface-soft: rgba(21,25,30,0.05);
    --surface-soft-hover: rgba(21,25,30,0.09);
    --line-strong: rgba(21,25,30,0.12);
    --track: rgba(21,25,30,0.07);
    --phone-screen: #FBF9F5;
    --cookie-bg: rgba(244,241,236,0.97);
    color-scheme: light;
  }
  .nav-logo, .footer-logo { mix-blend-mode: normal; filter: brightness(0.8) saturate(1.05); }
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; border-radius: 4px; }

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-logo { height: 28px; width: auto; mix-blend-mode: screen; filter: brightness(1.1); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14px; color: var(--text-dim); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--sage), var(--mint));
  color: #fff; font-weight: 600; font-size: 14px; letter-spacing: .02em;
  padding: 10px 22px; border-radius: 100px; text-decoration: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(108,166,144,0.3);
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); color:#fff; }
@media (max-width: 700px) {
  nav.site-nav { padding: 14px 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--mint) 100%);
  color: #fff; font-weight: 600; font-size: 16px;
  padding: 16px 32px; border-radius: 100px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(108,166,144,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(108,166,144,0.45); color:#fff; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-soft); color: var(--text-dim);
  font-weight: 500; font-size: 15px; padding: 16px 28px; border-radius: 100px;
  text-decoration: none; border: 1px solid var(--line-strong);
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--surface-soft-hover); color: var(--text); }

/* ── SECTION SCAFFOLD ── */
.section { padding: 110px 32px; }
.section-alt { background: var(--bg3); }
.section-inner { max-width: 1020px; margin: 0 auto; }
.section-inner-narrow { max-width: 760px; margin: 0 auto; }
.section-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 18px;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 62px); font-weight: 500; line-height: 1.08;
  letter-spacing: -0.01em; margin-bottom: 22px;
}
.section-heading em { font-style: italic; color: var(--sage); }
.section-lede { font-size: 16.5px; font-weight: 300; color: var(--text-dim); max-width: 560px; line-height: 1.7; }

/* ── HERO ── */
.hero {
  min-height: 92vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 150px 32px 70px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 820px; height: 820px;
  background: radial-gradient(ellipse, rgba(108,166,144,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 26px;
  opacity: 0; animation: fadeUp .7s ease forwards .1s;
}
.hero-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--bg2);
  border: 1px solid var(--line); padding: 8px; margin-bottom: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  opacity: 0; animation: fadeUp .7s ease forwards 0s;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 8vw, 96px); font-weight: 500; line-height: 1.02;
  letter-spacing: -0.02em; margin-bottom: 10px;
  opacity: 0; animation: fadeUp .7s ease forwards .2s;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(30px, 5vw, 56px); font-weight: 400; line-height: 1.1;
  color: var(--text-dim); margin-bottom: 30px;
  opacity: 0; animation: fadeUp .7s ease forwards .3s;
}
.hero-body {
  font-size: 17px; font-weight: 300; color: var(--text-dim);
  max-width: 480px; line-height: 1.7; margin-bottom: 42px;
  opacity: 0; animation: fadeUp .7s ease forwards .4s;
}
.hero-cta-group {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp .7s ease forwards .5s;
}
.hero-trust {
  margin-top: 30px; font-size: 13.5px; color: var(--text-muted);
  opacity: 0; animation: fadeUp .7s ease forwards .65s;
}
.hero-trust strong { color: var(--pale); font-weight: 500; }
.quiz-link {
  display: inline-block; margin-top: 22px; font-size: 14.5px; color: var(--sage);
  text-decoration: none; transition: color .2s;
  opacity: 0; animation: fadeUp .7s ease forwards .75s;
}
.quiz-link:hover { color: var(--mint); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ── REVEAL ON SCROLL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PHONE FRAMES (screenshots) ── */
.screens-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
  margin-top: 64px; align-items: start;
}
@media (max-width: 900px) { .screens-row { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; } }
.phone {
  background: var(--phone-screen); border: 1px solid var(--line-strong);
  border-radius: 38px; padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.03);
}
.phone-screen {
  background: var(--bg); border-radius: 28px; overflow: hidden;
  aspect-ratio: 9 / 19; padding: 26px 18px; display: flex; flex-direction: column;
  position: relative;
}
.phone-caption { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-dim); font-weight: 300; }
.phone-caption strong { color: var(--text); font-weight: 500; display: block; margin-bottom: 3px; font-size: 15px; }

.ps-title { font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--text); margin-bottom: 4px; }
.ps-sub { font-size: 11px; color: var(--text-muted); margin-bottom: 18px; }
.ps-timer {
  width: 120px; height: 120px; border-radius: 50%; margin: 8px auto 18px;
  border: 2px solid rgba(108,166,144,0.4);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  background: radial-gradient(circle, rgba(108,166,144,0.08), transparent 70%);
}
.ps-timer .t { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--pale); }
.ps-timer .u { font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.ps-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }
.ps-tile {
  border-radius: 12px; padding: 10px 10px; background: var(--bg2);
  border: 1px solid var(--line); font-size: 10.5px; font-weight: 500; color: var(--text-dim);
  display: flex; align-items: center; gap: 7px;
}
.ps-tile .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ps-tile.active { border-color: rgba(240,237,232,0.35); background: rgba(240,237,232,0.06); color: var(--text); }
.ps-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 11px; }
.ps-bar-label { font-size: 10px; color: var(--text-dim); width: 74px; flex-shrink: 0; }
.ps-bar-track { flex: 1; height: 8px; border-radius: 100px; background: var(--track); overflow: hidden; }
.ps-bar-fill { height: 100%; border-radius: 100px; }
.ps-bar-count { font-size: 10px; color: var(--text-muted); width: 18px; text-align: right; }
.ps-card {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 14px; margin-bottom: 10px;
}
.ps-card .k { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.ps-card .v { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--text); }
.ps-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-top: 6px; }
.ps-day { aspect-ratio: 1; border-radius: 7px; background: var(--track); }
.ps-day.on1 { background: rgba(108,166,144,0.25); }
.ps-day.on2 { background: rgba(108,166,144,0.5); }
.ps-day.on3 { background: rgba(123,192,170,0.8); }



/* ── REAL SCREENSHOTS ── */
.shot {
  display: block; width: 100%; height: auto; border-radius: 28px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* ── RATING & REVIEWS ── */
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 30px; padding: 10px 20px; border-radius: 100px;
  background: var(--surface-soft); border: 1px solid var(--line-strong);
  opacity: 0; animation: fadeUp .7s ease forwards .65s;
}
.hero-rating .stars { color: var(--yellow); font-size: 15px; letter-spacing: 2px; }
.hero-rating .rating-text { font-size: 14px; font-weight: 600; color: var(--text); }
.hero-trust { margin-top: 14px; font-size: 13.5px; color: var(--text-muted); opacity: 0; animation: fadeUp .7s ease forwards .75s; }
.reviews-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 640px; margin: 36px auto 0; text-align: left; }
@media (max-width: 640px) { .reviews-row { grid-template-columns: 1fr; } }
.review-card {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px 24px;
}
.review-card .stars { color: var(--yellow); font-size: 13px; letter-spacing: 2px; }
.review-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin: 8px 0 6px; }
.review-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin: 0 0 10px; }
.review-card .reviewer { font-size: 12.5px; color: var(--text-muted); }

/* ── QUIZ CTA BUTTON ── */
.btn-quiz {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface-soft); color: var(--text);
  font-weight: 600; font-size: 16px;
  padding: 16px 28px; border-radius: 100px; text-decoration: none;
  border: 1px solid var(--line-strong);
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}
.btn-quiz:hover {
  transform: translateY(-2px);
  border-color: var(--sage);
  background: color-mix(in srgb, var(--sage) 10%, var(--bg2));
  box-shadow: 0 8px 28px color-mix(in srgb, var(--sage) 20%, transparent);
  color: var(--text);
}
.btn-quiz-dots { display: inline-flex; gap: 4px; }
.btn-quiz-dots span { width: 7px; height: 7px; border-radius: 50%; }
.btn-quiz-dots span:nth-child(1) { background: var(--blue); }
.btn-quiz-dots span:nth-child(2) { background: var(--red); }
.btn-quiz-dots span:nth-child(3) { background: var(--teal); }
.btn-quiz:hover .btn-quiz-dots span { box-shadow: 0 0 6px currentColor; }

/* ── LABEL CHIPS ── */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: 100px;
  background: var(--bg2); border: 1px solid var(--line); color: var(--text);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
  cursor: default;
}
.chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--chip, var(--grey)); transition: transform .25s ease, box-shadow .25s ease; }
.chip:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--chip, var(--line-strong));
  background: color-mix(in srgb, var(--chip, #98A2B3) 8%, var(--bg2));
  box-shadow: 0 8px 24px color-mix(in srgb, var(--chip, #98A2B3) 16%, transparent);
  color: var(--chip, var(--text));
}
.chip:hover .dot { transform: scale(1.3); box-shadow: 0 0 8px var(--chip, transparent); }
@media (prefers-reduced-motion: reduce) { .chip:hover { transform: none; } .chip:hover .dot { transform: none; } }
.chip-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 56px; }
@media (max-width: 760px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 22px; padding: 34px 32px;
}
.step-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--sage); margin-bottom: 14px; }
.step-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 27px; font-weight: 500; margin-bottom: 10px; }
.step-card p { font-size: 15px; font-weight: 300; color: var(--text-dim); line-height: 1.7; }

/* ── DOWNLOAD ── */
.download-panel {
  background: linear-gradient(160deg, var(--bg2), var(--bg3));
  border: 1px solid var(--line); border-radius: 28px;
  padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
}
.download-panel::before {
  content: ''; position: absolute; inset: auto -100px -240px -100px; height: 420px;
  background: radial-gradient(ellipse, rgba(108,166,144,0.14), transparent 70%); pointer-events: none;
}
.download-meta { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.download-meta div { font-size: 13px; color: var(--text-muted); }
.download-meta strong { display: block; font-size: 15px; color: var(--pale); font-weight: 500; margin-bottom: 2px; }

/* ── GUIDES GRID ── */
.guides-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 760px) { .guides-grid { grid-template-columns: 1fr; } }
.guide-card {
  display: block; background: var(--bg2); border: 1px solid var(--line);
  border-radius: 20px; padding: 28px 28px; text-decoration: none;
  transition: transform .25s ease, border-color .25s ease;
}
.guide-card:hover { transform: translateY(-3px); border-color: rgba(108,166,144,0.45); }
.guide-card .tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; color: var(--text-muted);
}
.guide-card .tag .dot { width: 8px; height: 8px; border-radius: 50%; }
.guide-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 500; color: var(--text); line-height: 1.15; margin-bottom: 10px; }
.guide-card p { font-size: 14.5px; font-weight: 300; color: var(--text-dim); line-height: 1.65; }
.guide-card .more { display: inline-block; margin-top: 16px; font-size: 13.5px; color: var(--sage); }
.guide-card:hover .more { color: var(--mint); }

/* ── FAQ ── */
.faq-list { margin-top: 48px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 24px 4px;
  font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 500; color: var(--text);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: 'DM Sans', sans-serif; font-size: 20px; color: var(--sage); font-weight: 300; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--pale); }
.faq-body { padding: 0 4px 26px; font-size: 15px; font-weight: 300; color: var(--text-dim); line-height: 1.75; max-width: 640px; }
.faq-body a { color: var(--sage); text-decoration: none; }
.faq-body a:hover { color: var(--mint); text-decoration: underline; }

/* ── CTA ── */
.final-cta { text-align: center; padding: 130px 32px; position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(108,166,144,0.13), transparent 70%); pointer-events: none;
}

/* ── FOOTER ── */
footer.site-footer {
  border-top: 1px solid var(--line); padding: 56px 32px 44px; text-align: center;
}
.footer-logo { height: 30px; width: auto; mix-blend-mode: screen; filter: brightness(1.1); margin-bottom: 26px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a { font-size: 14px; color: var(--text-dim); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12.5px; color: var(--text-muted); }
.footer-guides { display: flex; gap: 10px 20px; justify-content: center; flex-wrap: wrap; margin: 0 auto 28px; max-width: 720px; }
.footer-guides a { font-size: 12.5px; color: var(--text-muted); text-decoration: none; }
.footer-guides a:hover { color: var(--text-dim); }

/* ── ARTICLE (guide pages) ── */
.article-hero { padding: 170px 32px 40px; max-width: 760px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 26px; }
.breadcrumb a { color: var(--sage); text-decoration: none; }
.breadcrumb a:hover { color: var(--mint); }
.article-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 60px); font-weight: 500; line-height: 1.08;
  letter-spacing: -0.01em; margin-bottom: 20px;
}
.article-hero .article-lede { font-size: 18px; font-weight: 300; color: var(--text-dim); line-height: 1.75; }
.article-tagrow { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }

article.guide-body { max-width: 760px; margin: 0 auto; padding: 30px 32px 90px; }
article.guide-body h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 38px);
  font-weight: 500; line-height: 1.15; margin: 56px 0 18px;
}
article.guide-body h2 em { font-style: italic; color: var(--sage); }
article.guide-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 500; margin: 36px 0 12px; }
article.guide-body p { font-size: 16px; font-weight: 300; color: var(--text-dim); line-height: 1.8; margin-bottom: 18px; }
article.guide-body strong { color: var(--text); font-weight: 500; }
article.guide-body a { color: var(--sage); text-decoration: none; }
article.guide-body a:hover { color: var(--mint); text-decoration: underline; }
article.guide-body a.btn-primary, article.guide-body a.btn-primary:hover { color: #fff; text-decoration: none; }
article.guide-body ol, article.guide-body ul { margin: 0 0 22px 22px; }
article.guide-body li { font-size: 16px; font-weight: 300; color: var(--text-dim); line-height: 1.8; margin-bottom: 10px; }
article.guide-body li strong { color: var(--text); }

.practice-box {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 22px;
  padding: 34px 34px 26px; margin: 34px 0;
}
.practice-box .pb-eyebrow { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; font-weight: 500; }
.practice-box ol { margin-left: 20px; }
.practice-box li { margin-bottom: 12px; }

.cta-box {
  background: linear-gradient(160deg, var(--bg2), var(--bg3));
  border: 1px solid rgba(108,166,144,0.25); border-radius: 24px;
  padding: 44px 40px; margin: 56px 0 20px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: auto -80px -200px -80px; height: 320px;
  background: radial-gradient(ellipse, rgba(108,166,144,0.14), transparent 70%); pointer-events: none;
}
.cta-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 500; margin: 0 0 12px !important; }
.cta-box p { max-width: 460px; margin: 0 auto 26px; }
.cta-box .cta-note { font-size: 13px; color: var(--text-muted); margin: 18px 0 0; }

.related { max-width: 760px; margin: 0 auto; padding: 0 32px 100px; }
.related h2 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 500; margin-bottom: 26px; }
.related-list { display: grid; gap: 12px; }
.related-list a {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: var(--bg2); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 22px; text-decoration: none; color: var(--text);
  font-size: 15.5px; transition: border-color .2s, transform .2s;
}
.related-list a:hover { border-color: rgba(108,166,144,0.45); transform: translateY(-2px); }
.related-list a span { color: var(--sage); flex-shrink: 0; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 200;
  max-width: 680px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--cookie-bg); border: 1px solid var(--line-strong);
  border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
#cookie-banner.hidden { display: none; }
.cookie-text { font-size: 13.5px; color: var(--text-dim); font-weight: 300; }
.cookie-text a { color: var(--sage); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: linear-gradient(135deg, var(--sage), var(--mint)); color: #fff;
  border: none; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13.5px;
  padding: 9px 20px; border-radius: 100px; cursor: pointer;
}
.cookie-accept:hover { opacity: .85; }
.cookie-decline {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--line-strong); font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: 13.5px; padding: 9px 20px; border-radius: 100px; cursor: pointer;
}
.cookie-decline:hover { color: var(--text-dim); border-color: var(--line-strong); }
@media (max-width: 640px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; bottom: 16px; }
  .cookie-buttons { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}
