/* ─── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #0a0805;
  --ink-2:   #161210;
  --paper:   #f2eeea;
  --paper-2: #e8e2db;
  --dim:     rgba(242,238,234,0.42);
  --gold:    #c4954a;
  --muted:   rgba(242,238,234,0.38);
  --line:    rgba(242,238,234,0.07);
  --pad-x:   52px;
  --pad-y:   88px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ─── GRAIN TEXTURE ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ─── ACCESSIBILITY ──────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 9999;
  transition: top 150ms;
}

.skip-link:focus { top: 8px; }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   700ms cubic-bezier(0.16,1,0.3,1),
    transform 700ms cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  transition: background 300ms, backdrop-filter 300ms;
}

.site-header.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-main {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
}

.brand-sub {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--paper);
  transition: transform 250ms, opacity 250ms;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.main-nav {
  display: flex;
  gap: 36px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dim);
}

.main-nav a { transition: color 150ms; }
.main-nav a:hover { color: var(--paper); }

.header-phone {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--paper);
  transition: color 150ms;
  white-space: nowrap;
}

.header-phone:hover { color: var(--gold); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 28px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 999px;
  transition: color 280ms cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}

/* Primary — solid with gold fill slide */
.btn-primary {
  background: var(--paper);
  color: var(--ink);
  box-shadow: inset 0 -2px 0 0 var(--gold);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 340ms cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}

.btn-primary:hover::after { transform: translateY(0); }
.btn-primary:hover         { color: var(--ink); }
.btn-primary > *           { position: relative; z-index: 1; }

/* Secondary — ghost, no box */
.btn-secondary {
  background: transparent;
  color: rgba(240,240,240,0.55);
  border: none;
  padding: 0 6px;
  box-shadow: none;
  transition: color 200ms, gap 260ms cubic-bezier(0.16,1,0.3,1);
}

.btn-secondary:hover {
  color: rgba(240,240,240,0.9);
  gap: 14px;
}

/* Dark-bg sections: primary becomes gold */
.final-cta .btn-primary,
.hero .btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: none;
}

.final-cta .btn-primary::after,
.hero .btn-primary::after {
  background: var(--paper);
}

.final-cta .btn-primary:hover,
.hero .btn-primary:hover { color: var(--ink); }

/* Fleet section (white bg): dark button */
.fleet .btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: inset 0 -2px 0 0 var(--gold);
}

.fleet .btn-primary::after { background: var(--gold); }
.fleet .btn-primary:hover   { color: var(--ink); }

.fleet .btn-secondary {
  color: rgba(10,10,10,0.45);
}

.fleet .btn-secondary:hover { color: rgba(10,10,10,0.85); }

@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { transition: none; }
  .btn-secondary      { transition: color 200ms; }
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 40% 50%;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,5,2,0.38) 0%, rgba(8,5,2,0.02) 60%),
    linear-gradient(to top,   rgba(6,3,0,0.78) 0%, rgba(8,4,0,0.22) 42%, rgba(12,6,0,0.04) 70%, transparent 100%);
}

.hero-shell {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x) 52px;
  max-width: 1440px;
  margin: 0 auto;
  left: 0; right: 0;
}

.hero-kicker {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: end;
  gap: 48px;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--paper);
  text-wrap: balance;
  margin-bottom: 20px;
}

.hero-copy p {
  font-size: 0.88rem;
  color: rgba(240,240,240,0.5);
  line-height: 1.7;
  max-width: 400px;
}

