/* ============================================================
   Casa Rio Elisa Nature Farm — design system
   Palette: deep forest, warm cream, terracotta rust, capiz gold
   Type: Fraunces (display) · DM Sans (text/UI)
   Spacing: 8px system
   ============================================================ */

:root {
  --forest-950: #0a1f16;
  --forest-900: #0e271c;
  --forest-800: #16382a;
  --forest-700: #1e4a37;
  --cream-50:  #faf7f0;
  --cream-100: #f6f2e9;
  --cream-200: #efe9dc;
  --cream-300: #e3dbc9;
  --rust-500:  #b0512f;
  --rust-600:  #9a4527;
  --gold-400:  #d9a441;
  --gold-200:  #e9cf9a;
  --ink-900:   #1c221d;
  --ink-600:   #47524a;
  --ink-400:   #6b756d;

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-text: "DM Sans", -apple-system, "Helvetica Neue", sans-serif;

  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 40px; --s-6: 48px; --s-8: 64px; --s-10: 80px;
  --s-12: 96px; --s-16: 128px; --s-20: 160px;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --shadow-soft: 0 8px 24px rgba(14, 39, 28, .08), 0 2px 8px rgba(14, 39, 28, .05);
  --shadow-lift: 0 24px 64px rgba(14, 39, 28, .18), 0 8px 24px rgba(14, 39, 28, .10);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --dur: .9s;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--rust-500); color: var(--cream-50); }

/* ---------- Type scale ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 340;
  font-variation-settings: "opsz" 100;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 320; }

.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rust-500);
  margin-bottom: var(--s-3);
}
.kicker-light { color: var(--gold-200); }

.lede {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-600);
  max-width: 56ch;
}
.body { color: var(--ink-600); max-width: 58ch; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out),
              background-color .35s ease, color .35s ease, border-color .35s ease;
  will-change: transform;
  overflow: hidden;
}
.btn::after {           /* sheen */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.28) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }
.btn .arrow { transition: transform .4s var(--ease-out); }
.btn:hover .arrow { transform: translate(2px, -1px); }

.btn-rust {
  background: var(--rust-500);
  color: var(--cream-50);
  box-shadow: 0 8px 24px rgba(176, 81, 47, .35);
}
.btn-rust:hover { background: var(--rust-600); box-shadow: 0 12px 32px rgba(176, 81, 47, .45); }

.btn-cream { background: var(--cream-100); color: var(--forest-900); box-shadow: var(--shadow-lift); }
.btn-cream:hover { background: #fff; }

.btn-ghost {
  color: var(--cream-50);
  border: 1px solid rgba(250, 247, 240, .4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(250, 247, 240, .07);
}
.btn-ghost:hover { border-color: rgba(250, 247, 240, .8); background: rgba(250, 247, 240, .14); }

.btn-sm { padding: 11px 22px; font-size: 13.5px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Sections ---------- */
/* Cream sections carry a whisper of Vigan tile — etched quatrefoil line work.
   The pattern lives on a drift layer that lags the scroll (transform-only). */
.section-cream {
  position: relative;
  isolation: isolate;
  background-color: var(--cream-100);
  overflow: clip;
}
.section-cream::before {
  content: "";
  position: absolute;
  inset: -140px 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%2316382a' stroke-opacity='.036'%3E%3Crect x='7' y='7' width='126' height='126' rx='3'/%3E%3Ccircle cx='0' cy='0' r='18'/%3E%3Ccircle cx='140' cy='0' r='18'/%3E%3Ccircle cx='0' cy='140' r='18'/%3E%3Ccircle cx='140' cy='140' r='18'/%3E%3Cpath d='M70 28 C84 42 84 56 70 70 C56 56 56 42 70 28 Z'/%3E%3Cpath d='M70 112 C84 98 84 84 70 70 C56 84 56 98 70 112 Z'/%3E%3Cpath d='M28 70 C42 84 56 84 70 70 C56 56 42 56 28 70 Z'/%3E%3Cpath d='M112 70 C98 84 84 84 70 70 C84 56 98 56 112 70 Z'/%3E%3Ccircle cx='70' cy='70' r='7'/%3E%3C/g%3E%3Ccircle cx='70' cy='70' r='2.5' fill='%23b0512f' fill-opacity='.045'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  transform: translate3d(0, var(--bg-drift, 0px), 0);
  will-change: transform;
}
.section-dark { background: var(--forest-900); color: var(--cream-100); }

.section-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 14px clamp(14px, 2.5vw, 28px);
  transition: transform .55s var(--ease-out);
}
.nav.is-hidden { transform: translateY(-115%); }

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  transition: background-color .45s ease, box-shadow .45s ease, backdrop-filter .45s ease;
}
.nav.is-solid .nav-inner {
  background: rgba(250, 247, 240, .82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 8px 32px rgba(14, 39, 28, .12), inset 0 0 0 1px rgba(255,255,255,.5);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-50); }
.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.05;
  color: var(--cream-50);
  display: flex; flex-direction: column;
  transition: color .45s ease;
}
.brand-name small {
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .75;
  margin-top: 3px;
}
.nav.is-solid .brand-name { color: var(--forest-900); }

