/* =====================================================
   SEZGÜN TUR Bosphorus Cruises
   Premium editorial redesign · HTML/CSS/JS + GSAP
   ===================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette Bosphorus blue + warm gold + cream */
  --navy-900: #081726;
  --navy-800: #0d2236;
  --navy-700: #143049;
  --blue:     #2e6f9e;
  --blue-200: #cfe3f0;
  --gold:     #d3a64a;
  --gold-200: #e6cd92;
  --gold-600: #ab8233;
  --cream:    #faf5ec;
  --cream-200:#f3ebda;
  --ink:      #14283b;
  --ink-soft: #3c4f60;
  --muted:    #6c7a89;
  --line:     rgba(20, 40, 59, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --white:    #ffffff;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1280px;
  --container-wide: 1520px;
  --gutter: clamp(22px, 5.5vw, 80px);
  --radius: 4px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  /* Elevation */
  --shadow-card: 0 40px 80px -34px rgba(8, 23, 38, 0.55);
  --shadow-soft: 0 24px 60px -28px rgba(8, 23, 38, 0.4);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
svg { width: 100%; height: 100%; }
input, select, textarea { font-family: inherit; font-size: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1.5rem;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: var(--gold-200); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.9em;
  opacity: 0.8;
}

/* Big editorial display heading */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.display.light { color: var(--white); }
.accent { color: var(--gold); font-style: normal; }
.display.light .accent { color: var(--gold-200); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.8;
  font-weight: 300;
}

.rule {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 1.8rem 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1em 2em;
  border-radius: 3px;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn-lg { padding: 1.25em 2.4em; font-size: 0.78rem; }
.btn .ic { width: 18px; height: 18px; }
.btn .ic path { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 16px 40px -16px rgba(211, 166, 74, 0.85);
}
.btn-gold:hover { background: var(--gold-200); transform: translateY(-3px); }
.btn-gold .ic { transition: transform var(--dur) var(--ease); }
.btn-gold:hover .ic { transform: translateX(4px); }
.btn-block { width: 100%; justify-content: center; padding-block: 1.25em; }

.btn-ghost-play {
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.play-circle {
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: grid; place-items: center;
  flex: none;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.play-circle svg { width: 14px; height: 14px; color: var(--white); }
.play-circle.small { width: 36px; height: 36px; }
.play-circle.small svg { width: 12px; height: 12px; }
.btn-ghost-play:hover .play-circle { background: var(--gold); border-color: var(--gold); transform: scale(1.06); }
.btn-ghost-play:hover .play-circle svg { color: var(--navy-900); }

.link-play {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.link-play .play-circle { border-color: var(--gold); }
.link-play .play-circle svg { color: var(--gold); }
.link-play.light { color: var(--white); }
.link-play:hover .play-circle { background: var(--gold); }
.link-play:hover .play-circle svg { color: var(--navy-900); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-200);
}
.card-link.dark { color: var(--gold-600); }
.card-link .ic { width: 24px; height: 16px; }
.card-link .ic path { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--dur) var(--ease); }
.card-link:hover .ic path { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.6rem;
  transition: background-color 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-header.scrolled {
  background: rgba(8, 23, 38, 0.92);
  backdrop-filter: blur(12px);
  padding-block: 0.9rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.brand { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--white); }
.brand-mark {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
}
.brand-bar { color: var(--gold); font-weight: 300; margin: 0 1px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.24em; color: var(--white); }
.brand-sub { font-size: 0.58rem; font-weight: 400; letter-spacing: 0.36em; color: var(--gold-200); }

.nav-desktop { display: none; gap: 2.6rem; margin-left: auto; }
.nav-desktop a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-block: 4px;
  transition: color 0.4s var(--ease);
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-desktop a:hover { color: var(--white); }
.nav-desktop a:hover::after { width: 100%; }

.header-cta {
  display: none;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy-900); background: var(--gold);
  padding: 0.85em 1.6em; border-radius: 3px;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.header-cta:hover { background: var(--gold-200); transform: translateY(-2px); }

/* Language toggle (EN / TR) */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
}
.lang-toggle button {
  color: rgba(255,255,255,0.55);
  text-transform: uppercase; padding: 3px 2px; line-height: 1;
  transition: color 0.3s var(--ease);
}
.lang-toggle button:hover { color: var(--white); }
.lang-toggle button.active { color: var(--gold-200); }
.lang-sep { color: rgba(255,255,255,0.28); font-weight: 300; }
@media (min-width: 1000px) { .lang-toggle { margin-left: 0.4rem; } }

/* Hamburger */
.nav-toggle { width: 32px; height: 22px; position: relative; display: inline-block; }
.nav-toggle span {
  position: absolute; left: 0; height: 1.6px; width: 100%;
  background: var(--white); border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 18px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(8, 23, 38, 0.98);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.6rem; padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}
body.menu-open .mobile-nav { opacity: 1; visibility: visible; }
.mobile-nav nav { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.mobile-nav nav a {
  font-family: var(--serif);
  font-size: 2rem; color: var(--white); font-weight: 500;
  opacity: 0; transform: translateY(12px);
  transition: color 0.3s var(--ease);
}
.mobile-nav nav a:hover { color: var(--gold-200); }
body.menu-open .mobile-nav nav a { animation: navIn 0.5s var(--ease) forwards; }
body.menu-open .mobile-nav nav a:nth-child(1) { animation-delay: 0.08s; }
body.menu-open .mobile-nav nav a:nth-child(2) { animation-delay: 0.14s; }
body.menu-open .mobile-nav nav a:nth-child(3) { animation-delay: 0.2s; }
body.menu-open .mobile-nav nav a:nth-child(4) { animation-delay: 0.26s; }
body.menu-open .mobile-nav nav a:nth-child(5) { animation-delay: 0.32s; }
@keyframes navIn { to { opacity: 1; transform: translateY(0); } }
.mobile-nav-cta { margin-top: 0.5rem; }
.mobile-nav-phone { color: var(--gold-200); letter-spacing: 0.1em; font-size: 0.95rem; }

/* =====================================================
   1 · HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 55%;
  transform: scale(1.08);
  animation: heroZoom 16s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8,18,33,0.8) 0%, rgba(8,18,33,0.4) 40%, rgba(8,18,33,0.05) 68%),
    linear-gradient(0deg, rgba(8,18,33,0.62) 0%, rgba(8,18,33,0) 42%);
}
.hero-content { position: relative; z-index: 2; padding-top: 6rem; width: 100%; }
.hero-eyebrow {
  color: var(--gold-200);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--white);
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.99;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}
.hero-title .line { display: block; }
.hero-title .accent { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 300;
  max-width: 46ch;
  margin-bottom: 2.8rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 2.4rem; }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-cue span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.7; }
.scroll-cue svg { width: 20px; height: 20px; animation: bob 2.2s ease-in-out infinite; }
.scroll-cue svg path { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.br-desktop { display: none; }

/* =====================================================
   2 · TRUST STRIP (quiet, airy)
   ===================================================== */
.trust { background: var(--cream); padding-top: clamp(3.5rem, 7vw, 5.5rem); padding-bottom: 0; }
.trust-head { text-align: center; max-width: 22ch; margin: 0 auto clamp(2rem, 5vw, 3rem); }
.trust .eyebrow { margin-bottom: 1.2rem; }
.trust-title { font-size: clamp(2rem, 7.6vw, 3.1rem); line-height: 1.06; }
.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  text-align: left;
}
/* Mobile: thin gold divider between stacked rows */
.trust-divider {
  display: block; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
  opacity: 0.4;
}
.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.3rem;
  align-items: center;
  padding-block: 1.6rem;
}
.trust-icon {
  display: inline-grid; place-items: center;
  width: 50px; height: 50px; color: var(--gold-600);
  grid-row: 1 / 3; align-self: center; margin: 0;
}
.trust-icon svg { width: 42px; height: 42px; }
.trust-icon svg path, .trust-icon svg rect, .trust-icon svg circle {
  fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round;
}
.trust-item h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; line-height: 1.15; }
.trust-item p { font-size: 1rem; color: var(--muted); max-width: 42ch; }
/* Full-bleed Bosphorus image closing the trust section */
.trust-bleed {
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  height: clamp(200px, 38vh, 340px);
  background-size: cover; background-position: center 62%;
}
.trust-bleed::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(250,245,236,0) 24%);
}

