/* ============================================================
   Seasonable - website styles
   Plain static CSS, no build step. Tokens first, then components.
   Shared shell classes (.hdr .nav .btn .wrap .footer .precta
   .reveal .modal .field) are also used by pricing.html and the
   legal pages, so their names stay stable.
   ============================================================ */
/* Design tokens inlined (was 3 @import files) to remove the render-blocking
   CSS waterfall. Source of truth still lives in tokens/*.css for reference. */
:root {
  /* colors */
  --teal:#2E6E7E; --teal-mid:#235862; --teal-deep:#163A42; --teal-ink:#102C32;
  --gold:#F2B705; --gold-deep:#8A6104;
  --cream:#F4F0E6; --sand:#E7DECB; --sand-line:#D8CDB6;
  --ink:#15262B; --gray:#5C665F;
  --teal-50:#EAF1F2; --teal-100:#D2E0E3; --teal-200:#A7C2C8;
  --cream-deep:#ECE6D6; --gold-soft:#FBE9A6; --gold-100:#FCF3D2;
  --success:#3F7A4B; --success-bg:#E4EFE5; --warning:#B07C06; --warning-bg:#FBE9A6;
  --danger:#B23A2E; --danger-bg:#F6E0DC; --info:#2E6E7E; --info-bg:#D2E0E3;
  --surface-page:var(--cream); --surface-card:#FFFFFF; --surface-sunken:var(--sand);
  --surface-inverse:var(--teal-deep); --surface-brand:var(--teal); --surface-hover:var(--cream-deep);
  --text-strong:var(--ink); --text-body:#2A3A3E; --text-muted:var(--gray);
  --text-on-brand:var(--cream); --text-on-dark:var(--cream); --text-on-gold:var(--teal-ink);
  --text-accent:var(--gold-deep); --text-link:var(--teal);
  --border-subtle:var(--sand-line); --border-strong:#C3B89E;
  --border-on-dark:rgba(244,240,230,0.16); --border-focus:var(--teal);
  --accent:var(--gold); --accent-press:var(--gold-deep); --brand:var(--teal); --brand-press:var(--teal-mid);
  --ring:0 0 0 3px rgba(46,110,126,0.32); --ring-gold:0 0 0 3px rgba(242,183,5,0.40);
  /* spacing, radii, shadow, motion */
  --space-1:4px; --space-2:8px; --space-3:12px; --space-4:16px; --space-5:20px;
  --space-6:24px; --space-8:32px; --space-10:40px; --space-12:48px; --space-16:64px;
  --space-20:80px; --space-24:96px;
  --radius-sm:8px; --radius-md:10px; --radius-lg:16px; --radius-xl:24px; --radius-pill:999px;
  --shadow-xs:0 1px 2px rgba(22,58,66,0.06);
  --shadow-sm:0 1px 3px rgba(22,58,66,0.08),0 1px 2px rgba(22,58,66,0.05);
  --shadow-md:0 4px 14px rgba(22,58,66,0.10);
  --shadow-lg:0 12px 32px rgba(22,58,66,0.14);
  --ease-standard:cubic-bezier(0.22,0.61,0.36,1); --ease-out:cubic-bezier(0.16,1,0.3,1);
  --dur-fast:120ms; --dur-base:200ms; --dur-slow:320ms;
  --container:1040px; --container-wide:1200px;
  /* typography */
  --font-serif:"Newsreader",Georgia,"Times New Roman",serif;
  --font-sans:"Hanken Grotesk",system-ui,-apple-system,"Segoe UI",sans-serif;
  --weight-medium:500; --weight-semibold:600; --weight-bold:700;
  --text-base:16px; --leading-relaxed:1.65;
}

