/* ══════════════════════════════════════════════════════════════
   RENTYACHT SPB — immersive experience
   Palette: deep neva navy / champagne gold / off-white
   ══════════════════════════════════════════════════════════════ */

:root {
  --ink: #06090f;
  --ink-2: #0a0f18;
  --ink-3: #101724;
  --gold: #d4af6a;
  --gold-2: #e8c98a;
  --gold-dim: rgba(212, 175, 106, .32);
  --cream: #f4efe6;
  --mist: rgba(244, 239, 230, .62);
  --mist-2: rgba(244, 239, 230, .38);
  --line: rgba(212, 175, 106, .16);
  --ff-display: "Playfair Display", Georgia, serif;
  --ff-text: "Manrope", -apple-system, sans-serif;
  --pad: clamp(20px, 4.5vw, 72px);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; overscroll-behavior-x: none; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--ff-text);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--ink); }

/* custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-dim), rgba(212,175,106,.55)); border-radius: 6px; border: 2px solid var(--ink); }
html { scrollbar-color: rgba(212,175,106,.45) var(--ink); scrollbar-width: thin; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* iOS: no gray tap flash, no 300ms delay / double-tap zoom on controls */
a, button, summary, input, [role="tab"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ─────────────── PRELOADER ─────────────── */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  transition: opacity .9s var(--ease-out), visibility .9s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__mark svg { display: block; animation: loaderFloat 2.6s ease-in-out infinite; }
@keyframes loaderFloat { 0%,100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-7px) rotate(1.5deg); } }
.loader__word {
  font-family: var(--ff-display); font-size: 22px; letter-spacing: .28em;
  color: var(--cream);
}
.loader__word span { color: var(--gold); }
.loader__bar {
  width: min(260px, 60vw); height: 1px; background: rgba(244,239,230,.12);
  overflow: hidden; border-radius: 2px;
}
.loader__bar i {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 12px var(--gold);
  transition: width .35s ease;
}
.loader__hint { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--mist-2); }

/* ─────────────── WEBGL STAGE ─────────────── */
.stage {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}
.stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.stage__fallback { position: absolute; inset: 0; display: none; }
.stage__fallback img { width: 100%; height: 100%; object-fit: cover; }
html.no-webgl .stage__fallback { display: block; }
html.no-webgl .stage canvas { display: none; }
.stage__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 42%, transparent 55%, rgba(4, 6, 10, .55) 100%),
    linear-gradient(180deg, rgba(4,6,10,.35) 0%, transparent 22%, transparent 72%, rgba(4,6,10,.6) 100%);
}

/* ─────────────── FILM GRAIN ─────────────── */
.grain {
  position: fixed; inset: -100%; z-index: 90; pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); } 25% { transform: translate(-2%,3%); }
  50% { transform: translate(3%,-2%); } 75% { transform: translate(-3%,-3%); } 100% { transform: translate(2%,2%); }
}

/* ─────────────── CURSOR ─────────────── */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor {
    display: block; position: fixed; z-index: 300; top: 0; left: 0;
    pointer-events: none; mix-blend-mode: screen;
  }
  .cursor i {
    display: block; width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold-2);
    box-shadow: 0 0 14px 3px rgba(212,175,106,.55);
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, opacity .25s;
  }
  .cursor.is-link i { width: 30px; height: 30px; opacity: .35; }
}

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--ff-text); font-weight: 600; font-size: 14px;
  letter-spacing: .02em; cursor: pointer; border: 0;
  position: relative; overflow: hidden;
  transition: transform .22s var(--ease-out), box-shadow .22s, background .2s, color .2s;
  will-change: transform;
}
.btn--lg { padding: 16px 34px; font-size: 15px; }
.btn--gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 55%, var(--gold) 100%);
  background-size: 220% 100%;
  color: #1a1206;
  box-shadow: 0 6px 28px -8px rgba(212,175,106,.55);
}
.btn--gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease-out);
}
.btn--gold:hover::after { transform: translateX(120%); }
.btn--gold:hover { box-shadow: 0 10px 36px -6px rgba(212,175,106,.7); background-position: 100% 0; }
.btn--ghost {
  background: rgba(6,9,15,.38); color: var(--cream);
  border: 1px solid rgba(244,239,230,.32);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(244,239,230,.13); border-color: rgba(244,239,230,.5); }
