/* ============================================================
   ALTINEL — cinematic luxury one-page
   ============================================================ */
:root{
  --ink:#0A0E14;
  --ink-2:#0d121b;
  --panel:#111824;
  --panel-2:#151d2b;
  --line:rgba(214,196,150,.16);
  --line-soft:rgba(255,255,255,.08);
  --gold:#C2A24C;
  --gold-2:#D8BD78;
  --gold-deep:#9c7f37;
  --cream:#F3EEE3;
  --text:#E7E2D6;
  --muted:#9aa0ab;
  --muted-2:#717683;
  --maxw:1280px;
  --ease:cubic-bezier(.22,.61,.36,1);
  --serif:"Cormorant Garamond",Georgia,serif;
  --sans:"Jost","Helvetica Neue",Arial,sans-serif;
}
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  background:var(--ink); color:var(--text);
  font-family:var(--sans); font-size:16px; line-height:1.7; font-weight:300;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
h1,h2,h3,h4{ font-family:var(--serif); font-weight:400; line-height:1.08; overflow-wrap:break-word; }
blockquote{ overflow-wrap:break-word; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
em{ font-style:italic; color:var(--gold-2); }
::selection{ background:var(--gold); color:var(--ink); }

.section{ max-width:var(--maxw); margin:0 auto; padding:140px 32px; }
@media(max-width:768px){ .section{ padding:90px 22px; } }

.kicker{ display:inline-block; font-family:var(--sans); font-size:11.5px; font-weight:500; letter-spacing:.34em; text-transform:uppercase; color:var(--gold); margin-bottom:26px; }
.kicker.light{ color:var(--gold-2); }
.section-title{ font-size:clamp(2.3rem,5vw,4rem); font-weight:300; letter-spacing:.005em; color:var(--cream); }
.section-head{ max-width:720px; margin-bottom:70px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.scroll-progress{ position:fixed; top:0; left:0; height:2px; width:0; z-index:200; background:linear-gradient(90deg,var(--gold-deep),var(--gold-2)); }

/* ============================================================ NAV */
.nav{ position:fixed; top:0; left:0; right:0; z-index:100; display:flex; align-items:center; justify-content:space-between; padding:26px 40px; transition:padding .4s var(--ease), background .4s, border-color .4s; border-bottom:1px solid transparent; }
.nav.scrolled{ padding:16px 40px; background:rgba(10,14,20,.82); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px); border-bottom:1px solid var(--line); }
.brand{ display:flex; align-items:center; gap:13px; }
.brand-mark svg{ width:24px; height:28px; display:block; }
.brand-mark svg path{ fill:none; stroke:var(--gold); stroke-width:1.4; }
.brand-text{ display:flex; flex-direction:column; line-height:1; }
.brand-name{ font-family:var(--sans); font-weight:500; font-size:19px; letter-spacing:.42em; color:var(--cream); }
.brand-sub{ font-family:var(--sans); font-weight:300; font-size:8.5px; letter-spacing:.24em; text-transform:uppercase; color:var(--muted); margin-top:5px; }

.nav-links{ display:flex; gap:38px; position:absolute; left:50%; transform:translateX(-50%); }
.nav-links a{ font-size:13px; font-weight:400; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); position:relative; transition:color .3s; }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:-7px; width:0; height:1px; background:var(--gold); transition:width .35s var(--ease); }
.nav-links a:hover{ color:var(--cream); } .nav-links a:hover::after{ width:100%; }

.nav-right{ display:flex; align-items:center; gap:22px; }
.lang{ display:flex; align-items:center; gap:7px; font-size:12px; font-weight:500; letter-spacing:.1em; }
.lang button{ background:none; border:none; color:var(--muted-2); cursor:pointer; font:inherit; transition:color .25s; }
.lang button.active{ color:var(--gold); }
.lang-sep{ color:var(--muted-2); }
.btn-nav{ font-size:12px; font-weight:500; letter-spacing:.14em; text-transform:uppercase; padding:11px 24px; border:1px solid var(--line); color:var(--cream); border-radius:1px; transition:background .3s, border-color .3s, color .3s; }
.btn-nav:hover{ background:var(--gold); border-color:var(--gold); color:var(--ink); }

.burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.burger span{ width:24px; height:1.5px; background:var(--cream); transition:.35s var(--ease); }
.burger.open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