.nav-links { display: flex; gap: clamp(16px, 2.5vw, 36px); }
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-50);
  padding: 8px 2px;
  transition: color .45s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 4px;
  height: 1.5px;
  background: currentColor;
  transition: right .4s var(--ease-out);
}
.nav-links a:hover::after { right: 0; }
.nav.is-solid .nav-links a { color: var(--forest-900); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(250, 247, 240, .12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  width: 18px; height: 1.8px;
  background: var(--cream-50);
  transition: transform .4s var(--ease-out), background-color .45s ease;
}
.nav.is-solid .menu-toggle { background: rgba(14, 39, 28, .08); }
.nav.is-solid .menu-toggle span { background: var(--forest-900); }
body.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(10, 31, 22, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility 0s .5s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transition: opacity .5s ease; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: var(--s-4); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 48px);
  color: var(--cream-100);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.mobile-menu .btn { margin-top: var(--s-3); opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms); }
body.menu-open .mobile-menu a,
body.menu-open .mobile-menu .btn { opacity: 1; transform: none; }

/* ============================================================
   Hero — scroll-scrubbed camera flight (scroll-world engine)
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

#world.flight {
  --sw-bg: var(--forest-950);
  --sw-ink: var(--cream-50);
  --sw-ink-soft: rgba(250, 247, 240, .82);
  --sw-accent: var(--gold-200);
  --sw-font-display: var(--font-display);
  --sw-font-body: var(--font-text);
}
/* The site supplies its own nav and brand chrome. */
#world .sw-bar, #world .sw-nav, #world .sw-topcta { display: none !important; }
/* Match the site's button language. */
#world .sw-btn {
  font-family: var(--font-text);
  font-weight: 600;
  border-radius: 999px;
  padding: 16px 32px;
}
#world .sw-btn--primary {
  background: var(--rust-500);
  color: var(--cream-50);
  box-shadow: 0 8px 24px rgba(176, 81, 47, .35);
}
#world .sw-copy__title {
  font-family: var(--font-display);
  font-weight: 330;
  letter-spacing: -0.015em;
}

/* Portrait phones: the flight is a 16:9 film, and `cover` would crop away ~60%
   of every frame — exactly the wide architecture the flight exists to show. Letterbox
   instead so the whole composition survives. Switch these back to `cover` for a
   full-bleed (but heavily cropped) look, or replace with a native 9:16 render. */