.btn--outline {
  background: transparent; color: var(--gold-2);
  border: 1px solid var(--gold-dim);
}
.btn--outline:hover { border-color: var(--gold); background: rgba(212,175,106,.08); }

/* ─────────────── NAV ─────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s, backdrop-filter .5s, border-color .5s;
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top, 0px);
  transform: translateZ(0); /* iOS fixed-position jitter */
}
.nav.is-solid {
  background: rgba(6, 9, 15, .72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex; align-items: center; gap: 26px;
  padding: 16px var(--pad);
  padding-left: max(var(--pad), env(safe-area-inset-left, 0px));
  padding-right: max(var(--pad), env(safe-area-inset-right, 0px));
  max-width: 1560px; margin: 0 auto;
}
.nav__logo {
  font-family: var(--ff-display); font-weight: 700; font-size: 19px;
  letter-spacing: .14em; white-space: nowrap;
}
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  font-size: 13.5px; font-weight: 500; color: var(--mist);
  position: relative; padding: 4px 0; transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .25s var(--ease-out);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__phone { font-weight: 700; font-size: 14.5px; white-space: nowrap; color: var(--gold-2); }
.nav__cta { padding: 11px 22px; font-size: 13.5px; }
.nav__sound {
  background: none; border: 1px solid rgba(244,239,230,.18); border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s;
}
.nav__sound:hover { border-color: var(--gold); }
.nav__sound-bars { display: flex; gap: 2.5px; align-items: flex-end; height: 12px; }
.nav__sound-bars i {
  width: 2px; background: var(--mist-2); border-radius: 1px; height: 4px;
  transition: background .3s;
}
.nav__sound[aria-pressed="true"] .nav__sound-bars i {
  background: var(--gold);
  animation: soundBar 1s ease-in-out infinite;
}
.nav__sound-bars i:nth-child(1) { animation-delay: 0s; }
.nav__sound-bars i:nth-child(2) { animation-delay: .25s; height: 9px; }
.nav__sound-bars i:nth-child(3) { animation-delay: .1s; height: 6px; }
.nav__sound-bars i:nth-child(4) { animation-delay: .35s; height: 11px; }
@keyframes soundBar { 0%,100% { transform: scaleY(.5); } 50% { transform: scaleY(1.4); } }

/* ─────────────── HERO ─────────────── */
main { position: relative; z-index: 1; }

.hero {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px var(--pad) 90px;
  padding-left: max(var(--pad), env(safe-area-inset-left, 0px));
  padding-right: max(var(--pad), env(safe-area-inset-right, 0px));
  position: relative;
}
.hero__content { max-width: 980px; position: relative; }
/* readability scrim behind hero copy (grain-veil hero pattern) */
.hero__content::before {
  content: ""; position: absolute; inset: -14% -22% -16% -30%; z-index: -1;
  background: radial-gradient(80% 90% at 32% 50%, rgba(4,6,10,.52) 0%, rgba(4,6,10,.28) 55%, transparent 100%);
  pointer-events: none;
}
.hero__eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 26px; font-weight: 600;
}
.hero__title {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(44px, 8.2vw, 118px);
  line-height: 1.02; letter-spacing: -.01em;
  margin-bottom: 30px;
  text-shadow: 0 4px 40px rgba(4,6,10,.55);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title em,
.hero__title em .char {
  color: transparent;
  background: linear-gradient(100deg, var(--gold) 10%, #f6e3b4 50%, var(--gold) 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  animation: goldShimmer 5s ease-in-out infinite;
}
@keyframes goldShimmer { 0%,100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.hero__sub {
  font-size: clamp(15px, 1.5vw, 18px); color: rgba(244,239,230,.86);
  max-width: 560px; margin-bottom: 38px; font-weight: 400;
  text-shadow: 0 1px 16px rgba(4,6,10,.75), 0 0 4px rgba(4,6,10,.5);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
/* Pro Max restraint: trust markers as one quiet text line, not pill cards */
.hero__chips { display: flex; gap: 8px 0; flex-wrap: wrap; list-style: none; align-items: center; }
.hero__chips li {
  font-size: 12.5px; font-weight: 500; color: var(--mist);
  letter-spacing: .04em;
  text-shadow: 0 1px 12px rgba(4,6,10,.8);
  display: flex; align-items: center;
}
.hero__chips li + li::before {
  content: ""; display: inline-block; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); margin: 0 14px; opacity: .7;
}
.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll span { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--mist-2); }
.hero__scroll i {
  width: 1px; height: 44px; position: relative; overflow: hidden;
  background: rgba(244,239,230,.15); display: block;
}
.hero__scroll i::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--gold); animation: scrollDrop 1.8s var(--ease-out) infinite;
}
@keyframes scrollDrop { 0% { top: -50%; } 70%,100% { top: 110%; } }