/* ============================================================ BUTTONS */
.btn{ display:inline-flex; align-items:center; gap:11px; font-family:var(--sans); font-size:12.5px; font-weight:500; letter-spacing:.18em; text-transform:uppercase; padding:17px 38px; border-radius:1px; cursor:pointer; transition:transform .35s var(--ease), background .35s, color .35s, border-color .35s, box-shadow .35s; }
.btn-gold{ background:linear-gradient(135deg,var(--gold),var(--gold-deep)); color:var(--ink); border:1px solid transparent; }
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 14px 34px rgba(194,162,76,.32); }
.btn-line{ background:transparent; color:var(--cream); border:1px solid rgba(243,238,227,.32); }
.btn-line:hover{ border-color:var(--gold); color:var(--gold-2); transform:translateY(-2px); }
.btn-block{ width:100%; justify-content:center; }

/* ============================================================ HERO */
.hero{ position:relative; height:100vh; min-height:640px; display:flex; align-items:center; overflow:hidden; }
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-img{ position:absolute; inset:0; background:url('assets/img/home.jpg') center 38%/cover no-repeat; animation:kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns{ from{ transform:scale(1.05) translate(0,0);} to{ transform:scale(1.16) translate(-1.5%,-1%);} }
.hero-veil{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(10,14,20,.62) 0%,rgba(10,14,20,.28) 32%,rgba(10,14,20,.42) 62%,rgba(10,14,20,.96) 100%); }
.hero-inner{ position:relative; z-index:2; max-width:var(--maxw); width:100%; margin:0 auto; padding:0 40px; }
.hero-eyebrow{ font-family:var(--sans); font-size:13px; font-weight:400; letter-spacing:.42em; text-transform:uppercase; color:var(--gold-2); margin-bottom:30px; }
.hero-title{ font-size:clamp(3rem,8.2vw,7rem); font-weight:300; letter-spacing:.01em; color:#fff; line-height:1.02; text-shadow:0 2px 40px rgba(0,0,0,.4); }
.hero-sub{ max-width:560px; margin:32px 0 0; font-size:clamp(1.05rem,1.5vw,1.28rem); font-weight:300; color:#d7d3c8; line-height:1.7; }
.hero-actions{ display:flex; gap:16px; margin-top:46px; flex-wrap:wrap; }

.hero-motto{ position:absolute; bottom:46px; left:50%; transform:translateX(-50%); z-index:2; display:flex; align-items:center; gap:18px; font-family:var(--sans); font-size:12px; font-weight:400; letter-spacing:.3em; text-transform:uppercase; color:rgba(243,238,227,.62); white-space:nowrap; }
.hero-motto i{ width:30px; height:1px; background:var(--gold); opacity:.7; }
.hero-scroll{ position:absolute; bottom:42px; right:42px; z-index:2; width:26px; height:42px; border:1px solid rgba(243,238,227,.3); border-radius:14px; }
.hero-scroll span{ position:absolute; left:50%; top:8px; width:3px; height:8px; background:var(--gold); border-radius:2px; transform:translateX(-50%); animation:scrolldot 1.9s infinite; }
@keyframes scrolldot{ 0%{ opacity:0; transform:translate(-50%,0);} 40%{ opacity:1;} 80%{ opacity:0; transform:translate(-50%,14px);} }

/* ============================================================ INTRO */
.intro{ text-align:center; max-width:980px; }
.statement{ font-size:clamp(2.4rem,5.6vw,4.6rem); font-weight:300; color:var(--cream); letter-spacing:.005em; }
.statement-sub{ max-width:680px; margin:36px auto 0; font-size:1.18rem; font-weight:300; color:var(--muted); line-height:1.8; }
.facts{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; margin-top:80px; padding-top:56px; border-top:1px solid var(--line); }
.fact{ display:flex; flex-direction:column; gap:12px; }
.fact-num{ font-family:var(--serif); font-size:clamp(2.4rem,4vw,3.2rem); font-weight:400; color:var(--gold-2); line-height:1; }
.fact-num i{ font-style:normal; font-size:.42em; color:var(--muted); letter-spacing:.05em; margin-left:3px; }
.fact-lbl{ font-family:var(--sans); font-size:11px; font-weight:400; letter-spacing:.18em; text-transform:uppercase; color:var(--muted-2); }

/* ============================================================ DIVISION */
.division{ display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:0; max-width:1500px; margin:0 auto; }
.division.reverse .division-media{ order:2; }
.division-media{ height:78vh; min-height:520px; overflow:hidden; }
.dm-img{ width:100%; height:100%; background-size:cover; background-position:center; transition:transform 1.2s var(--ease); }
.division-media:hover .dm-img{ transform:scale(1.06); }
.division-body{ padding:80px clamp(40px,6vw,96px); }
.division-title{ font-size:clamp(2.2rem,4vw,3.4rem); font-weight:300; color:var(--cream); margin-bottom:22px; }
.division-lead{ font-size:1.12rem; font-weight:300; color:var(--muted); max-width:520px; margin-bottom:44px; line-height:1.8; }
.division-grid{ display:grid; grid-template-columns:1fr 1fr; gap:30px 36px; }
.dg h4{ font-family:var(--sans); font-size:14px; font-weight:500; letter-spacing:.08em; color:var(--cream); margin-bottom:7px; padding-bottom:11px; border-bottom:1px solid var(--line); position:relative; }
.dg h4::after{ content:""; position:absolute; left:0; bottom:-1px; width:24px; height:1px; background:var(--gold); }
.dg p{ font-size:.95rem; color:var(--muted-2); font-weight:300; }

/* ============================================================ FLEET */
.fleet-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.yacht{ background:var(--panel); border:1px solid var(--line-soft); transition:transform .5s var(--ease), border-color .5s; }
.yacht:hover{ transform:translateY(-7px); border-color:var(--line); }
.yacht-img{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.yacht-img img{ width:100%; height:100%; object-fit:cover; transition:transform .9s var(--ease); }
.yacht:hover .yacht-img img{ transform:scale(1.07); }
.yacht-price{ position:absolute; bottom:0; left:0; background:rgba(10,14,20,.78); backdrop-filter:blur(6px); color:var(--gold-2); font-family:var(--serif); font-size:1.35rem; padding:8px 18px; letter-spacing:.02em; }
.yacht-body{ padding:28px 28px 30px; }
.yacht-body h3{ font-size:1.9rem; font-weight:400; color:var(--cream); }
.yacht-builder{ display:block; font-family:var(--sans); font-size:11px; font-weight:400; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-top:6px; }
.yacht-specs{ display:flex; align-items:center; gap:14px; margin:18px 0 22px; font-size:.95rem; color:var(--muted); }
.yacht-specs i{ width:4px; height:4px; border-radius:50%; background:var(--gold); }
.yacht-link{ font-family:var(--sans); font-size:12px; font-weight:500; letter-spacing:.14em; text-transform:uppercase; color:var(--cream); transition:color .3s, letter-spacing .3s; }
.yacht-link:hover{ color:var(--gold-2); letter-spacing:.18em; }
.fleet-foot{ text-align:center; margin-top:56px; }

/* ============================================================ BAND */
.band{ position:relative; min-height:78vh; display:flex; align-items:center; overflow:hidden; }
.band-media{ position:absolute; inset:0; z-index:0; }
.band-img{ position:absolute; inset:0; background:url('assets/img/aerial.jpg') center/cover no-repeat; }
.band-veil{ position:absolute; inset:0; background:linear-gradient(90deg,rgba(10,14,20,.92) 0%,rgba(10,14,20,.66) 50%,rgba(10,14,20,.5) 100%); }
.band-inner{ position:relative; z-index:2; max-width:var(--maxw); margin:0 auto; width:100%; padding:90px 40px; }
.band blockquote{ font-family:var(--serif); font-size:clamp(2.6rem,6vw,5.2rem); font-weight:300; color:#fff; line-height:1.08; max-width:780px; }
.band-sub{ max-width:540px; margin-top:34px; font-size:1.12rem; font-weight:300; color:#cfcbc0; line-height:1.8; }

/* ============================================================ WHY */
.why-list{ border-top:1px solid var(--line); }
.why-row{ display:grid; grid-template-columns:90px 1fr; gap:30px; align-items:start; padding:40px 0; border-bottom:1px solid var(--line); transition:padding-left .4s var(--ease); }
.why-row:hover{ padding-left:16px; }
.why-no{ font-family:var(--serif); font-size:1.6rem; color:var(--gold); opacity:.7; }
.why-row h4{ font-family:var(--serif); font-size:1.7rem; font-weight:400; color:var(--cream); margin-bottom:10px; }
.why-row p{ font-size:1.05rem; font-weight:300; color:var(--muted); max-width:640px; line-height:1.75; }

/* ============================================================ GROUP */
.group-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.grp{ padding:38px 26px; border:1px solid var(--line-soft); text-align:center; transition:border-color .4s, background .4s, transform .4s var(--ease); }
.grp:hover{ border-color:var(--line); background:var(--panel); transform:translateY(-4px); }
.grp h4{ font-size:1.5rem; font-weight:400; color:var(--cream); margin-bottom:8px; }
.grp span{ font-family:var(--sans); font-size:11.5px; font-weight:300; letter-spacing:.12em; text-transform:uppercase; color:var(--muted-2); }
.affil{ margin-top:60px; padding-top:46px; border-top:1px solid var(--line); text-align:center; }
.affil-label{ display:block; font-family:var(--sans); font-size:11px; letter-spacing:.26em; text-transform:uppercase; color:var(--muted-2); margin-bottom:26px; }
.affil-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:18px 48px; }
.affil-row span{ font-family:var(--serif); font-size:1.5rem; font-weight:500; letter-spacing:.06em; color:var(--muted); transition:color .3s; }
.affil-row span:hover{ color:var(--gold-2); }

/* ============================================================ OFFICES */
.office-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.office{ padding:46px 40px; border:1px solid var(--line-soft); background:linear-gradient(180deg,var(--panel),var(--ink-2)); transition:border-color .4s, transform .4s var(--ease); position:relative; overflow:hidden; }
.office::before{ content:""; position:absolute; top:0; left:0; width:0; height:2px; background:linear-gradient(90deg,var(--gold),var(--gold-2)); transition:width .5s var(--ease); }
.office:hover{ border-color:var(--line); transform:translateY(-5px); }
.office:hover::before{ width:100%; }
.office-tag{ font-family:var(--sans); font-size:10.5px; font-weight:500; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); }
.office h3{ font-size:2.4rem; font-weight:400; color:var(--cream); margin:14px 0 18px; }
.office p{ font-size:1rem; font-weight:300; color:var(--muted); line-height:1.85; }

/* ============================================================ CONTACT */
.contact-inner{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start; }
.contact-title{ font-size:clamp(2.2rem,4.4vw,3.6rem); font-weight:300; color:var(--cream); margin:14px 0 18px; }
.contact-sub{ font-size:1.12rem; font-weight:300; color:var(--muted); max-width:420px; line-height:1.8; }
.contact-info{ margin-top:42px; }
.ci{ display:flex; flex-direction:column; gap:5px; padding:18px 0; border-top:1px solid var(--line); transition:padding-left .3s var(--ease); }
.ci:last-child{ border-bottom:1px solid var(--line); }
.ci:hover{ padding-left:8px; }
.ci-k{ font-family:var(--sans); font-size:10.5px; letter-spacing:.2em; text-transform:uppercase; color:var(--muted-2); }
.ci-v{ font-family:var(--serif); font-size:1.5rem; color:var(--cream); }
.ci:hover .ci-v{ color:var(--gold-2); }
.socials{ display:flex; flex-wrap:wrap; gap:24px; margin-top:34px; }
.socials a{ font-family:var(--sans); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); transition:color .3s; }
.socials a:hover{ color:var(--gold-2); }

.contact-form{ background:linear-gradient(180deg,var(--panel),var(--ink-2)); border:1px solid var(--line-soft); padding:42px; }
.field{ margin-bottom:22px; display:flex; flex-direction:column; gap:9px; flex:1; }
.field-row{ display:flex; gap:18px; }
.field label{ font-family:var(--sans); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); }
.field input,.field textarea,.field select{ background:rgba(255,255,255,.03); border:1px solid var(--line-soft); border-radius:1px; padding:14px 16px; color:var(--cream); font-family:var(--sans); font-weight:300; font-size:.98rem; transition:border-color .3s, background .3s; resize:vertical; }
.field select{ appearance:none; -webkit-appearance:none; cursor:pointer; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C2A24C' fill='none' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; }
.field input::placeholder,.field textarea::placeholder{ color:var(--muted-2); }
.field input:focus,.field textarea:focus,.field select:focus{ outline:none; border-color:var(--gold); background:rgba(194,162,76,.05); }
.field option{ background:var(--ink); color:var(--cream); }

/* ============================================================ FOOTER */
.footer{ border-top:1px solid var(--line); padding:70px 32px 36px; background:var(--ink-2); }
.footer-top{ max-width:var(--maxw); margin:0 auto; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:30px; padding-bottom:42px; border-bottom:1px solid var(--line-soft); }
.footer-motto{ font-family:var(--serif); font-size:1.4rem; font-style:italic; color:var(--gold-2); letter-spacing:.04em; }
.footer-bottom{ max-width:var(--maxw); margin:26px auto 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-family:var(--sans); font-size:12px; letter-spacing:.05em; color:var(--muted-2); }

/* ============================================================ REVEAL */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* ============================================================ RESPONSIVE */
@media(max-width:980px){
  .facts{ grid-template-columns:repeat(2,1fr); gap:36px 20px; }
  .division{ grid-template-columns:1fr; }
  .division.reverse .division-media{ order:0; }
  .division-media{ height:54vh; min-height:360px; }
  .division-body{ padding:60px 32px; }
  .fleet-grid{ grid-template-columns:1fr 1fr; }
  .group-grid{ grid-template-columns:repeat(2,1fr); }
  .office-grid{ grid-template-columns:1fr; }
  .contact-inner{ grid-template-columns:1fr; gap:44px; }
}
@media(max-width:768px){
  .nav{ padding:18px 22px; } .nav.scrolled{ padding:13px 22px; }
  .nav-links{ position:fixed; inset:0 0 0 auto; top:0; right:0; width:80%; height:100vh; flex-direction:column; justify-content:center; gap:6px; background:rgba(10,14,20,.97); backdrop-filter:blur(20px); transform:translateX(100%); transition:transform .45s var(--ease); padding:0 44px; }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ font-size:1.25rem; font-family:var(--serif); text-transform:none; letter-spacing:.02em; padding:14px 0; border-bottom:1px solid var(--line-soft); }
  .burger{ display:flex; } .btn-nav{ display:none; }
  .hero-inner{ padding:0 22px; }
  .hero-motto{ font-size:9.5px; gap:10px; } .hero-motto i{ width:16px; }
  .hero-scroll{ display:none; }
  .fleet-grid{ grid-template-columns:1fr; }
  .division-grid{ grid-template-columns:1fr 1fr; gap:24px; }
  .why-row{ grid-template-columns:1fr; gap:8px; }
  .why-no{ font-size:1.2rem; }
  .field-row{ flex-direction:column; gap:0; }
  .group-grid{ grid-template-columns:1fr 1fr; }
  .footer-top{ flex-direction:column; align-items:flex-start; }
  .section-title{ font-size:clamp(1.8rem,8vw,2.6rem); }
  .statement{ font-size:clamp(1.9rem,8.5vw,2.8rem); }
  .division-title{ font-size:clamp(1.8rem,7vw,2.6rem); }
  .band blockquote{ font-size:clamp(2rem,9vw,3rem); }
  .contact-title{ font-size:clamp(1.8rem,7vw,2.6rem); }
  .hero-title{ font-size:clamp(2.6rem,11vw,4rem); }
}
@media(max-width:480px){
  .facts{ grid-template-columns:1fr 1fr; }
  .division-grid{ grid-template-columns:1fr; }
}
@media(prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; }
  .reveal{ opacity:1; transform:none; }
  html{ scroll-behavior:auto; }
}