/* =====================================================
   3 · EDITORIAL INTRO (big image right)
   ===================================================== */
.editorial-intro {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--cream);
  align-items: stretch;
}
.ei-text {
  display: flex; align-items: center;
  padding: clamp(3rem, 7vw, 7rem) var(--gutter);
}
.ei-text-inner { max-width: 36rem; margin-left: auto; }
.ei-media {
  position: relative;
  min-height: clamp(340px, 55vh, 60vh);
  margin: 0 var(--gutter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.ei-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* =====================================================
   4 · SERVICE BENTO (dark, asymmetric)
   ===================================================== */
.bento-section {
  background: var(--navy-900);
  padding-block: clamp(4rem, 8vw, 7.5rem);
  position: relative;
}
.bento-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% 0%, rgba(46,111,158,0.22), transparent 55%);
  pointer-events: none;
}
.bento-layout { position: relative; display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
.bento-intro { align-self: center; }
.bento-copy { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 38ch; margin: 1.6rem 0 2rem; font-weight: 300; }

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.bento-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover; background-position: center;
  min-height: clamp(300px, 37vh, 420px);
  isolation: isolate;
  transition: transform 0.6s var(--ease);
}
.bento-card .card-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(6,15,26,0.94) 0%, rgba(6,15,26,0.42) 48%, rgba(6,15,26,0.08) 100%);
  transition: background 0.6s var(--ease);
}
.bento-card .card-body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  height: 100%; justify-content: flex-end;
  padding: clamp(1.6rem, 2.4vw, 2.4rem);
  color: var(--white);
}
.bento-card .card-num { font-size: 0.74rem; letter-spacing: 0.24em; color: var(--gold-200); font-weight: 600; margin-bottom: 0.6rem; }
.bento-card h3 { font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 600; margin-bottom: 0.5rem; line-height: 1.05; }
.bento-card p { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 1.1rem; max-width: 34ch; }
.bento-card .card-link { margin-top: auto; }
.bento-card:hover { transform: translateY(-6px); }
.bento-card:hover .card-scrim { background: linear-gradient(0deg, rgba(6,15,26,0.96) 0%, rgba(6,15,26,0.4) 55%, rgba(120,86,28,0.22) 100%); }
.bento-feature { min-height: clamp(420px, 60vh, 560px); }
.bento-feature h3 { font-size: clamp(2.1rem, 3.4vw, 3.2rem); }
.bento-feature p { font-size: 1.05rem; max-width: 40ch; }

