/* ============================================================
   ΣΤΕΦΑΝΑ · Wedding-invitation website platform
   Design system — shared by the landing page and the builder.
   Editorial elegance (warm paper, sage, Cormorant + Inter)
   reworked into a modern SaaS product surface.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* palette — warm editorial */
  --paper:      #F5F1E9;   /* page background, warm cream */
  --paper-2:    #EFE9DD;   /* deeper cream panels */
  --paper-3:    #E7DECE;
  --surface:    #FCFAF5;   /* cards / raised surfaces */
  --surface-2:  #FFFFFF;
  --ink:        #1B1916;   /* warm near-black */
  --ink-soft:   #4C4740;
  --ink-faint:  #6D665A;   /* darkened for WCAG AA (≈5:1 on cream) */
  --line:       rgba(27, 25, 22, 0.14);
  --line-soft:  rgba(27, 25, 22, 0.07);

  /* accent — eucalyptus / sage */
  --accent:      #76805F;
  --accent-deep: #5A6247;
  --accent-soft: rgba(118, 128, 95, 0.12);
  --accent-tint: rgba(118, 128, 95, 0.20);
  --gold:        #A98F63;   /* premium touches, used sparingly */
  --gold-soft:   rgba(169, 143, 99, 0.14);

  /* dark sections / over-photo */
  --night:        #1C1A16;
  --night-2:      #23201B;
  --on-dark:      #F4EFE6;
  --on-dark-soft: rgba(244, 239, 230, 0.72);
  --on-dark-line: rgba(244, 239, 230, 0.16);

  /* type */
  --display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* fluid scale */
  --step--2: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --step--1: clamp(0.8rem, 0.76rem + 0.2vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.22vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.06rem + 0.7vw, 1.6rem);
  --step-2:  clamp(1.6rem, 1.3rem + 1.5vw, 2.4rem);
  --step-3:  clamp(2.1rem, 1.5rem + 3vw, 3.8rem);
  --step-4:  clamp(2.7rem, 1.3rem + 6.5vw, 5.8rem);

  /* spacing / radius / motion */
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --section-y: clamp(4.5rem, 10vh, 9rem);
  --maxw: 1240px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 26px;
  --shadow-sm: 0 2px 10px -6px rgba(27,25,22,.4);
  --shadow: 0 22px 50px -34px rgba(27,25,22,.55);
  --shadow-lg: 0 40px 90px -50px rgba(27,25,22,.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
::selection { background: var(--accent); color: var(--paper); }
:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 3px; border-radius: 4px; }

/* ---------- Lenis ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

/* ============================================================
   Typography helpers
   ============================================================ */
.display { font-family: var(--display); font-weight: 500; line-height: 1.0; letter-spacing: -0.015em; }
.serif { font-family: var(--display); }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--sans); font-size: var(--step--1); font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow--light { color: var(--on-dark-soft); }
.eyebrow::before {
  content: ""; width: 1.8em; height: 1px; background: currentColor; opacity: .6;
}
.eyebrow--center::before { display: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); }
.h-hero { font-size: var(--step-4); line-height: 0.98; }
.h-1 { font-size: var(--step-3); }
.h-2 { font-size: var(--step-2); }
.h-3 { font-size: var(--step-1); }

.lede { font-size: clamp(1.06rem, 1rem + 0.5vw, 1.32rem); color: var(--ink-soft); line-height: 1.6; }
.muted { color: var(--ink-faint); }
.amp { font-style: italic; font-weight: 400; color: var(--accent); }
.tnum { font-variant-numeric: tabular-nums; }