/* ─────────────── NIGHT CHAPTER ─────────────── */
.night { position: relative; }
.night__pin {
  height: 100vh; height: 100svh; height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
}
.night__stage { width: 100%; padding: 0 var(--pad); position: relative; max-width: 1560px; margin: 0 auto; }
.night__time {
  position: absolute; right: var(--pad); top: 50%; transform: translateY(-50%);
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(70px, 14vw, 210px);
  color: transparent; -webkit-text-stroke: 1px rgba(212,175,106,.35);
  letter-spacing: .02em; user-select: none; line-height: 1;
  opacity: 0;
}
.night__copy { max-width: 620px; position: relative; padding: 34px 38px; border-radius: 22px; }
.night__copy::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 22px;
  background: radial-gradient(120% 120% at 30% 40%, rgba(4, 6, 10, .68) 0%, rgba(4, 6, 10, .42) 60%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.night__eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 22px; font-weight: 600;
}
.night__title {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(36px, 5.6vw, 74px); line-height: 1.06;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(4,6,10,.6);
}
.night__title .line { display: block; overflow: hidden; }
.night__title em { color: var(--gold-2); }
.night__text { color: rgba(244,239,230,.82); font-size: clamp(15px, 1.4vw, 17.5px); max-width: 520px; margin-bottom: 32px; text-shadow: 0 1px 14px rgba(4,6,10,.8); }

/* ─────────────── SHARED SECTION / solid background after canvas ─────────────── */
.stats, .section, .band, .divider, .lead, .footer { position: relative; background: var(--ink); }
.stats::before {
  content: ""; position: absolute; top: -160px; left: 0; right: 0; height: 160px;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

.section { padding: clamp(80px, 10vw, 150px) var(--pad); max-width: 100%; }
.section__head { max-width: 1560px; margin: 0 auto clamp(44px, 5vw, 70px); }
.section__eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 600; margin-bottom: 18px;
}
.section__title {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(32px, 4.6vw, 62px); line-height: 1.08; letter-spacing: -.01em;
  max-width: 900px;
}
.section__title em { color: var(--gold-2); }
.section__title span, .section__title em { display: inline-block; }
.section__lead { color: var(--mist); max-width: 560px; margin-top: 20px; font-size: 16px; }