/* =====================================================
   5 · FULL-WIDTH CINEMATIC
   ===================================================== */
.cinematic {
  position: relative;
  min-height: 85svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.cinematic-bg { position: absolute; inset: -10% 0; background-size: cover; background-position: center 45%; will-change: transform; }
.cinematic-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(8,23,38,0.7) 0%, rgba(8,23,38,0.12) 45%, rgba(8,23,38,0) 75%),
    linear-gradient(90deg, rgba(8,23,38,0.35) 0%, rgba(8,23,38,0) 50%);
}
.cinematic-content { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 6vw, 5rem); }
.cinematic-caption {
  color: var(--gold-200); font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500;
  margin-bottom: 1rem;
}
.cinematic-line {
  font-family: var(--serif); font-weight: 500;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05; letter-spacing: -0.01em;
  max-width: 18ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

/* =====================================================
   6 · EDITORIAL SPREADS
   ===================================================== */
.spreads { background: var(--cream); padding-block: clamp(4rem, 8vw, 8rem); }
.spread {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: center;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
}
.spread:last-child { margin-bottom: 0; }
.experiences-page .spread[id] { scroll-margin-top: 6rem; }
.our-boat-page #vessel,
.our-boat-page #decks,
.our-boat-page #gallery { scroll-margin-top: 3.75rem; }
.spread-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.spread-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform 1.2s var(--ease); }
.spread:hover .spread-media img { transform: scale(1.04); }
.spread-text { padding-block: 0.5rem; }
.spread-num {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 500;
  color: var(--gold); display: block; margin-bottom: 0.6rem; line-height: 1;
}
.spread-text h3 { font-family: var(--serif); font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 600; margin-bottom: 1.1rem; line-height: 1.02; }
.spread-text p { color: var(--ink-soft); margin-bottom: 1.8rem; max-width: 42ch; font-size: 1.05rem; font-weight: 300; line-height: 1.8; }

/* =====================================================
   7 · PROOF
   ===================================================== */