/* ============================================================
   Layout primitives
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 7vh, 5rem); }
.section--dark { background: var(--night); color: var(--on-dark); }
.section--paper2 { background: var(--paper-2); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--on-dark); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.rule { height: 1px; background: var(--line); border: 0; }
.section--dark .rule { background: var(--on-dark-line); }

.section__head { max-width: 640px; }
.section__head.center { margin-inline: auto; }
.section__head .h-1, .section__head .h-2 { margin-top: .7rem; }
.section__head .lede { margin-top: 1rem; }

.grid { display: grid; gap: clamp(1.2rem, 2.4vw, 2rem); }
@media (min-width: 640px){ .cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px){
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cols-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 859px){ .cols-4 { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans); font-size: var(--step--1); font-weight: 600;
  letter-spacing: .04em; line-height: 1;
  padding: .95em 1.6em; border-radius: 100px; border: 1px solid transparent;
  background: var(--accent-deep); color: var(--on-dark);
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  box-shadow: 0 10px 24px -14px rgba(90,98,71,.9);
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { background: #4C5340; transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(90,98,71,.95); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--light { background: var(--on-dark); color: var(--ink); box-shadow: none; }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--outline-light { background: transparent; color: var(--on-dark); border-color: var(--on-dark-line); box-shadow: none; }
.btn--outline-light:hover { background: var(--on-dark); color: var(--ink); }
.btn--lg { padding: 1.1em 2em; font-size: var(--step-0); }
.btn--block { display: flex; width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

.pill {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: var(--step--2); font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .5em .9em; border-radius: 100px; background: var(--accent-soft); color: var(--accent-deep);
}
.pill--gold { background: var(--gold-soft); color: #6F5A34; }
.pill--dark { background: rgba(244,239,230,.14); color: var(--on-dark); }

.linky { color: var(--accent-deep); font-weight: 600; display: inline-flex; align-items: center; gap: .4em; }
.linky svg { width: 1em; height: 1em; transition: transform .3s var(--ease); }
.linky:hover svg { transform: translateX(3px); }

/* ============================================================
   Navigation (product)
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(.8rem, 1.6vh, 1.1rem) var(--gutter);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.nav--solid {
  background: rgba(245,241,233,.86); backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), 0 14px 30px -28px rgba(27,25,22,.6);
}
.brand { display: inline-flex; align-items: center; gap: .6em; font-family: var(--display); font-weight: 600; }
.brand__mark { width: 30px; height: 30px; }
.brand__name { font-size: 1.4rem; letter-spacing: .04em; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav__links a { font-size: var(--step--1); font-weight: 500; letter-spacing: .02em; color: var(--ink-soft); position: relative; }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: .8rem; }
.nav__login { font-size: var(--step--1); font-weight: 600; color: var(--ink); }
.nav__burger { display: none; width: 44px; height: 44px; position: relative; margin-right: -10px; }
.nav__burger span { position: absolute; left: 9px; right: 9px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav__burger span:nth-child(1){ top: 15px; } .nav__burger span:nth-child(2){ top: 22px; } .nav__burger span:nth-child(3){ top: 29px; }
@media (max-width: 880px){
  .nav__links { display: none; }
  .nav__login { display: none; }
  .nav__burger { display: block; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 120; background: var(--paper);
  display: flex; flex-direction: column; gap: 1.2rem; padding: 5.5rem var(--gutter) 2rem;
  transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden;
}
.drawer.open { transform: translateY(0); visibility: visible; }
.drawer a { font-family: var(--display); font-size: var(--step-2); }
.drawer__close { position: absolute; top: 1.4rem; right: var(--gutter); font-size: 2rem; line-height: 1; }

/* ============================================================
   Hero (landing)
   ============================================================ */
.hero {
  position: relative; padding-top: clamp(7rem, 15vh, 11rem); padding-bottom: clamp(3rem, 7vh, 6rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1000px 500px at 15% -5%, var(--accent-soft), transparent 60%),
    radial-gradient(900px 500px at 100% 10%, var(--gold-soft), transparent 55%);
}
.hero__inner { display: grid; gap: clamp(2rem, 4vw, 3.4rem); align-items: center; }
@media (min-width: 960px){ .hero__inner { grid-template-columns: 1.05fr 0.95fr; } }
.hero__eyebrow { margin-bottom: 1.4rem; }
.hero h1 { font-size: var(--step-4); }
.hero h1 .amp { padding: 0 .05em; }
.hero__sub { margin-top: 1.4rem; max-width: 46ch; font-size: clamp(1.08rem,1rem+.5vw,1.34rem); color: var(--ink-soft); }
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__note { margin-top: 1.2rem; font-size: var(--step--1); color: var(--ink-faint); display: flex; align-items: center; gap: .5em; }
.hero__note svg { width: 1.1em; height: 1.1em; color: var(--accent); }

/* hero device / preview mock */
.mock {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--night); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.mock__bar { position: absolute; top: 0; left: 0; right: 0; height: 34px; z-index: 3;
  background: rgba(20,18,15,.6); backdrop-filter: blur(6px); display: flex; align-items: center; gap: 6px; padding: 0 14px; }
.mock__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); display: block; }
.mock__url { margin-left: 10px; font-size: 11px; color: rgba(255,255,255,.6); font-family: var(--sans); letter-spacing: .02em; }
.mock img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05) brightness(.85); }
.mock__cap {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 2.2rem 1.6rem 1.6rem;
  color: var(--on-dark); text-align: center;
  background: linear-gradient(180deg, transparent, rgba(15,13,11,.85));
}
.mock__cap .n { font-family: var(--display); font-size: clamp(1.8rem,4vw,2.6rem); letter-spacing: .02em; }
.mock__cap .d { font-size: var(--step--1); letter-spacing: .3em; text-transform: uppercase; color: var(--on-dark-soft); margin-top: .3rem; }
.mock__float {
  position: absolute; z-index: 4; background: var(--surface); border-radius: 14px; box-shadow: var(--shadow);
  padding: .7rem .95rem; display: flex; align-items: center; gap: .6rem; font-size: var(--step--1); font-weight: 600;
  border: 1px solid var(--line);
}
.mock__float svg { width: 1.2em; height: 1.2em; color: var(--accent); }
.mock__float--tl { top: 12%; left: -6%; }
.mock__float--br { bottom: 20%; right: -7%; }
@media (max-width: 560px){ .mock__float { display: none; } }