/* ---- Local scale: fluid type + a few surfaces on top of tokens ---- */
:root {
  /* capped lower than it wants to be: Dutch has words like
     "seizoensplanner" that blow out a 5rem display size */
  --fs-display: clamp(2.6rem, 5.1vw, 4.35rem);
  --fs-h2:      clamp(2rem, 3.9vw, 3.2rem);
  --fs-h3:      clamp(1.45rem, 2.2vw, 2rem);
  --fs-lead:    clamp(1.06rem, 1.35vw, 1.28rem);

  --paper:      #F6F2E9;
  --paper-deep: #EFE9DA;

  /* layered, teal-tinted shadows read warmer than neutral black */
  --sh-1: 0 1px 2px rgba(16,44,50,.05), 0 2px 6px rgba(16,44,50,.04);
  --sh-2: 0 2px 4px rgba(16,44,50,.05), 0 10px 24px rgba(16,44,50,.07);
  --sh-3: 0 4px 8px rgba(16,44,50,.06), 0 22px 48px rgba(16,44,50,.12);
  --sh-4: 0 8px 16px rgba(16,44,50,.08), 0 40px 80px rgba(16,44,50,.16);

  --ease: cubic-bezier(.22,.68,.26,1);
  --ease-soft: cubic-bezier(.32,.72,.24,1);
  --nav-h: 72px;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
/* barely-there paper grain, keeps large cream fields from going flat */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold-soft); color: var(--teal-ink); }
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  background: var(--teal-deep);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip:focus { top: 16px; }

section { position: relative; z-index: 1; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246,242,233,.72);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.hdr.scrolled {
  border-bottom-color: rgba(22,58,66,.10);
  background: rgba(246,242,233,.9);
}
.hdr__in { display: flex; align-items: center; gap: 34px; height: var(--nav-h); }
.hdr__spacer { flex: 1; }
.hdr__cta { display: flex; align-items: center; gap: 16px; }
.hdr__season {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  display: block;
  pointer-events: none;
}
.hdr__season i {
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { color: var(--teal); transition: transform .5s var(--ease-soft); }
.brand:hover .brand__mark { transform: translateY(-3px) rotate(-8deg); }
.brand__word {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -.022em;
  color: var(--teal-deep);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform .32s var(--ease);
}
.nav a:hover { color: var(--teal-deep); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: 0 50%; }

.login { font-size: 15px; font-weight: 600; color: var(--teal-deep); white-space: nowrap; }
.login:hover { color: var(--teal); }

.lang-switch { display: flex; gap: 2px; }
.lang-switch button {
  border: 0; background: none;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--gray);
  padding: 5px 8px; border-radius: 7px;
  transition: color .2s, background .2s;
}
.lang-switch button:hover { color: var(--teal-deep); }
.lang-switch button.is-active { color: var(--teal-ink); background: rgba(22,58,66,.07); }
.lang-switch--mobile { display: none; padding: 6px 0 14px; }

/* ---- Buttons ---- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  position: relative;
  isolation: isolate;
  transition: transform .28s var(--ease-soft), box-shadow .28s var(--ease-soft),
              background .2s var(--ease), border-color .2s var(--ease);
}
.btn--lg { padding: 16px 30px; font-size: 16.5px; }
.btn--full { display: flex; width: 100%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .06s; }

.btn--primary { --btn-bg: var(--gold); --btn-fg: var(--teal-ink); box-shadow: 0 2px 0 var(--gold-deep), var(--sh-1); }
.btn--primary:hover { --btn-bg: #FFC61F; box-shadow: 0 4px 0 var(--gold-deep), var(--sh-2); }
.btn--primary:active { box-shadow: 0 1px 0 var(--gold-deep); }
.btn--brand { --btn-bg: var(--teal); --btn-fg: var(--cream); box-shadow: var(--sh-1); }
.btn--brand:hover { --btn-bg: var(--teal-mid); box-shadow: var(--sh-2); }
.btn--outline { --btn-fg: var(--teal-deep); border-color: rgba(22,58,66,.22); }
.btn--outline:hover { background: rgba(22,58,66,.05); border-color: rgba(22,58,66,.34); }
.btn--ghost-light { --btn-fg: var(--cream); border-color: rgba(244,240,230,.34); }
.btn--ghost-light:hover { background: rgba(244,240,230,.12); border-color: rgba(244,240,230,.5); }

/* ---- Type helpers ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow .swl { color: var(--gold); flex: none; }
.eyebrow--light { color: var(--gold); }

h1, h2, h3, .h-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
}
em.accent { font-style: italic; color: var(--teal); }

.uline { position: relative; white-space: nowrap; display: inline-block; }
.uline svg {
  position: absolute;
  left: -3%; bottom: -.24em;
  width: 106%; height: .3em;
  overflow: visible;
  pointer-events: none;
}
.uline svg path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 6;
  stroke-linecap: round;
}

.section__head { max-width: 660px; }
.section__head h2 {
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -.028em;
  margin-top: 18px;
}
.section__head p {
  font-size: var(--fs-lead);
  color: var(--text-body);
  margin-top: 20px;
  max-width: 56ch;
}

/* ---- Reveal ---- */
@media (prefers-reduced-motion: no-preference) {
  html.anim .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
    transition-delay: calc(var(--d, 0) * 90ms);
  }
  html.anim .reveal[data-d="1"] { --d: 1; }
  html.anim .reveal[data-d="2"] { --d: 2; }
  html.anim .reveal[data-d="3"] { --d: 3; }
  html.anim .reveal[data-d="4"] { --d: 4; }
  /* .in-view is the legacy hook other pages may still use */
  html.anim .reveal.in,
  html.anim .reveal.in-view { opacity: 1; transform: none; }

  html.anim .uline svg path { stroke-dasharray: 230; stroke-dashoffset: 230; }
  html.anim .reveal.in .uline svg path,
  html.anim .in .uline svg path {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s var(--ease-soft) .45s;
  }

  /* Hero intro: paint-cheap load animation. The H1 (the LCP element) is NOT
     included, so it paints immediately; only the supporting lines rise in.
     The hero underline draws on load since the H1 no longer carries .reveal. */
  html.anim .hero-in {
    opacity: 0;
    transform: translateY(16px);
    animation: heroIn .7s var(--ease-soft) forwards;
    animation-delay: calc(var(--hd, 0) * 90ms);
  }
  @keyframes heroIn { to { opacity: 1; transform: none; } }
  html.anim .hero .uline svg path { animation: uDraw 1s var(--ease-soft) .45s forwards; }
  @keyframes uDraw { to { stroke-dashoffset: 0; } }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 84px 0 108px; overflow: clip; }