.proof { background: var(--cream-200); padding-block: clamp(4rem, 8vw, 8rem); }
.proof-head { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.proof .lead { margin-bottom: 2.6rem; }
.proof-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.proof-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.quotes { display: grid; gap: 1.8rem; }
blockquote { position: relative; }
.quote-mark { width: 34px; height: 34px; color: var(--gold); margin-bottom: 0.6rem; }
.quote-mark path { fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
blockquote p { font-family: var(--serif); font-size: 1.32rem; font-style: italic; color: var(--ink); line-height: 1.5; margin-bottom: 1.1rem; }
blockquote footer { display: flex; align-items: center; gap: 0.85rem; }
.q-avatar {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--navy-900); background: linear-gradient(135deg, var(--gold-200), var(--gold));
  box-shadow: 0 0 0 1px rgba(171,130,51,0.4);
}
blockquote footer span { display: flex; flex-direction: column; line-height: 1.3; }
blockquote footer strong { font-size: 0.95rem; font-weight: 600; }
blockquote footer em { font-style: normal; font-size: 0.8rem; color: var(--muted); }

.proof-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem;
  padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line);
  text-align: center;
}
.proof-stat { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.proof-stat strong { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 600; color: var(--ink); line-height: 1; }
.proof-stat span { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* =====================================================
   8 · CONTACT / CTA
   ===================================================== */
.contact { display: grid; grid-template-columns: 1fr; background: var(--navy-900); }
.contact-media {
  position: relative; background-size: cover; background-position: center;
  min-height: 50vh; display: flex; align-items: flex-end; isolation: isolate;
}
.contact-media-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,23,38,0.92) 0%, rgba(8,23,38,0.38) 60%, rgba(8,23,38,0.15) 100%); }
.contact-media-inner { position: relative; z-index: 2; padding: clamp(2.5rem, 6vw, 5rem); }
.contact-media .display { margin-block: 1rem 1.2rem; }
.contact-copy { color: rgba(255,255,255,0.85); max-width: 38ch; margin-bottom: 2rem; font-weight: 300; font-size: 1.08rem; }
.whatsapp-pill {
  display: inline-flex; align-items: center; gap: 0.9rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px; padding: 0.8rem 1.5rem; color: var(--white);
  backdrop-filter: blur(6px); transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.whatsapp-pill:hover { background: rgba(211,166,74,0.28); border-color: var(--gold); }
.whatsapp-pill svg { width: 30px; height: 30px; flex: none; color: var(--gold-200); }
.whatsapp-pill svg path { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-pill span { display: flex; flex-direction: column; line-height: 1.25; font-size: 1rem; font-weight: 500; }
.whatsapp-pill em { font-style: normal; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-200); }

.contact-form-wrap { background: var(--cream); display: flex; align-items: center; }
.contact-form { padding: clamp(2.5rem, 6vw, 5rem); width: 100%; }
.form-intro { color: var(--muted); margin-bottom: 2.2rem; font-size: 0.98rem; max-width: 44ch; }
.field-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
.field-grid .field { margin-bottom: 0; }
.field label {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.55rem;
}
.field input, .field select, .field textarea {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.95rem 1.1rem; color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%; min-height: 50px;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa6b1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(211,166,74,0.18);
}
.form-note { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }
.form-note svg { width: 16px; height: 16px; color: var(--gold-600); }
.form-note svg path, .form-note svg rect { fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.form-success { margin-top: 1rem; padding: 0.95rem 1.1rem; background: rgba(211,166,74,0.14); border: 1px solid var(--gold); border-radius: var(--radius); color: var(--gold-600); font-size: 0.92rem; }

/* =====================================================
   9 · FOOTER
   ===================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2.8rem; padding-bottom: 3.5rem; }
.footer-brand .brand { margin-bottom: 1.4rem; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: rgba(255,255,255,0.82); margin-bottom: 1.8rem; max-width: 30ch; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-200); margin-bottom: 1.3rem; font-weight: 600; }
.footer-contact li, .footer-links li { margin-bottom: 0.9rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--gold-600); }
.footer-contact svg path, .footer-contact svg rect, .footer-contact svg circle { fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact a:hover { color: var(--gold-200); }
.footer-links a { font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--gold-200); }
.footer-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-light); height: 160px; margin-bottom: 1rem; filter: saturate(0.9) brightness(0.92); }
.footer-map iframe { width: 100%; height: 100%; border: 0; }
.map-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-200); }
.map-link .ic { width: 20px; height: 14px; }
.map-link .ic path { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.footer-bottom {
  display: flex; flex-direction: column; gap: 1.2rem; align-items: center; text-align: center;
  padding-block: 2rem; border-top: 1px solid var(--line-light);
}
.footer-social { display: flex; align-items: center; gap: 1rem; }
.footer-social span { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,0.75); transition: border-color 0.3s var(--ease), color 0.3s var(--ease); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a svg path, .footer-social a svg rect, .footer-social a svg circle { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold-200); }
.copyright { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gold-200); }

/* =====================================================
   REVEAL ANIMATIONS (JS-driven, no-JS fallback)
   ===================================================== */
.js .reveal { opacity: 0; transform: translateY(38px); }
.js [data-hero] { opacity: 0; transform: translateY(42px); }

/* =====================================================
   MOBILE REFINEMENTS (premium spacing & emphasis)
   ===================================================== */
@media (max-width: 999px) {
  /* 8 · CTA cream rounded card overlapping the image above */
  .contact { padding-bottom: clamp(2.5rem, 7vw, 4rem); }
  .contact-media { min-height: 56vh; padding-bottom: clamp(4rem, 11vw, 6rem); }
  .contact-form-wrap {
    margin: -2.5rem var(--gutter) 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative; z-index: 3;
  }

  /* 9 · Footer centered brand, 2-col nav, full-width map */
  .footer-brand { text-align: center; }
  .footer-brand .brand { justify-content: center; }
  .footer-tagline { margin-inline: auto; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.4rem; }
}

@media (max-width: 600px) {
  /* 1 · Hero wide gold CTA, comfortable stacking */
  .hero-content { padding-top: 7rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 1.5rem; }
  .hero-actions .btn-gold { width: 100%; justify-content: center; }
  .btn-ghost-play { justify-content: center; }
}

/* =====================================================
   PHONE LAYOUT compact services bento + magazine spreads
   (matches mobile design references)
   ===================================================== */
@media (max-width: 719px) {
  /* 4 · Services medium feature card, then slim horizontal cards */
  .bento-grid { gap: 0.85rem; }
  .bento-feature { min-height: 300px; }
  .bento-card:not(.bento-feature) {
    min-height: 122px;
    background-position: right center;
  }
  .bento-card:not(.bento-feature) .card-scrim {
    background: linear-gradient(90deg,
      rgba(6,15,26,0.97) 0%, rgba(6,15,26,0.92) 44%,
      rgba(6,15,26,0.5) 70%, rgba(6,15,26,0.06) 100%);
  }
  .bento-card:not(.bento-feature) .card-body {
    justify-content: center;
    padding: 1.1rem 1.3rem;
  }
  .bento-card:not(.bento-feature) .card-num { margin-bottom: 0.3rem; }
  .bento-card:not(.bento-feature) h3 { font-size: 1.5rem; margin-bottom: 0.25rem; max-width: 70%; }
  .bento-card:not(.bento-feature) p {
    font-size: 0.86rem; line-height: 1.45;
    max-width: 62%; margin-bottom: 0.7rem;
  }
  .bento-card:not(.bento-feature) .card-link { font-size: 0.62rem; letter-spacing: 0.16em; }

  /* 6 · Spreads alternating 2-column magazine grid */
  .spread {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    align-items: center;
    margin-bottom: clamp(2.8rem, 8vw, 4rem);
  }
  .spread .spread-text { order: 1; }
  .spread .spread-media { order: 2; }
  .spread.reverse .spread-media { order: 1; }
  .spread.reverse .spread-text { order: 2; }
  .spread-media img { aspect-ratio: 3/4; }
  .spread-num { font-size: 1.9rem; margin-bottom: 0.3rem; }
  .spread-text h3 { font-size: 1.7rem; margin-bottom: 0.7rem; }
  .spread-text p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
  .spread .card-link.dark { font-size: 0.6rem; letter-spacing: 0.14em; gap: 0.4em; }
  .spread .card-link .ic { width: 18px; }

  /* Text-heavy subpage spreads stack cleanly on phones */
  .experiences-page .spread,
  .our-boat-page .spread {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: stretch;
    margin-bottom: clamp(3.8rem, 12vw, 5rem);
  }
  .experiences-page .spread .spread-text,
  .our-boat-page .spread .spread-text { order: 1; }
  .experiences-page .spread .spread-media,
  .our-boat-page .spread .spread-media { order: 2; }
  .experiences-page .spread.reverse .spread-media,
  .our-boat-page .spread.reverse .spread-media { order: 2; }
  .experiences-page .spread.reverse .spread-text,
  .our-boat-page .spread.reverse .spread-text { order: 1; }
  .experiences-page .spread-media,
  .our-boat-page .spread-media {
    width: min(100%, 440px);
    margin-inline: auto;
    border-radius: 12px;
    box-shadow: 0 22px 56px -32px rgba(8, 23, 38, 0.58);
  }
  .experiences-page .spread-media img,
  .our-boat-page .spread-media img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    object-position: center;
  }
  .experiences-page .spread-text,
  .our-boat-page .spread-text {
    max-width: 36rem;
    margin-inline: auto;
  }
  .experiences-page .spread-num,
  .our-boat-page .spread-num { font-size: 2rem; margin-bottom: 0.35rem; }
  .experiences-page .spread-tag,
  .our-boat-page .spread-tag {
    max-width: 100%;
    border-radius: 999px;
    padding-inline: 1rem;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
  .experiences-page .spread-text h3,
  .our-boat-page .spread-text h3 { font-size: clamp(2.15rem, 10vw, 2.85rem); margin-bottom: 0.9rem; }
  .experiences-page .spread-text p,
  .our-boat-page .spread-text p { font-size: 0.96rem; line-height: 1.75; margin-bottom: 1.35rem; }
  .experiences-page .incl-list,
  .our-boat-page .incl-list { gap: 0.85rem; margin-bottom: 1.8rem; }
  .experiences-page .incl-list li,
  .our-boat-page .incl-list li { font-size: 0.96rem; line-height: 1.55; }
  .experiences-page .spread .card-link.dark,
  .our-boat-page .spread .card-link.dark {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 1.1rem;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    gap: 1rem;
  }
  .experiences-page .spread .card-link .ic,
  .our-boat-page .spread .card-link .ic { width: 21px; flex: none; }
}

@media (max-width: 420px) {
  .experiences-page .spread-text h3,
  .our-boat-page .spread-text h3 { font-size: clamp(2rem, 11vw, 2.45rem); }
  .experiences-page .spread-text p,
  .experiences-page .incl-list li,
  .our-boat-page .spread-text p,
  .our-boat-page .incl-list li { font-size: 0.92rem; }
  .experiences-page .spread .card-link.dark,
  .our-boat-page .spread .card-link.dark { letter-spacing: 0.13em; }
}

/* =====================================================
   RESPONSIVE TABLET
   ===================================================== */
@media (min-width: 720px) {
  .trust-head { max-width: 30ch; }
  .trust-row { grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 2.2rem); text-align: center; }
  .trust-divider { display: none; }
  .trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; padding-block: 0; }
  .trust-icon { grid-row: auto; margin-bottom: 0.4rem; }
  .trust-item p { margin-inline: auto; }
  .field-grid { grid-template-columns: 1fr 1fr; }
  .proof-strip { grid-template-columns: repeat(4, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .br-desktop { display: inline; }
}

/* =====================================================
   RESPONSIVE DESKTOP
   ===================================================== */
@media (min-width: 1000px) {
  .nav-desktop { display: flex; margin-left: 0; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }

  /* 3 · Editorial intro split, big image, ~85vh */
  .editorial-intro { grid-template-columns: 1fr 1fr; min-height: 86vh; }
  .ei-media { min-height: 100%; margin: 0; border-radius: 0; box-shadow: none; }

  /* 4 · Bento asymmetric: big feature left, 3 stacked right */
  .bento-layout { grid-template-columns: 0.85fr 2.15fr; align-items: stretch; }
  .bento-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-auto-rows: 1fr;
    gap: 1.2rem;
    min-height: 88vh;
  }
  .bento-feature { grid-row: 1 / 4; grid-column: 1; min-height: 0; }
  .bento-card { min-height: 0; }

  /* 6 · Spreads magazine, image dominant ~58% */
  .spread { grid-template-columns: 1.45fr 1fr; gap: clamp(3rem, 5vw, 6rem); min-height: 72vh; }
  .spread.reverse { grid-template-columns: 1fr 1.45fr; }
  .spread.reverse .spread-media { order: 2; }
  .spread.reverse .spread-text { order: 1; }
  .spread-media img { aspect-ratio: auto; height: 72vh; }

  /* 7 · Proof split, big image */
  .proof-head { grid-template-columns: 1.1fr 0.9fr; gap: 5rem; }
  .quotes { grid-template-columns: 1fr 1fr; }
  .proof-media img { aspect-ratio: auto; height: 100%; min-height: 30rem; }

  /* 8 · Contact split, big image left */
  .contact { grid-template-columns: 1.05fr 0.95fr; min-height: 92vh; }
  .contact-media { min-height: 100%; }

  /* 9 · Footer */
  .footer-top { grid-template-columns: 1.5fr 1fr 0.8fr 1.1fr; gap: 3rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1400px) {
  .spread-media img, .spread { min-height: 76vh; }
}

/* =====================================================
   ACCESSIBILITY reduced motion
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-bg { animation: none; transform: none; }
  .js .reveal, .js [data-hero] { opacity: 1 !important; transform: none !important; }
  .scroll-cue svg { animation: none; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =====================================================
   SUBPAGE COMPONENTS (Experiences, etc.)
   ===================================================== */

/* Active nav state */
.nav-desktop a.active { color: var(--white); }
.nav-desktop a.active::after { width: 100%; }

/* Subpage hero (compact cinematic) */
.page-hero { position: relative; min-height: 74vh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 55%;
  transform: scale(1.07); animation: heroZoom 16s ease-out forwards; will-change: transform;
}
.page-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(8,18,33,0.82) 0%, rgba(8,18,33,0.3) 50%, rgba(8,18,33,0.12) 100%),
    linear-gradient(100deg, rgba(8,18,33,0.5) 0%, rgba(8,18,33,0) 60%);
}
.page-hero-content { position: relative; z-index: 2; padding-bottom: clamp(2.8rem, 6vw, 5.5rem); width: 100%; }
.crumb { color: rgba(255,255,255,0.7); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.3rem; }
.crumb a { color: rgba(255,255,255,0.7); transition: color 0.3s var(--ease); }
.crumb a:hover { color: var(--gold-200); }
.crumb span { color: var(--gold-200); }
.page-hero-title {
  font-family: var(--serif); font-weight: 500; color: var(--white);
  font-size: clamp(2.9rem, 7.5vw, 6rem); line-height: 0.99; letter-spacing: -0.02em; margin-bottom: 1.1rem;
}
.page-hero-title .accent { color: var(--gold); }
.page-hero-sub {
  color: rgba(255,255,255,0.9); font-weight: 300; max-width: 46ch;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.7;
}