/* trusted-by / marquee strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.trust__row { display: flex; flex-wrap: wrap; gap: 1rem 2.6rem; align-items: center; justify-content: center; padding: 1.4rem 0; color: var(--ink-faint); font-size: var(--step--1); letter-spacing: .04em; }
.trust__row b { color: var(--ink); font-weight: 600; }

/* ============================================================
   How it works
   ============================================================ */
.steps { counter-reset: step; }
.step { position: relative; padding: 1.6rem 0; }
.step__n {
  font-family: var(--display); font-size: 2.6rem; color: var(--accent); line-height: 1;
  display: inline-flex; width: 2.4ch;
}
.step h3 { font-size: var(--step-1); margin: .6rem 0 .5rem; }
.step p { color: var(--ink-soft); }

/* ============================================================
   Feature cards
   ============================================================ */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.4rem, 2.4vw, 2rem); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-tint); }
.feature__icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-deep); margin-bottom: 1rem;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.feature p { color: var(--ink-soft); font-size: var(--step-0); }

/* split feature (image + text) */
.split { display: grid; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
@media (min-width: 900px){ .split { grid-template-columns: 1fr 1fr; } .split--rev .split__media { order: 2; } }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.split__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; filter: grayscale(100%) contrast(1.04); }
.split__list { margin-top: 1.4rem; display: grid; gap: .8rem; }
.split__list li { list-style: none; display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); }
.split__list svg { width: 1.3em; height: 1.3em; color: var(--accent); flex: none; margin-top: .15em; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing { display: grid; gap: clamp(1.2rem, 2vw, 1.6rem); align-items: stretch; }
@media (min-width: 900px){ .pricing { grid-template-columns: repeat(3, 1fr); } }
.tier {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 2.4vw, 2.2rem); display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-sm);
}
.tier--featured { border-color: var(--accent); box-shadow: var(--shadow); background: var(--surface-2); }
.tier--featured::before {
  content: "Δημοφιλέστερο"; position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%);
  background: var(--accent-deep); color: var(--on-dark); font-size: var(--step--2); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: .4em 1em; border-radius: 100px; white-space: nowrap;
}
.tier__name { font-family: var(--display); font-size: var(--step-2); }
.tier__tag { color: var(--ink-faint); font-size: var(--step--1); margin-top: .2rem; min-height: 2.6em; }
.tier__price { margin: 1.2rem 0 .2rem; display: flex; align-items: baseline; gap: .3rem; }
.tier__price .amt { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 600; line-height: 1; }
.tier__price .cur { font-family: var(--display); font-size: 1.6rem; color: var(--ink-soft); }
.tier__price .per { font-size: var(--step--1); color: var(--ink-faint); }
.tier__guests { font-size: var(--step--1); color: var(--accent-deep); font-weight: 600; }
.tier .btn { margin: 1.4rem 0; }
.tier__list { list-style: none; display: grid; gap: .7rem; }
.tier__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--step--1); color: var(--ink-soft); }
.tier__list svg { width: 1.15em; height: 1.15em; color: var(--accent); flex: none; margin-top: .18em; }
.tier__list .no { color: var(--ink-faint); opacity: .7; }
.tier__list .no svg { color: var(--ink-faint); }

/* pricing calculator */
.calc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: clamp(1.6rem, 3vw, 2.6rem); }
.calc__grid { display: grid; gap: clamp(1.4rem, 3vw, 2.4rem); }
@media (min-width: 820px){ .calc__grid { grid-template-columns: 1.1fr 0.9fr; } }
.calc__label { font-weight: 600; display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .7rem; }
.calc__guestnum { font-family: var(--display); font-size: var(--step-2); color: var(--accent-deep); }
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: var(--paper-3); outline: none; }
.range::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); border: 3px solid var(--surface); box-shadow: var(--shadow-sm); cursor: pointer; }
.range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); border: 3px solid var(--surface); cursor: pointer; }
.calc__ticks { display: flex; justify-content: space-between; font-size: var(--step--2); color: var(--ink-faint); margin-top: .5rem; }
.segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; background: var(--paper-2); border-radius: 100px; padding: .35rem; margin-top: 1.4rem; }
.segmented button { padding: .7em .4em; border-radius: 100px; font-size: var(--step--1); font-weight: 600; color: var(--ink-soft); transition: .3s var(--ease); }
.segmented button.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.optrow { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line-soft); }
.optrow:first-of-type { border-top: 0; }
.optrow small { color: var(--ink-faint); display: block; font-size: var(--step--2); }

