/* ============================================================
   VIP Captain — VIP Captain
   Design system v3 — sleek · minimal · modern · monochrome.
   Variable NAMES are preserved (--gold etc.) but remapped to a
   cool platinum palette, so every page restyles at once.
   ============================================================ */

:root{
  /* base */
  --ink:        #08090c;
  --ink-2:      #0d0f13;
  --cream:      #f3f5f8;   /* primary text */
  --muted:      rgba(243,245,248,.50);
  --faint:      rgba(243,245,248,.30);
  --line:       rgba(255,255,255,.10);
  --line-soft:  rgba(255,255,255,.06);

  /* accents (remapped from the old warm palette) */
  --gold:       #dbe3ec;   /* eyebrows, labels, links — cool platinum */
  --gold-2:     #ffffff;
  --gold-deep:  #aab6c6;
  --aqua:       #8fb4ff;   /* cool interactive accent */
  --aqua-deep:  #5d7fc7;
  --glow:       rgba(120,150,210,.30);

  /* surfaces */
  --glass:      rgba(255,255,255,.035);
  --glass-2:    rgba(15,18,24,.78);

  --radius:     16px;
  --shadow:     0 24px 70px -28px rgba(0,0,0,.8);
  --ease:       cubic-bezier(.22,1,.36,1);
  --spring:     cubic-bezier(.34,1.4,.5,1);

  --display:    "Outfit", system-ui, sans-serif;
  --serif:      "Outfit", system-ui, sans-serif;   /* legacy refs → modern sans */
  --sans:       "Inter", system-ui, -apple-system, sans-serif;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--sans);
  background:var(--ink);
  color:var(--cream);
  overflow-x:hidden;
  min-height:100vh;
  font-weight:400;
  letter-spacing:.005em;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }

/* ---------- Page transitions (fade in on load, fade out on navigate) ---------- */
@keyframes pageFade{ from{ opacity:0; } to{ opacity:1; } }
body{ animation:pageFade .45s var(--ease) both; }
body.leaving{ opacity:0 !important; transition:opacity .26s var(--ease); animation:none; }
@media (prefers-reduced-motion:reduce){ body{ animation:none !important; } body.leaving{ transition:none !important; } }
button{ font-family:inherit; cursor:pointer; }
::selection{ background:rgba(143,180,255,.28); }
:focus-visible{ outline:1px solid var(--aqua); outline-offset:3px; }

/* ---------- Background stage ---------- */
.stage{ position:fixed; inset:0; z-index:0; overflow:hidden; }
.stage .frame{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transform:scale(1.04);
  transition:opacity 2s var(--ease), transform 8s var(--ease);
}
.stage .frame.on{ opacity:1; transform:scale(1.08); }
.stage .veil{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(8,9,12,.55), rgba(8,9,12,.35) 35%, rgba(8,9,12,.82) 100%),
    radial-gradient(130% 100% at 50% 0%, transparent 40%, rgba(8,9,12,.6) 100%);
}
.stage .glow{
  position:absolute; left:50%; top:42%; width:min(90vmin,820px); aspect-ratio:1;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(120,150,210,.10), transparent 62%);
  pointer-events:none;
}

/* ---------- Ambient luxury blobs (slow, large, blurred, lightly transparent) ---------- */
.stage::before, .stage::after{
  content:""; position:absolute; border-radius:50%; pointer-events:none; z-index:2;
  filter:blur(90px); mix-blend-mode:screen; will-change:transform;
}
.stage::before{
  width:64vmax; height:64vmax; left:-16vmax; top:-22vmax;
  background:radial-gradient(circle, rgba(143,180,255,.20), transparent 60%);
  animation:blobDriftA 34s ease-in-out infinite alternate;
}
.stage::after{
  width:58vmax; height:58vmax; right:-18vmax; bottom:-16vmax;
  background:radial-gradient(circle, rgba(176,150,255,.16), transparent 60%);
  animation:blobDriftB 46s ease-in-out infinite alternate;
}
@keyframes blobDriftA{ from{ transform:translate(0,0) scale(1); } to{ transform:translate(14vmax,9vmax) scale(1.25); } }
@keyframes blobDriftB{ from{ transform:translate(0,0) scale(1.1); } to{ transform:translate(-11vmax,-7vmax) scale(.95); } }
/* a third drifting glow inside the dark editorial sections so the ambiance carries down the page */
.section.dark, .section.darker{ position:relative; }
.section.dark::before, .section.darker::before{
  content:""; position:absolute; z-index:0; pointer-events:none; border-radius:50%;
  width:52vmax; height:52vmax; top:-14vmax; left:-8vmax;
  background:radial-gradient(circle, rgba(143,180,255,.10), transparent 62%);
  filter:blur(80px); will-change:transform;
  animation:blobDriftA 40s ease-in-out infinite alternate;
}
.section.dark .inner, .section.darker .inner{ position:relative; z-index:1; }
@media (max-width:640px){ .stage::before,.stage::after,.section.dark::before,.section.darker::before{ filter:blur(60px); } }

