@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

  :root{
    --ink:#0B0B0B;
    --ink-2:#1A1A1A;
    --paper:#FFFFFF;
    --paper-2:#F5F5F0;
    --brass:#FFBA01;
    --brass-light:#FFBA01;
    --brass-hover:#FFCB3D;
    --clay:#C99700;
    --cream:#FAFAFA;
    --line: rgba(250,250,250,0.14);
    --line-dark: rgba(11,11,11,0.12);
    --shadow: 0 30px 60px -25px rgba(0,0,0,0.45);
    --ease: cubic-bezier(.22,1,.36,1);
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--paper);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
  }
  ::selection{ background:var(--brass); color:var(--ink); }

  h1,h2,h3,.serif{ font-family:'Inter', sans-serif; font-weight:700; letter-spacing:-0.02em; }

  a{ color:inherit; text-decoration:none; }
  img{ max-width:100%; display:block; }
  .wrap{ max-width:1600px; margin:0 auto; padding:0 56px; }

  @media (max-width:720px){ .wrap{ padding:0 22px; } }

  /* ---------- reveal utility ---------- */
  .reveal{ opacity:0; transform:translateY(28px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
  .reveal.in{ opacity:1; transform:translateY(0); }
  .reveal-stagger > *{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
  .reveal-stagger.in > *:nth-child(1){transition-delay:.05s;}
  .reveal-stagger.in > *:nth-child(2){transition-delay:.15s;}
  .reveal-stagger.in > *:nth-child(3){transition-delay:.25s;}
  .reveal-stagger.in > *:nth-child(4){transition-delay:.35s;}

  /* ================= NAV ================= */
  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    padding:22px 0;
    background:rgba(11,11,11,0.92); backdrop-filter:blur(14px);
    transition:padding .4s var(--ease), box-shadow .4s var(--ease);
  }
  header.scrolled{
    padding:14px 0;
    box-shadow:0 10px 30px -18px rgba(0,0,0,0.5);
  }
  header .wrap{ display:flex; align-items:center; justify-content:space-between; }
  .logo{ display:flex; align-items:center; gap:10px; font-family:'Inter',sans-serif; font-weight:700; font-size:19px; letter-spacing:-0.01em; color:var(--cream); }
  .logo img{ display:block; height:26px; width:auto; }
  .logo .mark{
    width:30px; height:30px; border-radius:50%;
    background:conic-gradient(from 180deg, var(--brass), var(--clay), var(--brass));
    position:relative;
  }
  .logo .mark::after{
    content:""; position:absolute; inset:6px; border-radius:50%; background:var(--ink);
  }
  nav ul{ display:flex; gap:34px; list-style:none; }
  nav a{
    color:var(--cream); opacity:.78; font-size:13px; font-weight:500; position:relative; padding:4px 0;
    transition:opacity .3s;
  }
  nav a::after{
    content:""; position:absolute; left:0; bottom:-2px; width:0; height:1px; background:var(--brass-light);
    transition:width .35s var(--ease);
  }
  nav a:hover{ opacity:1; }
  nav a:hover::after{ width:100%; }
  .nav-cta{
    background:var(--brass); color:var(--ink)!important; padding:10px 22px; border-radius:100px;
    font-weight:700; font-size:13.5px; opacity:1!important;
  }
  .nav-cta::after{ display:none; }
  .nav-cta:hover{ background:var(--brass-hover); }
  .burger{ display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; }
  .burger span{ width:24px; height:2px; background:var(--cream); }

  @media (max-width:860px){
    nav ul{ display:none; }
    .burger{ display:flex; }
  }

  /* ================= HERO ================= */
  .hero{
    position:relative; min-height:96vh; background:var(--paper); color:var(--ink);
    display:flex; align-items:center; padding-top:120px; padding-bottom:60px; overflow:hidden;
  }
  .hero::before{
    content:""; position:absolute; inset:0;
    background: radial-gradient(ellipse 500px 400px at 90% 10%, rgba(255,186,1,0.10), transparent 60%);
    pointer-events:none;
  }
  .hero-grid{
    position:relative; z-index:2; width:100%;
    display:grid; grid-template-columns:1fr .95fr; gap:56px; align-items:center;
  }
  @media (max-width:960px){ .hero-grid{ grid-template-columns:1fr; } }

  .hero-photo{ position:absolute; inset:0; z-index:0; }
  .hero-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
  .hero-scrim{
    position:absolute; inset:0; z-index:1;
    background:linear-gradient(0deg, rgba(11,11,11,0.92), rgba(11,11,11,0.68) 62%, rgba(11,11,11,0.22));
  }
  .hero-inner{ position:relative; z-index:2; width:100%; }

  .eyebrow-line{ display:flex; align-items:center; gap:12px; margin-bottom:22px; opacity:0; animation:fadeUp .9s var(--ease) .1s forwards; }
  .eyebrow-line .dash{ width:34px; height:1px; background:var(--clay); }
  .eyebrow-line span{ font-size:13px; letter-spacing:.3px; font-weight:600; color:var(--clay); }

  .hero h1{
    font-size:clamp(36px, 4.6vw, 60px); line-height:1.08; font-weight:800; letter-spacing:-0.03em; color:var(--ink);
    opacity:0; animation:fadeUp 1s var(--ease) .22s forwards;
  }
  .hero h1 em{ font-style:normal; color:var(--clay); }
  .hero p.lead{
    margin-top:22px; font-size:17px; line-height:1.65; max-width:440px; color:rgba(11,11,11,0.62);
    opacity:0; animation:fadeUp 1s var(--ease) .36s forwards;
  }
  .hero-ctas{ display:flex; gap:16px; margin-top:34px; flex-wrap:wrap; opacity:0; animation:fadeUp 1s var(--ease) .5s forwards; }
  .btn{
    display:inline-flex; align-items:center; gap:8px; padding:15px 28px; border-radius:100px;
    font-weight:700; font-size:14.5px; cursor:pointer; border:none; transition:transform .35s var(--ease), background .3s, box-shadow .3s, color .3s, border-color .3s;
  }
  .btn-primary{ background:var(--ink); color:var(--cream); }
  .btn-primary:hover{ background:var(--clay); color:var(--ink); transform:translateY(-3px); box-shadow:0 16px 30px -14px rgba(0,0,0,0.35); }
  .btn-outline{ background:transparent; color:var(--ink); border:1.5px solid rgba(11,11,11,0.22); }
  .btn-outline:hover{ border-color:var(--ink); transform:translateY(-3px); }
  .btn-book{
    position:relative; overflow:hidden; background:var(--brass); color:var(--ink);
    animation:bookPulse 2.6s ease-out infinite;
  }
  .btn-book::after{
    content:""; position:absolute; top:0; left:-60%; width:40%; height:100%;
    background:linear-gradient(100deg, transparent, rgba(255,255,255,0.7), transparent);
    transform:skewX(-20deg); animation:bookShine 3.4s ease-in-out infinite; pointer-events:none;
  }
  .btn-book .arr{ display:inline-block; animation:bookNudge 1.6s ease-in-out infinite; }
  .btn-book:hover{ background:var(--brass-hover); transform:translateY(-3px); box-shadow:0 16px 30px -14px rgba(201,151,0,0.6); }
  @keyframes bookPulse{ 0%{ box-shadow:0 0 0 0 rgba(255,186,1,0.55); } 70%,100%{ box-shadow:0 0 0 14px rgba(255,186,1,0); } }
  @keyframes bookShine{ 0%,55%{ left:-60%; } 100%{ left:130%; } }
  @keyframes bookNudge{ 0%,100%{ transform:translate(0,0); } 50%{ transform:translate(3px,-3px); } }
  @media (prefers-reduced-motion:reduce){ .btn-book, .btn-book::after, .btn-book .arr{ animation:none; } }
  .btn-ghost{ background:transparent; color:var(--cream); border:1px solid rgba(250,250,250,0.3); }
  .btn-ghost:hover{ border-color:var(--brass-light); color:var(--brass-light); transform:translateY(-3px); }

  @keyframes fadeUp{ from{ opacity:0; transform:translateY(18px); } to{ opacity:1; transform:translateY(0);} }

  .hero-stats{
    display:grid; grid-template-columns:repeat(3, auto); width:fit-content;
    margin-top:48px; opacity:0; animation:fadeUp 1s var(--ease) .65s forwards;
  }
  .stat{ padding:0 32px; border-left:1px solid rgba(11,11,11,0.14); }
  .stat:first-child{ padding-left:0; border-left:none; }
  .stat b{
    font-family:'Inter',sans-serif; font-size:clamp(22px,2.4vw,30px); font-weight:800; letter-spacing:-0.02em;
    color:var(--ink); display:block; line-height:1.15; white-space:nowrap;
  }
  .stat span{ font-size:12.5px; color:rgba(11,11,11,0.55); letter-spacing:.2px; line-height:1.4; display:block; margin-top:6px; max-width:120px; }
  @media (max-width:520px){
    .hero-stats{ grid-template-columns:1fr 1fr; row-gap:24px; width:100%; }
    .stat:nth-child(2){ padding-left:32px; }
    .stat:nth-child(3){ padding-left:0; border-left:none; grid-column:1; }
  }

  /* hero collage */
  .hero-collage{ position:relative; }
  .collage-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .collage-col{ display:flex; flex-direction:column; gap:16px; }
  .collage-col.offset{ margin-top:44px; }
  .cimg{
    position:relative; border-radius:20px; overflow:hidden;
    box-shadow:0 20px 40px -22px rgba(0,0,0,0.35); transition:transform .45s var(--ease);
  }
  .cimg:hover{ transform:translateY(-6px); }
  .cimg img{ width:100%; height:100%; object-fit:cover; display:block; }
  .cimg.tall{ aspect-ratio:4/5; }
  .cimg.med{ aspect-ratio:4/3.4; }
  .cimg.short{ aspect-ratio:4/3; }
  .accent-block{
    position:relative; border-radius:20px; aspect-ratio:4/1.9; overflow:hidden;
    box-shadow:0 20px 40px -22px rgba(0,0,0,0.35); transition:transform .45s var(--ease);
  }
  .accent-block:hover{ transform:translateY(-6px); }
  .accent-block img{ width:100%; height:100%; object-fit:cover; display:block; }
  .floating-chip{
    position:absolute; top:16px; left:16px; z-index:5; background:var(--cream); border-radius:12px; padding:11px 15px;
    box-shadow:0 16px 32px -16px rgba(0,0,0,0.35); display:flex; align-items:center; gap:9px;
    font-size:12px; font-weight:700; color:var(--ink); animation:float 6s ease-in-out infinite;
  }
  .floating-chip .dotpulse{ width:8px; height:8px; border-radius:50%; background:#2ecc71; flex-shrink:0; }
  @media (max-width:960px){ .hero-collage{ margin-top:24px; } }
  @media (max-width:520px){ .collage-col.offset{ margin-top:0; } }

  /* hero illustration */
  .hero-art{ position:relative; height:520px; }
  .hero-art svg{ width:100%; height:100%; }
  .art-float{ animation:float 7s ease-in-out infinite; }
  @keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-16px);} }

  /* full-bleed photo hero (option B) — overrides the base rules above */
  .hero.hero-full{
    min-height:92vh; background:var(--ink);
    align-items:flex-end; padding-top:160px; padding-bottom:64px;
  }
  .hero.hero-full::before{ display:none; }
  .hero-full .eyebrow-line .dash{ background:var(--brass); }
  .hero-full .eyebrow-line span{ color:var(--brass-light); }
  .hero-full h1{ color:var(--cream); text-shadow:0 4px 28px rgba(0,0,0,0.4); }
  .hero-full h1 em{ color:var(--brass-light); }
  .hero-full p.lead{ color:rgba(250,250,250,0.8); text-shadow:0 2px 14px rgba(0,0,0,0.3); }
  .hero-full .btn-outline{ border-color:rgba(250,250,250,0.4); color:var(--cream); }
  .hero-full .btn-outline:hover{ border-color:var(--cream); }
  .hero-full .stat{ border-left-color:rgba(250,250,250,0.22); }
  .hero-full .stat b{ color:var(--cream); }
  .hero-full .stat span{ color:rgba(250,250,250,0.6); }
  @media (max-width:720px){ .hero.hero-full{ padding-top:120px; } }

  /* ================= MARQUEE ================= */
  .marquee-band{ background:var(--ink-2); padding:18px 0; overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .marquee-track{ display:flex; align-items:center; width:max-content; animation:scroll 36s linear infinite; }
  /* logos are dark-on-transparent PNGs (400x200 with built-in padding); turn them white for the dark band */
  .marquee-track img{
    height:84px; width:auto; margin-right:24px; flex-shrink:0;
    filter:brightness(0) invert(1); opacity:.55; transition:opacity .3s;
  }
  .marquee-track img:hover{ opacity:1; }
  @keyframes scroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
  .marquee-label{ text-align:center; font-size:12px; letter-spacing:.4px; color:rgba(250,250,250,0.4); padding-top:14px; }

  /* ================= SECTION shared ================= */
  section{ padding:120px 0; position:relative; }
  @media (max-width:720px){ section{ padding:80px 0; } }
  .section-head{ max-width:640px; margin-bottom:56px; }
  .kicker{ font-size:13px; color:var(--clay); font-weight:700; letter-spacing:.2px; display:block; margin-bottom:14px; }
  .section-head h2{ font-size:clamp(28px,3.6vw,44px); line-height:1.12; }
  .section-head p{ margin-top:16px; font-size:16.5px; line-height:1.6; color:rgba(11,11,11,0.65); }

  /* ================= LOCATIONS ================= */
  .loc-grid{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:28px; }
  @media (max-width:860px){ .loc-grid{ grid-template-columns:1fr; } }
  .loc-card{
    background:var(--paper); border:1px solid var(--line-dark); border-radius:24px; overflow:hidden;
    display:flex; flex-direction:column; transition:box-shadow .45s var(--ease), border-color .45s var(--ease);
  }
  .loc-card:hover{ box-shadow:0 28px 50px -30px rgba(0,0,0,0.4); border-color:rgba(11,11,11,0.22); }
  .loc-visual{
    position:relative; aspect-ratio:1/0.8; overflow:hidden;
    background:linear-gradient(160deg, var(--ink), var(--ink-2));
  }
  .loc-visual svg, .loc-visual > img{ width:100%; height:100%; display:block; }
  .loc-visual > img{ object-fit:cover; object-position:50% 35%; transition:transform .8s var(--ease); }
  .loc-card:hover .loc-visual > img{ transform:scale(1.04); }
  .loc-badge{
    position:absolute; left:16px; top:16px; z-index:2; font-size:11.5px; font-weight:800; letter-spacing:.2px;
    padding:7px 13px; border-radius:100px; background:var(--brass); color:var(--ink);
  }
  .loc-badge.dark{ background:var(--ink); color:var(--brass); }
  .loc-body{ padding:26px 28px 30px; display:flex; flex-direction:column; flex:1; }
  .loc-area{
    display:inline-flex; align-items:center; gap:7px; margin-bottom:10px;
    font-size:12.5px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; color:var(--clay);
  }
  .loc-body h3{ font-size:30px; line-height:1.1; margin-bottom:10px; }
  .loc-body .addr{ font-size:14.5px; color:rgba(11,11,11,0.6); margin-bottom:18px; }
  .loc-tags{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:20px; }
  .loc-tags span{
    font-size:11px; font-weight:600; padding:6px 10px; border-radius:100px; background:var(--paper-2); color:var(--ink);
    white-space:nowrap;
  }
  .loc-body p.desc{ font-size:15px; line-height:1.7; color:rgba(11,11,11,0.7); }
  .loc-amenities{ margin-top:22px; padding-top:18px; border-top:1px solid var(--line-dark); }
  .loc-amenities h4{ font-size:11.5px; font-weight:700; letter-spacing:.7px; text-transform:uppercase; color:rgba(11,11,11,0.45); margin-bottom:12px; }
  .loc-amenities ul{ list-style:none; display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:12px 14px; }
  .loc-amenities li{ display:flex; align-items:center; gap:8px; min-width:0; }
  .am-icon{ flex:0 0 18px; width:18px; height:18px; color:var(--ink); opacity:.75; }
  .am-text{ display:flex; flex-direction:column; min-width:0; }
  .am-text b{ font-size:12.5px; font-weight:600; line-height:1.25; color:var(--ink); }
  .am-text small{ font-size:11.5px; line-height:1.3; color:rgba(11,11,11,0.5); }
  @media (max-width:1080px){ .loc-amenities ul{ grid-template-columns:repeat(2, minmax(0,1fr)); } }
  .loc-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:auto; padding-top:26px; }

  /* location illustrations */
  .loc-visual svg .tw{ animation:twinkle 3.2s ease-in-out infinite; }
  .loc-visual svg .win{ animation:winGlow 4.4s ease-in-out infinite; }
  .loc-visual svg .bob{ animation:pinBob 2.8s ease-in-out infinite; }
  .loc-visual svg .ring{ transform-box:fill-box; transform-origin:center; animation:ringOut 2.8s ease-out infinite; }
  .loc-visual svg .sway{ transform-box:fill-box; transform-origin:50% 100%; animation:sway 5s ease-in-out infinite; }
  .loc-visual svg .drift{ animation:drift 14s ease-in-out infinite alternate; }
  .loc-visual svg .flow{ animation:dashFlow 1.6s linear infinite; }
  .loc-visual svg .park{ animation:parkIn 9s ease-in-out infinite; }
  .loc-visual svg .driveR{ animation:driveR 9s linear infinite; }
  .loc-visual svg .driveL{ animation:driveL 12s linear infinite; }
  .loc-visual svg .nb{ animation:nbGlow 4.2s ease-in-out infinite; }
  @keyframes nbGlow{ 0%,100%{ opacity:.6; } 15%,30%{ opacity:1; } 45%{ opacity:.6; } }
  @keyframes twinkle{ 0%,100%{ opacity:.2; } 50%{ opacity:1; } }
  @keyframes winGlow{ 0%,100%{ opacity:.4; } 50%{ opacity:1; } }
  @keyframes pinBob{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-7px); } }
  @keyframes ringOut{ 0%{ transform:scale(.35); opacity:.7; } 100%{ transform:scale(1.5); opacity:0; } }
  @keyframes sway{ 0%,100%{ transform:rotate(-2.2deg); } 50%{ transform:rotate(2.2deg); } }
  @keyframes drift{ from{ transform:translateX(-30px); } to{ transform:translateX(50px); } }
  @keyframes dashFlow{ to{ stroke-dashoffset:-24; } }
  @keyframes parkIn{
    0%{ transform:translateX(150px); opacity:0; }
    8%{ opacity:1; }
    38%,78%{ transform:translateX(0); opacity:1; }
    92%,100%{ transform:translateX(0); opacity:0; }
  }
  @keyframes driveR{ from{ transform:translateX(-90px); } to{ transform:translateX(440px); } }
  @keyframes driveL{ from{ transform:translateX(440px); } to{ transform:translateX(-90px); } }
  @media (prefers-reduced-motion:reduce){
    .loc-visual svg *{ animation:none !important; }
    .loc-visual svg .mv{ display:none; }
  }

  /* ================= PACKAGES ================= */
  .pkg-grid{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:22px; align-items:stretch; }
  @media (max-width:960px){ .pkg-grid{ grid-template-columns:1fr; } }
  .fee-note{ font-size:11px; color:rgba(11,11,11,0.45); margin-top:22px; line-height:1.5; }
  .pkg-card{
    background:var(--ink); color:var(--cream); border-radius:22px; padding:40px 34px;
    position:relative; overflow:hidden; transition:transform .5s var(--ease), box-shadow .5s var(--ease);
    display:flex; flex-direction:column;
  }
  .pkg-card.light{ background:var(--cream); color:var(--ink); border:1px solid var(--line-dark); }
  .pkg-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow); }
  .pkg-tag{ font-size:12.5px; letter-spacing:.2px; color:var(--brass-light); font-weight:700; margin-bottom:18px; }
  .pkg-card.light .pkg-tag{ color:var(--clay); }
  .pkg-card h3{ font-size:26px; margin-bottom:14px; }
  .pkg-card p.blurb{ font-size:14.5px; line-height:1.6; opacity:.72; margin-bottom:26px; }
  .pkg-list{ list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:30px; flex:1; }
  .pkg-list li{ font-size:13px; display:flex; gap:10px; align-items:flex-start; opacity:.9; }
  .pkg-list li::before{ content:"—"; color:var(--brass-light); flex-shrink:0; }
  .pkg-card.light .pkg-list li::before{ color:var(--clay); }
  .pkg-cta{
    align-self:flex-start; padding:12px 22px; border-radius:100px; font-weight:700; font-size:13.5px;
    background:var(--brass); color:var(--ink); transition:background .3s, transform .3s;
  }
  .pkg-cta:hover{ background:var(--brass-hover); transform:translateX(4px); }

  /* ================= WHY / DIFFERENTIATORS ================= */
  .why-list{ display:flex; flex-direction:column; }
  .why-row{
    display:grid; grid-template-columns:60px 1fr 1fr; gap:30px; align-items:center;
    padding:34px 0; border-top:1px solid var(--line-dark);
    transition:padding .4s var(--ease);
  }
  .why-list .why-row:last-child{ border-bottom:1px solid var(--line-dark); }
  .why-row:hover{ padding-left:14px; }
  .why-num{ font-family:'Inter',sans-serif; font-weight:800; font-size:15px; color:var(--clay); }
  .why-row h4{ font-family:'Inter',sans-serif; font-size:21px; font-weight:700; letter-spacing:-0.01em; }
  .why-row p{ font-size:15px; line-height:1.6; color:rgba(11,11,11,0.65); }
  @media (max-width:720px){
    .why-row{ grid-template-columns:1fr; gap:8px; }
  }

  /* ================= PROCESS ================= */
  .process-grid{ display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); gap:64px; align-items:center; }
  @media (max-width:860px){ .process-grid{ grid-template-columns:minmax(0,1fr); gap:44px; } }
  .process-visual{
    width:100%; max-width:460px; aspect-ratio:1/1; justify-self:center; border-radius:28px; background:var(--brass);
    padding:8%; display:grid; place-items:center;
  }
  .ck{ width:100%; max-width:330px; background:var(--paper); border-radius:20px; padding:24px 24px 22px; box-shadow:0 28px 54px -30px rgba(0,0,0,0.55); }
  .ck-head{ display:flex; justify-content:space-between; align-items:baseline; font-size:15.5px; }
  .ck-head b{ font-weight:800; }
  .ck-count{ font-size:12.5px; font-weight:700; color:rgba(11,11,11,0.55); font-variant-numeric:tabular-nums; }
  .ck-bar{ height:6px; border-radius:6px; background:rgba(11,11,11,0.09); margin:13px 0 20px; overflow:hidden; }
  .ck-bar i{ display:block; height:100%; width:100%; background:var(--ink); border-radius:6px; transition:width .6s var(--ease); }
  .ck-list{ list-style:none; display:flex; flex-direction:column; gap:15px; }
  .ck-list li{ display:flex; gap:12px; align-items:flex-start; }
  .ck-box{
    flex:none; width:24px; height:24px; border-radius:50%; border:2px solid rgba(11,11,11,0.18);
    display:grid; place-items:center; color:transparent; transition:all .35s;
  }
  .ck-box svg{ transform:scale(.4); transition:transform .35s cubic-bezier(.3,1.6,.5,1); }
  .ck-list li.done .ck-box{ background:var(--ink); border-color:var(--ink); color:var(--brass); }
  .ck-list li.done .ck-box svg{ transform:scale(1); }
  .ck-list b{ display:block; font-size:14px; font-weight:700; line-height:1.3; }
  .ck-list small{ display:block; font-size:12px; color:rgba(11,11,11,0.5); margin-top:1px; }
  .ck-pill{
    margin-top:20px; text-align:center; background:var(--ink); color:var(--brass); font-weight:800; font-size:13px;
    padding:12px; border-radius:100px; opacity:0; transform:scale(.92); transition:all .4s cubic-bezier(.3,1.5,.5,1);
  }
  .ck-pill.show{ opacity:1; transform:scale(1); }
  .process-wrap{ position:relative; padding-left:6px; }
  .process-line{
    position:absolute; left:29px; top:12px; bottom:12px; width:2px; background:var(--line-dark);
  }
  .process-line-fill{
    position:absolute; left:29px; top:12px; width:2px; background:var(--brass);
    height:0; transition:height .6s var(--ease);
  }
  .process-step{ display:flex; gap:28px; padding-bottom:52px; position:relative; }
  .process-step:last-child{ padding-bottom:0; }
  .process-dot{
    width:58px; height:58px; border-radius:50%; background:var(--cream); border:2px solid var(--line-dark);
    display:flex; align-items:center; justify-content:center; font-family:'Inter',sans-serif; font-weight:700; font-size:19px;
    flex-shrink:0; position:relative; z-index:2; transition:all .4s var(--ease);
  }
  .process-step.in .process-dot{ background:var(--ink); color:var(--brass-light); border-color:var(--ink); }
  .process-text h4{ font-size:20px; margin-bottom:8px; padding-top:10px; }
  .process-text p{ font-size:14.5px; color:rgba(11,11,11,0.62); max-width:440px; }

  /* ================= MISSION ================= */
  .mission{ background:var(--ink); color:var(--cream); }
  .mission-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center; }
  @media (max-width:860px){ .mission-grid{ grid-template-columns:1fr; } }
  .mission h2{ font-size:clamp(28px,3.4vw,42px); line-height:1.15; margin-bottom:22px; }
  .mission p{ font-size:16px; line-height:1.75; color:rgba(250,250,250,0.72); margin-bottom:16px; }
  /* departure-board flip */
  .flap-board{ display:flex; flex-direction:column; align-items:center; gap:16px; width:100%; }
  .flap-cap{ font-size:12.5px; font-weight:700; letter-spacing:.28em; color:rgba(250,250,250,0.5); padding-left:.28em; }
  .flap-row{ display:flex; gap:6px; }
  .flap-cell{
    width:clamp(30px,9vw,46px); height:clamp(42px,12.6vw,64px); border-radius:7px; background:#191919;
    border:1px solid rgba(250,250,250,0.1); color:var(--brass); display:grid; place-items:center;
    font-weight:800; font-size:clamp(22px,6.4vw,34px); position:relative; overflow:hidden; perspective:220px;
  }
  .flap-cell::after{ content:""; position:absolute; left:0; right:0; top:50%; height:1px; background:rgba(0,0,0,0.65); }
  .flap-cell span{ display:block; }
  .flap-cell.y{
    background:var(--brass); color:var(--ink); border-color:var(--brass);
    width:clamp(40px,12vw,62px); height:clamp(56px,16.5vw,86px); font-size:clamp(30px,8.6vw,48px);
  }
  .flap-cell.y::after{ background:rgba(0,0,0,0.35); }
  .flap-cell.f span{ animation:flap .11s ease-in-out; }
  @keyframes flap{ 0%{ transform:rotateX(0); } 50%{ transform:rotateX(88deg); } 100%{ transform:rotateX(0); } }
  @media (prefers-reduced-motion:reduce){ .flap-cell.f span{ animation:none; } }
  .mission-year{ font-family:'Inter',sans-serif; font-weight:800; font-size:120px; color:rgba(250,250,250,0.08); line-height:1; position:absolute; }

  /* ================= TESTIMONIALS ================= */
  .rating-row{ display:flex; align-items:center; justify-content:center; gap:12px; margin:14px 0 6px; }
  .rating-stars{ display:flex; gap:4px; }
  .rating-stars .star{
    width:22px; height:22px; fill:var(--brass);
    opacity:0; transform:scale(.4) rotate(-15deg);
    transition:opacity .35s ease, transform .5s cubic-bezier(.3,1.7,.4,1);
  }
  .rating-stars .star:nth-child(1){ transition-delay:.05s; }
  .rating-stars .star:nth-child(2){ transition-delay:.18s; }
  .rating-stars .star:nth-child(3){ transition-delay:.31s; }
  .rating-stars .star:nth-child(4){ transition-delay:.44s; }
  .rating-stars .star:nth-child(5){ transition-delay:.57s; }
  .section-head.in .rating-stars .star{ opacity:1; transform:none; }
  .rating-num{
    font-size:22px; font-weight:800; color:var(--ink); letter-spacing:-0.01em;
    opacity:0; transform:translateY(6px); transition:opacity .4s ease .7s, transform .4s var(--ease) .7s;
  }
  .section-head.in .rating-num{ opacity:1; transform:none; }
  .testi-wrap{ position:relative; max-width:720px; margin:0 auto; text-align:center; }
  .testi-slide{ display:none; animation:panelIn .6s var(--ease); }
  .testi-slide.active{ display:flex; flex-direction:column; justify-content:flex-start; }
  .testi-slide p{ font-family:'Inter',sans-serif; font-weight:500; letter-spacing:0; font-size:clamp(14px,1.25vw,15.5px); line-height:1.8; text-align:justify; text-justify:inter-word; hyphens:auto; -webkit-hyphens:auto; }
  .testi-slide .pt{ display:block; margin-top:14px; }
  .testi-slide .pt b{ font-weight:700; }
  .testi-who{ margin-top:22px; font-size:14px; color:rgba(11,11,11,0.55); font-weight:600; }
  .testi-dots{ display:flex; justify-content:center; gap:9px; margin-top:38px; }
  .testi-dots button{
    width:8px; height:8px; border-radius:50%; border:none; background:var(--line-dark); cursor:pointer; transition:all .3s;
  }
  .testi-dots button.active{ width:24px; border-radius:6px; background:var(--brass); }

  /* ================= APP CTA ================= */
  .app-full{ padding:0; }
  .app-band{ background:var(--ink); border-block:1px solid var(--line); color:var(--cream); padding:88px 0; overflow:hidden; }
  .app-inner{ display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; }
  @media (max-width:860px){ .app-band{ padding:56px 0; } .app-inner{ grid-template-columns:1fr; gap:44px; } }
  .app-band h2{ font-size:clamp(26px,3.2vw,40px); line-height:1.1; letter-spacing:-0.025em; margin-bottom:14px; text-wrap:balance; }
  .app-band p{ font-size:15.5px; line-height:1.65; color:rgba(250,250,250,0.75); max-width:440px; }
  .store-row{ display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
  .store-btn{
    position:relative; display:inline-flex; align-items:center; gap:12px; min-width:176px; padding:11px 20px 11px 16px;
    border-radius:13px; background:var(--cream); color:var(--ink); transition:transform .3s var(--ease);
  }
  a.store-btn:hover{ transform:translateY(-4px); }
  .store-btn svg{ width:22px; height:22px; flex:none; }
  .store-btn small{ display:block; font-size:10.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; opacity:.7; line-height:1.2; }
  .store-btn b{ display:block; font-size:16px; font-weight:800; line-height:1.15; letter-spacing:-0.01em; }
  .store-soon{ background:transparent; color:var(--cream); border:1.5px dashed rgba(250,250,250,0.4); cursor:default; }
  .soon-tag{
    position:absolute; top:-9px; right:12px; font-style:normal; font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
    padding:3px 9px; border-radius:100px; background:var(--brass); color:var(--ink);
  }

  .app-art{ position:relative; display:grid; place-items:center; }
  .app-glow{ position:absolute; inset:8% 12%; background:radial-gradient(closest-side, rgba(255,186,1,0.26), transparent); }
  .app-phone{
    position:relative; width:218px; aspect-ratio:9/18.4; border-radius:34px; background:#1C1C1C; border:6px solid #2E2E2E;
    overflow:hidden; box-shadow:0 34px 60px -30px #000;
  }
  .app-phone::before{ content:""; position:absolute; top:8px; left:50%; width:58px; height:15px; border-radius:10px; background:#000; transform:translateX(-50%); z-index:3; }
  .app-scr{ position:absolute; inset:0; background:#fff; color:var(--ink); padding:34px 14px 14px; display:flex; flex-direction:column; gap:10px; font-size:11px; }
  .app-top{ display:flex; justify-content:space-between; align-items:center; }
  .app-top b{ font-size:15px; font-weight:800; }
  .app-pill{ font-size:9.5px; font-weight:700; padding:3px 8px; border-radius:100px; background:var(--paper-2); }
  .app-tabs{ display:flex; background:var(--paper-2); border-radius:100px; padding:3px; }
  .app-tabs i{ flex:1; text-align:center; font-style:normal; font-size:10px; font-weight:700; padding:6px 0; border-radius:100px; color:#777; transition:all .3s; }
  .app-tabs i.on{ background:var(--ink); color:var(--brass); }
  .app-view{ display:flex; flex-direction:column; gap:10px; }
  .app-view[hidden]{ display:none; }
  .app-chips{ display:flex; gap:6px; }
  .app-chips i{ font-style:normal; font-size:10px; font-weight:700; padding:5px 10px; border-radius:100px; background:var(--paper-2); color:#666; }
  .app-chips i.on{ background:var(--ink); color:var(--brass); }
  .app-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:7px; }
  .app-grid b{ aspect-ratio:1/1; border-radius:9px; background:#FFF3CC; display:grid; place-items:center; font-size:10.5px; font-weight:700; color:#7A5B00; transition:all .3s; }
  .app-grid b.t{ background:#ECECE8; color:#B0B0AA; }
  .app-grid b.sel{ background:var(--brass); color:var(--ink); transform:scale(1.1); box-shadow:0 0 0 4px rgba(255,186,1,0.35); }
  .app-label{ font-size:10.5px; font-weight:700; color:#777; }
  .app-slots{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
  .app-slots b{ border-radius:10px; background:#FFF3CC; color:#7A5B00; text-align:center; font-size:11px; font-weight:700; padding:14px 0; transition:all .3s; }
  .app-slots b.t{ background:#ECECE8; color:#B0B0AA; text-decoration:line-through; }
  .app-slots b.sel{ background:var(--brass); color:var(--ink); box-shadow:0 0 0 4px rgba(255,186,1,0.35); }
  .app-cta{ margin-top:auto; text-align:center; font-weight:800; font-size:12px; padding:11px; border-radius:100px; background:#ECECE8; color:#A0A09A; transition:all .3s; }
  .app-cta.on{ background:var(--ink); color:var(--brass); }
  .app-toast{
    position:absolute; left:12px; right:12px; bottom:64px; background:var(--ink); color:var(--cream); font-weight:700; font-size:11px;
    padding:10px 12px; border-radius:12px; display:flex; gap:8px; align-items:center; opacity:0; transform:translateY(12px);
    transition:all .4s cubic-bezier(.3,1.4,.5,1);
  }
  .app-toast.show{ opacity:1; transform:none; }
  .app-toast em{ font-style:normal; color:var(--brass); }
  @media (max-width:860px){ .app-phone{ width:200px; } }

  /* ================= FOOTER ================= */
  footer{ background:#101010; color:var(--cream); padding:88px 0 0; }
  .foot-grid{
    display:grid; grid-template-columns:1.2fr 1fr 1.25fr 1.05fr; gap:48px; padding-bottom:64px;
  }
  @media (max-width:1100px){ .foot-grid{ grid-template-columns:1fr 1fr; gap:48px 40px; } }
  @media (max-width:560px){ .foot-grid{ grid-template-columns:1fr; gap:40px; padding-bottom:48px; } footer{ padding-top:64px; } }
  .foot-brand .logo{ display:inline-block; margin-bottom:20px; }
  .foot-brand .logo img{ height:30px; }
  .foot-brand p{ font-size:14px; color:rgba(250,250,250,0.6); max-width:290px; line-height:1.7; margin:0; }
  .foot-social{ display:flex; gap:10px; margin-top:26px; }
  .foot-social a{
    width:40px; height:40px; border-radius:50%; border:1px solid rgba(250,250,250,0.22); color:var(--cream);
    display:grid; place-items:center; transition:background .3s, color .3s, border-color .3s, transform .3s var(--ease);
  }
  .foot-social a:hover{ background:var(--brass); border-color:var(--brass); color:var(--ink); transform:translateY(-3px); }
  .foot-col h5{
    font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--brass);
    margin:0 0 24px; padding-bottom:14px; border-bottom:1px solid var(--line);
  }
  .foot-item + .foot-item{ margin-top:24px; }
  .foot-item b{ display:block; font-size:14.5px; font-weight:600; color:var(--cream); margin-bottom:6px; }
  .foot-col p, .foot-col a{ display:block; font-size:14px; line-height:1.6; color:rgba(250,250,250,0.62); margin:0; }
  .foot-item a + a{ margin-top:4px; }
  .foot-col a:hover{ color:var(--brass); }
  .foot-col a[href^="mailto"]{ overflow-wrap:anywhere; }
  .foot-col a.foot-link{ display:inline-block; margin-top:8px; font-size:13px; font-weight:600; color:var(--brass); }
  .foot-col a.foot-link:hover{ color:var(--brass-hover); }
  .foot-bottom{
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px 24px;
    padding:26px 0 30px; border-top:1px solid var(--line); font-size:12.5px; color:rgba(250,250,250,0.45);
  }
  .foot-legal{ display:flex; flex-wrap:wrap; gap:6px 22px; }
  .foot-legal a:hover{ color:var(--brass); }
  .foot-legal span[aria-current]{ color:rgba(250,250,250,0.85); }

  /* ================= LEGAL PAGES ================= */
  .legal-hero{ background:var(--ink); color:var(--cream); padding:170px 0 60px; }
  .legal-hero .kicker{ color:var(--brass); }
  .legal-hero h1{ font-size:clamp(30px,4vw,48px); letter-spacing:-0.02em; margin:14px 0 12px; }
  .legal-hero p{ font-size:15px; color:rgba(250,250,250,0.6); }
  .legal-wrap{ padding:64px 0 100px; display:grid; grid-template-columns:260px minmax(0,1fr); gap:64px; align-items:start; }
  @media (max-width:900px){ .legal-wrap{ grid-template-columns:1fr; gap:32px; } }
  .legal-toc{ position:sticky; top:110px; }
  .legal-toc h5{ font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(11,11,11,0.4); margin-bottom:16px; }
  .legal-toc ol{ list-style:none; counter-reset:toc; display:flex; flex-direction:column; gap:10px; }
  .legal-toc li{ counter-increment:toc; }
  .legal-toc a{
    font-size:14px; color:rgba(11,11,11,0.62); display:flex; gap:10px; transition:color .25s;
  }
  .legal-toc a::before{ content:counter(toc, decimal-leading-zero); font-weight:700; color:var(--clay); flex:none; }
  .legal-toc a:hover, .legal-toc a.active{ color:var(--ink); font-weight:600; }
  @media (max-width:900px){ .legal-toc{ position:static; } .legal-toc ol{ flex-direction:row; flex-wrap:wrap; gap:8px 18px; } }
  .legal-body section{ padding-bottom:44px; margin-bottom:44px; border-bottom:1px solid var(--line-dark); scroll-margin-top:110px; }
  .legal-body section:last-child{ border-bottom:none; margin-bottom:0; padding-bottom:0; }
  .legal-body h2{ font-size:22px; letter-spacing:-0.01em; margin-bottom:16px; display:flex; align-items:baseline; gap:12px; }
  .legal-body h2 span{ font-size:14px; font-weight:700; color:var(--clay); }
  .legal-body h3{ font-size:16px; margin:22px 0 8px; }
  .legal-body p{ font-size:15px; line-height:1.75; color:rgba(11,11,11,0.72); margin-bottom:14px; max-width:70ch; }
  .legal-body ul{ margin:0 0 14px 20px; display:flex; flex-direction:column; gap:8px; max-width:70ch; }
  .legal-body li{ font-size:15px; line-height:1.65; color:rgba(11,11,11,0.72); }
  .legal-body strong{ color:var(--ink); }
  .legal-updated{ font-size:13px; color:rgba(11,11,11,0.45); margin-bottom:6px; }
  .legal-note{
    background:var(--paper-2); border-left:3px solid var(--brass); border-radius:0 12px 12px 0;
    padding:16px 20px; font-size:14px; line-height:1.65; color:rgba(11,11,11,0.68); margin-bottom:14px; max-width:70ch;
  }
  .legal-note strong{ color:var(--ink); }

  /* scroll progress */
  .progress{ position:fixed; top:0; left:0; height:3px; background:var(--brass); z-index:200; width:0%; }

  /* ================= BOOKING MODAL ================= */
  .modal-overlay{
    position:fixed; inset:0; background:rgba(11,11,11,0.6); backdrop-filter:blur(3px);
    display:none; align-items:center; justify-content:center; z-index:300; padding:20px;
  }
  .modal-overlay.open{ display:flex; }
  .modal-card{
    background:var(--cream); border-radius:22px; padding:38px; max-width:440px; width:100%;
    position:relative; box-shadow:var(--shadow); animation:panelIn .4s var(--ease);
  }
  .modal-close{
    position:absolute; top:18px; right:18px; background:rgba(11,11,11,0.06); border:none; width:32px; height:32px;
    border-radius:50%; font-size:14px; cursor:pointer; color:var(--ink);
  }
  .modal-card h3{ font-size:24px; margin-bottom:6px; }
  .modal-sub{ font-size:14px; color:rgba(11,11,11,0.6); margin-bottom:24px; line-height:1.5; }
  .form-field{ margin-bottom:15px; }
  .form-field label{ display:block; font-size:12px; font-weight:700; margin-bottom:6px; color:rgba(11,11,11,0.65); }
  .form-field input, .form-field select, .form-field textarea{
    width:100%; padding:12px 14px; border-radius:10px; border:1px solid rgba(11,11,11,0.15);
    font-family:'Inter',sans-serif; font-size:14px; background:#fff; color:var(--ink);
  }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus{ outline:2px solid var(--brass); outline-offset:1px; }
  .form-field textarea{ resize:vertical; min-height:66px; }
  .modal-submit{ width:100%; justify-content:center; margin-top:4px; }
  .modal-note{ font-size:11px; color:rgba(11,11,11,0.45); margin-top:12px; text-align:center; line-height:1.4; }
