:root {
  --navy: #1c2430;
  --ink: #22272e;
  --muted: #6b7280;
  --line: #e5e7eb;
  --foam: #f6f7f8;
  --paper: #ffffff;
  --hero-overlay: linear-gradient(90deg, rgba(18, 22, 28, 0.62) 0%, rgba(18, 22, 28, 0.28) 55%, rgba(18, 22, 28, 0.12) 100%);
  --nav-h: 72px;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --r: 3px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #1c2430 #f6f7f8;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar { width: 8px; height: 8px; }
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track { background: #f6f7f8; }
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: #1c2430;
  border-radius: 999px;
  border: 2px solid #f6f7f8;
}
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover { background: #3d4b5c; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-weight: 560; line-height: 1.22; margin: 0; letter-spacing: -0.025em; color: var(--navy); }
p { margin: 0; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 72px 0; }
.eyebrow {
  display: inline-block;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.muted { color: var(--muted); }

/* Quiet, classic buttons — sentence case, no pills, no shout */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: var(--navy);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover { background: #0f141a; border-color: #0f141a; }
.btn:disabled,
.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-lg { min-height: 46px; padding: 0 24px; }
.btn-invert {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-invert:hover { background: transparent; color: #fff; }
.btn-text {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.55);
}
.btn-text:hover { opacity: .7; }
.btn-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  min-height: auto;
  background: none;
  border: 0;
  border-radius: 0;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: inset 0 -1px 0 var(--navy);
}
.btn-link:hover { opacity: .55; }
.header-actions .btn {
  min-height: 36px;
  padding: 0 14px;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.header-actions .btn:hover { background: var(--navy); color: #fff; }
.lang-switch { position: relative; z-index: 120; display: inline-flex !important; visibility: visible !important; opacity: 1 !important; flex-shrink: 0; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 0;
  padding: 6px 2px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 0;
}
.lang-btn svg { flex: 0 0 16px; }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(28, 36, 48, 0.12);
  z-index: 130;
}
.lang-menu[hidden] { display: none !important; }
.lang-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 400;
  white-space: nowrap;
}
.lang-menu a:hover,
.lang-menu a[aria-current="true"] { background: #f6f7f8; }

.site-header {
  position: sticky; top: 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.site-header.is-home {
  position: sticky;
  background: #fff;
  z-index: 200;
}
.site-header.is-home .nav a,
.site-header.is-home .lang-btn,
.site-header.is-home .menu-toggle { color: var(--ink); }
.site-header.is-home .logo-text { color: var(--navy); }
.header-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px)); margin-inline: auto;
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; min-width: 0; z-index: 2; }
.logo-img {
  width: 56px; height: 56px; object-fit: cover; border-radius: 50%;
  display: block; flex: 0 0 auto; background: #0a0a0a;
  box-shadow: 0 0 0 1px rgba(28,36,48,.12);
}
.logo-mark {
  width: 26px; height: 26px; border-radius: var(--r);
  background: var(--navy); color: #fff; display: grid; place-items: center;
  flex: 0 0 auto;
}
.logo-text {
  font-size: 13px;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: normal;
  max-width: 11.5em;
}
.logo-sub {
  display: inline;
  font-weight: 500;
  letter-spacing: .08em;
  opacity: .85;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.nav { display: flex; justify-content: center; gap: 22px; min-width: 0; align-items: center; }
.nav ul { display: flex; justify-content: center; gap: 22px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav a { font-size: 13.5px; font-weight: 400; color: var(--ink); padding: 4px 0; white-space: nowrap; }
.nav a.is-active, .nav .current-menu-item a { color: var(--navy); font-weight: 500; }
.nav a.is-active::after, .nav .current-menu-item a::after { display: none; }
.header-actions {
  display: flex !important;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  justify-self: end;
  z-index: 2;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
  cursor: pointer;
  color: inherit;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}
body.nav-open { overflow: hidden; }

.hero {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: calc(100svh - var(--nav-h));
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: #6aa3bc;
  border: 0;
  border-radius: 0;
}
.hero-sea {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.hero:has(.hero-sea) .hero-bg,
.hero:has(.hero-sea) .hero-fg,
.hero:has(.hero-sea) .hero-waves,
.hero:has(.hero-sea) .hero-ripples,
.hero:has(.hero-sea) .hero-light { display: none; }
.hero:has(.hero-sea)::before {
  background: linear-gradient(90deg, rgba(10, 24, 38, .62) 0%, rgba(10, 28, 44, .28) 38%, rgba(10, 28, 44, .06) 64%, transparent 100%);
}
.hero-bg {
  position: absolute; inset: -32px;
  background-image: url("https://images.unsplash.com/photo-1468581264429-2548ef9eb732?auto=format&fit=crop&w=2400&q=80");
  background-size: cover; background-position: center 38%;
  transform: translate3d(var(--hx, 0px), calc(var(--hy, 0px) + var(--hs, 0px)), 0);
  will-change: transform;
  z-index: 0;
  pointer-events: none;
  filter: saturate(1.15) contrast(1.06) brightness(.9);
}
.hero-fg {
  position: absolute; inset: -36px;
  pointer-events: none; z-index: 1;
  background:
    radial-gradient(ellipse at 78% 72%, rgba(150, 210, 235, .16), transparent 48%),
    linear-gradient(180deg, transparent 55%, rgba(6, 28, 44, .28) 100%);
  transform: translate3d(var(--fx, 0px), var(--fy, 0px), 0);
  will-change: transform;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 22, 38, .62) 0%, rgba(8, 28, 46, .28) 46%, rgba(10, 36, 54, .1) 100%),
    linear-gradient(180deg, rgba(8, 22, 38, .12) 0%, transparent 28%, transparent 72%, rgba(8, 22, 38, .18) 100%);
}
.hero-waves {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-wave {
  position: absolute;
  left: 0; bottom: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  background-position: 0 bottom;
  background-size: 50% 100%;
  animation: heroWave 22s linear infinite;
  will-change: transform;
}
.hero-wave-c {
  height: 100%;
  opacity: .55;
  animation-duration: 26s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath fill='%230a2a40' d='M0 92c150 48 250-48 400 0s250-48 400 0 250-48 400 0v108H0z'/%3E%3C/svg%3E");
}
.hero-wave-b {
  height: 72%;
  opacity: .72;
  animation-duration: 18s;
  animation-direction: reverse;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath fill='%23124460' d='M0 108c140 40 260-52 400-8s260-44 400 8 260-52 400-8v100H0z'/%3E%3C/svg%3E");
}
.hero-wave-a {
  height: 46%;
  opacity: .94;
  animation-duration: 12s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath fill='%231c5876' d='M0 120c160 36 240-40 400 0s240-40 400 0 240-40 400 0v80H0z'/%3E%3C/svg%3E");
}
@keyframes heroWave {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
.hero-light {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), rgba(190, 225, 255, .18), rgba(190, 225, 255, .05) 32%, transparent 58%);
  opacity: 0;
  transition: opacity .45s ease;
}
.hero.is-lit .hero-light { opacity: 1; }
.hero-ripples { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.hero-ripple {
  position: absolute; width: 14px; height: 14px; margin: -7px 0 0 -7px;
  border: 1px solid rgba(255,255,255,.4); border-radius: 50%;
  animation: heroRipple .9s ease-out forwards;
}
@keyframes heroRipple {
  to { transform: scale(9); opacity: 0; }
}
.hero-inner {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 32px));
  max-width: 560px;
  margin: 0 auto 0 max(16px, calc((100% - 1180px) / 2));
  padding: 72px 0;
  transform: translate3d(var(--cx, 0px), var(--cy, 0px), 0);
  will-change: transform;
}
.hero h1 { font-size: clamp(36px, 5.2vw, 56px); margin: 14px 0 16px; font-weight: 500; color: #fff; letter-spacing: -.03em; }
.hero p { max-width: 440px; font-size: 16px; font-weight: 400; color: rgba(255,255,255,.88); margin-bottom: 28px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; position: relative; z-index: 5; }
.scroll-cue { display: none; }

@media (hover: none), (pointer: coarse), (max-width: 899px) {
  .hero-light, .hero-ripples { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-fg, .hero-inner { transform: none !important; will-change: auto; }
  .hero-light, .hero-ripples { display: none; }
  .hero-wave { animation: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.reveal { opacity: 0; transform: translateY(12px); transition: .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .05s; } .delay-2 { transition-delay: .1s; }
.delay-3 { transition-delay: .15s; } .delay-4 { transition-delay: .2s; }

.section-head { margin: 0 0 40px; text-align: left; max-width: 560px; }
.section-kicker { color: var(--muted); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: 11px; }
.section-head h2 { font-size: clamp(24px, 3.2vw, 32px); margin: 10px 0 8px; color: var(--navy); font-weight: 500; }
.section-head p { margin-top: 6px; }

.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.van-card {
  background: #fff; border-radius: 0; overflow: hidden;
  box-shadow: none; display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.van-card:hover { transform: none; box-shadow: none; }
.van-card img { height: 250px; width: 100%; object-fit: cover; background: var(--foam); }
.van-card:hover img { transform: none; }
.van-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.van-card h3 { font-size: 20px; font-weight: 500; }
.van-meta { color: var(--muted); font-size: 12px; }
.van-specs { display: flex; gap: 6px; flex-wrap: wrap; font-size: 12px; color: var(--muted); }
.van-specs span { background: var(--foam); padding: 4px 8px; border-radius: var(--r); }
.van-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 10px; }
.price { font-weight: 600; color: var(--navy); }
.price small { color: var(--muted); font-weight: 400; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-card { background: transparent; border-radius: 0; padding: 0; border-top: 1px solid var(--line); padding-top: 18px; }
.why-icon, .why-num {
  width: auto; height: auto; border-radius: 0; background: none; color: var(--muted);
  display: block; margin-bottom: 12px; font-size: 11px; letter-spacing: .12em; font-weight: 500;
}
.why-card h3 { font-size: 16px; margin-bottom: 8px; font-weight: 500; }
.why-card p { font-size: 14px; }
.stats { display: none; }

.reviews { background: var(--foam); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.review-card { background: transparent; border-radius: 0; padding: 0; box-shadow: none; }
.review-card p { font-size: 15px; line-height: 1.65; }
.review-author { margin-top: 14px; font-size: 12px; color: var(--muted); display: flex; flex-direction: column; gap: 2px; }
.review-author span { font-weight: 400; }

.packed {
  position: relative;
  color: var(--ink);
  padding: 80px 0;
  background: var(--paper);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.packed::before { display: none; }
.packed-inner {
  position: relative; z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.packed h2 { color: var(--navy); font-size: clamp(26px, 3.5vw, 36px); font-weight: 500; letter-spacing: -.03em; }
.packed p.lead { margin: 12px 0 24px; max-width: 460px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.packed-tabs {
  display: inline-flex;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 3px;
  gap: 0;
  margin-bottom: 16px;
}
.packed-tabs button {
  border: 0; background: transparent; color: var(--muted);
  min-height: 38px; padding: 0 18px; border-radius: var(--r);
  font-size: 13.5px; font-weight: 500; cursor: pointer;
}
.packed-tabs button.is-on { background: var(--navy); color: #fff; }
.packed-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.packed-list[hidden] { display: none; }
.packed-list li {
  display: flex; align-items: center; gap: 12px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r); padding: 13px 16px;
  font-size: 14.5px; font-weight: 400;
}
.packed-list svg { flex: 0 0 18px; color: var(--muted); }
.packed-video {
  border-radius: var(--r); overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--line);
  box-shadow: none;
  aspect-ratio: 16 / 10;
  position: relative;
}
.packed-video iframe, .packed-video img { width: 100%; height: 100%; object-fit: cover; display: block; border: 0; }
.video-poster { all: unset; cursor: pointer; display: block; width: 100%; height: 100%; position: relative; }
.play-btn {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-size: 16px; padding-left: 3px;
  border: 1px solid rgba(255,255,255,.35);
}
.video-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 16px 14px;
  background: linear-gradient(transparent, rgba(28, 36, 48, .78));
  color: #fff; font-weight: 500; font-size: 14px;
}

.trips {
  background: var(--navy);
  color: #fff;
  padding: 84px 0;
}
.trips-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.trips h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); font-weight: 600; letter-spacing: -.03em; }
.trips .lead { color: rgba(255,255,255,.68); margin: 12px 0 32px; font-size: 16px; max-width: 460px; }
.trip-list { display: grid; gap: 22px; }
.trip-item { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; }
.trip-item svg { margin-top: 3px; color: rgba(255,255,255,.55); }
.trip-item h3 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 5px; }
.trip-item p { color: rgba(255,255,255,.7); font-size: 14.5px; line-height: 1.55; }
.trips-photo { border-radius: var(--r); overflow: hidden; background: #0f141a; }
.trips-photo img { width: 100%; height: 440px; object-fit: cover; display: block; }

.g-reviews { background: #f4f6f8; padding: 72px 0 80px; }
.g-reviews-head { margin-bottom: 28px; max-width: none; }
.g-reviews-head h2 { font-size: clamp(26px, 4vw, 38px); }
.g-stars-meta { display: flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--ink); font-size: 14px; }
.g-stars-meta strong { font-weight: 650; }
.g-stars-meta .muted { font-weight: 400; }
.g-reviews-wrap { position: relative; }
.g-reviews-viewport { overflow: hidden; }
.g-reviews-track { display: flex; gap: 16px; transition: transform .4s ease; }
.g-review {
  flex: 0 0 calc((100% - 32px) / 3);
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px 18px;
  min-height: 210px;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 0 rgba(18,33,43,.04);
}
.g-stars { color: #fbbc04; letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.g-review p { font-size: 14.5px; line-height: 1.55; color: #2b3238; flex: 1; }
.g-person { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.g-person img, .g-avatar {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  background: #dbe4ea; display: grid; place-items: center; font-size: 13px; font-weight: 600; color: #1c2430;
}
.g-person strong { display: block; font-size: 13.5px; }
.g-person small { color: var(--muted); font-size: 11px; display: flex; align-items: center; gap: 6px; }
.g-badge {
  width: 14px; height: 14px; border-radius: 50%; background: #1a73e8; color: #fff;
  display: inline-grid; place-items: center; font-size: 9px;
}
.g-logo { width: 16px; height: 16px; }
.g-reviews-next {
  position: absolute; right: -8px; top: 42%;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  font-size: 20px; color: var(--navy);
}
.g-reviews-dots { display: flex; justify-content: center; gap: 7px; margin-top: 22px; }
.g-reviews-dots button {
  width: 7px; height: 7px; border-radius: 50%; border: 0; padding: 0;
  background: #c5ccd2; cursor: pointer;
}
.g-reviews-dots button.is-on { background: var(--navy); }

.cta {
  background: var(--navy);
  color: #fff;
  text-align: left;
  position: relative;
  padding-bottom: 80px;
}
.cta::before { display: none; }
.cta .container { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(24px, 3.2vw, 32px); margin: 8px 0 10px; font-weight: 500; color: #fff; }
.cta p { max-width: 480px; margin: 0 0 24px; color: rgba(255,255,255,.7); }
.cta .section-kicker { color: rgba(255,255,255,.45); }

.site-footer {
  background: #141920;
  color: rgba(255,255,255,.58);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .75fr .75fr .75fr;
  gap: 40px 72px;
  padding-bottom: 48px;
  align-items: start;
}
.site-footer .logo { margin-bottom: 22px; }
.site-footer .logo-img { width: 56px; height: 56px; box-shadow: 0 0 0 1px rgba(255,255,255,.2); }
.site-footer .logo-mark { background: #fff; color: var(--navy); }
.site-footer .logo-text { color: #fff; }
.footer-contact {
  display: grid;
  gap: 7px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.55);
  max-width: 280px;
}
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: #fff; }
.site-footer h4 {
  color: rgba(255,255,255,.38);
  margin: 6px 0 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 500;
}
.site-footer a { color: rgba(255,255,255,.62); font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  color: rgba(255,255,255,.7);
}
.footer-social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.footer-social svg { display: block; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0 24px;
  font-size: 12px;
  letter-spacing: .01em;
  color: rgba(255,255,255,.32);
}
.page-hero { background: #fff; color: var(--navy); padding: 64px 0 12px; border-bottom: 0; }
.page-hero h1 { font-size: clamp(32px, 4.4vw, 46px); margin: 10px 0 12px; color: var(--navy); font-weight: 500; }
.page-hero p { max-width: 540px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.page-hero .section-kicker { color: var(--muted); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; border-radius: 0; }
.about-copy h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 500; margin-bottom: 16px; }
.about-copy p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.about-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 22px; }
.about-actions .btn-link { color: var(--navy); }
.about-points { margin-top: 8px; padding-top: 8px; }
.about-band { background: var(--foam); }

.help-page { max-width: 920px; }
.help-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}
.help-nav button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.2;
}
.help-nav button svg { flex: 0 0 18px; color: var(--muted); }
.help-nav button.is-on {
  background: var(--navy);
  color: #fff;
  font-weight: 500;
}
.help-nav button.is-on svg { color: #fff; }
.help-nav button:not(.is-on):hover { background: #f3f4f5; }
.help-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 40px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}
.help-legal a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  background: #f3f4f5;
  border: 0;
  box-shadow: none;
}
.help-legal a svg { flex: 0 0 15px; color: var(--muted); }
.help-legal a.is-accent {
  background: rgba(28, 36, 48, 0.08);
  color: var(--navy);
  font-weight: 500;
}
.help-legal a.is-accent svg { color: var(--navy); }
.help-legal a:hover { background: rgba(28, 36, 48, 0.12); color: var(--navy); }
.help-panel[hidden] { display: none; }
.help-panel-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--navy);
}
.help-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 36px;
}
.help-fact { border-top: 1px solid var(--line); padding-top: 14px; }
.help-fact small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}
.help-fact strong { display: block; margin-top: 8px; font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.35; }
.help-more { margin-top: 18px; }
.help-panel .contact-row {
  margin-top: 12px;
  padding-top: 0;
  border-top: 0;
}
.help-panel .contact-row h3 {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.faq-wrap { max-width: 760px; }
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { background: transparent; border-radius: 0; padding: 18px 0; border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--muted); font-weight: 400; font-size: 18px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 10px; max-width: 62ch; line-height: 1.7; padding-right: 28px; }

.cancel-block {
  margin: 72px 0 0;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.cancel-block h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 500; }
.cancel-block > p { color: var(--muted); margin: 8px auto 28px; max-width: 46ch; }
.faq-box {
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #fff;
}
.faq-box details { padding: 0; border-bottom: 1px solid var(--line); }
.faq-box details:last-child { border-bottom: 0; }
.faq-box summary { padding: 18px 20px; font-size: 15px; }
.faq-box summary::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg); flex: 0 0 auto;
  margin-top: -4px;
}
.faq-box details[open] summary::after {
  content: "";
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-box details p { padding: 0 20px 18px; margin-top: 0; }
.faq-box a, .policy-page a { color: var(--navy); }
.cancel-block .btn { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; }
.policy-page { max-width: 720px; }
.policy-page h2 { font-size: 20px; font-weight: 500; margin: 28px 0 10px; }
.policy-page p { color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.policy-page ul { margin: 0 0 16px; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.policy-page li { margin: 6px 0; }

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.contact-row h3 { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.contact-row p { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.contact-row a { color: var(--navy); }

.van-layout { display: grid; grid-template-columns: 1.4fr .72fr; gap: 28px; align-items: start; }
.van-gallery { border-radius: 0; overflow: hidden; border: 1px solid var(--line); }
.van-gallery > img { width: 100%; height: 360px; object-fit: cover; display: block; }
.van-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 6px;
  padding: 8px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.van-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  line-height: 0;
}
.van-thumb img { width: 100%; height: 56px; object-fit: cover; display: block; }
.van-thumb.is-active { border-color: var(--navy); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0; }
.spec { background: var(--foam); border-radius: var(--r); padding: 12px; }
.spec small { color: var(--muted); display: block; font-size: 11px; }
.book-box { position: sticky; top: 84px; background: #fff; border: 1px solid var(--line); border-radius: 0; padding: 22px; }
.amenity-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 18px; }
.amenity-list span { background: var(--foam); padding: 5px 9px; border-radius: var(--r); font-size: 12px; }

.booking-wrap { display: grid; grid-template-columns: 1.5fr .7fr; gap: 20px; align-items: start; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 18px; }
.step { background: var(--foam); border-radius: var(--r); padding: 10px 12px; font-size: 12px; color: var(--muted); border: 1px solid transparent; }
.step strong { display: block; color: var(--ink); font-size: 13px; }
.step.is-active { border-color: var(--navy); background: #fff; }
.step.is-done { background: #eef0f2; }
.step.is-clickable { cursor: pointer; }
.step.is-clickable:hover { border-color: var(--navy); background: #fff; }
.booking-nav {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.panel { background: #fff; border: 1px solid var(--line); border-radius: 0; padding: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 5px; font-size: 13px; font-weight: 500; }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: var(--r); padding: 11px 12px; font-weight: 400; font-size: 14px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: none;
}
.field textarea { min-height: 80px; resize: vertical; }
.field.full { grid-column: 1 / -1; }
.field-hint { margin: 6px 0 0; font-size: 12.5px; font-weight: 400; color: var(--muted); line-height: 1.45; }
.field-error { display: block; margin-top: 5px; font-size: 12.5px; font-weight: 400; color: #8a2f2f; }
.radio-row { display: flex; gap: 18px; margin-top: 8px; }
.radio {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 400; font-size: 14px; cursor: pointer;
}
.radio input { accent-color: var(--navy); width: 16px; height: 16px; }
.people-stepper {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 8px; font-weight: 400;
}
.people-stepper button {
  width: 34px; height: 34px; border: 1px solid var(--line);
  background: #fff; color: var(--navy); cursor: pointer; font-size: 18px; line-height: 1;
}
.people-stepper button:hover { background: var(--foam); }
.people-stepper strong { min-width: 1.5ch; text-align: center; font-size: 16px; color: var(--navy); }
.booking-note {
  margin-top: 16px; padding: 12px 14px;
  background: var(--foam); color: var(--muted);
  font-size: 13px; line-height: 1.55;
}
.booking-note strong { color: var(--navy); font-weight: 500; }
.terms-box {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.terms-box h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
}
.terms-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  cursor: pointer;
}
.terms-check:last-of-type { margin-bottom: 0; }
.terms-check input {
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--navy);
}
.terms-check a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.confirm-hint {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--foam);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.confirm-hint p { margin: 0; }
.confirm-hint-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.van-pick { display: grid; gap: 8px; }
.van-option {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 10px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--r); padding: 8px; cursor: pointer;
}
.van-option:hover { transform: none; background: var(--foam); }
.van-option img { width: 80px; height: 56px; object-fit: cover; border-radius: 0; }
.van-option.is-selected { border-color: var(--navy); background: var(--foam); }
.cal-block { margin-top: 22px; }
.cal-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.cal-toolbar h3 { font-size: 16px; font-weight: 500; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 36px; height: 36px; border: 1px solid var(--line);
  background: #fff; color: var(--navy); cursor: pointer; font-size: 16px;
}
.cal-nav button:hover { background: var(--foam); }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cal-month h4 { font-size: 13px; font-weight: 500; margin-bottom: 10px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-grid span, .cal-grid button {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 13px; border: 0; background: transparent; color: var(--navy);
  min-height: 36px;
}
.cal-grid .dow { color: var(--muted); font-size: 11px; font-weight: 500; min-height: 24px; }
.cal-grid button {
  cursor: pointer; border-radius: var(--r);
  min-height: 62px; padding: 6px 2px 8px; gap: 2px; line-height: 1.1;
  overflow: visible;
}
.cal-grid button .cal-num { font-size: 13px; font-weight: 500; }
.cal-grid button .cal-price {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  white-space: nowrap;
  line-height: 1.2;
  min-height: 1.1em;
}
.cal-grid button .cal-price-empty { visibility: hidden; font-weight: 400; }
.cal-grid button.is-season .cal-price { color: var(--navy); font-weight: 700; }
.cal-grid button:hover:not(:disabled) { background: var(--foam); }
.cal-grid button.is-closed,
.cal-grid button:disabled {
  color: rgba(28,36,48,.3);
  cursor: not-allowed; background: #f4f5f6;
}
.cal-grid button.is-closed .cal-num,
.cal-grid button:disabled .cal-num { text-decoration: line-through; }
.cal-grid button.is-closed .cal-price,
.cal-grid button:disabled .cal-price { color: rgba(28,36,48,.28); font-weight: 400; }
.cal-grid button.is-in { background: rgba(28,36,48,.12); }
.cal-grid button.is-start,
.cal-grid button.is-end { background: var(--navy); color: #fff; text-decoration: none; }
.cal-grid button.is-start .cal-price,
.cal-grid button.is-end .cal-price { color: rgba(255,255,255,.8); }
.cal-legend { display: flex; flex-wrap: wrap; gap: 14px 18px; margin-top: 14px; font-size: 12px; color: var(--muted); }
.cal-legend i {
  display: inline-block; width: 10px; height: 10px; margin-right: 6px;
  vertical-align: -1px; border: 1px solid var(--line);
}
.cal-legend .avail i { background: #fff; }
.cal-legend .season i { background: var(--foam); border-color: var(--navy); }
.cal-legend .closed i { background: #f4f5f6; }
.cal-legend .picked i { background: var(--navy); border-color: var(--navy); }
.cal-note { font-size: 13px; color: var(--muted); margin: 8px 0 0; }
.details-grid .field-label { display: block; margin-bottom: 2px; }
.details-grid .field.full { grid-column: 1 / -1; }
.dob-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.1fr;
  gap: 8px;
  margin-top: 4px;
}
.dob-row select {
  width: 100%;
  min-height: 42px;
}
.details-grid .field-error {
  display: block;
  margin-top: 4px;
  color: #b42318;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}
.details-grid .field-hint {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.details-grid .radio-row { display: flex; flex-wrap: wrap; gap: 14px 18px; margin-top: 6px; }
.details-grid .radio { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; cursor: pointer; }
.extras { display: grid; gap: 8px; }
.extra { display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--line); border-radius: var(--r); padding: 10px 12px; }
.extra.is-on { border-color: var(--navy); background: var(--foam); }
.summary { position: sticky; top: 84px; }
.summary-row { display: flex; justify-content: space-between; margin: 6px 0; font-size: 13px; }
.summary-total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 10px; font-size: 18px; font-weight: 600; }
.notice { background: var(--foam); color: var(--navy); border-radius: var(--r); padding: 10px 12px; font-size: 13px; margin: 10px 0; }
.success-box { text-align: center; padding: 32px 16px; }
.code { font-size: 24px; color: var(--navy); letter-spacing: .04em; font-weight: 600; }
.bank-box {
  text-align: left;
  max-width: 420px;
  margin: 24px auto;
  padding: 20px 22px;
  border: 1px solid rgba(20, 40, 60, 0.12);
  background: rgba(20, 40, 60, 0.03);
}
.bank-box h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.bank-box h3 + p { margin-top: 0; }
.bank-box .muted { margin-bottom: 0; }
.bank-dl { margin: 0 0 14px; }
.bank-dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 4px 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(20, 40, 60, 0.08);
  font-size: 0.92rem;
}
.bank-dl dt { margin: 0; color: rgba(20, 40, 60, 0.65); font-weight: 500; }
.bank-dl dd { margin: 0; font-weight: 600; word-break: break-all; }

.admin-wrap { max-width: 920px; margin: 24px auto; padding: 0 16px 48px; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: 0; padding: 16px; margin-bottom: 12px; }
.admin-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 12px; align-items: center; }

@media (max-width: 980px) {
  .fleet-grid, .why-grid, .review-grid, .stats, .footer-grid, .van-layout, .booking-wrap, .form-grid, .about-grid, .help-facts, .contact-row {
    grid-template-columns: 1fr 1fr;
  }
  .packed-inner, .trips-inner { grid-template-columns: 1fr; }
  .g-review { flex-basis: calc((100% - 16px) / 2); }

  .site-header {
    height: var(--nav-h);
  }
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 10px;
    width: min(1180px, calc(100% - 24px));
  }
  /* Hide desktop links — only hamburger opens the panel */
  .nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px 16px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(18, 22, 28, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 250;
    max-height: min(70vh, 480px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open {
    display: flex !important;
  }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav li,
  .nav > a {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav a {
    display: block;
    padding: 14px 4px;
    font-size: 16px;
    color: var(--ink) !important;
    white-space: normal;
  }
  .menu-toggle {
    display: inline-flex !important;
  }
  .hero-inner {
    margin-left: 16px;
    margin-right: 16px;
    max-width: 100%;
  }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero p { font-size: 15px; max-width: 36ch; }
  .hero-actions { flex-wrap: wrap; gap: 12px; }
  .summary { position: static; }
  .bank-dl > div { grid-template-columns: 1fr; gap: 2px; }
  .dob-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .fleet-grid, .why-grid, .review-grid, .stats, .footer-grid, .van-layout, .booking-wrap, .form-grid, .about-grid, .steps, .packed-inner, .trips-inner, .help-facts, .contact-row {
    grid-template-columns: 1fr;
  }
  .g-review { flex-basis: 100%; }
  .header-actions .btn,
  .header-actions .header-reserve { display: none !important; }
  .logo-img { width: 48px; height: 48px; }
  .logo-text { font-size: 11px; max-width: 9.5em; letter-spacing: .03em; }
  .site-footer .logo-img { width: 48px; height: 48px; }
  .reveal { opacity: 1; transform: none; }
  .cal-months { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .packed { padding: 56px 0; }
  .trips { padding: 56px 0; }
  .trips-photo img { height: 280px; }
  .page-hero { padding: 40px 0 8px; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 36px); }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .step { padding: 8px 10px; font-size: 11px; }
  .step strong { font-size: 12px; }
  .booking-nav {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .booking-nav .btn { width: 100%; justify-content: center; }
  .van-gallery > img { height: 240px; }
  .van-thumbs { grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .container { width: min(1120px, calc(100% - 24px)); }
  .lang-btn { font-size: 12px; padding: 6px 8px; }
  .footer-grid { gap: 28px; }
  .hero {
    min-height: calc(100svh - var(--nav-h));
    align-items: flex-end;
    padding-bottom: 40px;
  }
  .hero-inner { margin-bottom: 8px; }
}

@media (max-width: 420px) {
  .steps { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .spec-grid { grid-template-columns: 1fr; }
}