/* ============================================================
   MOTION LAYER — intro, entrance, parallax, cursor
   ============================================================ */
body.booting{ overflow:hidden; height:100vh; }

/* ---- cinematic intro ---- */
.boot{ position:fixed; inset:0; z-index:1000; pointer-events:auto; }
.boot.gone{ display:none; }
.boot-panel{ position:absolute; left:0; width:100%; height:50.5%; background:#06090f; will-change:transform; transition:transform 1.15s cubic-bezier(.76,0,.24,1); }
.boot-top{ top:0; } .boot-bottom{ bottom:0; }
.boot.reveal .boot-top{ transform:translateY(-100%); }
.boot.reveal .boot-bottom{ transform:translateY(100%); }
.boot-stage{ position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:20px; transition:opacity .55s ease, transform .9s var(--ease); }
.boot.reveal .boot-stage{ opacity:0; transform:scale(1.04); }
.boot-yacht{ width:min(320px,68vw); height:auto; overflow:visible; }
.boot-yacht path{ fill:none; stroke-linejoin:round; stroke-linecap:round; }
.boot-wl{ stroke:var(--gold-2); stroke-width:1; opacity:.55; stroke-dasharray:346; stroke-dashoffset:346; animation:drawIn .9s var(--ease) forwards .15s; filter:drop-shadow(0 0 6px rgba(216,189,120,.5)); }
.boot-reflection{ fill:none; stroke:var(--gold); stroke-width:1.1; stroke-linejoin:round; stroke-linecap:round; opacity:0; filter:blur(1.1px); -webkit-mask-image:linear-gradient(to bottom,#000 2%,rgba(0,0,0,.35) 38%,transparent 74%); mask-image:linear-gradient(to bottom,#000 2%,rgba(0,0,0,.35) 38%,transparent 74%); animation:reflectIn 1.3s ease forwards 2s; }
@keyframes reflectIn{ to{ opacity:.2; } }
.boot-ship{ stroke:var(--gold); stroke-width:1.3; stroke-dasharray:1320; stroke-dashoffset:1320; filter:drop-shadow(0 0 8px rgba(194,162,76,.35)); animation:drawIn 1.6s var(--ease) forwards .5s; }
@keyframes drawIn{ to{ stroke-dashoffset:0; } }
.boot-word{ display:flex; gap:.46em; font-family:var(--sans); font-weight:500; font-size:clamp(1.5rem,4.6vw,2.6rem); letter-spacing:.42em; color:var(--cream); padding-left:.42em; }
.boot-word span{ opacity:0; transform:translateY(16px); animation:letterIn .7s var(--ease) forwards; }
.boot-word span:nth-child(1){ animation-delay:1.5s; } .boot-word span:nth-child(2){ animation-delay:1.58s; }
.boot-word span:nth-child(3){ animation-delay:1.66s; } .boot-word span:nth-child(4){ animation-delay:1.74s; }
.boot-word span:nth-child(5){ animation-delay:1.82s; } .boot-word span:nth-child(6){ animation-delay:1.9s; }
.boot-word span:nth-child(7){ animation-delay:1.98s; }
@keyframes letterIn{ to{ opacity:1; transform:none; } }
.boot-tag{ font-family:var(--sans); font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); opacity:0; animation:fadeUp .9s ease forwards 2.35s; }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(8px);} to{ opacity:1; transform:none;} }
.boot-skip{ position:absolute; bottom:30px; right:32px; z-index:3; background:none; border:none; color:var(--muted-2); font-family:var(--sans); font-size:11px; letter-spacing:.22em; text-transform:uppercase; cursor:pointer; opacity:0; animation:fadeUp .6s ease forwards 1.7s; transition:color .3s; }
.boot-skip:hover{ color:var(--gold-2); }
.boot-stage{ gap:26px; }

