/* Centaurus Charter — cinematic site */

:root {
  --navy: #092F57;
  --noir: #06182B;
  --ink:  #0B2848;
  --line2:#1C3A52;
  --gold: #F7CE05;
  --gold-soft: #F5E812;
  --paper:#F7FAFB;
  --sand: #F3ECDD;
  --ink2: #0B2848;
  --line: #DCE4E9;
  --mute: #6B7B8A;
  --white:#ffffff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

/* Typography */
.display, h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-size: clamp(48px, 6vw, 96px); line-height: 0.98; font-weight: 400; }
h2 { font-size: clamp(36px, 4vw, 64px); line-height: 1.02; font-weight: 400; }
h3 { font-size: clamp(22px, 2vw, 32px); line-height: 1.1; font-weight: 500; }
p { margin: 0; }
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: var(--gold); opacity: 1; }

/* Layout */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding: 0 24px; }

/* Top nav */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}
.nav.is-dark {
  background: rgba(6, 24, 43, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; padding: 0 28px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo svg { width: 168px; height: auto; }
.nav-links { display: flex; gap: 28px; }
.nav-links button {
  background: none; border: 0; color: inherit; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; padding: 6px 0; position: relative;
  text-transform: uppercase;
}
.nav-links button::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links button.active::after,
.nav-links button:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex; border: 1px solid currentColor; opacity: 0.65; border-radius: 999px;
  padding: 3px; gap: 0; font-size: 11px; font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.1em;
}
.lang-toggle button {
  background: none; border: 0; color: inherit; cursor: pointer;
  padding: 4px 10px; border-radius: 999px;
}
.lang-toggle button.active { background: var(--navy); color: var(--white); }
.nav.is-dark .lang-toggle button.active { background: var(--gold); color: var(--noir); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--noir); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; opacity: 0.85; }
.btn-ghost:hover { opacity: 1; background: rgba(255,255,255,0.06); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--noir); }
.btn-sm { padding: 9px 16px; font-size: 11px; }
.btn-wa {
  background: #25D366; color: white; padding: 12px 18px;
}
.btn-wa:hover { background: #1ebe57; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; color: var(--white);
  background: var(--noir); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.78);
}
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(6,24,43,0.62) 0%,
    rgba(6,24,43,0.08) 35%,
    rgba(6,24,43,0.20) 60%,
    rgba(6,24,43,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: 96px; }
.hero-content .wrap { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; }
.hero-title { font-size: clamp(64px, 8.5vw, 132px); font-weight: 300; line-height: 0.92; letter-spacing: -0.025em; }
.hero-title em {
  font-style: italic; color: var(--gold); font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
}
.hero-sub { font-size: 16px; max-width: 460px; color: rgba(255,255,255,0.78); line-height: 1.6; margin-top: 28px; }
.hero-meta { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.2em; opacity: 0.7; display: flex; gap: 28px; text-transform: uppercase; }
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

/* Sun-arc motif (the brand's gold arc) */
.sun-arc {
  display: inline-block; width: 64px; height: 32px;
  border: 2px solid var(--gold); border-bottom: 0;
  border-radius: 64px 64px 0 0;
}

/* Booking strip */
.booking-strip {
  position: relative; z-index: 4; margin-top: -52px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 4px; padding: 14px;
  box-shadow: 0 30px 80px rgba(6,24,43,0.18);
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr auto; gap: 0; align-items: stretch;
}
.bf-field {
  padding: 10px 18px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center; cursor: pointer;
  transition: background 0.15s ease;
}
.bf-field:hover { background: var(--paper); }
.bf-field:last-of-type { border-right: 0; }
.bf-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); }
.bf-value { font-size: 15px; font-weight: 500; color: var(--ink); margin-top: 4px; display: flex; align-items: center; gap: 8px; }
.bf-value svg { width: 14px; height: 14px; opacity: 0.55; }
.bf-btn { display: flex; align-items: center; padding-left: 10px; }

/* Sections */
section { position: relative; }
.section { padding: 120px 0; }
.section-dark { background: var(--noir); color: var(--white); }
.section-paper { background: var(--paper); }
.section-sand { background: var(--sand); }

.section-head { display: grid; grid-template-columns: auto 1fr auto; gap: 64px; align-items: end; margin-bottom: 64px; }
.section-head h2 { max-width: 720px; }
.section-head-right { font-size: 14px; max-width: 320px; color: var(--mute); }
.section-dark .section-head-right { color: rgba(255,255,255,0.65); }

/* Fleet cards */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.yacht-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  overflow: hidden; cursor: pointer; transition: all 0.25s ease;
  display: flex; flex-direction: column;
}
.yacht-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(9,47,87,0.12); }
.yc-img { aspect-ratio: 4/3; background: var(--ink); background-size: cover; background-position: center; position: relative; }
.yc-tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--noir);
  padding: 4px 10px; font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.yc-len { position: absolute; top: 14px; right: 14px; background: rgba(6,24,43,0.7); backdrop-filter: blur(8px); color: var(--white);
  padding: 4px 12px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.08em; }