/* ─────────────── STATS ─────────────── */
.stats { padding: clamp(60px, 8vw, 110px) var(--pad); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.stats__item b {
  display: block; font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(38px, 4.6vw, 66px); color: var(--gold-2); line-height: 1;
  margin-bottom: 10px; font-variant-numeric: tabular-nums;
}
.stats__from { font-size: .45em; color: var(--mist); vertical-align: .5em; font-family: var(--ff-text); font-weight: 400; }
.stats__item > span { font-size: 13.5px; color: var(--mist-2); letter-spacing: .04em; }
.stats__item b span[data-count] { font-size: inherit; color: inherit; }

/* ─────────────── FLEET ─────────────── */
.fleet__tabs {
  display: flex; gap: 6px; flex-wrap: wrap; position: relative;
  max-width: 1560px; margin: 0 auto 38px;
  border-bottom: 1px solid var(--line); padding-bottom: 0;
}
.fleet__tab {
  background: none; border: 0; cursor: pointer;
  font-family: var(--ff-text); font-size: 14.5px; font-weight: 600;
  color: var(--mist-2); min-height: 44px; padding: 12px 20px 16px;
  transition: color .3s; position: relative;
}
.fleet__tab b { color: var(--gold-dim); font-weight: 600; margin-left: 4px; transition: color .3s; }
.fleet__tab:hover { color: var(--mist); }
.fleet__tab.is-active { color: var(--cream); }
.fleet__tab.is-active b { color: var(--gold); }
.fleet__tabline {
  position: absolute; top: 0; height: 2px; /* top set by JS (wrap/scroll safe) */
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 12px rgba(212,175,106,.5);
  transition: left .25s var(--ease-out), width .25s var(--ease-out);
}
.fleet__grid {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 18px;
  perspective: 1400px;
}
.boat {
  position: relative; border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 26px 24px;
  background:
    radial-gradient(140% 100% at var(--mx, 50%) var(--my, 0%), rgba(212,175,106,.09) 0%, transparent 55%),
    linear-gradient(165deg, var(--ink-3) 0%, var(--ink-2) 100%);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color .25s, box-shadow .25s;
  will-change: transform;
}
.boat:hover { border-color: rgba(212,175,106,.45); box-shadow: 0 24px 60px -24px rgba(0,0,0,.8), 0 0 40px -20px rgba(212,175,106,.3); }
.boat::after { /* light sweep */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(232,201,138,.08) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 1s var(--ease-out);
}
.boat:hover::after { transform: translateX(130%); }
.boat > * { transform: translateZ(24px); }
.boat__badges { display: flex; gap: 8px; min-height: 24px; margin-bottom: 14px; }
.boat__badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-2); border: 1px solid var(--gold-dim);
  padding: 4px 10px; border-radius: 999px;
}
.boat__badge--hot { background: var(--gold); color: #1a1206; border-color: var(--gold); }
.boat__name { font-family: var(--ff-display); font-size: 25px; font-weight: 600; margin-bottom: 8px; }
.boat__desc { font-size: 13.5px; color: var(--mist-2); min-height: 42px; margin-bottom: 16px; }
.boat__specs { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--mist); margin-bottom: 20px; }
.boat__specs b { color: var(--cream); }
.boat__specs span { display: inline-flex; align-items: center; gap: 6px; }
.boat__specs svg { width: 14px; height: 14px; stroke: var(--gold-2); flex: none; }
.boat__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 18px; }
.boat__price { font-size: 13px; color: var(--mist-2); }
.boat__price b { color: var(--gold-2); font-size: 16px; font-weight: 700; }
.boat__cta {
  font-size: 13px; font-weight: 700; color: var(--cream); white-space: nowrap;
  padding: 9px 16px; border: 1px solid rgba(244,239,230,.22); border-radius: 999px;
  transition: background .2s, border-color .2s, color .2s;
}
.boat__cta:hover { background: var(--gold); border-color: var(--gold); color: #1a1206; }
.fleet__more {
  max-width: 1560px; margin: 44px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border: 1px dashed var(--gold-dim); border-radius: 18px; padding: 26px 30px;
}
.fleet__more p { color: var(--mist); font-size: 15px; }
.fleet__more b { color: var(--cream); }

/* ─────────────── FORMATS ─────────────── */
.exp__grid {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  perspective: 1600px;
}
.exp__card {
  position: relative; border-radius: 20px; overflow: hidden;
  min-height: 520px; display: flex; align-items: flex-end;
  transform-style: preserve-3d; will-change: transform;
  border: 1px solid rgba(244,239,230,.08);
}
.exp__card--tall { grid-row: span 1; }
.exp__media { position: absolute; inset: -6%; z-index: 0; }
.exp__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform .7s var(--ease-out); }
.exp__card:hover .exp__media img { transform: scale(1.08); }
.exp__card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(200deg, transparent 30%, rgba(4,6,10,.55) 62%, rgba(4,6,10,.92) 100%);
}
.exp__body { position: relative; z-index: 2; padding: 30px 28px; }
.exp__body h3 { font-family: var(--ff-display); font-size: 27px; font-weight: 600; margin-bottom: 10px; }
.exp__body p { font-size: 14px; color: var(--mist); margin-bottom: 16px; max-width: 380px; }
.exp__link { font-size: 13.5px; font-weight: 700; color: var(--gold-2); letter-spacing: .02em; }
.exp__link:hover { color: var(--gold); }
.exp__sweep {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(232,201,138,.13) 50%, transparent 60%);
  transform: translateX(-130%);
}
.exp__card:hover .exp__sweep { transition: transform 1.1s var(--ease-out); transform: translateX(130%); }