.hero__sky { position: absolute; inset: -80px 0 auto 0; height: 640px; pointer-events: none; z-index: 0; }
.hero__glow {
  position: absolute;
  right: -6%; top: -14%;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(242,183,5,.16), rgba(242,183,5,0) 62%);
}
/* Swallow murmuration — canvas boids, drawn behind the hero content.
   Hidden below 760px and under reduced motion (JS bails there too). */
.hero__flock {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 760px) { .hero__flock { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero__flock { display: none; } }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -.034em;
  margin: 22px 0 0;
}
.hero .sub {
  font-size: var(--fs-lead);
  line-height: 1.58;
  max-width: 46ch;
  margin-top: 26px;
  color: var(--text-body);
}
.hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__trust {
  display: flex; align-items: center; gap: 10px;
  margin-top: 30px;
  font-size: 15px;
  color: var(--gray);
}
.hero__trust-ic { color: var(--gold); flex: none; }

/* ---- Hero visual ---- */
.hero__visual { position: relative; }
.photo { margin: 0; border-radius: 26px; overflow: hidden; box-shadow: var(--sh-3); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--hero img { aspect-ratio: 5 / 4; }
.photo--hero {
  transform: rotate(.7deg);
  transition: transform .8s var(--ease-soft);
}
.hero__visual:hover .photo--hero { transform: rotate(0deg); }

/* The product as an object: one season, every week */
.strip {
  --now: 50%;
  position: absolute;
  left: -58px; bottom: -50px;
  width: 322px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(22,58,66,.09);
  border-radius: 18px;
  box-shadow: var(--sh-4);
  padding: 14px 16px 12px;
  z-index: 2;
}
.strip__bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.strip__ttl { font-family: var(--font-serif); font-size: 15.5px; color: var(--ink); }
.strip__now {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; color: var(--teal);
  background: var(--teal-50);
  padding: 3px 9px; border-radius: 999px;
}
.strip__now i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
}
@media (prefers-reduced-motion: no-preference) {
  .strip__now i { animation: pulse 2.4s var(--ease) infinite; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,110,126,.5); }
  60%      { box-shadow: 0 0 0 7px rgba(46,110,126,0); }
}
.strip__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--cols, 27), 1fr);
  gap: 2px;
}
.strip__grid::after {
  content: "";
  position: absolute;
  top: -4px; bottom: -4px;
  left: var(--now);
  width: 2px;
  background: var(--teal-ink);
  opacity: .5;
  border-radius: 2px;
}
.strip .c {
  display: block;
  height: 13px;
  border-radius: 3px;
  background: var(--sand);
}
.strip .c--t { background: var(--teal-200); }
.strip .c--g { background: var(--teal); }
@media (prefers-reduced-motion: no-preference) {
  html.anim .strip .c {
    opacity: 0;
    transform: scaleY(.3);
    animation: cell .5s var(--ease-soft) forwards;
    animation-delay: calc(360ms + var(--i) * 5ms);
  }
}
@keyframes cell { to { opacity: 1; transform: none; } }
.strip__foot {
  display: flex; gap: 14px;
  margin-top: 11px;
  font-size: 11px; color: var(--gray);
}
.strip__key { display: inline-flex; align-items: center; gap: 5px; }
.strip__key .k { width: 9px; height: 9px; border-radius: 2.5px; display: block; }
.k--t { background: var(--teal); }
.k--g { background: var(--teal-200); }
.k--e { background: var(--sand); }