/* ─── BOOKING CARD ───────────────────────────────────── */
.booking-card {
  background: rgba(14,14,14,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(240,240,240,0.08);
  border-bottom: 2px solid var(--gold);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.booking-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.booking-card h2 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.quick-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.quick-routes span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(240,240,240,0.5);
  padding: 4px 12px;
  border: 1px solid rgba(240,240,240,0.12);
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─── SECTION HEAD ───────────────────────────────────── */
.section-head {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(240,240,240,0.07);
  margin-bottom: 40px;
}

.section-head p,
.eyebrow {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-transform: none;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--paper);
  max-width: 600px;
}

.section-head.center {
  text-align: center;
}

.section-head.center h2 { margin: 0 auto; }

/* white-bg section overrides */
.fleet .section-head h2 { color: var(--ink); }
.fleet .section-head    { border-bottom-color: rgba(10,10,10,0.08); }

/* ─── SERVICES DOCK ──────────────────────────────────── */
.service-dock {
  background: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
}

.service-grid {
  display: flex;
  flex-direction: column;
}

.service-grid article {
  display: grid;
  grid-template-columns: 56px 1fr 280px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  gap: 28px;
  transition: opacity 200ms;
  cursor: default;
}

.service-grid article:hover { opacity: 0.72; }

.service-grid article span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.service-grid article h3 {
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--paper);
}

.service-grid article p {
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.6;
}

/* ─── FLEET ──────────────────────────────────────────── */
.fleet {
  background: var(--paper);
  color: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.fleet-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}

.fleet-copy .eyebrow { color: var(--gold); }

.fleet-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.fleet-copy p {
  font-size: 0.9rem;
  color: rgba(10,10,10,0.55);
  line-height: 1.75;
  max-width: 440px;
}

.fleet-copy ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fleet-copy ul li {
  font-size: 0.78rem;
  color: rgba(10,10,10,0.5);
  padding-left: 14px;
  position: relative;
}

.fleet-copy ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.58em;
  width: 6px; height: 1px;
  background: var(--gold);
}

.fleet-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px;
}

.fleet-main {
  grid-column: 1 / -1;
}

.fleet-board figure {
  overflow: hidden;
  background: rgba(10,10,10,0.06);
}

.fleet-main img { height: 320px; object-fit: cover; width: 100%; }
.fleet-board figure:not(.fleet-main) img { height: 180px; object-fit: cover; width: 100%; }

.fleet-board figcaption {
  font-size: 0.62rem;
  color: rgba(10,10,10,0.4);
  padding: 8px 10px;
  letter-spacing: 0.03em;
}

/* ─── TOUR SECTION ───────────────────────────────────── */
.tour-section {
  background: var(--ink);
  padding: var(--pad-y) var(--pad-x);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 220px;
  gap: 6px;
}

.tour-grid article {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}

.tour-grid article:nth-child(1) { grid-column: 1 / 6;  grid-row: 1; }
.tour-grid article:nth-child(2) { grid-column: 6 / 9;  grid-row: 1; }
.tour-grid article:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.tour-grid article:nth-child(4) { grid-column: 1 / 5;  grid-row: 2; }
.tour-grid article:nth-child(5) { grid-column: 5 / 13; grid-row: 2; }

.tour-grid article img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16,1,0.3,1);
}

.tour-grid article:hover img { transform: scale(1.07); }

.tour-grid article::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.82) 0%, transparent 55%);
}

.tour-grid article > div {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  padding: 16px 18px;
}

.tour-grid article h3 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 2px;
}

.tour-grid article p {
  font-size: 0.68rem;
  color: rgba(240,240,240,0.5);
}

@media (prefers-reduced-motion: reduce) {
  .tour-grid article img,
  .tour-grid article:hover img { transition: none; transform: none; }
}

/* ─── ASSURANCE ──────────────────────────────────────── */
.assurance {
  background: var(--ink-2);
  color: var(--paper);
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
}

.assurance-copy {
  margin-bottom: 48px;
}

.assurance-copy .eyebrow { color: var(--gold); margin-bottom: 10px; }

.assurance-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.assurance-grid article {
  background: var(--ink-2);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}

.assurance-grid article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.assurance-grid article strong {
  display: block;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  font-family: "Newsreader", Georgia, serif;
}

.assurance-grid article h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 10px;
}

.assurance-grid article p {
  font-size: 0.82rem;
  color: var(--dim);
  line-height: 1.7;
}