/* reveal clip for images */
[data-reveal] { clip-path: inset(0 0 0 0 round 20px); }

/* ─────────────── BAND ─────────────── */
.band {
  display: grid; grid-template-columns: 1.1fr 1fr 1.1fr; gap: 18px;
  padding: 0 var(--pad); max-width: 1560px; margin: 0 auto;
  align-items: center;
}
.band__item { border-radius: 20px; overflow: hidden; }
.band__item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; }
.band__item--text { text-align: center; padding: 20px; }
.band__quote {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.3; color: var(--gold-2);
  margin-bottom: 18px;
}
.band__note { font-size: 14px; color: var(--mist-2); max-width: 320px; margin: 0 auto; }

/* ─────────────── WHY ─────────────── */
.why__grid {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  perspective: 1400px;
}
.why__card {
  border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px;
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
  transition: border-color .25s, transform .25s var(--ease-out);
  will-change: transform;
}
.why__card:hover { border-color: rgba(212,175,106,.4); }
.why__num {
  font-family: var(--ff-display); font-size: 15px; color: var(--gold);
  display: inline-block; border: 1px solid var(--gold-dim); border-radius: 50%;
  width: 44px; height: 44px; line-height: 42px; text-align: center; margin-bottom: 20px;
}
.why__card h3 { font-family: var(--ff-display); font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.why__card p { font-size: 13.5px; color: var(--mist-2); }

/* ─────────────── STEPS ─────────────── */
.steps__row {
  max-width: 1560px; margin: 0 auto; list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  counter-reset: step;
}
.steps__row li { position: relative; padding: 26px 22px 0; border-top: 1px solid var(--line); }
.steps__row li b {
  font-family: var(--ff-display); font-size: 15px; color: var(--gold);
  position: absolute; top: -11px; left: 22px; background: var(--ink); padding: 0 10px;
}
.steps__row h3 { font-family: var(--ff-display); font-size: 21px; font-weight: 600; margin-bottom: 8px; }
.steps__row p { font-size: 13.5px; color: var(--mist-2); }

/* ─────────────── DIVIDER ─────────────── */
.divider { position: relative; height: clamp(320px, 48vw, 560px); overflow: hidden; display: flex; align-items: flex-end; }
.divider__img { position: absolute; inset: -12% 0; }
.divider__img img { width: 100%; height: 100%; object-fit: cover; }
.divider::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 26%, transparent 68%, var(--ink) 100%);
}
.divider__line {
  position: relative; z-index: 2; width: 100%; text-align: center;
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(16px, 2.2vw, 26px); color: var(--cream);
  padding-bottom: 46px; letter-spacing: .06em;
  text-shadow: 0 2px 24px rgba(4,6,10,.8);
}