@media (max-width: 860px) and (orientation: portrait) {
  /* The letterbox bands around the film carry the site's Vigan tile motif
     (cream line work, whisper-faint) plus a soft capiz glow behind the band —
     so the dark area reads as a composed cinema wall, not empty space. */
  #world .sw-scene {
    background-color: var(--forest-950);
    background-image:
      radial-gradient(72% 34% at 50% 42%, rgba(233, 207, 154, .10), transparent 72%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23f6f2e9' stroke-opacity='.05'%3E%3Crect x='7' y='7' width='126' height='126' rx='3'/%3E%3Ccircle cx='0' cy='0' r='18'/%3E%3Ccircle cx='140' cy='0' r='18'/%3E%3Ccircle cx='0' cy='140' r='18'/%3E%3Ccircle cx='140' cy='140' r='18'/%3E%3Cpath d='M70 28 C84 42 84 56 70 70 C56 56 56 42 70 28 Z'/%3E%3Cpath d='M70 112 C84 98 84 84 70 70 C56 84 56 98 70 112 Z'/%3E%3Cpath d='M28 70 C42 84 56 84 70 70 C56 56 42 56 28 70 Z'/%3E%3Cpath d='M112 70 C98 84 84 84 70 70 C84 56 98 56 112 70 Z'/%3E%3Ccircle cx='70' cy='70' r='7'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%, 120px 120px;
  }
  #world .sw-scene__video,
  #world .sw-scene img {
    object-fit: contain;
    transform: none !important;
  }
}

/* ============================================================
   Hero (legacy still hero — retained for reference/fallback)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream-50);
  overflow: clip;
  isolation: isolate;
}

.hero-media { position: absolute; inset: 0; z-index: -1; background: var(--forest-950); }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: 50% 42%;
  transform: scale(1.14);
  opacity: 0;
  transition: transform 2.6s var(--ease-out), opacity 1.4s ease;
  will-change: transform;
}
body:not([data-loading]) .hero-img { transform: scale(1.045); opacity: 1; }

/* Living sky — cinemagraph loop fades in over the photo once it can play */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 50% 42%;
  transform: scale(1.045);
  opacity: 0;
  transition: opacity 1.6s ease;
  pointer-events: none;
}
.hero-video.is-live { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(56% 42% at 68% 30%, rgba(233, 207, 154, .22), transparent 70%),
    radial-gradient(40% 34% at 22% 74%, rgba(176, 81, 47, .16), transparent 70%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

/* Film grain — SVG noise, soft-light blend, discrete filmic jitter */
.hero-grain {
  position: absolute;
  inset: -120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  mix-blend-mode: soft-light;
  opacity: .42;
  pointer-events: none;
  animation: grain-jitter 1.6s steps(1) infinite;
}
@keyframes grain-jitter {
  0%   { transform: translate(0, 0); }
  12%  { transform: translate(-42px, 26px); }
  25%  { transform: translate(28px, -34px); }
  37%  { transform: translate(-18px, -44px); }
  50%  { transform: translate(46px, 18px); }
  62%  { transform: translate(-34px, -8px); }
  75%  { transform: translate(12px, 38px); }
  87%  { transform: translate(-24px, 12px); }
  100% { transform: translate(0, 0); }
}

/* Time-of-day grade — a single wash whose color follows the visitor's clock */
.hero-grade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 2.5s ease;
}
.hero[data-grade="dawn"] .hero-grade {
  opacity: 1;
  background: linear-gradient(180deg, rgba(255, 189, 158, .38), rgba(133, 156, 178, .2) 55%, rgba(255, 214, 170, .18));
}
.hero[data-grade="golden"] .hero-grade {
  opacity: 1;
  background: linear-gradient(205deg, rgba(255, 178, 102, .52) 0%, rgba(214, 120, 60, .3) 45%, rgba(60, 60, 90, .2) 100%);
}
.hero[data-grade="dusk"] .hero-grade {
  opacity: 1;
  background: linear-gradient(195deg, rgba(226, 132, 120, .4) 0%, rgba(122, 88, 138, .3) 55%, rgba(46, 52, 96, .32) 100%);
}
.hero[data-grade="night"] .hero-grade {
  opacity: 1;
  mix-blend-mode: multiply;
  background: linear-gradient(180deg, rgba(52, 76, 110, .52), rgba(18, 32, 52, .6));
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 22, .46) 0%, rgba(10, 31, 22, 0) 30%),
    linear-gradient(100deg, rgba(10, 31, 22, .55) 0%, rgba(10, 31, 22, .22) 42%, rgba(10, 31, 22, 0) 68%),
    linear-gradient(0deg, rgba(10, 31, 22, .85) 0%, rgba(10, 31, 22, .5) 34%, rgba(10, 31, 22, .16) 58%, rgba(10, 31, 22, 0) 78%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--s-16) + 40px) var(--gutter) var(--s-8);
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 330;
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 12ch;
  text-shadow: 0 2px 40px rgba(10, 31, 22, .4);
}
.hero-copy h1 em { font-style: italic; font-weight: 300; color: var(--gold-200); }
.hero-sub {
  margin-top: var(--s-3);
  max-width: 46ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(250, 247, 240, .88);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-5); }