/* Centered section intro */
.section-intro { text-align: center; max-width: 62ch; margin: 0 auto; }
.intro-band { background: var(--cream); padding-block: clamp(4rem, 8vw, 7rem); }
.section-intro .display { margin-bottom: 1.5rem; }

/* Offering spreads: tag + inclusion list (reuses .spread) */
.spread-tag {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-600); border: 1px solid var(--line); border-radius: 100px;
  padding: 0.45em 1.1em; margin-bottom: 1.2rem;
}
.incl-list { display: grid; gap: 0.7rem; margin: 0 0 2rem; }
.incl-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.98rem; color: var(--ink-soft); font-weight: 300; }
.incl-list svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--gold-600); }
.incl-list svg path { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* More occasions grid (dark) */
.more-occasions { background: var(--navy-900); padding-block: clamp(4rem, 8vw, 7.5rem); position: relative; }
.more-occasions::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 15% 0%, rgba(46,111,158,0.2), transparent 55%); pointer-events: none;
}
.more-occasions .container-wide { position: relative; }
.more-head { max-width: 50ch; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.more-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.more-grid .bento-card { min-height: 380px; }

/* Process / how it works */
.process { background: var(--cream-200); padding-block: clamp(4rem, 8vw, 7.5rem); }
.process-head { text-align: center; max-width: 52ch; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.step { position: relative; }
.step-num { font-family: var(--serif); font-size: 3.4rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 0.8rem; }
.step h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-weight: 300; max-width: 36ch; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; text-align: center; padding-block: clamp(5rem, 11vw, 9rem); display: flex; align-items: center; min-height: 70vh; }
.cta-band-bg { position: absolute; inset: -8% 0; background-size: cover; background-position: center; will-change: transform; }
.cta-band-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,18,33,0.86) 0%, rgba(8,18,33,0.55) 60%, rgba(8,18,33,0.45) 100%); }
.cta-band-inner { position: relative; z-index: 2; max-width: 48rem; margin: 0 auto; }
.cta-band .display { margin-bottom: 1.4rem; }
.cta-band-copy { color: rgba(255,255,255,0.88); margin-bottom: 2.2rem; font-weight: 300; font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; justify-content: center; align-items: center; }