/* ─────────────── REVIEWS ─────────────── */
.reviews__grid {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.reviews__grid blockquote {
  border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px;
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
  position: relative;
}
.reviews__grid blockquote::before {
  content: "«"; font-family: var(--ff-display); font-size: 64px; color: var(--gold-dim);
  position: absolute; top: 2px; right: 22px; line-height: 1;
}
.reviews__grid p { font-size: 14.5px; color: var(--mist); margin-bottom: 18px; }
.reviews__grid footer { font-size: 12.5px; color: var(--gold-2); letter-spacing: .04em; font-weight: 600; }

/* ─────────────── FAQ ─────────────── */
.faq__list { max-width: 860px; margin: 0 auto; }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list summary {
  cursor: pointer; list-style: none; position: relative;
  font-family: var(--ff-display); font-size: clamp(17px, 1.8vw, 22px); font-weight: 600;
  padding: 24px 44px 24px 0; transition: color .3s;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-text); font-weight: 300; font-size: 26px; color: var(--gold);
  transition: transform .25s var(--ease-out);
}
.faq__list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__list summary:hover { color: var(--gold-2); }
.faq__list details p { padding: 0 0 24px; color: var(--mist); font-size: 15px; max-width: 720px; }
.faq__phone { text-align: center; margin-top: 40px; color: var(--mist-2); font-size: 15px; }
.faq__phone a { color: var(--gold-2); font-weight: 700; border-bottom: 1px solid var(--gold-dim); }