/* ---- Floating chip ---- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(22,58,66,.08);
  border-radius: 16px;
  box-shadow: var(--sh-3);
  padding: 13px 17px;
  white-space: nowrap;
}
.chip__ic {
  width: 38px; height: 38px; flex: none;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--success-bg);
  color: var(--success);
}
.chip__ic--gold { background: var(--gold-100); color: var(--gold-deep); }
.chip__big { display: block; font-family: var(--font-serif); font-weight: 500; font-size: 20px; color: var(--ink); line-height: 1.1; }
.chip__sm { display: block; font-style: normal; font-size: 12.5px; color: var(--gray); margin-top: 2px; }
.chip--hero { position: absolute; right: -28px; top: 42px; z-index: 3; }
@media (prefers-reduced-motion: no-preference) {
  .chip--hero, .strip { animation: floatIn .9s var(--ease-soft) both .5s; }
  .chip--hero { animation-delay: .72s; }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   WHAT IT REPLACES
   ============================================================ */
.replaces { padding: 22px 0 56px; }
.replaces__label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--gray);
  text-align: center;
}
.marquee {
  margin-top: 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  color: var(--teal-mid);
  opacity: .82;
}
.marquee__track > span { white-space: nowrap; }
.marquee__track > i { color: var(--gold); font-style: normal; }
@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: slide 46s linear infinite; }
  .marquee:hover .marquee__track { animation-play-state: paused; }
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   THE SEASON SPINE
   ============================================================ */
.spine { padding: 96px 0 120px; }
.spine__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: 76px;
  margin-top: 68px;
}

/* the wrapper must stretch to the full height of the steps column,
   otherwise the sticky stage has no room to travel and scrolls away */
.spine__stagewrap { position: relative; height: 100%; }
.spine__stage {
  position: sticky;
  top: calc(var(--nav-h) + 28px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 20px;
  height: min(620px, 72vh);
}

/* month rail */
.spine__months {
  position: relative;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
  padding-bottom: 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid rgba(22,58,66,.12);
}
.spine__month { text-align: center; opacity: .45; transition: opacity .4s var(--ease), color .4s var(--ease); }
.spine__month.is-on { opacity: 1; color: var(--teal-deep); }
.spine__runner {
  --p: 0%;
  position: absolute;
  left: 0; bottom: -1px;
  width: calc(5% + var(--p) * .9);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  transition: width .6s var(--ease-soft);
}

/* stacked cards, one visible at a time */
.card {
  grid-row: 2; grid-column: 1;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: var(--teal-deep);
  box-shadow: var(--sh-3);
  opacity: 0;
  transform: translateY(16px) scale(.985);
  transition: opacity .55s var(--ease-soft), transform .55s var(--ease-soft);
  pointer-events: none;
}
.card.is-on { opacity: 1; transform: none; pointer-events: auto; }
.card__photo { margin: 0; height: 100%; }
.card__photo img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(190deg, rgba(16,44,50,0) 34%, rgba(16,44,50,.62) 100%);
}
.card__ui {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
}
@media (prefers-reduced-motion: no-preference) {
  .card__ui { transform: translateY(14px); opacity: 0; transition: opacity .5s var(--ease-soft) .12s, transform .5s var(--ease-soft) .12s; }
  .card.is-on .card__ui { transform: none; opacity: 1; }
}