/* toggle switch */
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; border-radius: 100px; background: var(--paper-3); transition: .3s var(--ease); }
.switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--surface); box-shadow: var(--shadow-sm); transition: .3s var(--ease); }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::after { transform: translateX(20px); }

.calc__result { background: var(--night); color: var(--on-dark); border-radius: var(--r); padding: clamp(1.4rem,3vw,2rem); display: flex; flex-direction: column; }
.calc__result .cr-tier { font-size: var(--step--1); letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-soft); }
.calc__result .cr-price { font-family: var(--display); font-weight: 600; font-size: clamp(3rem, 8vw, 4.4rem); line-height: 1; margin: .4rem 0; }
.calc__result .cr-price .cur { font-size: .5em; color: var(--on-dark-soft); }
.calc__result .cr-detail { font-size: var(--step--1); color: var(--on-dark-soft); line-height: 1.7; }
.calc__result .btn { margin-top: auto; }
.calc__note { font-size: var(--step--2); color: var(--ink-faint); margin-top: 1rem; text-align: center; }

/* ============================================================
   Planner partnership band
   ============================================================ */
.planner { background: var(--night); color: var(--on-dark); border-radius: var(--r-lg); overflow: hidden; position: relative; }
.planner__grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; padding: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px){ .planner__grid { grid-template-columns: 1.1fr .9fr; } }
.planner h2 { color: var(--on-dark); }
.planner p { color: var(--on-dark-soft); margin-top: 1rem; }
.planner__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.planner__stat { background: rgba(244,239,230,.06); border: 1px solid var(--on-dark-line); border-radius: var(--r); padding: 1.4rem 1rem; text-align: center; }
.planner__stat .num { font-family: var(--display); font-size: clamp(2rem,5vw,2.8rem); color: var(--on-dark); }
.planner__stat .lab { font-size: var(--step--2); letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-soft); margin-top: .3rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.6rem,2.6vw,2.2rem); box-shadow: var(--shadow-sm); }
.quote__stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .8rem; }
.quote p { font-family: var(--display); font-size: var(--step-1); font-style: italic; line-height: 1.4; color: var(--ink); }
.quote__by { margin-top: 1rem; font-size: var(--step--1); color: var(--ink-faint); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: .8rem; max-width: 820px; margin-inline: auto; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 600; font-size: var(--step-0); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .ic { flex: none; width: 22px; height: 22px; position: relative; transition: transform .3s var(--ease); }
.faq__item summary .ic::before, .faq__item summary .ic::after { content: ""; position: absolute; background: var(--accent-deep); border-radius: 2px; }
.faq__item summary .ic::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq__item summary .ic::after { left: 10px; top: 2px; bottom: 2px; width: 2px; transition: transform .3s var(--ease); }
.faq__item[open] summary .ic::after { transform: scaleY(0); }
.faq__item .a { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ============================================================
   CTA band + footer
   ============================================================ */
.ctaband { text-align: center; }
.ctaband .h-1 { max-width: 18ch; margin: 0 auto .6rem; }
.footer { background: var(--night); color: var(--on-dark-soft); padding-block: clamp(3rem,6vh,4.5rem) 2rem; }
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 760px){ .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h4 { color: var(--on-dark); font-family: var(--sans); font-size: var(--step--1); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.footer a { color: var(--on-dark-soft); display: block; padding: .3rem 0; font-size: var(--step--1); }
.footer a:hover { color: var(--on-dark); }
.footer__brand .brand { color: var(--on-dark); }
.footer__brand p { margin-top: 1rem; max-width: 30ch; font-size: var(--step--1); }
.footer__bottom { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--on-dark-line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: var(--step--2); }

/* ============================================================
   Reveal utilities (GSAP-driven, with no-JS / reduced-motion fallback)
   ============================================================ */
[data-reveal] { will-change: transform, opacity; }
.no-js [data-reveal], .reduced [data-reveal] { opacity: 1 !important; transform: none !important; }

/* progress hairline */
.progress { position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 200; pointer-events: none; }
.progress i { display: block; height: 100%; width: 0; background: var(--accent); }

/* utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.br-sm { display: none; }
.nowrap { white-space: nowrap; }
.hide { display: none !important; }
@media (max-width: 640px){ .br-sm { display: block; } }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }
