/* =====================================================================
   BRDY BLUE — Longevity Resort
   Editorial experience. Mist as canvas, blue only as a guiding thread.
   Type: Fraunces (display) · Inter (body) · IBM Plex Mono (data)
   ===================================================================== */

:root {
  /* Palette — mist dominant, forest & charcoal for depth, blue accent, amber = light */
  --mist:        #dde3e4;
  --mist-2:      #d3dadb;
  --mist-deep:   #c3ccce;
  --paper:       #eaeeee;
  --ink:         #10171a;   /* charcoal blue  */
  --forest:      #1b2b22;   /* forest green   */
  --forest-2:    #22362b;
  --blue:        #4d87b8;
  --blue-light:  #5b9bd5;
  --amber:       #c98a3b;   /* interior light only */

  --ink-70: rgba(16,23,26,.70);
  --ink-55: rgba(16,23,26,.55);
  --ink-40: rgba(16,23,26,.40);
  --ink-14: rgba(16,23,26,.14);
  --ink-08: rgba(16,23,26,.08);
  --paper-70: rgba(233,238,238,.72);
  --paper-45: rgba(233,238,238,.45);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --edge: clamp(1.5rem, 6vw, 8rem);
  --measure: 64ch;
  --ease: cubic-bezier(.22,.61,.36,1);

  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--mist);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Fine grain — fixed, non-interactive, never over scrolling content */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: multiply;
  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='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }

::selection { background: var(--blue); color: var(--paper); }

/* ---------------------------------------------------------------- Type */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 7.2vw, 6.6rem);
  line-height: 0.98;
}
h1 span {
  font-style: italic;
  font-weight: 400;
  color: var(--blue-light);
}

h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.01em;
}

/* Single source of truth for every section subtitle/eyebrow label.
   All ".kicker" labels across the page (incl. "Investiční model") render
   at exactly this size — do not override font-size per section. */
.eyebrow, .kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before, .kicker::before {
  content: "";
  width: 2.2em;
  height: 1px;
  background: currentColor;
  opacity: .8;
}
.kicker.dark { color: var(--blue-light); }

.mono { font-family: var(--font-mono); }

/* ------------------------------------------------------------- Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--edge);
  color: var(--paper);
  transition: background .5s var(--ease), color .5s var(--ease),
              border-color .5s var(--ease), backdrop-filter .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--mist) 82%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  color: var(--ink);
  border-bottom-color: var(--ink-14);
}
.brand {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.42em;
  font-size: 0.82rem;
  text-decoration: none;
  color: inherit;
  padding-left: 0.42em;
}
.nav {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.6rem);
}
.nav a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  opacity: .78;
  position: relative;
  padding: 0.4em 0;
  transition: opacity .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); }
@media (max-width: 720px) { .nav { display: none; } }

/* --------------------------------------------------- Blue ribbon rail */
.blue-ribbon {
  position: fixed;
  top: 0; left: 0;
  width: 2px;
  height: 100vh;
  z-index: 90;
  pointer-events: none;
  background: var(--ink-08);
}
.blue-ribbon::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(var(--progress, 0));
  transform-origin: top;
  background: linear-gradient(var(--blue-light), var(--blue));
  box-shadow: 0 0 12px color-mix(in srgb, var(--blue) 60%, transparent);
}

/* ------------------------------------------------------------ Layout */
.section {
  padding: clamp(5rem, 12vh, 11rem) var(--edge);
  position: relative;
}
.section-heading { max-width: 46rem; }
.section-heading.narrow { max-width: 40rem; margin-inline: auto; text-align: center; }
.section-heading.narrow .kicker { justify-content: center; }
.section-heading h2 { margin: 1.1rem 0 1.2rem; }
.section-heading p { color: var(--ink-70); font-size: 1.05rem; max-width: 42ch; }
.section-heading.narrow p { margin-inline: auto; }

.body-copy, .statement { max-width: var(--measure); }

/* --------------------------------------------------- Image backdrops */
.image-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--paper);
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
@media (max-width: 820px) { .image-section { background-attachment: scroll; } }
.scrim { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.scrim-hero { background:
  linear-gradient(180deg, rgba(16,23,26,.55) 0%, rgba(16,23,26,.18) 32%, rgba(16,23,26,.72) 100%); }
.scrim-left { background:
  linear-gradient(90deg, rgba(16,23,26,.86) 0%, rgba(16,23,26,.5) 44%, rgba(16,23,26,.05) 100%); }
.scrim-deep { background:
  linear-gradient(0deg, rgba(16,23,26,.9) 0%, rgba(16,23,26,.35) 55%, rgba(16,23,26,.7) 100%); }

/* ------------------------------------------------------------- 1 Hero */
.hero { align-items: flex-end; padding-bottom: clamp(3.5rem, 9vh, 7rem); }
.hero-content { position: relative; z-index: 1; max-width: 58rem; }
.hero .eyebrow {
  color: #fff;
  background: var(--blue);
  padding: 0.55em 0.95em;
  border-radius: 3px;
  box-shadow: 0 10px 26px -14px rgba(16, 23, 26, .75);
}
.hero .eyebrow::before { display: none; }
.hero h1 { margin: 1.4rem 0 1.6rem; }
.hero h1 span { color: var(--blue-light); }
.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  max-width: 40ch;
  color: rgba(234,238,238,.9);
  font-weight: 300;
  line-height: 1.5;
}
.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  margin-top: 2.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234,238,238,.75);
}
.hero-facts li { display: flex; align-items: center; gap: 1.4rem; }
.hero-facts li:not(:last-child)::after {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue-light);
}

/* --------------------------------------------------------------- CTA */
.cta {
  --c: var(--blue);
  display: inline-block;
  margin-top: 2.2rem;
  padding: 1rem 2.1rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  background: var(--c);
  border: 1px solid var(--c);
  border-radius: 2px;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px color-mix(in srgb, var(--blue) 70%, transparent);
  background: var(--blue-light);
  border-color: var(--blue-light);
}
.cta.ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(234,238,238,.55);
}
.cta.ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  box-shadow: none;
}

/* -------------------------------------------------------- Scroll cue */
.scroll-cue {
  position: absolute;
  right: var(--edge);
  bottom: clamp(2rem, 6vh, 3.5rem);
  z-index: 1;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(234,238,238,.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 3.2rem;
  background: linear-gradient(rgba(234,238,238,.7), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0%,100%{opacity:.3;transform:scaleY(.4);} 50%{opacity:1;transform:scaleY(1);} }

/* ---------------------------------------------------- 2 Manifest */
.manifest { background: var(--mist); text-align: center; }
.manifest-inner { max-width: 52rem; margin-inline: auto; }
.manifest h2 { margin: 1.2rem 0 2.4rem; }
.manifest-lines p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--ink-55);
  transition: color .6s var(--ease);
}
.manifest-lines p + p { margin-top: .4rem; }
.reveal.in .manifest-lines p { color: var(--ink); }
.statement {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  color: var(--blue);
  margin: 2.6rem auto 1.8rem;
  max-width: 30ch;
}
.body-copy { color: var(--ink-70); margin-inline: auto; font-size: 1.05rem; }

/* ------------------------------------------------------ 3 Split (Brdy) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.brdy-section { background: var(--forest); color: var(--paper); }
.brdy-section .kicker { color: var(--blue-light); }
.split-copy h2 { margin: 1.2rem 0 2rem; max-width: 15ch; }
.benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.benefit-list li {
  padding: 1.1rem 0;
  border-top: 1px solid var(--paper-45);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}
.benefit-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  flex: none;
}
.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}
.split-image:hover img { transform: scale(1); }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split-image { aspect-ratio: 3 / 2; }
}

/* --------------------------------------------------- 4 Resort map */
.resort-map { align-items: center; }
.panel {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding: clamp(2rem, 4vw, 3.5rem);
}
.dark-panel { color: var(--paper); }
.dark-panel .kicker { color: var(--blue-light); }
.dark-panel h2 { margin: 1.2rem 0 1.6rem; }
.dark-panel p { color: rgba(234,238,238,.82); max-width: 44ch; }
.dark-panel p + p { margin-top: 1rem; }

/* --------------------------------------------- 5 Why invest (editorial cols) */
.why-invest { background: var(--paper); }
.cards {
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-14);
}
.card {
  padding: 2.4rem 1.8rem 2.4rem 0;
  border-right: 1px solid var(--ink-14);
  position: relative;
}
.card:last-child { border-right: none; }
.card:nth-child(2) { transform: translateY(2.2rem); }
.card:nth-child(3) { transform: translateY(4.4rem); }
.card span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--blue);
}
.card h3 { margin: 1.4rem 0 0.7rem; }
.card p { color: var(--ink-70); font-size: 0.98rem; max-width: 30ch; }
@media (max-width: 820px) {
  .cards { grid-template-columns: 1fr; }
  .card { padding: 1.8rem 0; border-right: none; border-bottom: 1px solid var(--ink-14); transform: none !important; }
  .card:last-child { border-bottom: none; }
}

/* -------------------------------------------------- 6 Investment model */
.investment { background: var(--forest); color: var(--paper); text-align: center; }
.investment .kicker.dark { color: var(--blue-light); }
.investment .section-heading p { color: rgba(234,238,238,.8); }
.metrics {
  margin: clamp(3rem, 8vh, 5rem) auto 2.2rem;
  max-width: 62rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--paper-45);
  border: 1px solid var(--paper-45);
}
.metrics > div {
  background: var(--forest);
  padding: 2.2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.metrics strong {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  color: var(--blue-light);
  letter-spacing: -0.02em;
}
.metrics span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234,238,238,.65);
}
.legal { font-size: 0.74rem; color: rgba(234,238,238,.5); max-width: 60ch; margin-inline: auto; letter-spacing: 0.02em; }
.legal.muted { color: var(--ink-40); }
@media (max-width: 720px) { .metrics { grid-template-columns: repeat(2, 1fr); } }