/* mini product UI */
.ui {
  background: rgba(255,255,255,.97);
  border-radius: 16px;
  box-shadow: var(--sh-2);
  overflow: hidden;
}
.ui__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(22,58,66,.08);
}
.dots { display: flex; gap: 5px; }
.dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--sand-line); display: block; }
.ui__ttl { font-family: var(--font-serif); font-size: 14px; color: var(--ink); }
.ui__body { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 9px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--ink);
}
.row b { font-weight: 600; }
.row--wait { background: var(--cream-deep); }
.row--sum { border-top: 1px dashed var(--sand-line); padding-top: 11px; margin-top: 2px; }
.av {
  width: 28px; height: 28px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.av--t { background: var(--teal); color: var(--cream); }
.av--d { background: var(--teal-deep); color: var(--gold); }
.av--s { background: var(--sand); color: #5A5142; }
.tag {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 999px;
  white-space: nowrap;
}
.tag--ok { background: var(--success-bg); color: var(--success); }
.tag--wait { background: var(--warning-bg); color: var(--warning); }
.tag--wait i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.amt { margin-left: auto; font-variant-numeric: tabular-nums; font-weight: 600; font-size: 13.5px; }
.amt--big { font-family: var(--font-serif); font-size: 18px; color: var(--teal-deep); }
.ui__meter { height: 7px; border-radius: 999px; background: var(--cream-deep); overflow: hidden; }
.ui__meter i { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--teal), var(--gold)); border-radius: 999px; }
.card.is-on .ui__meter i { animation: fill 1.1s var(--ease-soft) both .25s; }
@keyframes fill { from { width: 0; } }
.ui__note { font-size: 12.5px; color: var(--gray); }
.ui__note b { color: var(--ink); }
.beds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.bed {
  border: 1px solid var(--sand-line);
  border-radius: 10px;
  padding: 8px 6px 7px;
  text-align: center;
  font-size: 11.5px; font-weight: 700; color: var(--gray);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.bed i { width: 100%; height: 5px; border-radius: 3px; background: var(--teal); display: block; }
.bed i.free { background: var(--sand); }
.bed.is-full { border-color: var(--gold); color: var(--gold-deep); background: var(--gold-100); }

/* steps */
/* the tail keeps the sticky stage pinned while the last step is being read */
.spine__steps { display: flex; flex-direction: column; padding-bottom: 16vh; }
/* Inactive steps keep full-contrast text (a11y); active is signalled by the
   gold left-accent + gold when-chip + gold bullets + the swapping stage card,
   not by dimming the text. */
.step {
  min-height: 74vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 20px 24px;
  border-left: 2px solid transparent;
  transition: border-color .5s var(--ease);
}
.step.is-on { border-left-color: var(--gold); }
.step__when {
  display: inline-flex; align-items: center;
  align-self: flex-start;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray);
  background: transparent;   /* gray on cream = 5.3:1 (AA); sand was 4.46 */
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  transition: color .4s var(--ease), background .4s var(--ease);
}
.step.is-on .step__when { color: var(--gold-deep); background: var(--gold-100); }
.step h3 {
  font-size: var(--fs-h3);
  line-height: 1.08;
  letter-spacing: -.024em;
}
.step p { margin-top: 16px; max-width: 44ch; color: var(--text-body); }
.step ul { margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.step ul li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  color: var(--text-body);
}
.step ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .52em;
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 2px solid var(--teal-200);
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.step.is-on ul li::before { border-color: var(--gold); background: var(--gold-soft); }

/* ============================================================
   HORIZON
   ============================================================ */
.horizon {
  position: relative;
  overflow: hidden;
  padding: 132px 0 300px;
  background: linear-gradient(178deg,
              var(--paper) 0%,
              #F7ECD2 26%,
              #EFD9A8 48%,
              #D9A96B 66%,
              #8E6B57 82%,
              var(--teal-deep) 100%);
}
.horizon__sky { position: absolute; inset: 0; pointer-events: none; }
.horizon__sun {
  position: absolute;
  left: 38%; top: 46%;
  width: 340px; height: 340px;
  margin-left: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,92,.95) 0%, rgba(242,183,5,.6) 38%, rgba(242,183,5,0) 68%);
  filter: blur(2px);
}
.horizon__copy { position: relative; z-index: 3; text-align: center; }
.horizon__copy h2 {
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--teal-ink);
  margin-top: 18px;
}
.horizon__copy p {
  max-width: 56ch;
  margin: 22px auto 0;
  font-size: var(--fs-lead);
  color: #4B3F31;
}