/* ---- hero entrance (gated by JS, transition-based for robust end state) ---- */
.js .h-enter{ opacity:0; transition:opacity 1s var(--ease), transform 1.15s var(--ease), filter 1s var(--ease), clip-path 1.25s var(--ease); }
.js .hero-eyebrow.h-enter{ transform:translateY(26px); filter:blur(5px); transition-delay:.15s; }
.js .hero-title.h-enter{ transform:translateY(42px); clip-path:inset(0 0 102% 0); transition-delay:.32s; }
.js .hero-sub.h-enter{ transform:translateY(26px); filter:blur(5px); transition-delay:.62s; }
.js .hero-actions.h-enter{ transform:translateY(26px); transition-delay:.8s; }
.js .hero-motto.h-enter{ transition-delay:1.05s; }
.js .hero-scroll.h-enter{ transition-delay:1.2s; }
html.js body.ready .h-enter{ opacity:1; transform:none; filter:blur(0); clip-path:inset(0 0 -12% 0); }

/* ---- parallax helpers ---- */
.hero-media{ top:-22%; height:130%; bottom:auto; will-change:transform; }
.band-img{ top:-14%; height:128%; will-change:transform; }

/* ---- heading mask reveal (scroll) ---- */
.section-title,.statement,.division-title,.contact-title,.band blockquote{ }
.reveal.mask{ clip-path:inset(0 0 100% 0); transform:none; opacity:1; transition:clip-path 1.1s var(--ease); }
.reveal.mask.in{ clip-path:inset(0 0 -12% 0); }