@media (min-width: 820px) {
  .more-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

/* Specs band (Our Boat) */
.specs-band { background: var(--cream-200); padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.4rem 1rem; text-align: center; }
.spec { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.spec strong { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 600; color: var(--ink); line-height: 1; }
.spec span { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* Gallery grid (Our Boat) */
.gallery { background: var(--cream); padding-block: clamp(4rem, 8vw, 7.5rem); }
.gallery-head { text-align: center; max-width: 54ch; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.6rem, 1.2vw, 1rem); }
.gallery-grid figure { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 1s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.06); }

@media (min-width: 820px) {
  .spec-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 15vw; }
  .gallery-grid img { aspect-ratio: auto; }
  .gallery-grid .g-tall { grid-row: span 2; }
  .gallery-grid .g-wide { grid-column: span 2; }
}

/* Values band (About) reuses .trust-row/.trust-item with a heading */
.values { background: var(--cream); padding-block: clamp(4rem, 8vw, 7rem); }
.values-head { text-align: center; max-width: 54ch; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }

/* Team (About) */
.team { background: var(--cream-200); padding-block: clamp(4rem, 8vw, 7rem); }
.team-head { text-align: center; max-width: 54ch; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.6rem 1.5rem; }
.team-member { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.55rem; }
.t-avatar {
  width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-200), var(--gold));
  box-shadow: 0 0 0 1px rgba(171,130,51,0.4), var(--shadow-soft);
}
.team-member strong { font-size: 1.05rem; font-weight: 600; }
.team-member em { font-style: normal; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted); }