/* wire + landing swallows */
.wire {
  position: absolute;
  left: 0; right: 0;
  bottom: 176px;
  height: 60px;
  z-index: 3;
  color: rgba(16,44,50,.55);
}
.wire__line { width: 100%; height: 60px; }
.bird {
  position: absolute;
  left: var(--x);
  top: var(--y);
  color: var(--teal-ink);
  /* individual translate, so the landing keyframes keep the transform
     property to themselves. Lifts each bird onto the wire, not through it. */
  translate: -50% -13px;
  transform: translate(var(--fx), var(--fy)) rotate(-16deg) scale(.7);
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .wire.is-landed .bird { animation: land .95s var(--ease-soft) both; animation-delay: var(--dly); }
}
@keyframes land {
  0%   { transform: translate(var(--fx), var(--fy)) rotate(-16deg) scale(.7); opacity: 0; }
  55%  { opacity: 1; }
  78%  { transform: translate(0, -9px) rotate(4deg) scale(1.04); opacity: 1; }
  100% { transform: translate(0, 0) rotate(0) scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .bird { transform: none; opacity: 1; }
}

.horizon__dune {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 220px;
  z-index: 2;
}
.horizon__dune .d1 { fill: #4B3A34; opacity: .55; }
.horizon__dune .d2 { fill: var(--teal-ink); }
.horizon__dune .grass { stroke: var(--teal-ink); stroke-width: 2; fill: none; stroke-linecap: round; opacity: .8; }

/* ============================================================
   FOUNDER NOTE
   ============================================================ */
.note { background: var(--teal-ink); color: var(--cream); padding: 110px 0; }
.note__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: center;
}
.note blockquote { margin: 26px 0 0; }
.note blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.42;
  letter-spacing: -.014em;
  color: var(--cream);
}
.note blockquote p + p { margin-top: 20px; color: rgba(244,240,230,.8); font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.55; }
.note__by { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.note__av {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--teal-ink);
  font-weight: 700;
  font-size: 14px;
}
.note__by b { display: block; font-size: 16px; color: var(--cream); }
.note__by em { display: block; font-style: normal; font-size: 14px; color: rgba(244,240,230,.6); }

.note__visual { position: relative; margin: 0; }
.note__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--sh-4);
}
.chip--note { position: absolute; left: -34px; bottom: -26px; }

/* ============================================================
   FACTS
   ============================================================ */