.hero-rail {
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter) var(--s-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, .6);
}
.rail-scroll {
  flex: 1;
  max-width: 420px;
  height: 1px;
  background: rgba(250, 247, 240, .22);
  position: relative;
  overflow: hidden;
}
.rail-scroll i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold-200), transparent);
  animation: rail-sweep 3.2s var(--ease-in-out) infinite;
}
@keyframes rail-sweep {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* Foreground depth plane — the railing sits in front of the headline.
   The wrapper carries a slow idle sway so the depth reads without a pointer. */
.hero-fg-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  animation: fg-sway 12s var(--ease-in-out) infinite alternate;
  will-change: transform;
}
@keyframes fg-sway {
  from { transform: translate3d(-6px, 3px, 0); }
  to   { transform: translate3d(6px, -3px, 0); }
}
.hero-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 50% 42%;
  transform: scale(1.14);
  opacity: 0;
  transition: transform 2.6s var(--ease-out), opacity 1.4s ease;
  will-change: transform;
  pointer-events: none;
}
body:not([data-loading]) .hero-fg { transform: scale(1.062); opacity: 1; }

.hero-sub, .hero-cta { position: relative; z-index: 3; }
.hero-rail { z-index: 3; }

/* hero load choreography */
.hero-line {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out), filter 1.1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
body:not([data-loading]) .hero-line { opacity: 1; transform: none; filter: none; }

/* ============================================================
   Story
   ============================================================ */
.story { padding: var(--s-20) 0; }
.story-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(var(--s-6), 6vw, var(--s-16));
  align-items: center;
}
.story-text .lede { margin-top: var(--s-4); }
.story-text .body { margin-top: var(--s-3); }

.stats {
  display: flex;
  gap: clamp(var(--s-4), 4vw, var(--s-8));
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid var(--cream-300);
}
.stat-num {
  display: block;
  overflow: hidden;
}
.stat-num b {
  display: block;
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--forest-800);
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
  transition-delay: inherit;
}
.stats .is-visible .stat-num b { transform: none; }
.stat-label {
  display: block;
  margin-top: var(--s-1);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-400);
  line-height: 1.5;
}

.story-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5.4;
}
.story-figure img {
  width: 100%; height: 112%;
  object-fit: cover;
  will-change: transform;
}
.story-figure figcaption {
  position: absolute;
  left: var(--s-3); right: var(--s-3); bottom: var(--s-3);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: rgba(10, 31, 22, .45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--cream-100);
  font-size: 13px;
  letter-spacing: .04em;
}

/* ============================================================
   Portal (chandelier → Komedor)
   ============================================================ */