/* ---------- Hero darkening: constant edge vignette + scroll-reactive overlay ---------- */
body::after{
  content:""; position:fixed; inset:0; z-index:1; pointer-events:none;
  box-shadow: inset 0 0 200px 36px rgba(0,0,0,.5), inset 0 0 90px rgba(0,0,0,.32);
}
.fx-scrolldark{ position:fixed; inset:0; z-index:1; pointer-events:none; background:#05070a; opacity:0; transition:opacity .12s linear; }

/* ---------- Admin-controlled effect toggles ---------- */
/* Ambient light blobs off */
body.no-blobs .stage::before, body.no-blobs .stage::after,
body.no-blobs .section.dark::before, body.no-blobs .section.darker::before{ display:none !important; }
/* Ken Burns off — pure crossfade, no slow zoom drift */
body:not(.fx-ken) .stage .frame,
body:not(.fx-ken) .stage .frame.on{ transform:none !important; transition:opacity 2s var(--ease) !important; }

/* ---------- Top bar ---------- */
.topbar{
  position:fixed; top:0; left:0; right:0; z-index:40;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px clamp(18px,4vw,52px);
  background:linear-gradient(180deg, rgba(8,9,12,.55), transparent);
}
.brand{ display:flex; align-items:center; gap:14px; }
.brand .logo-mark{ width:38px; flex-shrink:0; color:var(--cream); display:flex; align-items:center; opacity:.95; }
.brand .logo-mark svg{ width:38px; height:auto; }
.brand .mark{ /* legacy circular mark — neutralized */
  width:38px; height:38px; border-radius:10px; display:grid; place-items:center; flex-shrink:0;
  background:rgba(255,255,255,.05); border:1px solid var(--line);
}
.brand .mark svg{ width:20px; height:20px; color:var(--cream); }
.brand .txt b{ font-family:var(--display); font-size:16px; letter-spacing:.42em; font-weight:300; display:block; line-height:1; }
.brand .txt span{ font-size:8.5px; letter-spacing:.46em; color:var(--muted); text-transform:uppercase; font-weight:400; }
.topbar .right{ display:flex; align-items:center; gap:22px; }
.topbar .tel{ font-size:13px; letter-spacing:.02em; color:var(--muted); white-space:nowrap; }
.topbar .tel:hover{ color:var(--cream); }
.cta-stack{ display:flex; flex-direction:column; align-items:flex-end; gap:8px; }
.cta-row{ display:flex; align-items:center; gap:18px; }

/* ---------- Live weather chip (under the Reserve button) ---------- */
.wx{
  appearance:none; cursor:pointer; text-align:left;
  border:1px solid rgba(255,255,255,.12); border-radius:12px;
  background:rgba(12,16,22,.4); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
  color:var(--cream); padding:6px 11px; min-width:0; max-width:248px;
  transition:background .25s var(--ease), border-color .25s;
}
.wx:hover{ background:rgba(16,21,28,.6); border-color:rgba(255,255,255,.22); }
.wx-now{ display:flex; align-items:center; gap:7px; font-size:12px; line-height:1; }
.wx-now .wx-ico{ display:flex; color:var(--aqua); }
.wx-now .wx-ico svg{ width:16px; height:16px; }
.wx-now .wx-temp{ font-weight:700; font-size:13.5px; }
.wx-now .wx-lbl{ color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.wx-now .wx-caret{ color:var(--faint); transition:transform .3s var(--ease); font-size:12px; margin-left:1px; }
.wx[aria-expanded="true"] .wx-caret{ transform:rotate(180deg); }
.wx-days{
  display:grid; grid-template-columns:repeat(3,1fr); gap:6px;
  max-height:0; opacity:0; overflow:hidden;
  transition:max-height .35s var(--ease), opacity .3s var(--ease), margin-top .3s var(--ease);
}
.wx[aria-expanded="true"] .wx-days{ max-height:120px; opacity:1; margin-top:9px; }
.wx-day{
  display:flex; flex-direction:column; align-items:center; gap:2px;
  background:rgba(255,255,255,.05); border-radius:9px; padding:7px 4px;
}
.wx-day .d{ font-size:10px; letter-spacing:.04em; color:var(--muted); text-transform:uppercase; }
.wx-day .i{ display:flex; color:var(--cream); }
.wx-day .t{ font-size:12px; font-weight:600; }
.wx-day .t small{ color:var(--faint); font-weight:400; margin-left:2px; }
.wx-day .p{ font-size:9.5px; color:var(--aqua); }

.btn{
  border:none; border-radius:100px; font-weight:500; letter-spacing:.02em;
  padding:12px 24px; font-size:13.5px; color:#0a0b0d;
  background:var(--cream);
  transition:transform .35s var(--ease), background .3s, box-shadow .35s var(--ease);
}
.btn:hover{ transform:translateY(-1px); background:#fff; box-shadow:0 10px 30px -12px rgba(255,255,255,.4); }
.btn.ghost{
  background:transparent; color:var(--cream); border:1px solid var(--line);
}
.btn.ghost:hover{ background:rgba(255,255,255,.06); box-shadow:none; }
.btn.block{ width:100%; justify-content:center; display:flex; padding:15px; font-size:14px; }

/* ---------- Hero ---------- */
.world{
  position:relative; z-index:10; min-height:100vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:120px 20px 70px; text-align:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:12px;
  font-size:10.5px; letter-spacing:.5em; text-transform:uppercase;
  color:var(--muted); margin-bottom:22px; font-weight:500;
}
.eyebrow::before, .eyebrow::after{ content:""; width:26px; height:1px; background:var(--line); }

.headline{
  font-family:var(--display);
  font-weight:200;
  font-size:clamp(36px, 7vw, 80px);
  line-height:1.02; letter-spacing:-.025em;
}
.headline em{
  font-style:normal; font-weight:500;
  background:linear-gradient(180deg, #ffffff, #9fb0c6);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.subline{
  margin:24px auto 0; max-width:540px;
  color:var(--muted); font-size:clamp(14px,2vw,16.5px); line-height:1.65; font-weight:400;
}
.subline strong{ color:var(--cream); font-weight:500; }

/* ---------- The HUB (toggle-driven radial menu) ---------- */
.hub-wrap{ position:relative; margin:40px auto 0; display:flex; flex-direction:column; align-items:center; }
.hub{ position:relative; width:min(58vmin, 400px); aspect-ratio:1; display:grid; place-items:center; }

/* rings — hidden until open, then scale + spin in */
.hub-ring{
  position:absolute; inset:0; border-radius:50%; border:1px solid var(--line-soft);
  opacity:0; transform:scale(.5) rotate(-70deg); pointer-events:none;
  transition:opacity .5s var(--ease), transform .75s var(--spring);
}
.hub-ring.r2{ inset:16%; border-color:rgba(255,255,255,.05); }
.hub.open .hub-ring{ opacity:1; transform:scale(1) rotate(0); }
.hub.open .hub-ring.r2{ transition-delay:.06s; }

.hub-spokes{ position:absolute; inset:0; z-index:1; pointer-events:none; opacity:0; transition:opacity .5s var(--ease) .18s; }
.hub.open .hub-spokes{ opacity:1; }
.hub-spokes line{ stroke:rgba(255,255,255,.06); stroke-width:1; }

/* the toggle button */
.hub-core{
  position:relative; z-index:9; width:96px; height:96px; border-radius:50%;
  display:grid; place-items:center; cursor:pointer; color:var(--cream);
  background:var(--glass-2); border:1px solid var(--line);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06), 0 24px 50px -24px rgba(0,0,0,.9);
  backdrop-filter:blur(16px);
  transition:width .5s var(--spring), height .5s var(--spring), background .3s, border-color .3s, box-shadow .3s, transform .3s var(--spring);
}
.hub-core:hover{ background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.3); }
.hub.open .hub-core{ width:72px; height:72px; }
.hub-core .core-mark{ display:none; }
.hub-core .burger{ display:flex; flex-direction:column; gap:6px; width:26px; }
.hub-core .burger span{ display:block; height:2px; width:100%; background:currentColor; border-radius:2px; transition:transform .45s var(--spring), opacity .3s var(--ease); }
.hub.open .hub-core .burger span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.hub.open .hub-core .burger span:nth-child(2){ opacity:0; }
.hub.open .hub-core .burger span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

.hub-caption{ margin-top:24px; font-size:10.5px; letter-spacing:.34em; text-transform:uppercase; color:var(--muted); transition:opacity .3s; height:14px; }

/* nodes — clustered + spun in when closed; fan out on open */
.nodes{ position:absolute; inset:0; z-index:6; transform:rotate(-100deg) scale(.4); opacity:0; pointer-events:none;
  transition:transform .75s var(--spring), opacity .5s var(--ease); }
.hub.open .nodes{ transform:none; opacity:1; pointer-events:auto; }

.node{
  position:absolute; left:50%; top:50%; width:84px; height:84px; margin:-42px 0 0 -42px;
  transform:translate(var(--x,0), var(--y,0)) scale(.5); opacity:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  border-radius:50%; background:var(--glass); border:1px solid var(--line-soft);
  backdrop-filter:blur(12px); color:var(--cream); cursor:pointer;
  /* hover responds instantly; the open-stagger delay lives on .hub.open .node only */
  transition:transform .42s var(--spring), opacity .4s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .35s var(--ease);
  z-index:6;
}
.hub.open .node{ transform:translate(var(--x,0), var(--y,0)) scale(1); opacity:1; transition-delay:calc(var(--i,0) * 0.04s); }
.node .ico{ width:23px; height:23px; color:var(--muted); transition:transform .4s var(--spring), color .3s; }
.node .ico svg{ width:100%; height:100%; }
.node .lbl{ font-size:9px; letter-spacing:.12em; text-transform:uppercase; color:var(--faint); transition:color .3s; font-weight:500; }
/* expand + light up smoothly on hover (no stagger delay) */
.hub.open .node:hover, .hub.open .node:focus-visible{
  transform:translate(var(--x,0), var(--y,0)) scale(1.18);
  transition-delay:0s;
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.6);
  box-shadow:0 0 0 1px rgba(255,255,255,.14), 0 22px 60px -14px var(--glow), 0 0 34px -4px rgba(143,180,255,.35);
  z-index:8;
}
.node:hover .ico, .node:focus-visible .ico{ color:#fff; transform:scale(1.12); }
.node:hover .lbl, .node:focus-visible .lbl{ color:var(--cream); }

/* ---------- Scrim + Modal ---------- */
.scrim{
  position:fixed; inset:0; z-index:50;
  background:rgba(6,7,10,.66);
  backdrop-filter:blur(14px) saturate(110%);
  opacity:0; visibility:hidden;
  transition:opacity .4s var(--ease), visibility .4s;
}
.scrim.open{ opacity:1; visibility:visible; }

.modal{ position:fixed; z-index:60; inset:0; display:grid; place-items:center; padding:20px; pointer-events:none;
  visibility:hidden; transition:visibility .45s var(--ease); }
.modal.open{ visibility:visible; transition:visibility 0s; }
.modal .sheet{
  width:min(940px, 100%); max-height:88vh; overflow:auto;
  background:linear-gradient(180deg, rgba(16,19,25,.98), rgba(10,12,16,.99));
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
  transform:translateY(24px) scale(.985); opacity:0;
  transition:transform .5s var(--spring), opacity .35s var(--ease);
  pointer-events:auto; position:relative;
}
.modal.open .sheet{ transform:translateY(0) scale(1); opacity:1; }
.modal .sheet::-webkit-scrollbar{ width:8px; }
.modal .sheet::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.14); border-radius:8px; }