.yc-body { padding: 24px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.yc-name { font-family: 'Cormorant Garamond', serif; font-size: 30px; line-height: 1; margin-bottom: 4px; }
.yc-make { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--mute); text-transform: uppercase; }
.yc-stats { display: flex; gap: 20px; margin-top: 16px; font-size: 13px; color: var(--ink); }
.yc-stats span { display: flex; align-items: baseline; gap: 6px; }
.yc-stats span b { font-weight: 600; }
.yc-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.yc-price { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); }
.yc-price small { font-size: 11px; font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.1em; color: var(--mute); display: block; margin-top: 2px; text-transform: uppercase; }
.yc-cta { color: var(--navy); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; display: flex; align-items: center; gap: 6px; }

/* Filter chips */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
.chip {
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: white;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  font-family: 'Inter', sans-serif; color: var(--ink); transition: all 0.15s ease;
}
.chip.active { background: var(--navy); color: white; border-color: var(--navy); }
.chip:hover:not(.active) { border-color: var(--navy); }

/* Yacht detail */
.detail-hero { position: relative; height: 78vh; color: white; overflow: hidden; }
.detail-hero .hero-image { filter: brightness(0.7); }
.detail-hero-content {
  position: absolute; bottom: 64px; left: 0; right: 0; z-index: 2;
}
.detail-hero-content .wrap { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 48px; }
.detail-back {
  display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8);
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; background: none; border: 0; cursor: pointer;
  padding: 0; margin-bottom: 32px;
}
.detail-title { font-size: clamp(64px, 7vw, 112px); font-weight: 300; line-height: 0.94; letter-spacing: -0.025em; }
.detail-title em { font-style: italic; color: var(--gold); font-weight: 400; font-family: 'Cormorant Garamond', serif; }
.detail-meta-bar { display: flex; gap: 56px; padding-bottom: 6px; }
.dmb-item { display: flex; flex-direction: column; gap: 4px; }
.dmb-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.65; }
.dmb-value { font-family: 'Cormorant Garamond', serif; font-size: 28px; line-height: 1; }
.dmb-value em { font-style: normal; color: var(--gold); }

/* Two-column editorial */
.editorial {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.editorial-stack > * + * { margin-top: 24px; }
.lede { font-family: 'Cormorant Garamond', serif; font-size: 28px; line-height: 1.35; font-weight: 400; color: var(--ink); }
.bigtext { font-size: 16px; line-height: 1.7; color: var(--mute); }
.section-dark .bigtext { color: rgba(255,255,255,0.72); }

/* Spec sheet */
.spec-sheet {
  background: var(--white); border: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.section-dark .spec-sheet { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.spec-row { padding: 22px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark .spec-row { border-color: rgba(255,255,255,0.08); }
.spec-row:nth-child(3n) { border-right: 0; }
.spec-row:nth-last-child(-n+3) { border-bottom: 0; }
.spec-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-bottom: 6px; }
.spec-val { font-family: 'Cormorant Garamond', serif; font-size: 32px; line-height: 1; }
.section-dark .spec-val { color: white; }
.spec-val small { font-size: 14px; color: var(--mute); margin-left: 4px; font-family: 'IBM Plex Mono', monospace; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.gallery-grid > div { background-size: cover; background-position: center; cursor: pointer; }
.gallery-grid > div:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid > div:nth-child(4) { grid-column: span 2; }

/* Destination rail */
.destinations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
  border-radius: 4px;
}
.dest-card .dc-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(.2,.6,.2,1);
}
.dest-card:hover .dc-img { transform: scale(1.04); }
.dest-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,24,43,0.95) 100%);
}
.dest-card .dc-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 28px; color: white;
}
.dest-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.2em; opacity: 0.75; }
.dest-name { font-family: 'Cormorant Garamond', serif; font-size: 36px; line-height: 1.05; margin: 6px 0 10px; font-weight: 400; }
.dest-meta { font-size: 12px; opacity: 0.8; display: flex; gap: 18px; }
.dest-meta span { display: inline-flex; gap: 6px; align-items: center; }

/* Experience cards */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  grid-auto-rows: 220px;
}
.exp-card {
  position: relative; overflow: hidden; cursor: pointer;
  background-size: cover; background-position: center; color: white;
}
.exp-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,24,43,0.0) 40%, rgba(6,24,43,0.85));
}
.exp-card .ec-content { position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2; }
.ec-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; line-height: 1.05; font-weight: 400; }
.ec-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; }
.exp-l { grid-column: span 8; grid-row: span 2; }
.exp-m { grid-column: span 4; grid-row: span 1; }
.exp-s { grid-column: span 3; grid-row: span 2; }
.exp-c { grid-column: span 5; }

/* Trust strip */
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.trust-card {
  padding: 32px 28px; background: var(--white); border: 1px solid var(--line);
}
.trust-num { font-family: 'Cormorant Garamond', serif; font-size: 56px; line-height: 1; color: var(--navy); font-weight: 400; }
.trust-num em { color: var(--gold); font-style: normal; }
.trust-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-top: 10px; }
.trust-src { font-size: 11px; color: var(--mute); margin-top: 12px; font-style: italic; }