.facts {
  background: var(--teal-deep);
  color: var(--cream);
  text-align: center;
  padding: 104px 0;
}
.facts__mark { color: var(--gold); margin: 0 auto 18px; }
.facts h2 {
  font-size: var(--fs-h2);
  color: var(--cream);
  letter-spacing: -.028em;
  line-height: 1.04;
}
.facts__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  text-align: left;
}
.facts__row > div { border-top: 1px solid rgba(244,240,230,.18); padding-top: 20px; }
.facts__row b {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.facts__row span { display: block; margin-top: 12px; font-size: 14.5px; color: rgba(244,240,230,.76); }

/* ============================================================
   PRE-FOOTER CTA
   ============================================================ */
.precta { padding: 110px 0; }
.precta__panel {
  position: relative;
  overflow: hidden;
  background: var(--teal);
  /* cream light, not gold: gold over teal turns olive */
  background-image: radial-gradient(circle at 76% 6%, rgba(244,240,230,.18), rgba(244,240,230,0) 52%);
  border-radius: 32px;
  padding: 76px 48px;
  text-align: center;
  box-shadow: var(--sh-3);
}
.precta__mark { color: var(--gold); margin: 0 auto 20px; }
.precta h2 {
  font-size: var(--fs-h2);
  color: var(--cream);
  letter-spacing: -.028em;
  line-height: 1.04;
}
.precta p {
  color: rgba(244,240,230,.86);
  font-size: var(--fs-lead);
  margin: 18px auto 32px;
  max-width: 48ch;
}
.precta__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--teal-ink); color: var(--cream); padding: 76px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand__mark { color: var(--gold); }
.footer .brand__word { color: var(--cream); }
.footer__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(244,240,230,.62);
  margin-top: 16px;
  max-width: 26ch;
}
.footer__h {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14.5px; color: rgba(244,240,230,.72); transition: color .2s; }
.footer ul a:hover { color: var(--cream); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(244,240,230,.14);
  font-size: 13px;
  color: rgba(244,240,230,.62);   /* AA on teal-ink: >= 4.5:1 */
}
.footer__made a { color: rgba(244,240,230,.78); border-bottom: 1px solid rgba(244,240,230,.28); }
.footer__made a:hover { color: var(--cream); }
.footer__made .heart { color: var(--gold); font-style: normal; }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  border: 1px solid rgba(22,58,66,.16);
  border-radius: 13px;
  background: transparent;
  place-items: center;
}
.nav-toggle__bars { display: block; width: 20px; }
.nav-toggle__bars i {
  display: block;
  height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle__bars i:first-child { margin-bottom: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 55;
  flex-direction: column;
  padding: 14px 24px 26px;
  background: var(--paper);
  border-bottom: 1px solid rgba(22,58,66,.12);
  box-shadow: var(--sh-3);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  padding: 14px 2px;
  font-size: 17px; font-weight: 600;
  color: var(--teal-deep);
  border-bottom: 1px solid rgba(22,58,66,.08);
}
.mobile-nav__cta { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-scrim {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(16,44,50,.55);
  backdrop-filter: blur(3px);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .22s var(--ease);
}
.modal-scrim.is-open { opacity: 1; }
.modal-scrim[hidden] { display: none; }
.modal {
  position: relative;
  width: 100%; max-width: 440px;
  background: var(--paper);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--sh-4);
  transform: translateY(14px) scale(.98);
  transition: transform .3s var(--ease-soft);
}
.modal-scrim.is-open .modal { transform: none; }
.modal h3 { font-size: 27px; letter-spacing: -.02em; margin-bottom: 6px; }
.modal .msub { font-size: 15px; color: var(--gray); margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field input {
  font: inherit; font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .16s, box-shadow .16s;
}
.field input:focus { border-color: var(--teal); box-shadow: var(--ring); }
.field-error { margin-top: 4px; font-size: 13.5px; font-weight: 600; color: var(--danger); }
input[aria-invalid="true"] { border-color: var(--danger) !important; box-shadow: 0 0 0 3px rgba(178,58,46,.14); }
.modal__sent { text-align: center; padding: 12px 0; }
.modal__sent .ok {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--success-bg); color: var(--success);
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.modal__sent .btn { margin-top: 22px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: none; border: 0;
  border-radius: 10px;
  color: var(--gray);
}
.modal-close:hover { background: var(--paper-deep); color: var(--ink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .wrap { padding: 0 26px; }
  .hero__grid { grid-template-columns: 1fr; gap: 72px; }
  .hero .sub { max-width: 54ch; }
  .strip { left: -14px; bottom: -34px; width: 300px; }
  .chip--hero { right: -8px; }
  .spine__grid { display: block; margin-top: 48px; }
  .spine__stagewrap {
    position: sticky;
    top: var(--nav-h);
    z-index: 4;
    background: var(--paper);
    padding: 16px 0 18px;
  }
  .spine__stage { position: static; height: 300px; gap: 14px; }
  /* no focus dimming once the steps are a plain stack */
  .step { min-height: 62vh; opacity: 1; }
  .note__grid { grid-template-columns: 1fr; gap: 48px; }
  .note__visual img { aspect-ratio: 16 / 11; }
  .chip--note { left: 14px; bottom: -22px; }
  .facts__row { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 1000px) {
  .nav, .hdr__cta, .lang-switch { display: none; }
  .lang-switch--mobile { display: flex; }
  .nav-toggle { display: grid; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 56px 0 84px; }
  .hero__cta .btn { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .strip { position: static; width: 100%; margin-top: 18px; box-shadow: var(--sh-2); }
  .chip--hero { position: static; margin-top: 14px; display: flex; }
  .photo--hero { transform: none; }
  .spine { padding: 72px 0 84px; }
  .spine__stage { height: 232px; }
  .card__ui { left: 12px; right: 12px; bottom: 12px; }
  .ui__body { padding: 9px; }
  .row { font-size: 12.5px; padding: 5px 7px; }
  .horizon { padding: 88px 0 220px; }
  .horizon__sun { width: 230px; height: 230px; margin-left: -115px; top: 58%; }
  .wire { bottom: 130px; }
  .horizon__dune { height: 160px; }
  .note { padding: 76px 0; }
  .facts { padding: 76px 0; }
  .facts__row { grid-template-columns: 1fr; gap: 22px; margin-top: 40px; }
  .precta { padding: 72px 0; }
  .precta__panel { padding: 52px 24px; border-radius: 24px; }
  .precta__cta .btn { width: 100%; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .modal { padding: 28px 22px; }
}

/* ---- Reduced motion: nothing moves, everything still reads ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