/* ─────────────── LEAD ─────────────── */
.lead { position: relative; padding: clamp(90px, 12vw, 170px) var(--pad); overflow: hidden; }
.lead__bg { position: absolute; inset: -10% 0; }
.lead__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.lead::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(6,9,15,.5) 40%, rgba(6,9,15,.75) 100%);
}
.lead__panel {
  position: relative; z-index: 2; max-width: 520px; margin: 0 auto;
  background: rgba(10, 15, 24, .78);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(34px, 4vw, 52px);
  text-align: center;
  box-shadow: 0 40px 120px -40px rgba(0,0,0,.9);
}
.lead__panel h2 {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; margin-bottom: 14px;
}
.lead__panel h2 em { color: var(--gold-2); }
.lead__panel > p { color: var(--mist); font-size: 14.5px; margin-bottom: 28px; }
.lead__panel form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.lead__panel input {
  background: rgba(244,239,230,.05); border: 1px solid rgba(244,239,230,.16);
  border-radius: 12px; padding: 15px 18px;
  /* 16px minimum: prevents iOS Safari auto-zoom on focus */
  font-family: var(--ff-text); font-size: 16px; color: var(--cream);
  outline: none; transition: border-color .3s, background .3s;
  -webkit-appearance: none; appearance: none;
}
.lead__panel input::placeholder { color: var(--mist-2); }
.lead__panel input:focus { border-color: var(--gold); background: rgba(244,239,230,.08); }
.lead__alt { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.lead__alt a { font-size: 13.5px; font-weight: 600; color: var(--gold-2); border-bottom: 1px solid var(--gold-dim); padding-bottom: 2px; }
.lead__ok { margin-top: 18px; color: #9fdcA5; font-size: 14px; }

/* ─────────────── FOOTER ─────────────── */
.footer { border-top: 1px solid var(--line); padding: clamp(50px, 6vw, 80px) var(--pad) 30px; }
.footer__inner {
  max-width: 1560px; margin: 0 auto 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px;
}
.footer__logo { font-family: var(--ff-display); font-weight: 700; font-size: 21px; letter-spacing: .12em; margin-bottom: 10px; }
.footer__logo span { color: var(--gold); }
.footer__tag { color: var(--mist-2); font-size: 13.5px; max-width: 300px; }
.footer__col h4 {
  font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 16px; font-weight: 700;
}
.footer__col a, .footer__col p { display: block; font-size: 14px; color: var(--mist); margin-bottom: 8px; }
.footer__col a:hover { color: var(--gold-2); }
.footer__copy { text-align: center; color: rgba(244,239,230,.25); font-size: 12px; border-top: 1px solid rgba(244,239,230,.06); padding-top: 24px; max-width: 1560px; margin: 0 auto; }

/* ─────────────── STICKY MOBILE CTA ─────────────── */
.sticky-cta {
  position: fixed; z-index: 110;
  left: calc(10px + env(safe-area-inset-left, 0px));
  right: calc(10px + env(safe-area-inset-right, 0px));
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  display: none; gap: 8px;
  transform: translateY(140%); opacity: 0;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.sticky-cta.is-on { transform: translateY(0); opacity: 1; }
.sticky-cta.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
.sticky-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  min-height: 48px; text-align: center; padding: 12px 6px; border-radius: 14px;
  font-size: 13px; font-weight: 700;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.sticky-cta__call { background: rgba(10,15,24,.9); border: 1px solid rgba(244,239,230,.2); color: var(--cream); }
.sticky-cta__wa { background: #1faf59; color: #fff; }
.sticky-cta__pick { background: var(--gold); color: #1a1206; }

/* ─────────────── ANIMATION PRIMITIVES ─────────────── */
[data-fade] { opacity: 0; transform: translateY(34px); }
html.no-js [data-fade], html.reduced [data-fade] { opacity: 1; transform: none; }
[data-split] .word, [data-split-el] .word { display: inline-block; white-space: nowrap; }
[data-split] .char { display: inline-block; will-change: transform; }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1180px) {
  .nav__links { display: none; }
  .why__grid, .steps__row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .exp__grid { grid-template-columns: 1fr; }
  .exp__card { min-height: 420px; }
  .band { grid-template-columns: 1fr; }
  .band__item--text { order: -1; padding: 40px 20px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .night__time { position: static; transform: none; font-size: clamp(54px, 16vw, 110px); margin-bottom: 8px; }
  .night__pin { align-items: flex-end; padding-bottom: 12vh; }
}
@media (max-width: 760px) {
  .nav__phone { display: none; }
  .nav__cta { display: none; }
  .nav__sound { margin-left: auto; }
  .sticky-cta { display: flex; }
  .why__grid, .steps__row { grid-template-columns: 1fr; }
  .fleet__more { flex-direction: column; text-align: center; }
  .hero { padding-top: calc(100px + env(safe-area-inset-top, 0px)); }
  .hero__scroll { display: none; }

  /* fleet tabs: one scrollable row — underline can't wrap/misplace */
  .fleet__tabs {
    flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .fleet__tabs::-webkit-scrollbar { display: none; }
  .fleet__tab { flex: none; white-space: nowrap; }

  /* clear the sticky CTA + home indicator */
  .lead { padding-bottom: calc(clamp(90px, 12vw, 170px) + 76px + env(safe-area-inset-bottom, 0px)); }
  .footer { padding-bottom: calc(30px + 76px + env(safe-area-inset-bottom, 0px)); }
}

/* ─────────────── TOUCH DEVICES ─────────────── */
@media (hover: none), (pointer: coarse) {
  /* static grain: animated fixed-layer repaints are expensive on iOS */
  .grain { animation: none; inset: 0; }
  /* no custom cursor chrome on touch */
  .cursor { display: none !important; }
  body, a, button { cursor: auto; }
  /* tap targets ≥44px */
  .nav__sound { width: 44px; height: 44px; }
  .boat__cta { min-height: 44px; padding: 12px 18px; display: inline-flex; align-items: center; }
  .exp__link, .lead__alt a { display: inline-block; min-height: 44px; padding-top: 12px; padding-bottom: 12px; }
  .faq__phone a { display: inline-block; min-height: 44px; padding: 12px 2px; }
  .nav__logo { min-height: 44px; display: inline-flex; align-items: center; }
  /* hover-only decoration off: no stuck states after tap */
  .btn--gold::after, .boat::after, .exp__sweep { display: none; }
  .exp__card .exp__media img { transform: none; transition: none; }
  /* kill 3D tilt transform cost on cards */
  .boat, .exp__card, .why__card { transform: none !important; will-change: auto; }
}

/* ─────────────── REDUCED MOTION ─────────────── */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .loader__mark svg { animation: none; }
  .hero__title em { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