/* ─── REVIEWS ────────────────────────────────────────── */
.reviews {
  background: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
}

.reviews .section-head h2 { color: var(--paper); }
.reviews .section-head     { border-bottom-color: var(--line); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.reviews-grid article {
  background: var(--ink);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 250ms;
}

.reviews-grid article:hover { background: var(--ink-2); }

.review-stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 3px;
}

.reviews-grid blockquote p {
  font-size: 0.88rem;
  color: rgba(242,238,234,0.62);
  line-height: 1.82;
  font-style: italic;
}

.reviews-grid blockquote p::before { content: '\201C'; }
.reviews-grid blockquote p::after  { content: '\201D'; }

.review-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-footer strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.01em;
}

.review-footer span {
  font-size: 0.64rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── FINAL CTA ──────────────────────────────────────── */
.final-cta {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.final-cta > img,
.final-cta > picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta > img,
.final-cta > picture img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10,10,10,0.72);
}

.final-panel {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad-x);
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.final-panel .eyebrow { color: var(--gold); }

.final-panel h2 {
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--paper);
  text-wrap: balance;
}

.final-panel p {
  font-size: 0.84rem;
  color: rgba(240,240,240,0.5);
  line-height: 1.7;
  max-width: 480px;
}

.final-panel .hero-actions { justify-content: center; }

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: #060606;
  color: rgba(240,240,240,0.35);
  padding: 64px var(--pad-x) 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-brand .brand-main { color: var(--paper); }
.footer-brand .brand-sub  { color: var(--gold); }

.footer-brand + p {
  font-size: 0.74rem;
  line-height: 1.65;
  margin-top: 12px;
  color: rgba(240,240,240,0.35);
}

/* The first footer div holds brand + tagline — stack them */
.site-footer > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer > div:first-child p {
  margin-top: 12px;
  font-size: 0.74rem;
  line-height: 1.65;
  color: rgba(240,240,240,0.35);
}

.site-footer h3 {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.4);
  margin-bottom: 14px;
}

.site-footer div > a {
  display: block;
  font-size: 0.74rem;
  margin: 7px 0;
  transition: color 120ms;
}

.site-footer div > a:hover { color: rgba(240,240,240,0.8); }

.site-footer div > p {
  font-size: 0.74rem;
  line-height: 1.65;
  color: rgba(240,240,240,0.35);
}

/* ─── MOBILE STICKY BAR ──────────────────────────────── */
.mobile-actions {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.mobile-actions a {
  flex: 1;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-actions a:first-child {
  background: #25D366;
  color: #fff;
}

.mobile-actions a:last-child {
  background: var(--gold);
  color: var(--ink);
}

/* Hide mobile bar on desktop */
@media (min-width: 901px) {
  .mobile-actions { display: none !important; }
}

/* ─── MOBILE NAV ──────────────────────────────────────── */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .mobile-actions { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms;
    z-index: 200;
  }

  .main-nav.is-open { opacity: 1; pointer-events: all; }

  .header-phone { display: none; }

  /* Bottom padding so sticky bar doesn't cover content */
  body { padding-bottom: 52px; }
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --pad-x: 32px; --pad-y: 72px; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking-card { display: none; }

  .hero-shell { padding-bottom: 64px; }

  .service-grid article {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .service-grid article p { display: none; }

  .fleet {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fleet-copy { position: static; }

  .assurance-grid  { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .site-footer > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --pad-x: 20px; --pad-y: 56px; }

  .hero { min-height: 560px; }

  .hero-copy h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  .final-panel h2 { font-size: clamp(2rem, 8vw, 2.8rem); }

  .fleet-copy h2 { font-size: clamp(2rem, 7vw, 2.8rem); }

  .tour-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 160px;
  }

  .tour-grid article:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .tour-grid article:nth-child(2) { grid-column: 1 / 2; grid-row: 2; }
  .tour-grid article:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
  .tour-grid article:nth-child(4) { grid-column: 1 / 2; grid-row: 3; }
  .tour-grid article:nth-child(5) { grid-column: 2 / 3; grid-row: 3; }

  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }

  .final-panel .hero-actions { flex-direction: column; align-items: stretch; }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .fleet-board { grid-template-columns: 1fr; }
  .fleet-main  { grid-column: 1; }
}

@media (max-width: 390px) {
  .service-grid article {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .tour-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 180px);
  }

  .tour-grid article:nth-child(1),
  .tour-grid article:nth-child(2),
  .tour-grid article:nth-child(3),
  .tour-grid article:nth-child(4),
  .tour-grid article:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Safe area insets for iPhone notch / Dynamic Island */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-actions {
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(52px + env(safe-area-inset-bottom));
  }

  @media (max-width: 900px) {
    body { padding-bottom: calc(52px + env(safe-area-inset-bottom)); }

    .cookie-banner { bottom: calc(52px + env(safe-area-inset-bottom)); }
  }
}