.portal-track { height: 340vh; }
.portal-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: clip;
}
.portal-room {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}
.portal-stage::before {  /* room dim — releases as the frame opens */
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: var(--forest-950);
  opacity: var(--portal-dim, .55);
  pointer-events: none;
}
.portal-stage::after {   /* legibility scrim over room */
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(10, 31, 22, .62), rgba(10, 31, 22, .1) 52%, rgba(10, 31, 22, .3));
  pointer-events: none;
}
.portal-frame {
  position: absolute; inset: 0;
  clip-path: inset(18% 34% 18% 34% round 32px);
  will-change: clip-path;
  z-index: 2;
}
@media (max-width: 700px) {
  .portal-frame { clip-path: inset(20% 12% 20% 12% round 24px); }
}
.portal-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform, opacity;
  transform: scale(1.06);
}
.portal-caption {
  position: absolute;
  z-index: 3;
  left: 0; right: 0;
  bottom: clamp(var(--s-6), 9vh, var(--s-12));
  text-align: center;
  padding: 0 var(--gutter);
  color: var(--cream-100);
  will-change: opacity, transform;
}
.portal-caption h2 {
  font-family: var(--font-display);
  font-weight: 330;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: var(--s-1) 0 var(--s-2);
  text-shadow: 0 2px 30px rgba(10, 31, 22, .5);
}
.portal-caption h2 em { font-style: italic; color: var(--gold-200); }
.portal-caption p:last-child { color: rgba(250, 247, 240, .82); font-size: 16px; }
.portal-caption-b { opacity: 0; }

.portal-progress {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 120px;
  background: rgba(250, 247, 240, .18);
  border-radius: 2px;
  overflow: hidden;
}
.portal-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-200);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

/* ============================================================
   Stay — bento
   ============================================================ */
.stay { padding: var(--s-20) 0; }
.stay .section-head { margin-bottom: var(--s-8); }
.stay .lede { margin-top: var(--s-4); }

.bento {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 260px;
  gap: var(--s-3);
}
.card { grid-column: span 3; position: relative; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform .7s var(--ease-out), box-shadow .7s var(--ease-out); }
.card-tall { grid-column: span 3; grid-row: span 2; }
.card-wide { grid-column: span 6; }
@media (min-width: 861px) {
  .card { grid-column: span 2; }
  .card-tall { grid-column: span 4; grid-row: span 2; }
  .card-wide { grid-column: span 6; }
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  will-change: transform;
}
.card:hover img { transform: scale(1.06); }
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10, 31, 22, .74) 0%, rgba(10, 31, 22, .12) 46%, transparent 70%);
  transition: opacity .6s ease;
}
.card-copy {
  position: absolute;
  z-index: 1;
  inset: auto 0 0 0;
  padding: var(--s-4);
  color: var(--cream-50);
}
.card-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-200);
  margin-bottom: 6px;
}
.card-copy h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
}
.card-copy p {
  margin-top: 6px;
  font-size: 14.5px;
  color: rgba(250, 247, 240, .85);
  max-width: 40ch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.card:hover .card-copy p { opacity: 1; transform: none; }
.card-arrow {
  position: absolute;
  right: var(--s-3);
  bottom: var(--s-3);
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(250, 247, 240, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 18px;
  transition: background-color .4s ease, transform .5s var(--ease-out);
}
.card:hover .card-arrow { background: var(--rust-500); transform: rotate(-45deg); }

/* ============================================================
   Gather
   ============================================================ */
.gather {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: clip;
  isolation: isolate;
}
.gather-media { position: absolute; inset: 0; z-index: -1; background: var(--forest-950); }
.gather-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s var(--ease-in-out), transform 1.6s var(--ease-out);
}
.gather-img.is-active { opacity: 1; transform: scale(1); }
.gather-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10, 31, 22, .88) 0%, rgba(10, 31, 22, .55) 46%, rgba(10, 31, 22, .18) 100%);
}
.gather-copy {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: var(--s-16) var(--gutter);
}
.gather-copy .display { max-width: 14ch; }