/* Watersports strip */
.ws-strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  background: var(--noir); color: white;
}
.ws-cell {
  padding: 28px 22px; border-right: 1px solid rgba(255,255,255,0.08); cursor: pointer;
  transition: background 0.2s ease;
}
.ws-cell:last-child { border-right: 0; }
.ws-cell:hover { background: rgba(247,206,5,0.08); }
.ws-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; }
.ws-price { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.1em; color: var(--gold); margin-top: 8px; }
.ws-num { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em; opacity: 0.5; }

/* WhatsApp FAB */
.fab-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 16px 40px rgba(37,211,102,0.4);
  transition: transform 0.2s ease;
}
.fab-wa:hover { transform: scale(1.05); }
.fab-wa svg { width: 30px; height: 30px; fill: white; }

/* Footer */
.footer {
  background: var(--noir); color: var(--white); padding: 96px 0 32px;
  background-size: cover; background-position: center;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,24,43,0.85), rgba(6,24,43,0.96));
}
.footer > .wrap { position: relative; z-index: 2; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; }
.ft-grid h4 { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 500; }
.ft-grid ul { list-style: none; padding: 0; margin: 0; }
.ft-grid li { padding: 4px 0; font-size: 13px; color: rgba(255,255,255,0.74); cursor: pointer; }
.ft-grid li:hover { color: var(--gold); }
.ft-bottom { display: flex; justify-content: space-between; padding-top: 32px; margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.1); font-size: 11px; color: rgba(255,255,255,0.5);
  font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; }

/* Modal */
.modal-bg {
  position: fixed; inset: 0; z-index: 100; background: rgba(6,24,43,0.86);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal {
  background: white; max-width: 680px; width: 100%; max-height: 90vh; overflow: auto;
  display: grid; grid-template-columns: 1fr 1fr;
}
.modal-side {
  background-size: cover; background-position: center; min-height: 100%;
}
.modal-body { padding: 40px; }
.modal-close { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,0.1); color: white;
  border: 0; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 18px; }
.field { display: flex; flex-direction: column; margin-bottom: 14px; }
.field label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 0;
  font-family: 'Inter', sans-serif; font-size: 14px; background: var(--paper);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); background: white;
}

/* Lightbox */
.lightbox-bg {
  position: fixed; inset: 0; z-index: 110; background: rgba(6,24,43,0.94);
  display: flex; align-items: center; justify-content: center; padding: 40px;
}
.lightbox-bg img { max-width: 100%; max-height: 90vh; object-fit: contain; }

/* Inclusions list */
.inc-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.inc-list li { padding: 12px 0; font-size: 14px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.section-dark .inc-list li { border-color: rgba(255,255,255,0.08); }
.inc-list li svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* Route plan card */
.route-plan {
  background: var(--white); border: 1px solid var(--line);
  padding: 32px;
}
.route-plan h4 { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 16px; color: var(--mute); }
.route-stops { list-style: none; padding: 0; margin: 0; }
.route-stop {
  padding: 14px 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 12px;
}
.route-stop:last-child { border: 0; }
.route-stop .stop-n { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--gold); }
.route-stop .stop-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; }
.route-stop .stop-time { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--mute); }

/* Reviews / testimonials */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  padding: 32px 28px; background: white; border: 1px solid var(--line);
}
.review-quote { font-family: 'Cormorant Garamond', serif; font-size: 21px; line-height: 1.45; color: var(--ink); }
.review-author { margin-top: 22px; font-size: 13px; color: var(--mute); display: flex; justify-content: space-between; align-items: center; }
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.review-src { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; }

/* Sticky right rail (yacht detail) */
.sticky-rail { position: sticky; top: 96px; }
.book-card {
  background: white; border: 1px solid var(--line); padding: 28px;
}
.section-dark .book-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.bc-price { font-family: 'Cormorant Garamond', serif; font-size: 48px; line-height: 1; }
.bc-price small { font-size: 14px; font-family: 'IBM Plex Mono', monospace; color: var(--mute); letter-spacing: 0.1em; }

/* Accent helpers */
.gold { color: var(--gold); }
.navy { color: var(--navy); }
.muted { color: var(--mute); }
.divider-arc { height: 4px; width: 80px; background: var(--gold); border-radius: 999px; margin: 24px 0; }

/* Responsive */
@media (max-width: 1100px) {
  .fleet-grid, .destinations-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .booking-strip { grid-template-columns: 1fr 1fr; }
  .editorial { grid-template-columns: 1fr; gap: 40px; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .ws-strip { grid-template-columns: repeat(3, 1fr); }
  .spec-sheet { grid-template-columns: repeat(2, 1fr); }
  .spec-row:nth-child(3n) { border-right: 1px solid var(--line); }
  .spec-row:nth-child(2n) { border-right: 0; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .fleet-grid, .destinations-grid, .review-grid { grid-template-columns: 1fr; }
  .booking-strip { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-l, .exp-m, .exp-s, .exp-c { grid-column: span 1; grid-row: auto; }
  .ws-strip { grid-template-columns: 1fr 1fr; }
}
