/* ============================================================
   1980 COMPANIES — DESIGN TOKENS
============================================================ */
:root{
  --f-bg:#ffffff;
  --f-fg:#0a0a0a;
  --f-gray:#f3f3f1;
  --f-gray-2:#e7e6e2;
  --f-line:#d9d8d3;
  --f-muted:#68655f;

  --c-bg:#0a0a0a;
  --c-fg:#ffffff;
  --c-gray:#151515;
  --c-gray-2:#1e1e1e;
  --c-line:#2c2c2c;
  --c-muted:#9c9c9c;

  --accent:#c6a15b;
  --accent-light:#d8b876;

  --font-display:'Space Grotesk', 'Inter', sans-serif;
  --font-body:'Inter', sans-serif;
  --font-mono:'JetBrains Mono', 'Space Grotesk', monospace;

  --ease:cubic-bezier(.16,.84,.44,1);
  --ease-soft:cubic-bezier(.22,.61,.36,1);

  --container:1320px;
  --nav-h:84px;

  color-scheme: light;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  font-family:var(--font-body);
  background:var(--f-bg);
  color:var(--f-fg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; background:none; border:none; cursor:pointer; }
ul{ list-style:none; }
input,select,textarea{ font-family:inherit; font-size:15px; }

.container{ max-width:var(--container); margin:0 auto; padding:0 32px; }

.grain-overlay{
  position:fixed; inset:0; pointer-events:none; z-index:9998; opacity:.025; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.progress-bar{ position:fixed; top:0; left:0; height:3px; width:0%; background:var(--accent); z-index:9999; }

/* ============================================================
   NAVIGATION
============================================================ */
.site-nav{
  position:fixed; top:18px; left:50%; transform:translateX(-50%);
  width:calc(100% - 40px); max-width:1240px;
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 22px; border-radius:999px;
  background:rgba(255,255,255,.72); backdrop-filter:blur(16px) saturate(160%);
  border:1px solid rgba(0,0,0,.08);
  z-index:900; transition:background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow:0 10px 30px -18px rgba(0,0,0,.25);
}
body[data-theme="creations"] .site-nav,
body[data-theme="hero"] .site-nav{
  background:rgba(12,12,12,.6); border-color:rgba(255,255,255,.1); color:#fff;
}
body[data-theme="hero"] .site-nav{ background:rgba(255,255,255,.08); }

.nav-logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:16px; letter-spacing:.02em; white-space:nowrap; }
.nav-logo span{ display:block; font-size:9px; letter-spacing:.32em; font-weight:500; opacity:.6; }
.nav-logo-img{ height:34px; width:auto; display:block; }

.nav-links{ display:flex; gap:28px; font-size:13.5px; font-weight:500; }
.nav-links a{ position:relative; padding:4px 0; opacity:.75; transition:opacity .25s var(--ease); }
.nav-links a:hover{ opacity:1; }
.nav-links a::after{ content:''; position:absolute; left:0; bottom:-3px; width:0; height:1px; background:currentColor; transition:width .3s var(--ease); }
.nav-links a:hover::after{ width:100%; }
.nav-links a.active{ opacity:1; color:var(--accent); }
.nav-links a.active::after{ width:100%; background:var(--accent); }
.mobile-menu a.active{ color:var(--accent); }

.nav-cta{
  font-size:12.5px; font-weight:600; letter-spacing:.02em; padding:11px 22px; border-radius:999px;
  background:var(--f-fg); color:#fff; white-space:nowrap; transition:transform .3s var(--ease), background .3s var(--ease);
}
body[data-theme="creations"] .nav-cta,
body[data-theme="hero"] .nav-cta{ background:var(--accent); color:#111; }
.nav-cta:hover{ transform:translateY(-2px); }

.nav-burger{ display:none; flex-direction:column; gap:5px; width:26px; }
.nav-burger span{ height:2px; width:100%; background:currentColor; border-radius:2px; transition:transform .3s var(--ease), opacity .3s var(--ease); }

.mobile-menu{
  position:fixed; inset:0; background:#0a0a0a; color:#fff; z-index:1200;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center; gap:26px; padding:40px;
  transform:translateY(-100%); transition:transform .5s var(--ease); opacity:0;
}
.mobile-menu.open{ transform:translateY(0); opacity:1; }
.mobile-menu a{ font-family:var(--font-display); font-size:30px; font-weight:600; }
.mobile-menu .mobile-cta{ margin-top:12px; padding:14px 26px; border-radius:999px; background:var(--accent); color:#111; font-size:16px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn{
  display:inline-flex; align-items:center; gap:10px; font-size:13.5px; font-weight:600; letter-spacing:.02em;
  padding:15px 28px; border-radius:999px; white-space:nowrap; cursor:pointer;
  transition:transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover{ transform:translateY(-3px); }
.btn .arrow{ width:14px; height:9px; position:relative; display:inline-block; }
.btn .arrow::before,.btn .arrow::after{ content:''; position:absolute; background:currentColor; }
.btn .arrow::before{ width:100%; height:1.5px; top:3.5px; }
.btn .arrow::after{ width:7px; height:7px; border-top:1.5px solid currentColor; border-right:1.5px solid currentColor; right:0; top:0px; transform:rotate(45deg); background:none; }

.btn-solid{ background:var(--f-fg); color:#fff; }
.btn-solid:hover{ background:var(--accent); color:#111; box-shadow:0 16px 30px -14px rgba(0,0,0,.35); }
.btn-ghost{ background:transparent; color:var(--f-fg); border:1.5px solid var(--f-line); }
.btn-ghost:hover{ border-color:var(--f-fg); }
.btn-outline-dark{ border:1.5px solid rgba(0,0,0,.25); color:var(--f-fg); }
.btn-outline-dark:hover{ background:var(--f-fg); color:#fff; }

.btn-solid-light{ background:#fff; color:#0a0a0a; }
.btn-solid-light:hover{ background:var(--accent); color:#111; }
.btn-ghost-light{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.25); }
.btn-ghost-light:hover{ border-color:#fff; }
.btn-outline-light{ border:1.5px solid rgba(255,255,255,.3); color:#fff; }
.btn-outline-light:hover{ background:#fff; color:#0a0a0a; }

.btn-row{ display:flex; flex-wrap:wrap; gap:14px; }

/* ============================================================
   TYPE SCALE
============================================================ */
.display-xl{ font-family:var(--font-display); font-weight:700; font-size:clamp(34px,4.6vw,64px); line-height:1.04; letter-spacing:-.01em; margin-bottom:22px; }
.display-lg{ font-family:var(--font-display); font-weight:700; font-size:clamp(28px,3.4vw,46px); line-height:1.08; letter-spacing:-.01em; }
.display-md{ font-family:var(--font-display); font-weight:700; font-size:clamp(22px,2.6vw,34px); line-height:1.2; }
.lead{ font-size:17px; color:var(--f-muted); max-width:560px; margin-bottom:30px; }
.tag{ display:inline-flex; align-items:center; gap:8px; font-family:var(--font-mono); font-size:11px; font-weight:500; letter-spacing:.14em; text-transform:uppercase; color:var(--accent); margin-bottom:18px; }
.tag::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--accent); box-shadow:0 0 8px 1px var(--accent); flex:0 0 auto; }

/* ============================================================
   HERO — DUAL WORLD SPLIT
============================================================ */
.hero{ position:relative; height:82vh; min-height:660px; width:100%; overflow:hidden; background:#000; }
.hero::after{
  content:''; position:absolute; left:0; right:0; height:120px; z-index:8; pointer-events:none;
  background:linear-gradient(to bottom, transparent, rgba(198,161,91,.14), transparent);
  animation:scanSweep 7s linear infinite;
}
@keyframes scanSweep{ 0%{ top:-120px; } 100%{ top:100%; } }
@media (prefers-reduced-motion: reduce){ .hero::after{ display:none; } }
.hero-split{ position:absolute; inset:0; display:flex; }

.world{ position:relative; height:100%; overflow:hidden; display:flex; align-items:flex-start; }
.world-freight{ background:#ffffff; color:#0a0a0a; flex:0 0 50%; width:50%; }
.world-creations{ background:#000000; color:#fff; flex:0 0 50%; width:50%; }

.world-eyebrow-tag{
  position:absolute; z-index:3; top:calc(var(--nav-h) + 14px); left:56px;
  font-family:var(--font-mono); font-size:10px; letter-spacing:.14em; text-transform:uppercase; opacity:.6;
  transition:opacity .3s var(--ease);
}
.world-eyebrow-tag::before{ content:'// '; opacity:.6; }
.world-creations .world-eyebrow-tag{ left:auto; right:56px; }

.world-content{ position:absolute; z-index:3; left:0; bottom:0; padding:0 40px 44px; width:100%; max-width:340px; }
.world-creations .world-content{ left:auto; right:0; text-align:right; }
.world-creations .world-content .world-btn{ margin-left:auto; }

.world-title-big{
  font-family:var(--font-display); font-weight:700; font-size:clamp(30px,4vw,54px);
  line-height:.9; letter-spacing:-.02em; margin-bottom:12px; white-space:nowrap;
  text-shadow:0 10px 34px rgba(0,0,0,.16);
}
.world-creations .world-title-big{ text-shadow:0 10px 34px rgba(0,0,0,.55); }
.world-desc{ font-size:14px; opacity:.8; margin-bottom:18px; }
.world-btn{ padding:11px 24px; font-size:12.5px; }

/* Horizontal marquee strip of images behind Emmanuel — a continuous
   left-to-right scrolling filmstrip, seamless via a duplicated image set. */
.world-strip{
  position:absolute; z-index:2; left:0; right:0; top:33%; height:36%;
  overflow:hidden; pointer-events:none;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.world-strip-track{
  display:flex; align-items:center; height:100%; width:max-content; gap:14px;
  animation: stripScrollLR 26s linear infinite;
}
.world-strip-img{
  height:88%; aspect-ratio:3/4; flex:0 0 auto;
  background-size:cover; background-position:center;
  border-radius:6px; box-shadow:0 16px 34px -12px rgba(0,0,0,.45);
}
@keyframes stripScrollLR{
  from{ transform:translateX(-50%); }
  to{ transform:translateX(0%); }
}
@media (prefers-reduced-motion: reduce){ .world-strip-track{ animation:none; } }

.world.is-hidden .world-strip{ opacity:0; transition:opacity .35s var(--ease); }
.world.is-full .world-strip{ opacity:0; pointer-events:none; }

@media (max-width:900px){
  .world-strip{ display:none; }
}

.world-grid{ position:absolute; inset:0; opacity:.5; }
.grid-light{ background-image:linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px); background-size:56px 56px; }
.grid-dark{ background-image:linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size:56px 56px; }

.route-svg{ position:absolute; inset:0; width:100%; height:100%; }
.route-path{ fill:none; stroke:rgba(0,0,0,.28); stroke-width:1.6; stroke-dasharray:14 10; }
.route-node{ fill:var(--accent); }

.glow-orb{ position:absolute; border-radius:50%; filter:blur(70px); pointer-events:none; }
.orb-1{ width:340px; height:340px; background:radial-gradient(circle, rgba(198,161,91,.35), transparent 70%); top:8%; right:-6%; }
.orb-2{ width:260px; height:260px; background:radial-gradient(circle, rgba(255,255,255,.12), transparent 70%); bottom:0%; left:10%; }
.orb-3{ width:420px; height:420px; background:radial-gradient(circle, rgba(198,161,91,.22), transparent 70%); top:-10%; left:-10%; }
.orb-4{ width:300px; height:300px; background:radial-gradient(circle, rgba(255,255,255,.08), transparent 70%); bottom:-10%; right:0; }

.world-divider{ position:absolute; top:0; bottom:0; left:50%; width:2px; z-index:20; transform:translateX(-50%); pointer-events:none; touch-action:none; }
.divider-line{ position:absolute; inset:0; background:linear-gradient(to bottom, transparent, rgba(198,161,91,.9), transparent); transition:opacity .3s var(--ease); }

.divider-handle{
  position:absolute; top:78%; left:50%; transform:translate(-50%,-50%);
  width:60px; height:60px; border-radius:50%; background:#fff; border:1px solid rgba(0,0,0,.08);
  display:flex; align-items:center; justify-content:center; gap:5px;
  cursor:ew-resize; z-index:21; pointer-events:all; touch-action:none;
  box-shadow:0 14px 34px -12px rgba(0,0,0,.5);
  transition:box-shadow .3s var(--ease), transform .15s var(--ease);
  animation:handleBreathe 2.6s ease-in-out infinite;
}
.divider-handle:hover{ transform:translate(-50%,-50%) scale(1.08); }
.divider-handle:active{ cursor:grabbing; animation:none; }
.divider-handle:focus-visible{ outline:2px solid var(--accent); outline-offset:4px; }
@keyframes handleBreathe{ 0%,100%{ box-shadow:0 14px 34px -12px rgba(0,0,0,.5);} 50%{ box-shadow:0 14px 34px -12px rgba(198,161,91,.65);} }

.handle-arrow{ width:0; height:0; border-top:5px solid transparent; border-bottom:5px solid transparent; }
.handle-arrow.left{ border-right:7px solid #0a0a0a; }
.handle-arrow.right{ border-left:7px solid #0a0a0a; }
.handle-grip{ width:2px; height:20px; background:#0a0a0a; opacity:.2; border-radius:2px; }

.divider-hint{
  position:absolute; top:calc(78% + 46px); left:50%; transform:translateX(-50%);
  font-size:9.5px; letter-spacing:.2em; color:#fff; mix-blend-mode:difference; font-weight:600;
  opacity:.7; transition:opacity .3s var(--ease);
}

.hero-split.is-committed .divider-line{ opacity:0; }
.hero-split.is-committed .divider-hint{ opacity:0; }

/* Content fade when a world's panel is compressed by the drag */
.world-content{ transition:opacity .35s var(--ease), transform .35s var(--ease); }
.world.is-hidden .world-content{ opacity:0; transform:translateY(10px); pointer-events:none; }
.world.is-hidden .world-eyebrow-tag{ opacity:0; pointer-events:none; }
/* Note: world-content intentionally stays anchored to its own edge (not
   re-centered) even at 100% width, so it never collides with the fixed,
   centered founder photo and its CTA stays reachable. */

.hero-center{
  position:absolute; top:calc(var(--nav-h) + 80px); left:50%; transform:translateX(-50%); z-index:10;
  text-align:center; color:#fff; mix-blend-mode:difference; pointer-events:none; width:100%; max-width:900px; padding:0 20px;
}
.hero-kicker{ font-family:var(--font-mono); font-size:10px; letter-spacing:.16em; text-transform:uppercase; opacity:.85; margin-bottom:6px; }
.hero-mega{ font-family:var(--font-display); font-weight:700; font-size:clamp(26px,5vw,64px); line-height:.94; letter-spacing:-.02em; white-space:nowrap; }
.hero-mega-wrap{ white-space:normal; }
.hero-sub{ font-size:clamp(10px,1.3vw,13px); letter-spacing:.16em; margin-top:6px; font-weight:600; }

/* Emmanuel — fixed, centered foreground figure; stays put while the slider
   changes the white/black world (and its imagery) behind him */
.hero-founder-wrap{
  position:absolute; z-index:12; bottom:0; left:50%; transform:translateX(-50%);
  height:76%; width:auto; max-width:29%; pointer-events:none;
}
.hero-founder-glow{
  position:absolute; left:50%; bottom:8%; transform:translate(-50%,15%);
  width:85%; padding-bottom:85%; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.4), rgba(255,255,255,0) 68%);
  filter:blur(18px); z-index:1;
}
.hero-founder{
  position:relative; z-index:2; height:100%; width:100%; object-fit:contain; object-position:bottom center;
  filter:drop-shadow(0 26px 46px rgba(0,0,0,.45));
}

.hero-scroll-cue{ position:absolute; bottom:36px; left:50%; transform:translateX(-50%); z-index:10; display:flex; flex-direction:column; align-items:center; gap:10px; font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:#fff; mix-blend-mode:difference; pointer-events:none; }
.scroll-line{ width:1px; height:44px; background:rgba(255,255,255,.3); overflow:hidden; }
.scroll-line i{ display:block; width:100%; height:14px; background:#fff; animation:scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown{ 0%{ transform:translateY(-14px);} 100%{ transform:translateY(44px);} }

/* ============================================================
   BRAND SECTIONS — THEME BASE
============================================================ */
.brand-section{ position:relative; }
.theme-freight{ background:var(--f-bg); color:var(--f-fg); }
.theme-creations{ background:var(--c-bg); color:var(--c-fg); }

.section-block{ position:relative; padding:120px 0; overflow:hidden; }
.section-head{ max-width:680px; margin-bottom:64px; }
.theme-freight .section-head .lead, .theme-freight .lead{ color:var(--f-muted); }
.theme-creations .section-head .lead, .theme-creations .lead{ color:var(--c-muted); }

/* Standalone page hero (used on freight/creations/about/packages pages) */
.page-hero{ padding-top:calc(120px + var(--nav-h)); }

/* Cross-sell footer teaser (bottom of freight.html / creations.html) */
.cross-sell{ background:var(--f-gray); border-top:1px solid var(--f-line); padding:36px 0; }
.cross-sell-dark{ background:var(--c-gray); border-top:1px solid var(--c-line); }
.cross-sell-flex{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.cross-sell-flex p{ font-size:14.5px; color:var(--f-muted); margin:0; }
.cross-sell-dark .cross-sell-flex p{ color:var(--c-muted); }

/* Terminal decoration (Creations hero) */
.terminal-title{ margin-left:auto; font-family:var(--font-mono); font-size:11px; color:var(--c-muted); }
.terminal-body{ font-family:var(--font-mono); }
.term-line{ font-size:13px; color:var(--c-muted); margin-bottom:10px; }
.term-prompt{ color:var(--accent-light); margin-right:6px; }
.term-out{ padding-left:14px; }
.term-out em{ font-style:normal; color:#fff; }
.term-cursor{ display:inline-block; width:7px; height:14px; background:var(--accent-light); margin-left:2px; vertical-align:-2px; animation:cursorBlink 1s step-end infinite; }
@keyframes cursorBlink{ 50%{ opacity:0; } }

/* Freight Hero */
.freight-hero{ padding-top:calc(120px + var(--nav-h)); }
.bg-route-lines{ position:absolute; inset:0; width:100%; height:100%; opacity:.5; z-index:0; }
.line-draw{ fill:none; stroke:var(--f-line); stroke-width:1.4; }
.line-draw-2{ stroke:rgba(198,161,91,.4); }

.hero-flex{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; }
.hero-copy .appointment-note{ display:inline-flex; align-items:center; gap:10px; font-size:13.5px; color:var(--f-muted); margin-top:8px; }
.note-light{ color:var(--c-muted); }

.hero-visual{ position:relative; }
.dash-card{ background:var(--f-gray); border:1px solid var(--f-line); border-radius:22px; padding:32px; box-shadow:0 30px 60px -30px rgba(0,0,0,.18); }
.dash-row{ display:flex; justify-content:space-between; font-size:13px; margin-bottom:8px; color:var(--f-muted); }
.dash-row b{ color:var(--f-fg); }
.dash-bar{ height:6px; border-radius:4px; background:var(--f-line); margin-bottom:22px; overflow:hidden; }
.dash-bar i{ display:block; height:100%; background:linear-gradient(90deg, var(--accent), #0a0a0a); border-radius:4px; }
.dash-mini-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:8px; }
.mini-stat{ background:#fff; border:1px solid var(--f-line); border-radius:14px; padding:16px; text-align:center; }
.mini-stat b{ display:block; font-family:var(--font-display); font-size:22px; }
.mini-stat span{ font-size:11px; color:var(--f-muted); }

.floating-chip{
  position:absolute; background:#fff; border:1px solid var(--f-line); border-radius:999px; padding:9px 16px;
  font-size:12px; font-weight:600; box-shadow:0 14px 30px -14px rgba(0,0,0,.25);
}
.chip-dark{ background:#111; border-color:#2c2c2c; color:#fff; }
.chip-1{ top:15%; right:4%; }
.chip-2{ bottom:14%; left:-8%; }
.chip-3{ bottom:-4%; right:14%; }

/* Grids */
.grid-9{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--f-line); border:1px solid var(--f-line); border-radius:22px; overflow:hidden; }
.grid-8{ display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:var(--c-line); border:1px solid var(--c-line); border-radius:22px; overflow:hidden; }

.spec-card{ position:relative; perspective:1400px; }
.spec-card::before,.spec-card::after,
.package-card::before,.package-card::after{
  content:''; position:absolute; width:16px; height:16px; opacity:0; transition:opacity .3s var(--ease), width .3s var(--ease), height .3s var(--ease);
  border-color:var(--accent); pointer-events:none; z-index:2;
}
.spec-card::before{ top:10px; left:10px; border-top:1.5px solid; border-left:1.5px solid; }
.spec-card::after{ bottom:10px; right:10px; border-bottom:1.5px solid; border-right:1.5px solid; }
.package-card::before{ top:16px; left:16px; border-top:1.5px solid; border-left:1.5px solid; }
.package-card::after{ bottom:16px; right:16px; border-bottom:1.5px solid; border-right:1.5px solid; }
.spec-card:hover::before,.spec-card:hover::after,
.spec-card.is-flipped::before,.spec-card.is-flipped::after{ opacity:1; width:22px; height:22px; }
.package-card:hover::before,.package-card:hover::after{ opacity:1; width:24px; height:24px; }
.spec-icon{ width:44px; height:44px; margin-bottom:22px; color:var(--accent); }
.spec-icon svg{ width:100%; height:100%; }
.spec-card h3{ font-family:var(--font-display); font-size:17px; font-weight:600; margin-bottom:10px; }
.spec-card p{ font-size:13.8px; color:var(--f-muted); }

.spec-card-dark p{ color:var(--c-muted); }

/* Flip mechanics — front face keeps the card's normal look, back
   face always turns gold regardless of light/dark theme. */
.spec-card-inner{
  position:relative; width:100%; min-height:236px;
  transform-style:preserve-3d; transition:transform .6s cubic-bezier(.4,.2,.2,1);
}
.spec-card:hover .spec-card-inner,
.spec-card.is-flipped .spec-card-inner{ transform:rotateY(180deg); }
.spec-card-face{
  position:absolute; inset:0; backface-visibility:hidden; -webkit-backface-visibility:hidden;
  padding:38px 32px; display:flex; flex-direction:column;
}
.spec-card-front{ background:#fff; }
.spec-card-dark .spec-card-front{ background:var(--c-gray); color:#fff; }
.spec-card-back{
  background:var(--accent); color:#0a0a0a; transform:rotateY(180deg);
  align-items:flex-start; justify-content:center;
}
.spec-card-back .spec-icon{ color:#0a0a0a; margin-bottom:16px; }
.spec-card-back h3{ margin-bottom:0; color:#0a0a0a; }
@media (prefers-reduced-motion: reduce){
  .spec-card-inner{ transition:none; }
}

/* Founder / Timeline */
.founder-flex{ display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:center; margin-bottom:90px; }
.founder-visual{ position:relative; display:flex; flex-direction:column; align-items:center; gap:24px; }
.founder-frame{ position:relative; width:260px; height:260px; border-radius:50%; display:flex; align-items:center; justify-content:center; overflow:hidden; background:radial-gradient(circle at 50% 30%, #1c1a16, #050505 75%); border:1px solid var(--f-line); }
.founder-photo{ width:100%; height:100%; object-fit:cover; object-position:top center; position:relative; z-index:1; }
.founder-ring{ position:absolute; inset:-14px; border:1.5px dashed var(--f-line); border-radius:50%; animation:spinSlow 40s linear infinite; z-index:2; pointer-events:none; }
@keyframes spinSlow{ to{ transform:rotate(360deg); } }
.founder-badge{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; text-align:center; color:var(--f-muted); border-top:1px solid var(--f-line); padding-top:16px; }
.founder-badge em{ font-style:normal; color:var(--accent); }
.founder-headline{ font-size:19px; font-weight:600; margin:10px 0 18px; }

/* Founder parallax panel — CSS background layer drifts on scroll behind the cutout photo */
.founder-parallax{ position:relative; height:620px; overflow:hidden; background:#050505; margin:0 0 90px; }
.founder-parallax-bg{ position:absolute; left:0; right:0; top:-18%; height:136%; will-change:transform; }
.founder-parallax-photo{
  position:absolute; bottom:0; right:7%; height:96%; max-width:44%; z-index:2;
  object-fit:contain; object-position:bottom center;
  filter:drop-shadow(0 30px 50px rgba(0,0,0,.55));
}
.founder-parallax-copy{ position:relative; z-index:3; height:100%; display:flex; flex-direction:column; justify-content:center; max-width:520px; gap:14px; }

@media (max-width:900px){
  .founder-parallax{ height:auto; padding:70px 0; }
  .founder-parallax-photo{ position:relative; right:auto; height:auto; max-width:280px; margin:28px auto 0; display:block; }
  .founder-parallax-copy{ height:auto; text-align:center; max-width:100%; align-items:center; }
}

/* Generic compact photo + parallax-drift-background card, used inside hero
   grids across Freight/Creations/Packages/Booking */
.photo-parallax{ position:relative; aspect-ratio:4/5; max-height:580px; overflow:hidden; border-radius:24px; }
.photo-parallax-bg{ position:absolute; left:0; right:0; top:-16%; height:132%; will-change:transform; }
.photo-parallax-photo{
  position:absolute; inset:6px; width:calc(100% - 12px); height:calc(100% - 12px); z-index:2;
  object-fit:contain; object-position:bottom center;
}
.photo-parallax-light{ background:var(--f-gray); border:1px solid var(--f-line); }
.photo-parallax-light .photo-parallax-photo{ filter:drop-shadow(0 20px 40px rgba(10,10,10,.18)); }
.photo-parallax-dark{ background:#050505; border:1px solid var(--c-line); }
.photo-parallax-dark .photo-parallax-photo{ filter:drop-shadow(0 20px 44px rgba(0,0,0,.6)); }

/* Split light/black variant for pages that speak to both brands (Packages, Booking) */
.photo-parallax-split{ position:relative; display:grid; grid-template-columns:1fr 1fr; height:480px; overflow:hidden; }
.photo-parallax-split .photo-parallax-half{ position:relative; overflow:hidden; height:100%; }
.photo-parallax-split .photo-parallax-half.half-light{ background:var(--f-gray); border-right:1px solid var(--f-line); }
.photo-parallax-split .photo-parallax-half.half-dark{ background:#050505; }
.photo-parallax-split .photo-parallax-photo{ height:80%; max-width:26%; z-index:5; filter:drop-shadow(0 20px 40px rgba(0,0,0,.4)); }
.split-photo-glow{
  position:absolute; left:50%; bottom:10%; transform:translate(-50%,18%); z-index:1;
  width:30%; padding-bottom:30%; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.42), rgba(255,255,255,0) 68%);
  filter:blur(16px); pointer-events:none;
}

.mixed-hero{ position:relative; }
.mixed-hero-copy{
  position:absolute; top:34px; left:0; right:0; z-index:3;
  text-align:center; color:#fff; mix-blend-mode:difference; pointer-events:none;
}
.mixed-hero-copy .tag{ justify-content:center; }

@media (max-width:640px){
  .photo-parallax-split{ grid-template-columns:1fr; }
  .photo-parallax-split .photo-parallax-half{ height:280px; }
  .photo-parallax-split .photo-parallax-half.half-light{ border-right:none; border-bottom:1px solid var(--f-line); }
}

.timeline{ position:relative; display:grid; grid-template-columns:repeat(6,1fr); gap:12px; padding-top:20px; }
.timeline-line{ position:absolute; top:26px; left:8.33%; right:8.33%; height:2px; background:var(--f-line); overflow:hidden; }
.timeline-line-fill{ position:absolute; inset:0; background:var(--accent); transform:scaleX(0); transform-origin:left center; transition:transform 1.8s var(--ease); }
.timeline-line.drawn .timeline-line-fill{ transform:scaleX(1); }
.timeline-step{ display:flex; flex-direction:column; align-items:center; gap:14px; text-align:center; font-size:12px; font-weight:600; letter-spacing:.06em; opacity:.4; transform:translateY(6px); transition:opacity .5s var(--ease), transform .5s var(--ease); }
.timeline-step.in-view{ opacity:1; transform:translateY(0); }
.t-dot{ width:12px; height:12px; border-radius:50%; background:#fff; border:2px solid var(--f-line); position:relative; z-index:2; }
.timeline-step.in-view .t-dot{ background:var(--accent); border-color:var(--accent); }

/* Packages */
.package-grid{ display:grid; gap:26px; }
.package-grid-2{ grid-template-columns:1fr 1fr; }
.package-grid-3{ grid-template-columns:repeat(3,1fr); }
.package-grid-4{ grid-template-columns:repeat(4,1fr); }
.package-grid-5{ grid-template-columns:repeat(5,1fr); }

.package-card{
  position:relative; background:var(--f-gray); border:1px solid var(--f-line); border-radius:26px; padding:38px 34px;
  display:flex; flex-direction:column; transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.package-card:hover{ transform:translateY(-8px); box-shadow:0 30px 60px -30px rgba(0,0,0,.25); border-color:var(--f-fg); }
.package-featured{ background:var(--f-fg); color:#fff; border-color:var(--f-fg); }
.package-featured .package-list li{ border-color:rgba(255,255,255,.12); color:rgba(255,255,255,.8); }
.package-featured .package-desc{ color:rgba(255,255,255,.7); }
.package-num{ font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; opacity:.55; }
.package-top h2, .package-top h3{ font-family:var(--font-display); font-size:26px; font-weight:700; margin:8px 0 4px; }
.package-tagline{ font-size:13px; color:var(--accent); font-weight:600; margin-bottom:18px; }
.package-desc{ font-size:13.8px; color:var(--f-muted); margin-bottom:20px; }
.package-list{ display:flex; flex-direction:column; gap:0; margin-bottom:28px; flex:1; }
.package-list li{ font-size:13.3px; padding:10px 0; border-bottom:1px solid var(--f-line); position:relative; padding-left:20px; }
.package-list li::before{ content:''; position:absolute; left:0; top:16px; width:6px; height:6px; border-radius:50%; background:var(--accent); }
.package-btn{ align-self:flex-start; }

.package-card-dark{ background:var(--c-gray); border-color:var(--c-line); color:#fff; }
.package-card-dark:hover{ border-color:#fff; }
.package-card-dark .package-tagline{ color:var(--accent-light); }
.package-card-dark .package-desc{ color:var(--c-muted); }
.package-card-dark .package-list li{ border-color:var(--c-line); }
.package-featured-dark{ background:linear-gradient(160deg, #1c1a14, #0a0a0a); border:1px solid var(--accent); grid-column:span 1; position:relative; }
.flagship-tag{ position:absolute; top:24px; right:24px; font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; background:var(--accent); color:#111; padding:5px 12px; border-radius:999px; font-weight:700; }

/* Booking */
.booking-section{ background:var(--f-gray); }
.theme-creations .booking-section{ background:var(--c-gray); }
.booking-panel{ background:#fff; border:1px solid var(--f-line); border-radius:28px; padding:48px; max-width:760px; margin:0 auto; box-shadow:0 40px 80px -40px rgba(0,0,0,.25); }
.booking-panel-dark{ background:var(--c-bg); border-color:var(--c-line); }

.booking-steps{ display:flex; gap:22px; margin-bottom:36px; flex-wrap:wrap; font-family:var(--font-mono); font-size:11px; font-weight:500; letter-spacing:.04em; text-transform:uppercase; color:var(--f-muted); }
.booking-panel-dark .booking-steps{ color:var(--c-muted); }
.b-step{ padding-bottom:10px; border-bottom:2px solid transparent; }
.b-step.active{ color:var(--f-fg); border-color:var(--accent); }
.booking-panel-dark .b-step.active{ color:#fff; }

.booking-pane{ display:none; animation:fadeUpIn .5s var(--ease); }
.booking-pane.active{ display:block; }
@keyframes fadeUpIn{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:translateY(0);} }
.booking-pane h3{ font-family:var(--font-display); font-size:22px; margin-bottom:22px; }

.option-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:22px; }
.option-card{ position:relative; display:flex; flex-direction:column; gap:6px; padding:20px; border:1.5px solid var(--f-line); border-radius:16px; cursor:pointer; transition:border-color .25s var(--ease), background .25s var(--ease); }
.option-card input{ position:absolute; opacity:0; }
.option-card:has(input:checked){ border-color:var(--accent); background:rgba(198,161,91,.08); }
.opt-title{ font-weight:600; font-size:14.5px; }
.opt-note{ font-size:12px; color:var(--f-muted); }
.booking-panel-dark .option-card{ border-color:var(--c-line); }
.booking-panel-dark .opt-note{ color:var(--c-muted); }

.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.field-row label, label.full{ display:flex; flex-direction:column; gap:8px; font-size:12.5px; font-weight:600; color:var(--f-muted); margin-bottom:18px; }
.booking-panel-dark label{ color:var(--c-muted); }
input,select,textarea{
  padding:13px 16px; border-radius:12px; border:1.5px solid var(--f-line); background:#fff; color:var(--f-fg);
  font-weight:500; transition:border-color .25s var(--ease);
}
input:focus,select:focus,textarea:focus{ outline:none; border-color:var(--accent); }
.booking-panel-dark input, .booking-panel-dark select, .booking-panel-dark textarea{ background:var(--c-gray-2); border-color:var(--c-line); color:#fff; }
textarea{ resize:vertical; font-family:inherit; }

.price-line{ font-size:14.5px; color:var(--f-muted); margin-bottom:24px; }
.booking-panel-dark .price-line{ color:var(--c-muted); }
.price-line strong{ color:var(--f-fg); }
.booking-panel-dark .price-line strong{ color:#fff; }

.policy-note{
  font-size:12.5px; line-height:1.7; color:var(--f-muted);
  padding:14px 16px; margin:0 0 20px; border-radius:10px;
  border:1px solid var(--f-line); background:rgba(10,10,10,.03);
}
.policy-note b{
  display:block; font-size:11px; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:var(--accent); margin-bottom:6px;
}
.policy-note strong{ color:var(--f-fg); font-weight:700; }
.booking-panel-dark .policy-note{ color:var(--c-muted); border-color:var(--c-line); background:rgba(255,255,255,.04); }
.booking-panel-dark .policy-note strong{ color:#fff; }
.chooser-black .policy-note{ color:var(--c-muted); border-color:var(--c-line); background:rgba(255,255,255,.04); text-align:left; }
.chooser-black .policy-note strong{ color:#fff; }
.chooser-white .policy-note{ text-align:left; }

.payment-options{ margin:0 0 20px; }
.payment-options-label{ display:block; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--f-muted); margin-bottom:10px; }
.payment-methods{ display:flex; flex-wrap:wrap; gap:10px; }
.payment-method{
  display:inline-flex; align-items:center; gap:9px; font-size:13px; font-weight:600;
  padding:11px 18px; border-radius:999px; border:1.5px solid var(--f-line); color:var(--f-fg);
  background:transparent; cursor:pointer; text-decoration:none; font-family:inherit;
  transition:border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.payment-method svg{ width:16px; height:16px; flex:0 0 auto; }
.payment-method strong{ font-weight:700; }
.payment-method:hover{ border-color:var(--accent); color:var(--accent); }
.payment-method.copied{ border-color:var(--accent); color:var(--accent); }

.booking-panel-dark .payment-options-label{ color:var(--c-muted); }
.booking-panel-dark .payment-method{ border-color:var(--c-line); color:#fff; }
.booking-panel-dark .payment-method:hover{ border-color:var(--accent-light); color:var(--accent-light); }
.booking-panel-dark .payment-method.copied{ border-color:var(--accent-light); color:var(--accent-light); }

.chooser-black .payment-options-label{ color:var(--c-muted); }
.chooser-black .payment-method{ border-color:var(--c-line); color:#fff; }
.chooser-black .payment-method:hover, .chooser-black .payment-method.copied{ border-color:var(--accent-light); color:var(--accent-light); }
.chooser-half .payment-options{ text-align:left; }
.chooser-half .payment-methods{ justify-content:center; }

.pane-actions{ display:flex; gap:14px; }
.confirm-summary{ background:var(--f-gray); border:1px solid var(--f-line); border-radius:16px; padding:22px; margin-bottom:20px; font-size:13.8px; line-height:1.9; }
.booking-panel-dark .confirm-summary{ background:var(--c-gray-2); border-color:var(--c-line); }
.confirm-summary b{ display:inline-block; min-width:150px; color:var(--accent); font-weight:600; }

.booking-success{ display:none; text-align:center; padding:30px 0; }
.booking-success.active{ display:block; }
.booking-success svg{ margin:0 auto 20px; color:var(--accent); }
.booking-success h3{ font-family:var(--font-display); font-size:24px; margin-bottom:10px; }
.booking-success p{ color:var(--f-muted); }
.booking-panel-dark .booking-success p{ color:var(--c-muted); }

.booking-error{ color:#e5484d; font-size:14px; margin:0 0 14px; }

/* ============================================================
   CROSS-BRAND
============================================================ */
.cross-brand{ position:relative; padding:140px 0 0; background:var(--f-bg); color:#0a0a0a; overflow:hidden; }
.cross-head{ max-width:720px; margin:0 auto 70px; text-align:center; }
.cross-head .lead{ margin-inline:auto; }
.cross-head .tag{ justify-content:center; }

/* Horizontal "build path" journey timeline — dark full-bleed band */
.journey-tag{ justify-content:center; margin-bottom:8px; color:#0a0a0a; }

/* Vertical build-path journey — alternating photo/copy steps connected by
   a scroll-drawn winding path down the center gutter. */
.journey-vertical{ position:relative; padding:70px 0 40px; }
.journey-track{ position:relative; max-width:1100px; margin:56px auto 0; padding:0 32px; }

.journey-road{ position:absolute; left:0; right:0; top:0; bottom:0; width:100%; height:100%; z-index:0; overflow:visible; }
.journey-road-path{ fill:none; stroke-linecap:round; }
.journey-road-base{ stroke:var(--f-line); stroke-width:2.5; stroke-dasharray:7 10; }
.journey-road-fill{ stroke:var(--accent); stroke-width:3; }

.journey-step{
  position:relative; z-index:1; display:flex; align-items:center; gap:64px;
  min-height:380px; padding:36px 0;
}
.journey-step[data-side="right"]{ flex-direction:row-reverse; }
.journey-step-media{
  flex:0 0 42%; aspect-ratio:4/3; border-radius:16px; overflow:hidden;
  box-shadow:0 30px 60px -24px rgba(10,10,10,.35); opacity:0; transform:translateY(30px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.journey-step-media.in-view{ opacity:1; transform:translateY(0); }
.journey-step-media img, .journey-step-media video{ width:100%; height:100%; object-fit:cover; }
.journey-step-copy{
  flex:1 1 auto; opacity:0; transform:translateY(30px);
  transition:opacity .7s var(--ease) .1s, transform .7s var(--ease) .1s;
}
.journey-step-copy.in-view{ opacity:1; transform:translateY(0); }
.journey-step[data-side="right"] .journey-step-copy{ text-align:right; }
.journey-step-num{
  display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px;
  border-radius:50%; background:#fff; border:1.5px solid var(--f-line); box-shadow:0 8px 18px -8px rgba(10,10,10,.3);
  font-family:var(--font-mono); font-size:13px; font-weight:600; color:var(--accent); margin-bottom:16px;
}
.journey-step-copy h3{ font-family:var(--font-display); font-weight:700; font-size:clamp(24px,2.6vw,32px); margin-bottom:8px; }
.journey-step-copy p{ font-size:14.5px; color:var(--f-muted); max-width:340px; }
.journey-step[data-side="right"] .journey-step-copy p{ margin-left:auto; }

@media (max-width:900px){
  .journey-road{ left:0; right:0; width:100%; }
  .journey-step, .journey-step[data-side="right"]{ flex-direction:column; align-items:flex-start; gap:24px; padding-left:64px; }
  .journey-step-media{ flex:0 0 auto; width:100%; }
  .journey-step[data-side="right"] .journey-step-copy,
  .journey-step[data-side="right"] .journey-step-copy p{ text-align:left; margin-left:0; }
}

.timeline-cols-8{ grid-template-columns:repeat(8,1fr); }
.timeline-cols-8 .timeline-line{ left:6.25%; right:6.25%; }

/* Bold black timeline with a soft lifted shadow, for use on light backgrounds */
.timeline-onyx .timeline-line{ background:var(--f-line); }
.timeline-onyx .t-dot{ background:#fff; border-color:var(--f-line); box-shadow:0 2px 6px rgba(10,10,10,.12); }
.timeline-onyx .timeline-line-fill{ background:#0a0a0a; }
.timeline-onyx .timeline-step{ color:#0a0a0a; text-shadow:0 2px 5px rgba(10,10,10,.2); }
.timeline-onyx .timeline-step b{ font-weight:700; }
.timeline-onyx .timeline-step.in-view .t-dot{ background:#0a0a0a; border-color:#0a0a0a; box-shadow:0 6px 14px -2px rgba(10,10,10,.35); }

.cross-final{ text-align:center; padding:90px 0 140px; color:#0a0a0a; }
.cross-btn-row{ justify-content:center; margin-top:26px; }

/* ============================================================
   CREATIONS HERO extras
============================================================ */
.creations-hero{ padding-top:calc(120px + var(--nav-h)); }
.mock-window{ background:var(--c-gray); border:1px solid var(--c-line); border-radius:18px; overflow:hidden; box-shadow:0 40px 80px -30px rgba(0,0,0,.6); }
.mock-bar{ display:flex; gap:7px; padding:14px 18px; border-bottom:1px solid var(--c-line); }
.mock-bar span{ width:10px; height:10px; border-radius:50%; background:#333; }
.mock-body{ padding:28px; }
.mock-line{ height:12px; border-radius:6px; background:linear-gradient(90deg, var(--c-gray-2), #262626); margin-bottom:14px; }
.w-70{ width:70%; } .w-40{ width:40%; height:9px; }
.mock-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:22px; }
.mock-tile{ aspect-ratio:1; border-radius:12px; background:linear-gradient(160deg, var(--c-gray-2), #101010); border:1px solid var(--c-line); position:relative; overflow:hidden; }
.mock-tile::after{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 30% 20%, rgba(198,161,91,.35), transparent 60%); }

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta{ position:relative; display:grid; grid-template-columns:1fr 1fr; min-height:640px; }
.final-half{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; text-align:center; padding:80px 40px; }
.final-half .lead{ max-width:360px; margin:0 auto; }

/* Booking chooser page — horizontal intro band, then two independently-centered halves
   (kept separate from .final-cta's concentric center-overlay pattern to avoid text collisions) */
.chooser-page{ padding-top:calc(var(--nav-h) + 56px); background:var(--f-bg); }
.chooser-intro{ text-align:center; padding:0 24px 48px; }
.chooser-split{ display:grid; grid-template-columns:1fr 1fr; min-height:620px; }
.chooser-half{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; text-align:center; padding:60px 40px; }
.chooser-half .lead{ max-width:360px; margin:0 auto; }
.chooser-white{ background:#fff; color:#0a0a0a; }
.chooser-black{ background:#050505; color:#fff; }

@media (max-width:900px){
  .chooser-split{ grid-template-columns:1fr; }
}
.final-white{ background:#fff; color:#0a0a0a; }
.final-black{ background:#050505; color:#fff; }
.final-half h3{ font-family:var(--font-display); font-weight:700; font-size:clamp(20px,2.4vw,30px); line-height:1.2; }
.final-brand{ font-family:var(--font-mono); font-size:12px; letter-spacing:.16em; color:var(--accent); font-weight:600; }
.final-center{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:5;
  display:flex; flex-direction:column; align-items:center; gap:16px; text-align:center; color:#fff; mix-blend-mode:difference;
}
.final-logo{ font-family:var(--font-display); font-weight:700; font-size:clamp(22px,3.2vw,40px); line-height:1; white-space:nowrap; }
.final-center p{ font-size:12px; letter-spacing:.1em; font-weight:600; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer{ background:#050505; color:#fff; padding:76px 0 0; border-top:1px solid rgba(198,161,91,.25); }

.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1.5fr; gap:56px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-col{ display:flex; flex-direction:column; gap:11px; min-width:0; }
.footer-heading{ font-family:var(--font-mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:8px; font-weight:500; }
.footer-col a{ font-size:14px; color:rgba(255,255,255,.78); transition:color .25s var(--ease); width:fit-content; }
.footer-col a:hover{ color:var(--accent-light); }

.footer-logo-img{ width:331px; max-width:100%; height:auto; margin-bottom:20px; image-rendering:auto; }
.footer-brand-name{ font-family:var(--font-display); font-weight:700; font-size:19px; letter-spacing:.01em; margin-bottom:6px; }
.footer-tagline{ font-size:13px; color:rgba(255,255,255,.5); margin-bottom:18px; max-width:260px; line-height:1.6; }
.footer-contact{ display:flex; flex-direction:column; gap:8px; }
.footer-contact a{ font-size:14px; color:#fff; }

.location-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px 24px; }
.location-item{ font-size:13px; color:rgba(255,255,255,.65); line-height:1.55; }
.location-item b{ display:block; color:#fff; font-weight:600; font-size:13.5px; margin-bottom:2px; }

.footer-bottom{ padding:28px 0 36px; display:flex; flex-direction:column; gap:18px; }
.footer-disclaimer{ font-size:13px; line-height:1.7; color:rgba(255,255,255,.48); max-width:920px; text-align:center; margin-inline:auto; }
.footer-bottom-row{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:12px; color:rgba(255,255,255,.4); }
.footer-bottom-row .footer-brand-mini{ font-family:var(--font-display); font-weight:700; color:rgba(255,255,255,.55); letter-spacing:.02em; }

/* ============================================================
   SCROLL REVEALS
============================================================ */
.reveal-up{ opacity:0; transform:translateY(34px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-up.in-view{ opacity:1; transform:translateY(0); }
.stagger-grid .spec-card{ opacity:0; transform:translateY(24px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.stagger-grid.in-view .spec-card{ opacity:1; transform:translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width:1080px){
  .grid-9{ grid-template-columns:repeat(2,1fr); }
  .grid-8{ grid-template-columns:repeat(2,1fr); }
  .package-grid-5{ grid-template-columns:repeat(2,1fr); }
  .package-grid-4{ grid-template-columns:repeat(2,1fr); }
  .package-grid-3{ grid-template-columns:repeat(2,1fr); }
  .founder-flex{ grid-template-columns:1fr; gap:40px; }
  .founder-visual{ order:-1; }
}

@media (max-width:900px){
  .nav-links{ display:none; }
  .nav-cta{ display:none; }
  .nav-burger{ display:flex; }
  .site-nav{ padding:12px 18px; }

  .hero{ height:auto; min-height:0; display:flex; flex-direction:column; }
  .hero-center{ position:relative; top:auto; left:auto; transform:none; order:-1; padding:96px 24px 56px; mix-blend-mode:normal; background:#0a0a0a; }
  .hero-split{ position:relative; inset:auto; flex-direction:column; }
  .world{ flex:1 1 auto !important; width:100% !important; min-height:88vh; align-items:center; }
  .world-eyebrow-tag{ left:0; right:0; text-align:center; }
  .world-creations .world-eyebrow-tag{ left:0; right:0; }
  .world-content{ left:0; right:0; padding:0 28px 48px; max-width:100%; text-align:center; margin:0 auto; }
  .world-creations .world-content{ text-align:center; }
  .world-creations .world-content .world-btn{ margin-inline:auto; }
  .world-title-big{ font-size:clamp(44px,15vw,72px); }
  .world-divider{ display:none !important; }
  .hero-scroll-cue{ display:none; }
  .hero-founder-wrap{ display:none; }

  .hero-flex{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; }
  .floating-chip{ display:none; }

  .package-grid-2{ grid-template-columns:1fr; }
  .package-grid-3{ grid-template-columns:1fr; }
  .package-grid-4{ grid-template-columns:1fr; }
  .package-grid-5{ grid-template-columns:1fr; }
  .flagship-tag{ position:static; display:inline-block; margin-bottom:14px; }

  .timeline{ grid-template-columns:repeat(3,1fr); row-gap:36px; }
  .timeline-line{ display:none; }

  .field-row{ grid-template-columns:1fr; }
  .option-row{ grid-template-columns:1fr; }
  .booking-panel{ padding:30px 22px; }

  .final-cta{ grid-template-columns:1fr; }
  .final-center{ position:relative; top:auto; left:auto; transform:none; padding:50px 24px; background:#111; mix-blend-mode:normal; }

  .footer-grid{ grid-template-columns:1fr; gap:40px; }
  .footer-bottom-row{ flex-direction:column; align-items:flex-start; }
}

@media (max-width:560px){
  .section-block{ padding:80px 0; }
  .container{ padding:0 20px; }
  .grid-9,.grid-8{ grid-template-columns:1fr; }
  .dash-mini-grid{ grid-template-columns:1fr 1fr; }
}
