/* Generation Cars: tide & granite.
   Palette sampled from the fleet photos: white sand, lagoon, deep water, granite, and coral for action. */
:root {
  --sand: #f6f0e5;
  --sand-2: #ece2d0;
  --shell: #fffcf6;
  --ocean: #083642;
  --ocean-2: #0e4e5c;
  --lagoon-hi: #1fa99f;
  --lagoon-lt: #9fe0d6;
  --lagoon-pale: #dcf2ed;
  --coral: #e2603c;
  --coral-2: #c64d2b;
  --granite: #6b6660;

  /* Shared with the admin app. */
  --paper: var(--sand);
  --paper-2: var(--sand-2);
  --card: var(--shell);
  --ink: #0d2a31;
  --ink-2: #3a4f55;
  --muted: #687478;
  --lagoon: var(--ocean);
  --lagoon-2: var(--ocean-2);
  --foam: #cfe9e5;
  --brass: #b4502c;
  --brass-2: #f29a7b;
  --ok: #1d7a5b;
  --warn: #b3401f;
  --line: rgba(13, 42, 49, 0.12);
  --line-strong: rgba(13, 42, 49, 0.28);

  --display: 'Libre Caslon Display', 'Didot', Georgia, serif;
  --serif: 'Libre Caslon Text', Georgia, serif;
  --sans: 'Schibsted Grotesk', 'Helvetica Neue', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --gutter: clamp(16px, 4vw, 56px);
  --max: 1320px;
  --r: 20px;
  --r-sm: 12px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 1px 2px rgba(8, 54, 66, .06), 0 24px 48px -28px rgba(8, 54, 66, .35);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font: 400 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--lagoon-lt); color: var(--ocean); }