/* ─── COOKIE BANNER ──────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  background: rgba(10,8,5,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(196,149,74,0.2);
  transform: translateY(100%);
  transition: transform 400ms cubic-bezier(0.16,1,0.3,1);
  padding: 20px var(--pad-x);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  font-size: 0.76rem;
  color: rgba(242,238,234,0.6);
  line-height: 1.65;
  min-width: 240px;
}

.cookie-inner p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Cookie banner on mobile: above the sticky bar */
@media (max-width: 900px) {
  .cookie-banner {
    bottom: 52px;
    padding: 16px 20px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

/* ─── PRIVACY PAGE ───────────────────────────────────── */
.privacy-hero {
  padding: 140px var(--pad-x) 64px;
  border-bottom: 1px solid var(--line);
}

.privacy-hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 12px;
}

.privacy-hero p {
  font-size: 0.82rem;
  color: var(--dim);
}

.privacy-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px var(--pad-x) 96px;
}

.privacy-body h2 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 40px 0 12px;
}

.privacy-body h2:first-child { margin-top: 0; }

.privacy-body p,
.privacy-body li {
  font-size: 0.84rem;
  color: rgba(242,238,234,0.6);
  line-height: 1.8;
  margin-bottom: 10px;
}

.privacy-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}

.privacy-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-body strong {
  color: var(--paper);
  font-weight: 600;
}

/* SEO landing pages */
.seo-page {
  background: var(--ink);
  color: var(--paper);
}

.seo-hero {
  min-height: 720px;
  padding: 140px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.seo-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--paper);
  text-wrap: balance;
}

.seo-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(242,238,234,0.68);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.seo-hero picture {
  overflow: hidden;
  background: rgba(242,238,234,0.06);
}

.seo-hero img {
  width: 100%;
  height: min(58vw, 680px);
  min-height: 420px;
  object-fit: cover;
}

.seo-content,
.seo-faq {
  max-width: 920px;
  margin: 0 auto;
  padding: 76px var(--pad-x);
}

.seo-content {
  display: grid;
  gap: 28px;
}

.seo-content h2,
.seo-faq h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  color: var(--paper);
}

.seo-content p {
  margin: -14px 0 16px;
  color: rgba(242,238,234,0.66);
  font-size: 1rem;
  line-height: 1.85;
}

.seo-faq {
  padding-top: 20px;
  padding-bottom: 110px;
}

.seo-faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.seo-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.seo-faq summary {
  cursor: pointer;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 700;
}

.seo-faq details p {
  margin: 14px 0 0;
  color: rgba(242,238,234,0.66);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .seo-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 112px;
  }

  .seo-hero img {
    height: 430px;
  }
}

@media (max-width: 680px) {
  .seo-hero {
    padding-top: 96px;
    padding-bottom: 50px;
  }

  .seo-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  .seo-hero img {
    min-height: 0;
    height: 300px;
  }

  .seo-content,
  .seo-faq {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }
}