/* ----------------------------------------------------- 7 Life / day */
.life { align-items: flex-end; padding-bottom: clamp(4rem, 10vh, 7rem); }
.life-copy { position: relative; z-index: 1; max-width: 46rem; }
.life .kicker { color: var(--blue-light); }
.life h2 { margin: 1.2rem 0 2.4rem; }
.day-timeline { list-style: none; counter-reset: none; }
.day-timeline li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(234,238,238,.22);
}
.day-timeline time {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--blue-light);
}
.day-timeline span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(234,238,238,.92);
}

/* --------------------------------------------------- 8 Ribbon story */
.ribbon-story { background: var(--mist-2); overflow: hidden; }
.ribbon-stops {
  margin-top: clamp(3rem, 7vh, 4.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  counter-reset: stop;
}
.ribbon-stops::before {
  content: "";
  position: absolute;
  top: 1.05rem; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue) 8%, var(--blue) 92%, transparent);
  opacity: .6;
}
.ribbon-stops span {
  counter-increment: stop;
  flex: 1 1 auto;
  min-width: 150px;
  padding-top: 2.4rem;
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-70);
  text-align: center;
}
.ribbon-stops span::before {
  content: counter(stop, decimal-leading-zero);
  position: absolute;
  top: 0.35rem; left: 50%;
  transform: translateX(-50%);
  width: 1.4rem; height: 1.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mist-2);
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 0.6rem;
}
@media (max-width: 720px) {
  .ribbon-stops::before { display: none; }
  .ribbon-stops span { flex-basis: 50%; }
}

/* --------------------------------------- 8b Resort map (aerial, full) */
.resort-map-full { background: var(--ink); color: var(--paper); text-align: center; }
.resort-map-full .kicker { color: var(--blue-light); }
.resort-map-full h2 { margin: 1.2rem 0 1.2rem; color: var(--paper); }
.resort-map-full .section-heading p { color: rgba(234, 238, 238, .8); }
.map-figure {
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  max-width: 1360px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(234, 238, 238, .12);
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, .8);
}
.map-figure img { width: 100%; height: auto; display: block; }

/* -------------------------------------------------- 9 Units gallery */
.units { background: var(--mist); }
.unit-variants-figure {
  margin: clamp(2.5rem, 6vh, 4rem) 0 3rem;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--ink-08);
  box-shadow: 0 30px 70px -50px rgba(16, 23, 26, .6);
}
.unit-variants-figure img { width: 100%; height: auto; display: block; }
.unit-variants-figure figcaption {
  padding: 0.85rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-70);
  border-top: 1px solid var(--ink-08);
}
.unit-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.unit-features li {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-70);
  padding: 0.55rem 1rem;
  border: 1px solid var(--ink-14);
  border-radius: 100px;
}

/* ------------------------------------------------------ 10 KODU */
.kodu { background: var(--ink); color: var(--paper); text-align: center; }
.kodu .kicker { color: var(--blue-light); }
.kodu .section-heading p { color: rgba(234,238,238,.78); }
.trust-row {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.trust-row span {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(234,238,238,.55);
}

/* --------------------------------------------------- 11 Timeline */
.timeline-section { background: var(--paper); }
.timeline {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ink-14);
}
.timeline > div {
  padding: 2rem 1.2rem 2rem 0;
  border-right: 1px solid var(--ink-14);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.timeline > div:last-child { border-right: none; }
.timeline strong {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1rem;
  color: var(--blue);
  letter-spacing: 0.02em;
}
.timeline span { color: var(--ink-70); font-size: 0.92rem; }
@media (max-width: 820px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline > div { border-right: none; border-bottom: 1px solid var(--ink-14); padding: 1.4rem 0; }
  .timeline > div:last-child { border-bottom: none; }
}

/* ------------------------------------------------------- 12 Final CTA */
.final-cta { align-items: center; }
.final-card {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  color: var(--paper);
}
.final-card .kicker { color: var(--blue-light); }
.final-card h2 { margin: 1.2rem 0 1.4rem; }
.final-card > p { color: rgba(234,238,238,.85); max-width: 46ch; }
.contact-form {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.4rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234,238,238,.7);
}
.contact-form label:nth-child(5),   /* message */
.contact-form button { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--paper);
  background: rgba(234,238,238,.06);
  border: 1px solid rgba(234,238,238,.28);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(234,238,238,.4); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  background: rgba(234,238,238,.1);
}
.contact-form button { justify-self: start; margin-top: 0.4rem; }
.hidden { position: absolute; left: -9999px; }
@media (max-width: 640px) { .contact-form { grid-template-columns: 1fr; } }

/* ------------------------------------------------------ Scroll reveal */
.reveal, [class*="section"] .eyebrow, .section-heading, .hero-content,
.manifest-inner, .split-copy, .split-image, .panel, .cards, .metrics,
.day-timeline, .ribbon-stops, .map-figure, .unit-variants-figure,
.unit-features, .trust-row, .timeline, .final-card, .legal {
  --y: 26px;
}
.reveal {
  opacity: 0;
  transform: translateY(var(--y));
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------- Footer note */
footer.colophon {
  padding: 3rem var(--edge);
  background: var(--ink);
  color: rgba(234,238,238,.5);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(234,238,238,.1);
}