a { color: inherit; }
img { max-width: 100%; display: block; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }
[hidden] { display: none !important; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 200; background: var(--ink); color: var(--sand); padding: 10px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: -0.015em; margin: 0; }
h1 em, h2 em { color: var(--ocean-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 11px/1 var(--mono); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 20px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; }
.eyebrow-light { color: var(--lagoon-lt); }

/* ---- Top bar ---- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px var(--gutter);
  background: color-mix(in srgb, var(--ocean) 84%, transparent);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(159, 224, 214, .14);
  box-shadow: 0 18px 40px -30px rgba(8, 54, 66, .9);
  color: #fff;
  transition: background .45s, color .35s, border-color .45s, box-shadow .45s, padding .35s;
}
.has-hero .topbar { position: fixed; left: 0; right: 0; }
.has-hero .topbar:not(.scrolled) { background: transparent; border-color: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; padding-top: 20px; }
.menu-open .has-hero .topbar, .menu-open.has-hero .topbar { background: var(--ocean) !important; border-color: rgba(159, 224, 214, .14) !important; }

.wordmark { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; line-height: 1; }
.wm-mark { width: 30px; height: 30px; border-radius: 8px; }
.wm-a { font: 600 13px/1 var(--sans); letter-spacing: 0.32em; text-transform: uppercase; }
.wm-b { font: italic 400 22px/1 var(--serif); color: var(--coral); margin-left: -4px; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); font-size: 14px; margin-left: auto; }
.nav a { text-decoration: none; color: rgba(255, 255, 255, .86); position: relative; white-space: nowrap; transition: color .2s; }
.nav a:hover, .nav a[aria-current] { color: #fff; }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -5px; height: 1.5px; border-radius: 2px;
  background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav a:hover::after, .nav a[aria-current]::after { transform: scaleX(1); }
.topbar-end { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  padding: 11px 20px; border-radius: 999px; color: #fff; background: var(--coral);
  text-decoration: none; font-size: 14px; font-weight: 500; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--coral-2); transform: translateY(-1px); }
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .45); border-radius: 999px; background: transparent; cursor: pointer; position: relative; }
.menu-btn span:first-child, .menu-btn span:first-child::before, .menu-btn span:first-child::after {
  position: absolute; left: 13px; width: 16px; height: 1.5px; background: #fff; content: ''; transition: transform .25s var(--ease), background .2s;
}
.menu-btn span:first-child { top: 21px; }
.menu-btn span:first-child::before { left: 0; top: -5px; }
.menu-btn span:first-child::after { left: 0; top: 5px; }
.menu-open .menu-btn span:first-child { background: transparent !important; }
.menu-open .menu-btn span:first-child::before { transform: translateY(5px) rotate(45deg); background: #fff !important; }
.menu-open .menu-btn span:first-child::after { transform: translateY(-5px) rotate(-45deg); background: #fff !important; }

@media (max-width: 1020px) {
  .menu-btn { display: block; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; z-index: 49;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ocean); border-bottom: 1px solid rgba(159, 224, 214, .14);
    box-shadow: 0 30px 50px -30px rgba(8, 54, 66, .8);
    padding: 8px var(--gutter) 24px;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .3s var(--ease);
  }
  .nav a { padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); font: 400 28px/1.1 var(--display); color: #fff; }
  .nav a::after { display: none; }
  .menu-open .nav { opacity: 1; transform: none; pointer-events: auto; }
  .wm-a { font-size: 12px; letter-spacing: .26em; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 14px 24px; border-radius: 999px; border: 1px solid var(--ink);
  font: 500 14px/1 var(--sans); letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease), box-shadow .2s;
}
.btn:active { transform: scale(.98); }
.btn-ink { background: var(--ocean); border-color: var(--ocean); color: #fff; }
.btn-ink:hover { background: var(--ocean-2); border-color: var(--ocean-2); }
.btn-coral { background: var(--coral); border-color: var(--coral); color: #fff; box-shadow: 0 10px 24px -12px rgba(226, 96, 60, .8); }
.btn-coral:hover { background: var(--coral-2); border-color: var(--coral-2); transform: translateY(-1px); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-line:hover { border-color: var(--ink); background: var(--ink); color: var(--sand); }
.btn-light { background: #fff; border-color: #fff; color: var(--ocean); }
.btn-light:hover { background: var(--lagoon-pale); }
.btn-text { border-color: transparent; background: none; padding-left: 8px; padding-right: 8px; color: var(--ink-2); }
.btn-text:hover { color: var(--coral-2); }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-wide { width: 100%; }
.linkish { background: none; border: 0; padding: 0; font: inherit; color: var(--ocean-2); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; background: var(--ocean); isolation: isolate;
}
.hero-compact { min-height: 82svh; }
.hero-nophoto { background: radial-gradient(120% 90% at 80% 10%, var(--lagoon-hi), var(--ocean) 60%); }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 55%; will-change: transform; }
.hero-shade {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,54,66,.55) 0%, rgba(8,54,66,0) 22%),
    linear-gradient(0deg, rgba(8,54,66,.94) 0%, rgba(8,54,66,.72) 32%, rgba(8,54,66,0) 66%),
    linear-gradient(90deg, rgba(8,54,66,.45) 0%, rgba(8,54,66,0) 55%);
}
.hero-inner { position: relative; width: 100%; max-width: var(--max); margin: 0 auto; padding: 140px var(--gutter) clamp(28px, 5vw, 56px); }
.hero-title {
  font-size: clamp(48px, 8.2vw, 132px); line-height: .9; color: #fff; max-width: 11.5em;
  text-shadow: 0 2px 30px rgba(8, 54, 66, .35);
}
.hero-compact .hero-title { font-size: clamp(44px, 6.6vw, 104px); }
.hero-title .line { display: block; }
.hero-title em { color: var(--lagoon-lt); }
.hero-lede { max-width: 36em; margin: 24px 0 0; font-size: clamp(16px, 1.4vw, 19px); color: rgba(255,255,255,.88); }
.hero-coord {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl;
  font: 500 11px/1 var(--mono); letter-spacing: .22em; color: rgba(255,255,255,.7);
}
@media (max-width: 760px) { .hero-coord { display: none; } }

/* Booking bar on the hero */
.quick {
  margin-top: clamp(24px, 3.4vw, 40px); max-width: 880px; padding: 8px; border-radius: 22px;
  background: rgba(255, 252, 246, .14); border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.quick-seg { display: flex; gap: 4px; margin: 0 0 8px; padding: 0; border: 0; }
.quick-seg label { position: relative; }
.quick-seg input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.quick-seg span {
  display: block; padding: 10px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.9);
  cursor: pointer; transition: background .2s, color .2s;
}
.quick-seg label:hover span { background: rgba(255,255,255,.12); }
.quick-seg input:checked + span { background: #fff; color: var(--ocean); }
.quick-seg input:focus-visible + span { outline: 2px solid var(--coral); outline-offset: 2px; }
.quick-fields { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; }
.quick-field { display: grid; gap: 2px; padding: 9px 16px 8px; border-radius: 14px; background: rgba(255,255,255,.96); color: var(--ink); cursor: text; }
.quick-field span { font: 500 10px/1.2 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.quick-field input { border: 0; background: none; font: 500 16px/1.4 var(--sans); color: var(--ink); padding: 0; min-height: 26px; outline: none; width: 100%; }
.quick-field:focus-within { box-shadow: 0 0 0 2px var(--coral); }
.quick .btn-coral { border-radius: 14px; min-height: 58px; padding: 0 26px; font-size: 15px; }
@media (max-width: 640px) {
  .quick { padding: 6px; border-radius: 18px; }
  .quick-seg { overflow-x: auto; scrollbar-width: none; }
  .quick-seg span { padding: 9px 12px; font-size: 13px; white-space: nowrap; }
  .quick-fields { grid-template-columns: 1fr 1fr; }
  .quick .btn-coral { grid-column: 1 / -1; min-height: 52px; }
}

/* ---- Price tickets ---- */
.tickets { max-width: var(--max); margin: 0 auto; padding: clamp(24px, 4vw, 40px) var(--gutter) 0; }
.price-board { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.price-board a {
  display: grid; gap: 4px; height: 100%; padding: 20px 22px; border-radius: var(--r); text-decoration: none;
  background: var(--shell); border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.price-board a:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.pb-label { font: 400 22px/1.1 var(--display); }
.pb-sub { font-size: 13px; color: var(--muted); }
.pb-price { margin-top: 10px; font: 500 26px/1 var(--mono); color: var(--lagoon-hi); font-variant-numeric: tabular-nums; }
.pb-price small { display: block; font: 500 10px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
@media (max-width: 860px) { .price-board { grid-template-columns: 1fr 1fr; } }

/* ---- Intro ---- */
.intro {
  max-width: var(--max); margin: 0 auto; padding: clamp(72px, 10vw, 140px) var(--gutter);
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 6vw, 96px); align-items: center;
}
.intro h2 { font-size: clamp(32px, 3.9vw, 58px); line-height: 1.04; margin-bottom: 24px; }
.intro-text > p { color: var(--ink-2); max-width: 36em; font-size: 17px; }
.facts { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.facts li { border-top: 1px solid var(--ink); padding-top: 14px; display: grid; gap: 6px; }
.facts b { font: 400 clamp(30px, 3vw, 42px)/1 var(--display); color: var(--ocean-2); }
.facts span { font-size: 13px; color: var(--muted); line-height: 1.4; }
.intro-figure { margin: 0; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--sand-2); box-shadow: var(--shadow); }
.intro-img { width: 100%; height: 118%; object-fit: cover; }
@media (max-width: 860px) {
  .intro { grid-template-columns: 1fr; }
  .intro-figure { aspect-ratio: 4 / 4.4; }
  .facts { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
}

/* ---- Sections ---- */
.section-head { max-width: var(--max); margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(38px, 5.4vw, 76px); line-height: 1; }
.section-note { max-width: 40em; color: var(--muted); margin: 18px 0 0; }

/* ---- Fleet ---- */
.fleet { padding: 0 var(--gutter) clamp(80px, 10vw, 140px); }
.fleet-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 32px); }
.car {
  display: flex; flex-direction: column; border-radius: calc(var(--r) + 6px); overflow: hidden;
  background: var(--shell); box-shadow: var(--shadow); transition: transform .5s var(--ease), box-shadow .5s;
}
.car:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgba(8,54,66,.06), 0 40px 70px -34px rgba(8,54,66,.45); }
.car .stage-view { border-radius: 0; }
.car-body { padding: 22px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.car-title { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.car h3 { font-size: clamp(30px, 3vw, 42px); line-height: 1; }
.car h3 a { text-decoration: none; }
.car h3 a:hover { color: var(--ocean-2); }
.car-from { margin: 0; font: 500 22px/1 var(--mono); color: var(--lagoon-hi); white-space: nowrap; }
.car-from small { font: 400 12px var(--sans); color: var(--muted); margin: 0 4px; }
.car-class { font: italic 400 18px/1.3 var(--serif); color: var(--ink-2); margin: 6px 0 16px; }
.car-blurb { color: var(--ink-2); margin: 16px 0 12px; }
.car-prices { margin: 0 0 20px; }
.car-prices summary { cursor: pointer; font-size: 14px; color: var(--ocean-2); text-decoration: underline; text-underline-offset: 3px; width: max-content; }
.car-prices .rates { margin: 12px 0 0; }
.car-cta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: auto; }
@media (max-width: 860px) { .fleet-grid { grid-template-columns: 1fr; } }

.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.chips li {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px;
  background: var(--lagoon-pale); color: var(--ocean); font-size: 13px; font-weight: 500;
}
.ico { width: 15px; height: 15px; background: currentColor; -webkit-mask: var(--i) center / contain no-repeat; mask: var(--i) center / contain no-repeat; }
.ico-seat { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='6' r='3'/%3E%3Cpath d='M5 21v-2a5 5 0 0 1 5-5h4a5 5 0 0 1 5 5v2'/%3E%3C/svg%3E"); }
.ico-bag { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'%3E%3Crect x='5' y='7' width='14' height='13' rx='2'/%3E%3Cpath d='M9 7V4h6v3M9 20v1M15 20v1'/%3E%3C/svg%3E"); }
.ico-gear { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='6' cy='5' r='2'/%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Ccircle cx='18' cy='5' r='2'/%3E%3Ccircle cx='6' cy='19' r='2'/%3E%3Ccircle cx='12' cy='19' r='2'/%3E%3Cpath d='M6 7v10M12 7v10M18 7v5H6'/%3E%3C/svg%3E"); }
.ico-zoom { width: 13px; height: 13px; display: inline-block; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'%3E%3Ccircle cx='10' cy='10' r='6'/%3E%3Cpath d='M20 20l-5.5-5.5M10 7v6M7 10h6'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'%3E%3Ccircle cx='10' cy='10' r='6'/%3E%3Cpath d='M20 20l-5.5-5.5M10 7v6M7 10h6'/%3E%3C/svg%3E") center / contain no-repeat; }

.rates { list-style: none; margin: 0 0 24px; padding: 0; }
.rates li { display: flex; align-items: baseline; gap: 10px; padding: 7px 0; font-size: 15px; }
.rates li::after { content: ''; order: 1; flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-4px); }
.rates li b { order: 2; font: 500 15px/1 var(--mono); font-variant-numeric: tabular-nums; }

/* ---- Car stage (photos / 3D) ---- */
.stage { min-width: 0; }
.stage-view {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r);
  background: radial-gradient(120% 90% at 70% 110%, var(--ocean-2), var(--ocean) 60%);
}
.stage-big .stage-view { aspect-ratio: 4 / 3.1; border-radius: calc(var(--r) + 6px); }
.stage-photo, .stage-poster { all: unset; display: block; width: 100%; height: 100%; cursor: zoom-in; }
.stage-poster { cursor: pointer; }
.stage-view img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.stage:hover .stage-view img { transform: scale(1.035); }
.stage-3d {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 10px; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(255, 252, 246, .94); color: var(--ink); font: 500 13px/1 var(--sans);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.4); transition: transform .2s var(--ease);
}
.stage-3d:hover { transform: translateY(-2px); }
.ico-3d { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--ocean); position: relative; }
.ico-3d::before { content: ''; position: absolute; inset: 6px 2px; border: 1.5px solid var(--ocean); border-radius: 50%; }
.stage-hint {
  position: absolute; right: 14px; bottom: 14px; z-index: 1; display: inline-flex; align-items: center; gap: 7px;
  font: 500 11px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: #fff;
  padding: 8px 12px; background: rgba(8,54,66,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 999px; pointer-events: none;
}
.stage-3d-layer { position: absolute; inset: 0; z-index: 3; background: var(--ocean); }
.stage-3d-layer iframe, .stage-3d-layer model-viewer { width: 100%; height: 100%; border: 0; display: block; }
.stage-3d-help {
  position: absolute; left: 50%; top: 12px; transform: translateX(-50%); pointer-events: none;
  font: 500 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: #fff;
  padding: 8px 12px; background: rgba(0,0,0,.45); border-radius: 999px; white-space: nowrap;
  animation: fadeout 4s 2s forwards;
}
@keyframes fadeout { to { opacity: 0; } }
.stage-close { position: absolute; right: 10px; top: 10px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(255,252,246,.94); color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; }
.is-3d .stage-3d, .is-3d .stage-hint { display: none; }
.stage-credit { margin: 8px 0 0; font: 400 11px/1.4 var(--mono); color: var(--muted); }

.thumbs { display: flex; gap: 8px; padding: 10px 12px 0; overflow-x: auto; scrollbar-width: none; }
.stage-big .thumbs { padding: 12px 0 0; }
.thumb { all: unset; flex: 0 0 76px; aspect-ratio: 4 / 3; cursor: pointer; opacity: .55; border-radius: 10px; overflow: hidden; outline: 2px solid transparent; outline-offset: 2px; transition: opacity .2s; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.on, .thumb:hover { opacity: 1; outline-color: var(--lagoon-hi); }
.thumb:focus-visible { outline-color: var(--coral); }

.plate {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(18px, 3vw, 30px); color: var(--foam); overflow: hidden;
  background:
    radial-gradient(60% 50% at 85% 20%, rgba(159,224,214,.28), transparent 70%),
    repeating-radial-gradient(circle at 110% 120%, transparent 0 26px, rgba(207,233,229,.07) 26px 27px),
    linear-gradient(160deg, var(--ocean-2), var(--ocean));
}
.plate-name { font: italic 400 clamp(56px, 8vw, 120px)/0.85 var(--serif); color: rgba(220,242,237,.92); letter-spacing: -0.03em; align-self: flex-end; text-align: right; }
.plate-meta, .plate-note { font: 500 11px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--lagoon-lt); }
.plate-note { align-self: flex-end; color: rgba(220,242,237,.6); }
.plate.mini { padding: 6px 8px; justify-content: flex-end; }
.plate.mini .plate-name { font-size: 20px; }

/* ---- Photo band ---- */
.band { position: relative; min-height: min(86vh, 760px); display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--ocean); isolation: isolate; }
.band-media { position: absolute; inset: -12% 0; z-index: -2; }
.band-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.band-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,54,66,.86) 0%, rgba(8,54,66,.5) 45%, rgba(8,54,66,.05) 75%); }
.band-text { max-width: var(--max); width: 100%; margin: 0 auto; padding: 80px var(--gutter) 120px; }
.band-quote { font: 400 clamp(34px, 4.6vw, 68px)/1.04 var(--display); max-width: 12em; margin: 0 0 32px; }
.band-quote em { color: var(--lagoon-lt); }
@media (max-width: 760px) { .band-shade { background: linear-gradient(0deg, rgba(8,54,66,.9) 10%, rgba(8,54,66,.2) 80%); } .band { align-items: flex-end; } }

/* ---- Services ---- */
.wave { display: block; width: 100%; height: 60px; }
.services { position: relative; background: var(--lagoon-pale); padding: clamp(64px, 9vw, 120px) var(--gutter) clamp(110px, 12vw, 170px); }
.services > .wave-lagoon { position: absolute; left: 0; right: 0; top: -59px; fill: var(--lagoon-pale); }
.services > .wave-sand { position: absolute; left: 0; right: 0; bottom: -1px; fill: var(--sand); transform: scaleX(-1); }
.services-inner { max-width: var(--max); margin: 0 auto; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-grid article {
  display: flex; flex-direction: column; padding: 30px 28px 28px; border-radius: var(--r);
  background: var(--shell); box-shadow: var(--shadow);
}
.service-grid .num { font: 400 44px/1 var(--display); color: var(--lagoon-hi); }
.service-grid h3 { font-size: 32px; margin: 16px 0 14px; }
.service-grid p { margin: 0 0 12px; color: var(--ink-2); }
.service-grid p.small { font-size: 13px; color: var(--muted); }
.service-grid .more { margin-top: auto; padding-top: 10px; color: var(--coral-2); text-decoration: none; font-weight: 600; }
.service-grid .more:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 860px) { .service-grid { grid-template-columns: 1fr; } }

/* ---- Places marquee ---- */
.marquee { overflow: hidden; padding: 28px 0 8px; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee span { font: italic 400 clamp(26px, 3.4vw, 44px)/1.2 var(--serif); color: var(--ocean); white-space: nowrap; display: inline-flex; align-items: center; }
.marquee span::after { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--lagoon-hi); margin: 0 clamp(20px, 3vw, 40px); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Reserve ---- */
.reserve {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--gutter);
  display: grid; grid-template-columns: .9fr 1.3fr; gap: clamp(36px, 5vw, 88px); align-items: start;
}
.reserve-intro { position: sticky; top: 110px; }
.reserve-intro h2 { font-size: clamp(38px, 5vw, 68px); line-height: 1; margin-bottom: 26px; }
.reserve-intro p { color: var(--ink-2); max-width: 30em; }
.how { list-style: none; counter-reset: how; margin: 0; padding: 0; }
.how li { counter-increment: how; position: relative; padding: 13px 0 13px 40px; border-top: 1px solid var(--line); color: var(--ink-2); }
.how li::before { content: counter(how, decimal-leading-zero); position: absolute; left: 0; top: 13px; font: 500 12px/1.9 var(--mono); color: var(--lagoon-hi); }
.how b { color: var(--ink); font-weight: 600; }
.contact { margin: 30px 0 0; border-top: 1px solid var(--ink); }
.contact div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.contact dt { font: 500 10px/1.8 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.contact dd { margin: 0; text-align: right; }
.contact a { text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.contact a:hover { border-color: var(--coral); }
@media (max-width: 960px) { .reserve { grid-template-columns: 1fr; } .reserve-intro { position: static; } }

.booker, .confirm, .panel {
  background: var(--shell); border: 1px solid var(--line); border-radius: calc(var(--r) + 4px);
  padding: clamp(18px, 3.2vw, 38px); box-shadow: var(--shadow);
}
.booker { scroll-margin-top: 96px; }

.steps { list-style: none; margin: 0 0 28px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.steps li { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 3px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 500; transition: border-color .3s, color .3s; }
.steps li span { width: 26px; height: 26px; border-radius: 50%; border: 1px solid currentColor; display: grid; place-items: center; font: 500 11px/1 var(--mono); }
.steps li.on { border-top-color: var(--coral); color: var(--ink); }
.steps li.on span { background: var(--coral); color: #fff; border-color: var(--coral); }
.steps li.done { border-top-color: var(--lagoon-hi); color: var(--ocean-2); cursor: pointer; }
.steps li.done span { background: var(--lagoon-hi); color: #fff; border-color: var(--lagoon-hi); font-size: 0; }
.steps li.done span::before { content: '✓'; font-size: 12px; }
.step { animation: stepIn .4s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }

fieldset { border: 0; margin: 0 0 24px; padding: 0; min-width: 0; }
legend, .field > span { font: 500 10px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; padding: 0; display: block; }
.field small { text-transform: none; letter-spacing: 0; font-family: var(--sans); }

.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.seg-2 { grid-template-columns: 1fr 1fr; margin-bottom: 0; }
.seg legend { grid-column: 1 / -1; }
.seg label { position: relative; display: block; }
.seg input { position: absolute; opacity: 0; inset: 0; cursor: pointer; margin: 0; }
.seg span {
  display: flex; flex-direction: column; justify-content: center; gap: 3px; height: 100%; min-height: 54px;
  padding: 12px 14px; font-size: 14px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.seg span b { font-weight: 600; font-size: 15px; }
.seg span small { font-size: 12px; color: var(--muted); }
.seg label:hover span { border-color: var(--ocean); }
.seg input:checked + span { background: var(--ocean); color: #fff; border-color: var(--ocean); }
.seg input:checked + span small { color: rgba(255,255,255,.72); }
.seg input:focus-visible + span { outline: 2px solid var(--coral); outline-offset: 2px; }

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; margin-bottom: 20px; }
.span-2 { grid-column: 1 / -1; }
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .seg { grid-template-columns: 1fr; }
  .seg span { flex-direction: row; justify-content: space-between; align-items: baseline; }
}
.field { display: block; min-width: 0; }
.field input, .field select, .field textarea {
  width: 100%; font: 400 16px/1.4 var(--sans); color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0;
  padding: 8px 0 10px; min-height: 44px; transition: border-color .15s; appearance: none; -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='none' stroke='%230d2a31'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center; padding-right: 20px;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--lagoon-hi); box-shadow: 0 1px 0 var(--lagoon-hi); }
[aria-invalid="true"] { border-bottom-color: var(--warn) !important; box-shadow: 0 1px 0 var(--warn) !important; }
.check { display: flex; align-items: center; gap: 10px; font-size: 15px; cursor: pointer; min-height: 44px; align-self: end; }
.check input { width: 20px; height: 20px; accent-color: var(--lagoon-hi); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.stepper { display: flex; align-items: center; border-bottom: 1px solid var(--line-strong); }
.stepper input { border: 0 !important; box-shadow: none !important; text-align: center; font: 500 18px/1 var(--mono) !important; -moz-appearance: textfield; }
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.stepper button { flex: 0 0 44px; height: 44px; border: 0; border-radius: 50%; background: none; font-size: 22px; cursor: pointer; color: var(--ink); }
.stepper button:hover { background: var(--lagoon-pale); }

.step-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 20px; margin-top: 6px; border-top: 1px solid var(--line); }
.step-foot .btn-ink, .step-foot .btn-coral { min-width: 190px; }
.foot-price { margin-left: auto; font: 400 28px/1 var(--display); }
.foot-price small { font: 500 10px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-right: 8px; vertical-align: 5px; }
@media (max-width: 560px) {
  .step-foot {
    position: sticky; bottom: 0; z-index: 5;
    margin: 6px calc(clamp(18px, 3.2vw, 38px) * -1) calc(clamp(18px, 3.2vw, 38px) * -1);
    padding: 12px clamp(18px, 3.2vw, 38px) calc(12px + env(safe-area-inset-bottom));
    background: var(--shell); border-radius: 0 0 calc(var(--r) + 4px) calc(var(--r) + 4px);
    box-shadow: 0 -10px 24px -16px rgba(0,0,0,.3);
  }
  .step-foot .btn-ink, .step-foot .btn-coral { min-width: 0; flex: 1; }
  .foot-price { font-size: 20px; }
}

.trip-sum { margin: 0 0 18px; padding: 12px 16px; background: var(--lagoon-pale); border-radius: var(--r-sm); font-size: 14px; color: var(--ocean); }
.trip-sum button { margin-left: 6px; }

.pick { display: grid; gap: 10px; margin-bottom: 18px; }
.pick-car {
  position: relative; display: grid; grid-template-columns: 116px 1fr auto; gap: 16px; align-items: center;
  padding: 10px 16px 10px 10px; border: 1px solid var(--line-strong); border-radius: 16px; cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.pick-car input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.pick-car:hover { border-color: var(--ocean); }
.pick-car:has(input:checked) { border-color: var(--lagoon-hi); background: color-mix(in srgb, var(--lagoon-pale) 70%, transparent); box-shadow: inset 0 0 0 1px var(--lagoon-hi); }
.pick-car:has(input:focus-visible) { outline: 2px solid var(--coral); outline-offset: 2px; }
.pick-car.is-off { opacity: .45; cursor: not-allowed; }
.pick-car.is-off input { cursor: not-allowed; }
.pick-img { position: relative; display: block; aspect-ratio: 16 / 11; overflow: hidden; border-radius: 10px; background: var(--ocean); }
.pick-img img { width: 100%; height: 100%; object-fit: cover; }
.pick-name b { display: block; font: 400 22px/1.1 var(--display); }
.pick-name small { color: var(--muted); font-size: 13px; }
.pick-right { text-align: right; display: grid; gap: 6px; }
.pick-price { font: 500 19px/1 var(--mono); font-variant-numeric: tabular-nums; }
.pick-state { font: 500 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.pick-state[data-ok="1"] { color: var(--ok); }
.pick-state[data-ok="0"] { color: var(--warn); }
@media (max-width: 560px) {
  .pick-car { grid-template-columns: 88px 1fr; gap: 12px; }
  .pick-right { grid-column: 2; text-align: left; grid-template-columns: auto auto; justify-content: space-between; align-items: center; }
  .pick-name b { font-size: 19px; }
}

.summary { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding: 18px 20px; margin-bottom: 24px; border-radius: 16px; background: linear-gradient(135deg, var(--ocean), var(--ocean-2)); color: var(--foam); }
.summary > div:first-child { display: grid; gap: 3px; }
.summary .eyebrow { margin: 0 0 6px; color: var(--lagoon-lt); }
.summary b { font: 400 24px/1.1 var(--display); color: #fff; }
.summary span { font-size: 14px; }
.summary-price { text-align: right; font: 400 36px/1 var(--display); color: #fff; align-self: end; }
.summary-price small { display: block; font: 500 10px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: rgba(207,233,229,.75); margin-bottom: 6px; }

.form-error { color: var(--warn); margin: 0 0 12px; font-size: 14px; }

.confirm:focus { outline: none; }
.confirm-tick { width: 60px; height: 60px; border-radius: 50%; background: var(--lagoon-hi); margin-bottom: 22px; position: relative; animation: pop .5s var(--ease); }
.confirm-tick::after { content: ''; position: absolute; left: 21px; top: 15px; width: 14px; height: 24px; border: solid #fff; border-width: 0 3px 3px 0; transform: rotate(45deg); }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: none; opacity: 1; } }
.confirm-ref { font: 400 clamp(40px, 6vw, 64px)/1 var(--display); margin: 0 0 18px; letter-spacing: .02em; }
.confirm p { color: var(--ink-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---- FAQ ---- */
.faq { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) clamp(80px, 10vw, 140px); }
.faq-list { max-width: 920px; }
.faq details { border-radius: 16px; background: var(--shell); margin-bottom: 8px; border: 1px solid var(--line); transition: box-shadow .3s; }
.faq details[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; position: relative; font: 400 clamp(19px, 2vw, 24px)/1.25 var(--display); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 18px; top: 50%; width: 30px; height: 30px; margin-top: -15px; border-radius: 50%;
  display: grid; place-items: center; background: var(--lagoon-pale); color: var(--ocean);
  font: 400 20px/1 var(--sans); transition: transform .3s var(--ease), background .3s;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq details p { margin: 0; padding: 0 22px 22px; color: var(--ink-2); max-width: 46em; }

/* ---- Landing pages ---- */
.lp-prices { max-width: var(--max); margin: 0 auto; padding: clamp(56px, 8vw, 100px) var(--gutter); }
.lp-cars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-car { display: grid; gap: 12px; text-decoration: none; padding: 10px 10px 18px; border-radius: var(--r); background: var(--shell); box-shadow: var(--shadow); transition: transform .4s var(--ease); }
.lp-car:hover { transform: translateY(-4px); }
.lp-img { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 14px; background: var(--ocean); }
.lp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.lp-car:hover .lp-img img { transform: scale(1.05); }
.lp-name, .lp-price { padding: 0 8px; }
.lp-name b { display: block; font: 400 24px/1.1 var(--display); }
.lp-name small { color: var(--muted); }
.lp-price { font: 500 17px/1.4 var(--mono); color: var(--lagoon-hi); }
.lp-price small { font: 400 12px var(--sans); color: var(--muted); }
@media (max-width: 1020px) { .lp-cars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-cars { grid-template-columns: 1fr; } }
.lp-body { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) clamp(56px, 8vw, 100px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-body article { padding: 28px; border-radius: var(--r); background: var(--lagoon-pale); }
.lp-body .num { font: 400 40px/1 var(--display); color: var(--lagoon-hi); }
.lp-body h2 { font-size: 28px; line-height: 1.1; margin: 12px 0 12px; }
.lp-body p { color: var(--ink-2); margin: 0; }
@media (max-width: 860px) { .lp-body { grid-template-columns: 1fr; } }

/* ---- Car page ---- */
.cp { max-width: var(--max); margin: 0 auto; padding: clamp(24px, 4vw, 48px) var(--gutter) clamp(56px, 8vw, 100px); }
.crumbs { font: 400 12px/1 var(--mono); color: var(--muted); margin-bottom: 24px; }
.crumbs a { color: var(--ink-2); }
.cp-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.cp-media { position: sticky; top: 96px; }
.cp-info h1 { font-size: clamp(44px, 5.6vw, 80px); line-height: .95; margin-bottom: 20px; }
.cp-info .chips { margin-bottom: 8px; }
.cp-note { color: var(--muted); font-size: 14px; }
@media (max-width: 900px) { .cp-grid { grid-template-columns: 1fr; } .cp-media { position: static; } }

/* ---- Footer ---- */
.footer { position: relative; margin-top: 60px; background: var(--ocean); color: rgba(220, 242, 237, .72); font-size: 14px; }
.footer > .wave-footer { position: absolute; left: 0; right: 0; top: -59px; fill: var(--ocean); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: clamp(40px, 6vw, 72px) var(--gutter) 28px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer-mark { font: 400 clamp(40px, 5vw, 64px)/1 var(--display); color: #fff; margin: 0 0 14px; }
.footer-mark em { color: var(--coral); }
.footer p { margin: 0 0 10px; }
.footer .btn { margin-top: 12px; }
.footer .eyebrow { color: var(--lagoon-lt); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.88); text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-base { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; font-size: 12px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
.footer-base .coord { font-family: var(--mono); letter-spacing: .12em; }
.footer-base a { color: rgba(255,255,255,.5); }
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---- Manage booking page ---- */
.page { max-width: 780px; margin: 0 auto; padding: clamp(56px, 9vw, 110px) var(--gutter); }
.page h1 { font-size: clamp(44px, 7vw, 84px); line-height: .95; margin-bottom: 18px; }
.page .lede { margin: 0 0 40px; color: var(--ink-2); font-size: 18px; }
.status-pill { display: inline-block; font: 500 11px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; padding: 8px 12px; border-radius: 999px; border: 1px solid currentColor; }
.status-pending { color: var(--brass); }
.status-confirmed, .status-completed { color: var(--ok); }
.status-declined, .status-cancelled { color: var(--warn); }
.detail { margin: 26px 0; border-top: 1px solid var(--ink); }
.detail div { display: grid; grid-template-columns: 11em 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.detail dt { font: 500 10px/2 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.detail dd { margin: 0; }
@media (max-width: 520px) { .detail div { grid-template-columns: 1fr; gap: 2px; } }

/* ---- PhotoSwipe tweaks ---- */
.pswp { --pswp-bg: #06262f; --pswp-placeholder-bg: #0e4e5c; }
.pswp__counter { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; }

/* Elements animated in by site.js start hidden only once the script says motion is on. */
.motion [data-reveal], .motion [data-reveal-hero], .motion .hero-title { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .motion [data-reveal], .motion [data-reveal-hero], .motion .hero-title { opacity: 1; }
}

/* ---- Phone refinements ---- */
@media (max-width: 760px) {
  .hero { display: block; min-height: 0; }
  .hero-media { bottom: auto; height: 62svh; }
  .hero-shade {
    bottom: auto; height: 62svh;
    background: linear-gradient(180deg, rgba(8,54,66,.55) 0%, rgba(8,54,66,0) 20%, rgba(8,54,66,0) 50%, var(--ocean) 100%);
  }
  .hero-inner { padding-top: calc(62svh - 170px); }
  .hero-img { object-position: 55% 50%; }
}
@media (max-width: 420px) {
  .topbar { gap: 10px; }
  .wm-mark { width: 26px; height: 26px; }
  .wm-a { font-size: 11px; letter-spacing: .16em; }
  .wm-b { font-size: 19px; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
  .menu-btn { width: 40px; height: 40px; }
  .menu-btn span:first-child, .menu-btn span:first-child::before, .menu-btn span:first-child::after { left: 11px; }
  .menu-btn span:first-child { top: 19px; }
  .menu-btn span:first-child::before { left: 0; }
  .menu-btn span:first-child::after { left: 0; }
}


/* ==== Cinematic layer ====================================================== */
:root {
  --rose: #c99583;        /* La Digue granite */
  --rose-deep: #9c6452;
  --rose-pale: #f5e7df;
  --sunset: #f3a34b;      /* Bel Ombre sunset */
  --night: #04222b;       /* deep water after dark */
}

/* Film grain for photographic sections. */
.hero-grain, .islands-grain {
  position: absolute; inset: -50%; z-index: 0; pointer-events: none; opacity: .14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); }
}
.hero .hero-grain { z-index: -1; }

/* ---- Hero slideshow ---- */
.hero-media .slide { position: absolute; inset: 0; opacity: 0; }
.hero-media .slide.is-on { opacity: 1; }
.hero-media .slide .hero-img { transform-origin: 60% 50%; }
.hero-shade {
  background:
    linear-gradient(180deg, rgba(4,34,43,.55) 0%, rgba(4,34,43,0) 24%),
    linear-gradient(0deg, rgba(4,34,43,.92) 0%, rgba(4,34,43,.6) 30%, rgba(4,34,43,0) 62%),
    radial-gradient(80% 60% at 0% 100%, rgba(4,34,43,.55), transparent 70%);
}
.hero-title em { color: var(--lagoon-lt); }
.hero-meta {
  position: absolute; right: calc(var(--gutter) + 36px); bottom: clamp(28px, 5vw, 56px); z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px; text-align: right;
}
.hero-place { margin: 0; display: grid; gap: 4px; }
.hero-place-name { font: italic 400 20px/1.1 var(--serif); color: #fff; }
.hero-credit { font: 400 11px/1 var(--mono); color: rgba(255,255,255,.62); text-decoration: none; letter-spacing: .04em; }
.hero-credit:hover { color: #fff; text-decoration: underline; }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 44px; height: 24px; padding: 0; border: 0; background: none; cursor: pointer; display: grid; align-items: center; }
.hero-dots span { display: block; height: 2px; background: rgba(255,255,255,.3); border-radius: 2px; overflow: hidden; position: relative; }
.hero-dots span::after { content: ''; position: absolute; inset: 0; background: var(--sunset); transform: scaleX(var(--p, 0)); transform-origin: left; }
.hero-dots [aria-selected="true"] span { background: rgba(255,255,255,.5); }
@media (max-width: 1020px) { .hero-meta { top: 84px; bottom: auto; right: var(--gutter); gap: 10px; } .hero-place-name { font-size: 15px; } .hero-dots button { width: 32px; } }

/* ---- Intro gets the warmth of the granite ---- */
.intro { position: relative; }
.intro::before {
  content: ''; position: absolute; inset: 0 calc(50% - 50vw); z-index: -1;
  background: radial-gradient(60% 70% at 85% 40%, var(--rose-pale), transparent 70%);
}
.facts b { color: var(--rose-deep); }

/* ---- Island gallery (pinned sideways scroll) ---- */
.islands {
  position: relative; overflow: hidden; color: #fff; isolation: isolate;
  background:
    radial-gradient(70% 60% at 90% 0%, rgba(243,163,75,.22), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(31,169,159,.25), transparent 60%),
    var(--night);
}
.islands-pin { display: flex; align-items: center; gap: clamp(28px, 4vw, 64px); min-height: 100svh; padding: 96px 0 72px var(--gutter); position: relative; z-index: 1; }
.islands-head { flex: 0 0 clamp(280px, 30vw, 420px); }
.islands-head h2 { font-size: clamp(44px, 5.6vw, 84px); line-height: .95; color: #fff; margin-bottom: 22px; }
.islands-head h2 em { color: var(--sunset); }
.islands-head p { color: rgba(220,242,237,.78); margin: 0 0 28px; }
.islands-track { display: flex; gap: clamp(16px, 2vw, 28px); padding-right: var(--gutter); will-change: transform; }
.isle { flex: 0 0 clamp(300px, 34vw, 520px); margin: 0; }
.isle:nth-child(even) { margin-top: clamp(40px, 8vh, 96px); }
.isle-img { position: relative; aspect-ratio: 4 / 5; border-radius: 22px; overflow: hidden; background: var(--ocean); box-shadow: 0 40px 80px -40px rgba(0,0,0,.7); }
.isle:nth-child(3n+1) .isle-img { aspect-ratio: 5 / 4; }
.isle-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 1.6s var(--ease); }
.isle:hover .isle-img img { transform: scale(1.14); }
.isle figcaption { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; padding: 16px 4px 0; }
.isle-num { grid-row: span 3; font: 500 12px/1.8 var(--mono); color: var(--sunset); }
.isle-place { font: 400 26px/1.1 var(--display); color: #fff; }
.isle-place em { font-size: 18px; color: var(--lagoon-lt); margin-left: 6px; }
.isle-note { font-size: 14px; color: rgba(220,242,237,.72); }
.isle-credit { font: 400 11px/1.6 var(--mono); color: rgba(220,242,237,.45); text-decoration: none; }
.isle-credit:hover { color: #fff; text-decoration: underline; }
@media (max-width: 760px) {
  .islands-pin { display: block; min-height: 0; padding: 80px 0 64px; }
  .islands-head { padding: 0 var(--gutter); margin-bottom: 32px; }
  .islands-track { overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gutter) 12px; scrollbar-width: none; }
  .isle { flex-basis: 82vw; scroll-snap-align: center; }
  .isle:nth-child(even) { margin-top: 0; }
}

/* ---- Warmer accents across the page ---- */
.marquee span::after { background: var(--rose); }
.price-board a:hover .pb-price { color: var(--coral-2); }
.services .num { color: var(--rose-deep); }
.footer-credits { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) 18px; font-size: 12px; color: rgba(220,242,237,.5); }
.footer-credits a { color: rgba(220,242,237,.75); }
.footer { background: radial-gradient(60% 80% at 100% 0%, rgba(243,163,75,.12), transparent 60%), var(--ocean); }
.footer > .wave-footer { fill: var(--ocean); }

/* Split headings: each word rises out of its own line mask. */
.split-line { overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }

@media (prefers-reduced-motion: reduce) {
  .hero-grain, .islands-grain { animation: none; }
}


/* ==== Island backdrop ========================================================
   One fixed photo layer behind the page. Each section lays its own veil over it,
   so the islands show through, faded, and change as you scroll. */
.backdrop { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--ocean); }
.bd { position: absolute; inset: 0; opacity: 0; }
.bd.is-on { opacity: 1; }
.bd img { width: 100%; height: 100%; object-fit: cover; will-change: transform; transform: scale(1.1); }
.bd-caption {
  position: fixed; left: var(--gutter); bottom: 16px; z-index: 40; margin: 0; pointer-events: none;
  display: inline-flex; gap: 10px; align-items: baseline; padding: 7px 14px; border-radius: 999px;
  background: rgba(4, 34, 43, .5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; font: 400 11px/1.2 var(--mono); letter-spacing: .04em;
}
.bd-caption [data-bd-place] { font: italic 400 14px/1 var(--serif); letter-spacing: 0; }
.bd-caption [data-bd-credit] { color: rgba(255,255,255,.62); }
@media (max-width: 760px) { .bd-caption { display: none; } }

/* The hero is a window straight onto the backdrop. */
.hero.hero-backdrop { background: transparent; }

/* Veils: full-bleed, and each section its own mood. */
.tickets, .intro, .fleet, .reserve, .faq, .lp-prices, .lp-body, .cp, .page { position: relative; }
.tickets::before, .intro::before, .fleet::before, .reserve::before, .faq::before,
.lp-prices::before, .lp-body::before, .cp::before, .page::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: calc(50% - 50vw); right: calc(50% - 50vw); z-index: -1; pointer-events: none;
}
/* Morning: the text side stays clear, the island glows through on the right. */
.tickets::before, .intro::before {
  background:
    radial-gradient(55% 70% at 88% 45%, rgba(245,231,223,.35), transparent 70%),
    linear-gradient(90deg, rgba(246,240,229,.97) 0%, rgba(246,240,229,.9) 48%, rgba(246,240,229,.58) 100%);
}
/* The fleet sits on white sand, with a lighter window in the middle. */
.fleet::before {
  background:
    radial-gradient(70% 40% at 50% 30%, rgba(246,240,229,.55), rgba(246,240,229,.86) 70%),
    linear-gradient(180deg, rgba(246,240,229,.9), rgba(246,240,229,.82));
}
/* Night water for the island gallery, lit by the sunset. */
.islands {
  background:
    radial-gradient(70% 60% at 90% 0%, rgba(243,163,75,.28), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(31,169,159,.28), transparent 60%),
    rgba(4, 34, 43, .8);
}
/* The lagoon. */
.services { background: rgba(220, 242, 237, .84); }
.services > .wave-lagoon { fill: rgba(220, 242, 237, .84); }
.marquee { background: rgba(246, 240, 229, .88); }
/* Booking: calm and readable, the rocks of La Digue behind. */
.reserve::before { background: linear-gradient(90deg, rgba(246,240,229,.95) 0%, rgba(246,240,229,.88) 55%, rgba(246,240,229,.78) 100%); }
.faq::before { background: linear-gradient(180deg, rgba(246,240,229,.9), rgba(246,240,229,.82)); }
.lp-prices::before, .lp-body::before, .cp::before, .page::before { background: rgba(246, 240, 229, .9); }
/* Dusk for the footer. */
.footer { background: radial-gradient(60% 80% at 100% 0%, rgba(243,163,75,.18), transparent 60%), rgba(8, 54, 66, .88); }
.footer > .wave-footer { fill: rgba(8, 54, 66, .88); }

/* Cards float a little more now there is a picture behind them. */
.has-backdrop .car, .has-backdrop .booker, .has-backdrop .confirm, .has-backdrop .price-board a,
.has-backdrop .faq details, .has-backdrop .lp-car, .has-backdrop .service-grid article, .has-backdrop .panel {
  background: rgba(255, 252, 246, .94);
  backdrop-filter: blur(10px) saturate(1.1); -webkit-backdrop-filter: blur(10px) saturate(1.1);
}
.has-backdrop .lp-body article { background: rgba(220, 242, 237, .8); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

/* The gallery slides inside its own lane, fading out at the edge by the heading. */
.islands-view { flex: 1; min-width: 0; overflow: hidden; padding: 12px 0 24px; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px); mask-image: linear-gradient(90deg, transparent 0, #000 64px); }
.islands-track { padding-left: 64px; }
@media (max-width: 760px) {
  .islands-view { overflow: visible; padding: 0; -webkit-mask-image: none; mask-image: none; }
  .islands-track { padding-left: var(--gutter); }
}

/* The passenger stepper lives inside a .field, so undo the field-label styling. */
.field > .stepper { display: flex; margin: 0; font: inherit; letter-spacing: 0; text-transform: none; color: inherit; }
@media (max-width: 760px) {
  .hero.hero-backdrop .hero-shade {
    bottom: 0; height: auto;
    background: linear-gradient(180deg, rgba(4,34,43,.45) 0%, rgba(4,34,43,.05) 22%, rgba(4,34,43,.5) 46%, rgba(4,34,43,.88) 70%, rgba(4,34,43,.94) 100%);
  }
}

/* Insurance add-on: a tappable card rather than a tiny checkbox. */
.option {
  position: relative; display: grid; grid-template-columns: 26px 1fr; gap: 14px; align-items: start;
  padding: 16px 18px; border: 1px solid var(--line-strong); border-radius: 16px; cursor: pointer;
  background: rgba(220, 242, 237, .35); transition: border-color .15s, background .15s, opacity .2s;
}
.option input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.option-box { width: 24px; height: 24px; border-radius: 7px; border: 1.5px solid var(--ocean); display: grid; place-items: center; background: #fff; }
.option input:checked ~ .option-box { background: var(--lagoon-hi); border-color: var(--lagoon-hi); }
.option input:checked ~ .option-box::after { content: ''; width: 6px; height: 11px; border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: translateY(-1px) rotate(45deg); }
.option:has(input:checked) { border-color: var(--lagoon-hi); background: var(--lagoon-pale); }
.option:has(input:focus-visible) { outline: 2px solid var(--coral); outline-offset: 2px; }
.option-text b { display: block; font-weight: 600; font-size: 15px; }
.option-text small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.option.is-off { opacity: .45; cursor: not-allowed; }
.option.is-off input { cursor: not-allowed; }
.pay-choice { margin-bottom: 26px; }
.pay-choice span { min-height: 86px; }
@media (max-width: 560px) { .pay-choice span { flex-direction: column; align-items: flex-start; justify-content: center; } }

/* ---- Legal pages ---- */
.legal { max-width: 820px; }
.legal .eyebrow a { color: inherit; }
.legal .eyebrow span { color: var(--ink); }
.legal section { padding: 22px 0; border-top: 1px solid var(--line); }
.legal h2 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; margin-bottom: 10px; }
.legal p, .legal li { color: var(--ink-2); }
.legal p { margin: 0 0 10px; }
.legal ul { margin: 0 0 10px; padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--ocean-2); }
.legal-updated { margin-top: 26px !important; font-size: 13px; color: var(--muted) !important; }
.footer-legal { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) 10px; font-size: 13px; color: rgba(220,242,237,.72); display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-legal span { flex-basis: 100%; }
.footer-legal a { color: #fff; }
.option-terms .option-text { font-size: 14px; color: var(--ink-2); align-self: center; }
.option-terms .option-text a { color: var(--ocean-2); position: relative; z-index: 1; }

/* ---- Floating WhatsApp button ---- */
.wa-fab {
  position: fixed; right: max(18px, env(safe-area-inset-right)); bottom: calc(18px + env(safe-area-inset-bottom)); z-index: 45;
  display: inline-flex; align-items: center; gap: 10px; height: 58px; padding: 0 22px 0 16px;
  border-radius: 999px; background: #25d366; color: #fff; text-decoration: none; font: 600 15px/1 var(--sans);
  box-shadow: 0 14px 30px -12px rgba(8, 54, 66, .55), 0 2px 6px rgba(8, 54, 66, .18);
  transition: transform .35s var(--ease), bottom .35s var(--ease), box-shadow .25s, background .2s, opacity .25s;
}
.wa-fab:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(8, 54, 66, .6), 0 2px 6px rgba(8, 54, 66, .2); }
.wa-fab:focus-visible { outline: 3px solid var(--ocean); outline-offset: 3px; }
.wa-ico { width: 28px; height: 28px; flex: 0 0 auto; }
/* A soft ring that pulses twice when the page opens. */
.wa-fab::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  animation: wa-ring 2.4s 1.5s 2 ease-out; pointer-events: none;
}
@keyframes wa-ring { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); } 100% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); } }
.wa-tip {
  position: absolute; right: 4px; bottom: calc(100% + 12px); white-space: nowrap;
  padding: 10px 14px; border-radius: 14px 14px 4px 14px; background: var(--shell); color: var(--ink);
  font: 500 14px/1.2 var(--sans); box-shadow: var(--shadow);
  opacity: 0; transform: translateY(6px); pointer-events: none; transition: opacity .4s, transform .4s var(--ease);
}
.wa-fab.tip-on .wa-tip { opacity: 1; transform: none; }
.wa-fab.hide { opacity: 0; pointer-events: none; }
@media (max-width: 760px) {
  .wa-fab { width: 58px; padding: 0; justify-content: center; }
  .wa-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .wa-ico { width: 30px; height: 30px; }
}
/* On phones the booking form pins its buttons to the bottom; sit above them. */
@media (max-width: 560px) { .wa-fab.lift { bottom: calc(96px + env(safe-area-inset-bottom)); } }
/* Keep the photo credit clear of the badge on desktop. */
.bd-caption { max-width: calc(100vw - 280px); }

/* ==== Layout hygiene (from the layout audit) ================================= */
/* Never allow sideways scrolling, even from full-bleed backgrounds. */
body { overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }

/* Headings wrap into even lines instead of leaving one or two words hanging;
   body text avoids a single orphaned word on its last line. */
h1, h2, h3, .hero-title, .band-quote, .confirm-ref, .faq summary, .isle-place, .pb-label { text-wrap: balance; }
p, li, dd, .lede, .section-note, .option-text small, .seg small { text-wrap: pretty; }
/* Long words (usernames, links, references) break rather than push the layout wider. */
p, li, dd, small, .footer a { overflow-wrap: break-word; }

/* The footer's credit and payment lines span the full footer, not one grid column. */
.footer-inner > .footer-legal, .footer-inner > .footer-credits { grid-column: 1 / -1; max-width: none; margin: 0; padding: 0; }
.footer-inner > .footer-legal { padding-top: 10px; border-top: 1px solid rgba(255,255,255,.14); }

/* Booking heading: a touch smaller so it sits on two lines. */
.reserve-intro h2 { font-size: clamp(34px, 4.2vw, 60px); }

/* Visually hidden label never measures as squeezed text. */
.wa-label { white-space: nowrap; }

/* Button labels stay on one line where there is room, and centre when they must wrap. */
.btn { text-align: center; }

/* ==== My account ============================================================ */
.account { max-width: 980px; }
.acct-panel { max-width: 460px; }
.acct-social { display: grid; gap: 10px; }
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 50px; padding: 0 18px;
  border-radius: 999px; font: 600 15px/1 var(--sans); text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s;
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.social-google { background: #fff; color: #1f1f1f; border: 1px solid #dadce0; }
.social-apple { background: #000; color: #fff; border: 1px solid #000; }
.acct-or { display: flex; align-items: center; gap: 12px; margin: 14px 0 6px; color: var(--muted); font-size: 13px; }
.acct-or::before, .acct-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.acct-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; margin: 10px 0 20px; border-radius: 999px; background: var(--sand-2); }
.acct-tabs button { border: 0; background: none; padding: 11px; border-radius: 999px; font: 600 14px/1 var(--sans); color: var(--ink-2); cursor: pointer; }
.acct-tabs button[aria-selected="true"] { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.12); }
.acct-form { display: grid; gap: 16px; }
.acct-help { margin: 0; font-size: 13px; color: var(--muted); text-align: center; }
.acct-help a, .acct-guest a { color: var(--ocean-2); }
.acct-guest { margin-top: 22px; color: var(--ink-2); }
.acct-flash { max-width: 460px; }

.acct-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 16px; }
.acct-head h1 { margin-bottom: 0; }
.acct-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.acct-h2 { font: 400 clamp(24px, 3vw, 32px)/1.1 var(--display); margin: 0 0 16px; }
#acct-in > .acct-h2 { margin-top: 36px; }
.acct-list { display: grid; gap: 14px; }
.acct-empty { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 22px; border-radius: var(--r); background: rgba(255,252,246,.9); border: 1px dashed var(--line-strong); }
.acct-empty p { margin: 0; color: var(--ink-2); }
.acct-empty-small { color: var(--muted); }
.acct-past { margin: 28px 0; }
.acct-past summary { cursor: pointer; font: 500 15px/1.4 var(--sans); color: var(--ocean-2); margin-bottom: 14px; }
.acct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 10px; }
.acct-grid .panel { display: grid; gap: 14px; align-content: start; }
.acct-grid .panel p { margin: 0; color: var(--ink-2); }
.acct-saved { font: 500 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--ok); }
@media (max-width: 760px) { .acct-grid { grid-template-columns: 1fr; } }

.bk-card { padding: 20px 22px; border-radius: var(--r); background: rgba(255,252,246,.95); border: 1px solid var(--line); box-shadow: var(--shadow); }
.bk-card header { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.bk-ref { font: 500 13px/1 var(--mono); letter-spacing: .06em; color: var(--muted); }
.bk-card h3 { font-size: clamp(22px, 2.6vw, 28px); line-height: 1.15; margin-bottom: 6px; }
.bk-card h3 em { color: var(--ocean-2); }
.bk-card p { margin: 0 0 4px; color: var(--ink-2); }
.bk-when { font-weight: 600; color: var(--ink) !important; }
.bk-extra { font-size: 14px; }
.bk-price { margin-top: 10px !important; }
.bk-price b { font: 500 20px/1 var(--mono); color: var(--ink); margin-right: 6px; }
.bk-price span { font-size: 13px; color: var(--muted); }
.bk-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.bk-cancel { color: var(--warn); }
.signed-in-note { margin: 0 0 16px; padding: 10px 14px; border-radius: var(--r-sm); background: var(--lagoon-pale); color: var(--ocean); font-size: 14px; }

.acct-dlg { width: min(560px, calc(100vw - 24px)); border: 0; border-radius: 22px; padding: 0; background: var(--shell); color: var(--ink); box-shadow: 0 40px 80px -30px rgba(8,54,66,.5); }
.acct-dlg::backdrop { background: rgba(8, 54, 66, .5); backdrop-filter: blur(3px); }
.acct-dlg form { padding: clamp(20px, 4vw, 30px); }
.acct-dlg h2 { font-size: 30px; margin-bottom: 20px; }
.acct-dlg .eyebrow { margin-bottom: 10px; }
.acct-dlg-foot { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; padding-top: 16px; border-top: 1px solid var(--line); }
.move-quote { margin: 0 0 14px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--lagoon-pale); color: var(--ocean); font-size: 14px; }
@media (max-width: 560px) { .acct-dlg-foot .btn { flex: 1; } }

/* ---- Password reset ---- */
.acct-form-h { font: 400 26px/1.2 var(--display); margin: 0 0 6px; }
.acct-note { margin: 0 0 18px; color: var(--ink-2); }
.form-ok { margin: 0 0 14px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--lagoon-pale); color: var(--ocean); font-size: 14px; }

/* ---- Logo ---- */
/* The artwork is drawn for a dark background: the header is ocean glass once scrolled. */
.wm-text { display: none; }
.wm-logo { display: block; height: 48px; width: auto; transition: height .35s var(--ease), filter .35s; }
.has-hero .topbar:not(.scrolled) .wm-logo { height: 66px; filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .35)); }
.menu-open .has-hero .topbar .wm-logo, .menu-open.has-hero .topbar .wm-logo { height: 48px; filter: none; }
@media (max-width: 760px) {
  .wm-logo, .menu-open.has-hero .topbar .wm-logo { height: 40px; }
  .has-hero .topbar:not(.scrolled) .wm-logo { height: 50px; }
}
.footer-logo { display: block; width: min(360px, 80vw); height: auto; margin: -6px 0 16px -8px; }