.gather-list { margin-top: var(--s-6); max-width: 560px; }
.gather-list li + li { border-top: 1px solid rgba(250, 247, 240, .14); }
.gather-list button {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) 4px;
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(26px, 3vw, 38px);
  color: rgba(250, 247, 240, .5);
  text-align: left;
  transition: color .45s ease, padding-left .45s var(--ease-out);
}
.gather-list button span {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(250, 247, 240, .45);
  text-align: right;
  max-width: 24ch;
  transition: color .45s ease;
}
.gather-list button:hover,
.gather-list button.is-active { color: var(--cream-50); padding-left: 14px; }
.gather-list button.is-active span,
.gather-list button:hover span { color: var(--gold-200); }
.gather-note {
  margin-top: var(--s-5);
  font-size: 14.5px;
  color: rgba(250, 247, 240, .6);
  font-style: italic;
}

/* ============================================================
   Day timeline
   ============================================================ */
.day { padding: var(--s-20) 0; }
.day .section-head { margin-bottom: var(--s-10); }

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.timeline-line {
  position: absolute;
  left: calc(var(--gutter) + 96px);
  top: 8px; bottom: 8px;
  width: 1.5px;
  background: var(--cream-300);
  overflow: hidden;
  border-radius: 2px;
}
.timeline-line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--rust-500);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: var(--s-6);
  padding: var(--s-4) 0 var(--s-4) 0;
  opacity: .32;
  transform: translateX(0);
  transition: opacity .7s ease;
}
.tl-item.is-active { opacity: 1; }
.tl-item::before {
  content: "";
  position: absolute;
  left: 90.5px;
  top: 42px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cream-100);
  border: 2px solid var(--cream-300);
  transition: border-color .5s ease, background-color .5s ease, transform .5s var(--ease-out);
}
.tl-item.is-active::before { border-color: var(--rust-500); background: var(--rust-500); transform: scale(1.25); }
.tl-time {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--forest-800);
  padding-top: 8px;
}
.tl-body { padding-left: var(--s-6); }
.tl-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--forest-900);
}
.tl-body p { margin-top: 6px; color: var(--ink-600); max-width: 46ch; }

/* ============================================================
   Creed (quote band)
   ============================================================ */
.creed {
  position: relative;
  min-height: 74vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: clip;
  isolation: isolate;
  color: var(--cream-100);
}
.creed-bg {
  position: absolute; inset: -12% 0;
  width: 100%; height: 124%;
  object-fit: cover;
  z-index: -1;
  will-change: transform;
}
.creed::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: rgba(10, 31, 22, .68);
}
.creed-inner { padding: var(--s-16) var(--gutter); }
.creed blockquote p {
  font-family: var(--font-display);
  font-weight: 320;
  font-style: italic;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.15;
  max-width: 22ch;
}
.creed cite {
  display: block;
  margin-top: var(--s-4);
  font-family: var(--font-text);
  font-style: normal;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-200);
}

/* ============================================================
   Visit + FAQ
   ============================================================ */
.visit { padding: var(--s-20) 0; }
.visit-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(var(--s-6), 6vw, var(--s-16));
  align-items: start;
}
.visit-info .body { margin-top: var(--s-4); }
.visit-details { margin: var(--s-6) 0; display: grid; gap: var(--s-4); }
.visit-details dt {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 4px;
}
.visit-details dd { font-size: 16.5px; line-height: 1.55; }
.visit-details a { border-bottom: 1px solid var(--cream-300); transition: border-color .3s ease, color .3s ease; }
.visit-details a:hover { color: var(--rust-500); border-color: var(--rust-500); }

.faq-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: var(--s-3);
  color: var(--forest-900);
}
.faq-item {
  border-top: 1px solid var(--cream-300);
}
.faq-item:last-child { border-bottom: 1px solid var(--cream-300); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) 2px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--forest-900);
  cursor: pointer;
  transition: color .3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--rust-500); }