.sheet-head{
  position:sticky; top:0; z-index:2;
  display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
  padding:30px clamp(24px,4vw,40px) 22px;
  background:linear-gradient(180deg, rgba(16,19,25,.99), rgba(16,19,25,.85));
  border-bottom:1px solid var(--line-soft);
}
.sheet-head .k{ font-size:10px; letter-spacing:.42em; text-transform:uppercase; color:var(--muted); font-weight:500; }
.sheet-head h3{ font-family:var(--display); font-weight:300; font-size:clamp(24px,4.4vw,38px); line-height:1.05; margin-top:8px; letter-spacing:-.02em; }
.sheet-head p{ color:var(--muted); font-size:14px; margin-top:8px; max-width:60ch; line-height:1.55; }
.x{
  flex-shrink:0; width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.05); border:1px solid var(--line); color:var(--cream);
  display:grid; place-items:center; font-size:16px;
  transition:transform .35s var(--spring), background .3s;
}
.x:hover{ background:rgba(255,255,255,.12); transform:rotate(90deg); }
.sheet-body{ padding:26px clamp(24px,4vw,40px) 36px; }

/* ---------- Fleet cards ---------- */
.fleet-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:16px; }
.vessel{
  display:block; color:inherit; text-decoration:none;
  border-radius:14px; overflow:hidden; position:relative;
  border:1px solid var(--line-soft); background:rgba(255,255,255,.02);
  transition:transform .4s var(--ease), border-color .3s;
}
.vessel:hover{ transform:translateY(-5px); border-color:var(--line); }
.vessel .ph{ aspect-ratio:4/3; background-size:cover; background-position:center; }
.vessel .meta{ padding:15px 16px; }
.vessel .meta b{ font-family:var(--display); font-weight:400; font-size:16px; display:block; }
.vessel .meta .cls{ font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:var(--muted); }
.vessel .meta .price{ margin-top:9px; font-size:13px; color:var(--muted); }
.vessel .meta .price strong{ color:var(--cream); font-size:17px; font-weight:600; }
.vessel .tag{ position:absolute; top:11px; left:11px; font-size:9px; letter-spacing:.16em; text-transform:uppercase;
  background:rgba(8,9,12,.7); border:1px solid var(--line); padding:5px 10px; border-radius:100px; backdrop-filter:blur(6px); color:var(--cream); }