@media (min-width: 820px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Contact page */
.contact-page { background: var(--cream); padding-block: clamp(4rem, 8vw, 7rem); }
.contact-cols { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.contact-form--card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: clamp(2rem, 4vw, 3rem); }
.contact-cols { align-items: stretch; }

@media (min-width: 1000px) {
  .contact-cols { grid-template-columns: 0.9fr 1.1fr; }
}

/* Contact page info panel (navy) reuses .contact grid + .contact-form */
.contact-info {
  background: var(--navy-900); color: rgba(255,255,255,0.8);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.contact-info::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(46,111,158,0.2), transparent 55%); pointer-events: none;
}
.contact-info > * { position: relative; }
.contact-info .display { margin-block: 1rem 1.2rem; }
.contact-info .lead { color: rgba(255,255,255,0.82); margin-bottom: 2.2rem; }
.contact-details { display: grid; gap: 1.3rem; margin-bottom: 2.2rem; }
.contact-details li { display: flex; gap: 1rem; align-items: flex-start; }
.ci-ic { width: 44px; height: 44px; flex: none; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; color: var(--gold-200); }
.ci-ic svg { width: 18px; height: 18px; }
.ci-ic svg path, .ci-ic svg rect, .ci-ic svg circle { fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.ci-text { display: flex; flex-direction: column; gap: 0.1rem; padding-top: 0.2rem; }
.ci-label { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-200); }
.ci-text a, .ci-text strong { font-size: 1.02rem; font-weight: 500; color: var(--white); }
.ci-text a:hover { color: var(--gold-200); }
.ci-text small { color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 300; }

/* Large map band */
.map-band { position: relative; line-height: 0; }
.map-large { height: 56vh; min-height: 360px; width: 100%; filter: saturate(0.92) brightness(0.98); }
.map-large iframe { width: 100%; height: 100%; border: 0; display: block; }

/* FAQ */
.faq { background: var(--cream); padding-block: clamp(4rem, 8vw, 7rem); }
.faq-head { text-align: center; max-width: 52ch; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; }
.faq-item h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; margin-bottom: 0.5rem; }
.faq-item p { color: var(--ink-soft); font-weight: 300; max-width: 48ch; }

@media (min-width: 820px) {
  .faq-grid { grid-template-columns: 1fr 1fr; gap: 2.8rem 4rem; }
}