.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--cream-300);
  transition: background-color .4s ease, border-color .4s ease, transform .5s var(--ease-out);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: var(--forest-900);
  transform: translate(-50%, -50%);
  transition: transform .5s var(--ease-out), background-color .4s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { background: var(--rust-500); border-color: var(--rust-500); transform: rotate(45deg); }
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--cream-50); }
.faq-body {
  overflow: hidden;
}
.faq-body p {
  padding: 0 44px var(--s-3) 2px;
  color: var(--ink-600);
  max-width: 52ch;
}
.faq-body a { color: var(--rust-500); border-bottom: 1px solid currentColor; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream-50);
  overflow: clip;
  isolation: isolate;
}
.cta-bg {
  position: absolute; inset: -12% 0;
  width: 100%; height: 124%;
  object-fit: cover;
  z-index: -1;
  will-change: transform;
}
.cta::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 60% at 50% 62%, rgba(10, 31, 22, .35), rgba(10, 31, 22, .72));
}
.cta-inner { padding: var(--s-16) var(--gutter); }
.cta .display { font-size: clamp(44px, 6.4vw, 92px); text-shadow: 0 2px 40px rgba(10, 31, 22, .45); }
.cta-inner > p {
  margin: var(--s-3) 0 var(--s-6);
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(250, 247, 240, .85);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  isolation: isolate;
  background-color: var(--forest-950);
  color: rgba(250, 247, 240, .78);
  padding: var(--s-12) 0 var(--s-6);
  overflow: clip;
}
.footer::before {
  content: "";
  position: absolute;
  inset: -140px 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23f6f2e9' stroke-opacity='.028'%3E%3Crect x='7' y='7' width='126' height='126' rx='3'/%3E%3Ccircle cx='0' cy='0' r='18'/%3E%3Ccircle cx='140' cy='0' r='18'/%3E%3Ccircle cx='0' cy='140' r='18'/%3E%3Ccircle cx='140' cy='140' r='18'/%3E%3Cpath d='M70 28 C84 42 84 56 70 70 C56 56 56 42 70 28 Z'/%3E%3Cpath d='M70 112 C84 98 84 84 70 70 C56 84 56 98 70 112 Z'/%3E%3Cpath d='M28 70 C42 84 56 84 70 70 C56 56 42 56 28 70 Z'/%3E%3Cpath d='M112 70 C98 84 84 84 70 70 C84 56 98 56 112 70 Z'/%3E%3Ccircle cx='70' cy='70' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
  transform: translate3d(0, var(--bg-drift, 0px), 0);
  will-change: transform;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-6);
}
.footer-brand img { border-radius: 50%; background: var(--cream-50); margin-bottom: var(--s-3); }
.footer-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream-100);
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.footer-name small {
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: 4px;
}
.footer-tag { margin-top: var(--s-2); font-size: 14px; opacity: .65; max-width: 30ch; }
.footer-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-200);
  margin-bottom: var(--s-2);
}
.footer-grid a { display: block; padding: 3px 0; transition: color .3s ease; }
.footer-grid a:hover { color: var(--cream-50); }
.footer-grid p { font-size: 15px; line-height: 1.7; }
.copyright {
  max-width: var(--container);
  margin: var(--s-8) auto 0;
  padding: var(--s-4) var(--gutter) 0;
  border-top: 1px solid rgba(250, 247, 240, .1);
  font-size: 12.5px;
  letter-spacing: .06em;
  opacity: .5;
}

/* ============================================================
   Booking dialog
   ============================================================ */