/* ---- custom cursor (fine pointers only) ---- */
.cursor{ position:fixed; top:0; left:0; width:30px; height:30px; border:1px solid var(--gold); border-radius:50%; pointer-events:none; z-index:900; transform:translate(-100px,-100px); transition:width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s, opacity .3s; opacity:0; mix-blend-mode:difference; }
.has-cursor .cursor{ opacity:1; }
.has-cursor .cursor.grow{ width:58px; height:58px; background:rgba(194,162,76,.12); border-color:var(--gold-2); }

/* magnetic buttons keep transition smooth */
.btn{ will-change:transform; }

@media(hover:none),(pointer:coarse){ .cursor{ display:none; } }
@media(prefers-reduced-motion:reduce){
  .boot{ display:none !important; }
  .js .h-enter{ opacity:1 !important; transform:none !important; filter:none !important; clip-path:none !important; }
  body.booting{ overflow:auto; height:auto; }
}

/* ============================================================
   SIGNATURE + SUPPORT CHOREOGRAPHY — "Gilded"
   ============================================================ */
:root{ --ease-out:cubic-bezier(.16,1,.3,1); }

/* ---- SIGNATURE: gilded headline (catches light like gold leaf) ---- */
.hero-title.is-gilding{
  -webkit-text-fill-color:transparent; -webkit-background-clip:text; background-clip:text;
  color:transparent; text-shadow:none;
  background-image:linear-gradient(100deg,
    var(--cream) 0%,
    var(--cream) calc(var(--gx,130%) - 16%),
    var(--gold-2) calc(var(--gx,130%) - 5%),
    #fff7e6      var(--gx,130%),
    var(--gold-2) calc(var(--gx,130%) + 5%),
    var(--cream) calc(var(--gx,130%) + 16%),
    var(--cream) 100%);
}
.brand-name.is-gilding{
  -webkit-text-fill-color:transparent; -webkit-background-clip:text; background-clip:text; color:transparent;
  background-image:linear-gradient(100deg,var(--cream) 0%,var(--cream) calc(var(--gx,130%) - 18%),#fff7e6 var(--gx,130%),var(--cream) calc(var(--gx,130%) + 18%),var(--cream) 100%);
}
@media(prefers-reduced-motion:reduce){ .hero-title.is-gilding,.brand-name.is-gilding{ background:none; -webkit-text-fill-color:currentColor; color:var(--cream); } }

/* ---- waterline: gold hairline draws under headings (intro motif continued) ---- */
.section-title,.division-title,.contact-title,.statement{ position:relative; }
.section-title::after,.division-title::after,.contact-title::after,.statement::after{
  content:""; position:absolute; left:0; bottom:-20px; width:120px; height:1px;
  background:linear-gradient(90deg,var(--gold-2),var(--gold) 55%,transparent);
  transform:scaleX(0); transform-origin:left; transition:transform 1.1s var(--ease-out) .35s; }
.section-head.center .section-title::after,.statement::after{ left:50%; transform:translateX(-50%) scaleX(0); }
.section-title.in::after,.contact-title.in::after{ transform:scaleX(1); }
.section-head.center .section-title.in::after,.statement.in::after{ transform:translateX(-50%) scaleX(1); }
.division-body.in .division-title::after{ transform:scaleX(1); }

/* ---- scrollspy nav bearing ---- */
.nav-links a.current{ color:var(--cream); }
.nav-links a.current::after{ width:100%; }

/* ---- fleet price presented (slides up from behind the frame) ---- */
.yacht.reveal .yacht-price{ transform:translateY(115%); transition:transform .85s var(--ease-out) .45s, color .35s; }
.yacht.reveal.in .yacht-price{ transform:translateY(0); }
.yacht:hover .yacht-price{ color:#fff7e6; }

/* ---- rack-focus: imagery comes from soft to sharp (the private viewing) ---- */
.division-media.reveal .dm-img,
.yacht.reveal .yacht-img img{
  filter:blur(12px) brightness(.74); transform:scale(1.08);
  transition:filter 1.15s var(--ease-out), transform 1.25s var(--ease-out); will-change:filter,transform; }
.division-media.reveal.in .dm-img,
.yacht.reveal.in .yacht-img img{ filter:blur(0) brightness(1); transform:scale(1); }
@media(prefers-reduced-motion:reduce){
  .division-media.reveal .dm-img,.yacht.reveal .yacht-img img{ filter:none; transform:none; }
  .yacht.reveal .yacht-price{ transform:none; }
}