/* ---------- Forms ---------- */
.field{ margin-bottom:15px; }
.field label{ display:block; font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-bottom:8px; font-weight:500; }
.field input, .field select, .field textarea{
  width:100%; padding:14px 16px; border-radius:11px; font-size:15px; color:var(--cream);
  background:rgba(255,255,255,.04); border:1px solid var(--line); font-family:inherit;
  transition:border-color .3s, background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:rgba(255,255,255,.4); background:rgba(255,255,255,.06); }
.field select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23dbe3ec' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; padding-right:44px; }
.grid2{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
option{ color:#0a0b0d; }

/* lead-capture form */
.lead-consent{ display:flex; gap:10px; align-items:flex-start; font-size:12.5px; color:var(--muted); margin:8px 0 2px; cursor:pointer; line-height:1.4; }
.lead-consent input{ width:18px; height:18px; accent-color:var(--aqua); flex-shrink:0; margin-top:1px; }
.lead-msg{ margin-top:14px; font-size:14px; border-radius:12px; max-height:0; overflow:hidden; padding:0 14px; transition:max-height .45s var(--ease), padding .45s var(--ease); }
.lead-msg.ok{ background:rgba(79,214,147,.12); border:1px solid rgba(79,214,147,.4); color:#bff3d8; max-height:140px; padding:14px; }
.lead-msg.err{ background:rgba(255,111,111,.12); border:1px solid rgba(255,111,111,.4); color:#ffd9d2; max-height:140px; padding:14px; }

.feat{ list-style:none; display:grid; gap:14px; }
.feat li{ display:flex; gap:14px; align-items:flex-start; font-size:15px; color:var(--cream); }
.feat li svg{ flex-shrink:0; width:22px; height:22px; color:var(--cream); margin-top:1px; opacity:.85; }
.feat li span{ color:var(--muted); }

.exp-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:14px; }
.exp{ padding:22px; border-radius:14px; border:1px solid var(--line-soft); background:rgba(255,255,255,.02); transition:transform .35s var(--ease), border-color .3s; }
.exp:hover{ transform:translateY(-4px); border-color:var(--line); }
.exp .ic{ width:34px;height:34px;color:var(--cream);margin-bottom:14px;opacity:.85; }
.exp h4{ font-family:var(--display); font-weight:400; font-size:18px; margin-bottom:6px; }
.exp .pr{ color:var(--cream); font-weight:500; margin:8px 0; font-size:14px; }
.exp p{ color:var(--muted); font-size:13.5px; line-height:1.6; }

.gal{ columns:3; column-gap:12px; }
.gal img{ width:100%; border-radius:12px; margin-bottom:12px; transition:transform .5s var(--ease), filter .4s; }
.gal img:hover{ transform:scale(1.015); filter:brightness(1.06); }

.contact-rows{ display:grid; gap:12px; }
.crow{ display:flex; gap:14px; align-items:center; padding:17px; border-radius:13px; border:1px solid var(--line-soft); background:rgba(255,255,255,.02); transition:border-color .3s; }
.crow:hover{ border-color:var(--line); }
.crow svg{ width:22px;height:22px;color:var(--cream);flex-shrink:0;opacity:.8; }
.crow b{ display:block; font-size:15px; font-weight:500; }
.crow span{ color:var(--muted); font-size:13px; }

.toast{
  position:fixed; left:50%; bottom:28px; transform:translateX(-50%) translateY(120%);
  z-index:80; background:var(--cream); color:#0a0b0d;
  padding:13px 24px; border-radius:100px; font-weight:500; box-shadow:var(--shadow);
  transition:transform .5s var(--spring);
}
.toast.show{ transform:translateX(-50%) translateY(0); }

.scroll-cue{ position:fixed; bottom:22px; left:50%; transform:translateX(-50%); z-index:30; color:var(--faint); font-size:10px; letter-spacing:.3em; text-transform:uppercase; display:flex; flex-direction:column; align-items:center; gap:8px; pointer-events:none; transition:opacity .5s var(--ease); }
.scroll-cue .dot{ width:1px; height:30px; background:linear-gradient(180deg,var(--faint),transparent); animation:cueline 2.2s var(--ease) infinite; }
@keyframes cueline{ 0%,100%{ transform:scaleY(.4); opacity:.4 } 50%{ transform:scaleY(1); opacity:1 } }
.scroll-cue.gone{ opacity:0; }

/* ============================================================
   Momentum scroll (Lenis) + editorial scroll sections
   ============================================================ */
html.lenis, html.lenis body{ height:auto; }
.lenis.lenis-smooth{ scroll-behavior:auto !important; }
.lenis.lenis-smooth [data-lenis-prevent]{ overscroll-behavior:contain; }
.lenis.lenis-stopped{ overflow:hidden; }

.section{ position:relative; z-index:10; padding:clamp(84px,13vw,168px) clamp(20px,6vw,96px); overflow:hidden; }
.section .inner{ max-width:1180px; margin:0 auto; }
.section.dark{ background:var(--ink-2); color:var(--cream); }
.section.darker{ background:var(--ink); color:var(--cream); }
.section.light{
  background:#eef1f5; color:#0a0b0d;
  --cream:#0a0b0d; --muted:rgba(10,11,13,.6); --faint:rgba(10,11,13,.4);
  --line:rgba(10,11,13,.14); --line-soft:rgba(10,11,13,.07); --glass:rgba(10,11,13,.025); --glass-2:rgba(255,255,255,.7);
}
/* light-section component fixes (buttons invert) */
.section.light .btn{ background:#0a0b0d; color:#eef1f5; }
.section.light .btn:hover{ background:#000; box-shadow:0 10px 30px -12px rgba(0,0,0,.4); }
.section.light .btn.ghost{ background:transparent; color:#0a0b0d; border:1px solid rgba(10,11,13,.2); }
.section.light .btn.ghost:hover{ background:rgba(10,11,13,.06); }

.eyebrow2{ display:inline-flex; align-items:center; gap:10px; font-size:10.5px; letter-spacing:.42em; text-transform:uppercase; color:var(--muted); font-weight:500; margin-bottom:18px; }
.eyebrow2::before{ content:""; width:24px; height:1px; background:currentColor; opacity:.5; }
.section h2{ font-family:var(--display); font-weight:200; font-size:clamp(30px,5.2vw,60px); line-height:1.02; letter-spacing:-.025em; }
.section h2 em{ font-style:normal; font-weight:500; }
.section .lead{ color:var(--muted); font-size:clamp(15px,1.9vw,18px); line-height:1.72; margin-top:20px; max-width:54ch; }
.section .lead.center, .section .eyebrow2.center{ margin-left:auto; margin-right:auto; }
.section .acts{ margin-top:30px; display:flex; gap:12px; flex-wrap:wrap; }

.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(34px,5vw,76px); align-items:center; }
.split.flip .col-media{ order:-1; }
.center-col{ text-align:center; max-width:760px; margin:0 auto; display:flex; flex-direction:column; align-items:center; }
.center-col .lead{ margin-left:auto; margin-right:auto; }
.center-col .acts{ justify-content:center; }

.media{ border-radius:20px; overflow:hidden; aspect-ratio:4/3; background-size:cover; background-position:center; box-shadow:var(--shadow); border:1px solid var(--line); }
.media.tall{ aspect-ratio:3/4; }

.statline{ display:flex; gap:clamp(24px,5vw,64px); flex-wrap:wrap; margin-top:36px; }
.statline .s b{ font-family:var(--display); font-weight:200; font-size:clamp(30px,4vw,46px); display:block; line-height:1; letter-spacing:-.02em; }
.statline .s span{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-top:8px; display:block; }

/* scroll reveal — hidden state only applies when JS is active (progressive enhancement).
   Note: .in rules are scoped to html.js too so they out-rank the hidden rule. */
html.js .reveal{ opacity:0; transform:translateY(30px); transition:opacity 1s var(--ease), transform 1s var(--ease); will-change:opacity,transform; }
html.js .reveal.fromL{ transform:translateX(-40px); }
html.js .reveal.fromR{ transform:translateX(40px); }
html.js .reveal.in{ opacity:1 !important; transform:none !important; }
.reveal{ transition:opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.d1{ transition-delay:.09s } .reveal.d2{ transition-delay:.18s } .reveal.d3{ transition-delay:.27s } .reveal.d4{ transition-delay:.36s }

@media(max-width:820px){
  .split{ grid-template-columns:1fr; gap:30px; }
  .split.flip .col-media{ order:0; }
}
@media(prefers-reduced-motion:reduce){ .reveal{ opacity:1 !important; transform:none !important; } }

/* ---------- secondary sections ---------- */
.strip{ position:relative; z-index:10; background:linear-gradient(180deg, var(--ink), var(--ink-2)); padding:clamp(70px,11vw,130px) clamp(20px,6vw,80px); }
.strip h2{ font-family:var(--display); font-size:clamp(28px,5.5vw,52px); font-weight:200; text-align:center; margin-bottom:14px; letter-spacing:-.02em; }
.strip .lede{ text-align:center; color:var(--muted); max-width:600px; margin:0 auto 48px; font-size:15.5px; line-height:1.65; }
.marquee{ overflow:hidden; -webkit-mask:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee .track{ display:flex; gap:14px; width:max-content; animation:slide 44s linear infinite; }
.marquee img{ height:220px; border-radius:12px; }
@keyframes slide{ to{ transform:translateX(-50%); } }

.site-foot{ position:relative; z-index:10; background:var(--ink); border-top:1px solid var(--line-soft); padding:0 clamp(20px,6vw,96px) clamp(34px,5vw,56px); color:var(--muted); font-size:13px; }
.site-foot .foot-h{ font-size:10.5px; letter-spacing:.22em; text-transform:uppercase; color:var(--faint); margin-bottom:14px; }
.site-foot a{ color:var(--muted); transition:color .2s; }
.site-foot a:hover{ color:var(--cream); }

/* Newsletter band */
.foot-news{ max-width:1180px; margin:0 auto; }
.fn-inner{
  display:flex; align-items:center; gap:28px; flex-wrap:wrap;
  margin:clamp(40px,6vw,68px) 0 clamp(34px,4vw,48px); padding:clamp(22px,3vw,32px) clamp(24px,3.5vw,40px);
  background:linear-gradient(120deg, rgba(143,180,255,.08), rgba(176,150,255,.05));
  border:1px solid var(--line); border-radius:22px; position:relative; overflow:hidden;
}
.fn-copy{ flex:1; min-width:240px; }
.fn-copy h3{ font-family:var(--display); font-weight:300; font-size:clamp(20px,2.6vw,28px); color:var(--cream); letter-spacing:-.01em; margin:0 0 6px; }
.fn-copy p{ color:var(--muted); font-size:14px; line-height:1.55; margin:0; max-width:46ch; }
.fn-form{ display:flex; gap:8px; flex:0 0 auto; position:relative; }
.fn-form input[type=email]{
  background:rgba(255,255,255,.06); border:1px solid var(--line); border-radius:100px;
  padding:13px 20px; color:var(--cream); font:inherit; font-size:14px; min-width:240px;
}
.fn-form input[type=email]:focus{ outline:none; border-color:var(--aqua); }
.fn-form button{
  border:none; border-radius:100px; background:var(--cream); color:#0a0b0d;
  font-weight:600; font-size:13.5px; padding:13px 22px; cursor:pointer; white-space:nowrap;
  transition:transform .2s var(--ease);
}
.fn-form button:hover{ transform:translateY(-1px); }
.fn-msg{ width:100%; font-size:13px; margin-top:4px; min-height:0; transition:all .3s; }
.fn-msg.ok{ color:#bff3d8; }
.fn-msg.err{ color:#ffd9d2; }

/* Link columns */
.foot-grid{ max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:36px; align-items:start; padding-top:clamp(20px,3vw,10px); }
.foot-brand .fb-logo{ display:flex; align-items:center; gap:12px; color:var(--cream); }
.foot-brand .fb-logo span{ font-family:var(--display); letter-spacing:.34em; font-weight:300; font-size:15px; }
.foot-brand p{ margin:16px 0 18px; max-width:36ch; line-height:1.6; }
.foot-social{ display:flex; gap:10px; }
.foot-social a{ width:38px; height:38px; border-radius:50%; border:1px solid var(--line); display:grid; place-items:center; color:var(--muted); }
.foot-social a:hover{ color:var(--cream); border-color:rgba(255,255,255,.3); transform:translateY(-2px); transition:all .2s var(--ease); }
.foot-col{ display:flex; flex-direction:column; }
.foot-col a, .foot-linkbtn{ display:block; padding:6px 0; font-size:14px; color:var(--muted); }
.foot-linkbtn{ background:none; border:0; text-align:left; cursor:pointer; font:inherit; }
.foot-linkbtn:hover{ color:var(--cream); }

/* Bottom bar */
.foot-bottom{ max-width:1180px; margin:clamp(34px,4vw,48px) auto 0; padding-top:22px; border-top:1px solid var(--line-soft); display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; opacity:.7; font-size:12px; }
.foot-bottom-links{ display:flex; gap:18px; align-items:center; }
.foot-bottom-links a{ color:var(--muted); }

@media(max-width:820px){
  .foot-grid{ grid-template-columns:1fr 1fr; gap:30px 24px; }
  .foot-brand{ grid-column:1 / -1; }
  .fn-inner{ flex-direction:column; align-items:flex-start; }
  .fn-form{ width:100%; }
  .fn-form input[type=email]{ flex:1; min-width:0; }
}
@media(max-width:480px){
  .foot-grid{ grid-template-columns:1fr; }
  .fn-form{ flex-direction:column; }
  .fn-form button{ width:100%; }
  .cta-stack .wx{ display:none; } /* keep mobile header lean */
}

/* ---------- Mobile ---------- */
@media (max-width:820px){
  .topbar .tel{ display:none; }
  .hub{ width:min(92vw,440px); }
  .node{ width:80px; height:80px; margin:-40px 0 0 -40px; }
  .node .ico{ width:22px; height:22px; }
  .gal{ columns:2; }
}
@media (max-width:560px){
  /* On phones the radial menu becomes a tap-to-expand vertical list. */
  .hub-wrap.mobile .hub{ width:100%; aspect-ratio:auto; display:flex; flex-direction:column; align-items:center; }
  .hub-wrap.mobile .hub-ring, .hub-wrap.mobile .hub-spokes{ display:none; }
  .hub-wrap.mobile .nodes{
    position:static; transform:none; opacity:0; max-height:0; overflow:hidden;
    display:grid; grid-template-columns:1fr 1fr; gap:10px; width:100%; margin-top:0;
    transition:opacity .4s var(--ease), max-height .55s var(--ease), margin-top .4s;
  }
  .hub-wrap.mobile .hub.open .nodes{ opacity:1; max-height:60vh; overflow:auto; margin-top:22px; pointer-events:auto; }
  .hub-wrap.mobile .node{ position:static !important; transform:none !important; opacity:1; margin:0; width:100%; height:auto; padding:18px 14px; flex-direction:row; gap:12px; justify-content:flex-start; border-radius:14px; }
  .hub-wrap.mobile .node .lbl{ font-size:12px; }
  .gal{ columns:1; }
  .grid2{ grid-template-columns:1fr; }
  .modal{ padding:0; }
  .modal .sheet{ max-height:100vh; height:100vh; border-radius:0; }
}

@media (prefers-reduced-motion:reduce){ *{ animation:none !important; transition-duration:.001s !important; } }