.booking {
  border: none;
  padding: 0;
  margin: auto;   /* restore centering removed by the universal reset */
  inset: 0;
  width: min(860px, calc(100vw - 32px));
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-50);
  box-shadow: 0 40px 120px rgba(10, 31, 22, .4);
  grid-template-columns: 5fr 7fr;
}
.booking[open] {
  display: grid;
  animation: booking-in .5s var(--ease-out) backwards;
}
@keyframes booking-in {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
}
.booking::backdrop {
  background: rgba(10, 31, 22, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: backdrop-in .45s ease backwards;
}
@keyframes backdrop-in {
  from { opacity: 0; }
}
.booking-visual {
  position: relative;
  min-height: 100%;
  background: var(--forest-900);
}
.booking-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .92;
}
.booking-visual span {
  position: absolute;
  left: var(--s-3); bottom: var(--s-3); right: var(--s-3);
  color: var(--cream-100);
  font-size: 13px;
  letter-spacing: .06em;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(10, 31, 22, .5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.booking-panel { padding: clamp(var(--s-4), 4vw, var(--s-8)); }
.booking-panel h2 {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  color: var(--forest-900);
}
.booking-note { margin-top: var(--s-2); color: var(--ink-600); font-size: 15px; }
.booking form { margin-top: var(--s-5); display: grid; gap: var(--s-3); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.booking label {
  display: grid;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.booking input, .booking select {
  font: 500 15px/1.4 var(--font-text);
  color: var(--ink-900);
  padding: 13px 14px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.booking input:focus, .booking select:focus {
  outline: none;
  border-color: var(--rust-500);
  box-shadow: 0 0 0 3px rgba(176, 81, 47, .15);
}
.booking small { color: var(--ink-400); font-size: 12.5px; text-align: center; }
.booking-close {
  position: absolute;
  z-index: 2;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250, 247, 240, .9);
  color: var(--forest-900);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), background-color .3s ease;
}
.booking-close:hover { transform: rotate(90deg); background: #fff; }

/* ============================================================
   Reveal system
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-img {
  opacity: 0;
  transform: translateY(40px) scale(.97);
  filter: blur(4px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out), filter 1.1s var(--ease-out),
              box-shadow .7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-img.is-visible { opacity: 1; transform: none; filter: none; }
.card.reveal-img.is-visible:hover { transform: translateY(-6px); }

/* split-word reveal */
[data-split] .word {
  display: inline-block;
  overflow: clip;
  vertical-align: bottom;
}
[data-split] .word > span {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 1s var(--ease-out);
  transition-delay: calc(var(--w, 0) * 55ms);
}
[data-split].is-visible .word > span { transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-figure { max-width: 560px; aspect-ratio: 4 / 5; }
  .visit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .menu-toggle { display: flex; }

  .bento { grid-auto-rows: 220px; }
  .card, .card-tall, .card-wide { grid-column: span 6; }
  .card-tall { grid-row: span 2; }
  .card-copy p { opacity: 1; transform: none; }

  .stats { flex-wrap: wrap; gap: var(--s-4); }

  .timeline-line { left: calc(var(--gutter) + 8px); }
  .tl-item { grid-template-columns: 1fr; gap: var(--s-1); padding-left: var(--s-5); }
  .tl-item::before { left: 2.5px; top: 14px; }
  .tl-time { font-size: 17px; padding-top: 0; color: var(--rust-500); }
  .tl-body { padding-left: 0; }

  .gather { min-height: 100svh; }
  .gather-scrim { background: linear-gradient(0deg, rgba(10,31,22,.9) 0%, rgba(10,31,22,.55) 55%, rgba(10,31,22,.3) 100%); }
  .gather-list button span { display: none; }

  .booking { grid-template-columns: 1fr; max-height: calc(100svh - 32px); overflow: auto; }
  .booking-visual { min-height: 180px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portal-progress { display: none; }
}

@media (max-width: 520px) {
  .hero-rail span:last-child { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* ============================================================
   Reduced motion — everything visible, nothing moves
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-line, .reveal, .reveal-img { opacity: 1; transform: none; filter: none; }
  .hero-img, .hero-fg { opacity: 1; transform: none; }
  [data-split] .word > span { transform: none; }
  .stats .stat-num b { transform: none; }
  .portal-track { height: auto; }
  .portal-stage { position: relative; height: 100svh; }
  .portal-frame { clip-path: inset(12% 26% 12% 26% round 24px); }
  .portal-caption-b { display: none; }
  .hero-particles { display: none; }
  .timeline-line i, .portal-progress i { transform: none; }
  .tl-item { opacity: 1; }
}
