:root {
  --navy: #071923;
  --navy-2: #0d2b38;
  --teal: #3aa7a3;
  --aqua: #8bd9d1;
  --sand: #f4efe6;
  --cream: #fbfaf7;
  --ink: #12232b;
  --muted: #5c6d74;
  --white: #ffffff;
  --line: rgba(18,35,43,.12);
  --shadow: 0 24px 70px rgba(7,25,35,.16);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img, video { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 8vw, 7.2rem); max-width: 880px; }
h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
p { font-size: 1.05rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-soft { background: var(--sand); }
.hidden, .sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 1000; top: 10px; left: 10px;
  transform: translateY(-150%);
  background: #fff; color: #000; padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  color: white;
  transition: background .25s, box-shadow .25s, backdrop-filter .25s;
}
.site-header.scrolled {
  background: rgba(7,25,35,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.2; }
.brand-main { font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-style: italic; margin: 0; }
.brand-sub { margin-top: 4px; font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; opacity: .72; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-size: .94rem; font-weight: 650; }
.nav-cta { border: 1px solid rgba(255,255,255,.38); border-radius: 999px; padding: 11px 18px; }
.menu-button { display: none; background: none; border: 0; padding: 8px; }
.menu-button span:not(.sr-only) { width: 24px; height: 2px; background: white; display: block; margin: 5px; }

.hero { min-height: 100svh; position: relative; display: grid; align-items: end; color: white; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url('/assets/images/hero-boat.jpg') center 52% / cover no-repeat; transform: scale(1.01); }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(4,16,23,.82) 0%, rgba(4,16,23,.38) 52%, rgba(4,16,23,.08) 100%),
    linear-gradient(0deg, rgba(4,16,23,.68) 0%, transparent 54%);
}
.hero-content { position: relative; z-index: 1; padding-top: 150px; padding-bottom: 74px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 800; color: var(--aqua); }
.eyebrow.dark { color: #267d7a; }
.hero-copy { max-width: 710px; font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(255,255,255,.86); }
.hero-actions { display: flex; gap: 14px; margin: 32px 0; flex-wrap: wrap; }
.button {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  text-decoration: none; border: 0; cursor: pointer; font-weight: 800;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--aqua); color: #042025; }
.button-primary:hover { background: white; }
.button-ghost { border: 1px solid rgba(255,255,255,.5); color: white; background: rgba(255,255,255,.05); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 30px; padding: 0; margin: 0; list-style: none; font-size: .92rem; color: rgba(255,255,255,.78); }
.hero-points li::before { content: "•"; color: var(--aqua); margin-right: 10px; }

.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: start; }
.intro-copy { padding-top: 36px; color: var(--muted); }
.intro-copy p:first-child { font-size: 1.25rem; color: var(--ink); }

.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); max-width: 650px; }
.trip-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.trip-card {
  min-height: 520px; position: relative; overflow: hidden; border-radius: var(--radius);
  color: white; background: var(--navy) var(--card-image) center / cover no-repeat;
  box-shadow: var(--shadow);
}
.trip-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.trip-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,16,23,.9), rgba(4,16,23,.05) 70%); }
.trip-content { position: absolute; inset: auto 0 0; padding: 36px; z-index: 2; }
.trip-number { font-size: .75rem; letter-spacing: .18em; color: var(--aqua); }
.trip-content p { color: rgba(255,255,255,.8); max-width: 520px; }
.trip-content a { font-weight: 800; text-decoration: none; }

.boat-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.boat-image-wrap { position: relative; }
.boat-image-wrap img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.boat-badge {
  position: absolute; right: -12px; bottom: 12px; width: 160px;
  padding: 16px; border-radius: 14px; background: var(--navy); color: white;
}
.boat-badge strong { display: block; font-size: 1.15rem; }
.boat-badge span { font-size: .75rem; opacity: .72; }
.boat-copy > p { color: var(--muted); }
.feature-list { margin-top: 30px; border-top: 1px solid var(--line); }
.feature-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 10px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature-list span { color: #267d7a; font-weight: 900; }
.feature-list p { margin: 0; font-size: .96rem; color: var(--muted); }

.story-section { background: var(--navy); color: white; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.story-copy p { color: rgba(255,255,255,.72); }
.story-image img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.text-link { display: inline-block; margin-top: 16px; text-decoration: none; font-weight: 800; }
.text-link.light { color: var(--aqua); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 18px; }
.gallery-item {
  border: 0; padding: 0; cursor: zoom-in; overflow: hidden; border-radius: 18px;
  grid-column: span 4; background: #d9e1e1;
}
.gallery-item.wide { grid-column: span 8; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .45s; }
.gallery-item:hover img { transform: scale(1.035); }

.picks-section { background: #e8f4f1; }
.picks-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.picks-grid > div:first-child p:last-child { color: var(--muted); }
.picks-placeholder {
  min-height: 330px; display: grid; place-items: center; padding: 44px;
  border: 1px dashed rgba(7,25,35,.28); border-radius: var(--radius);
  background: rgba(255,255,255,.48);
}
.picks-placeholder span { text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 900; color: #267d7a; }

.booking { background: #0b222d; color: white; }
.booking-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.booking-copy > p { color: rgba(255,255,255,.72); }
.contact-notes { display: grid; gap: 8px; margin-top: 30px; color: var(--aqua); font-weight: 700; }
.booking-form { background: white; color: var(--ink); padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form label { display: grid; gap: 7px; margin-bottom: 16px; font-size: .88rem; font-weight: 800; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; border: 1px solid #cfd9dc; background: #fbfcfc; color: var(--ink);
  border-radius: 12px; padding: 13px 14px; outline: none;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(58,167,163,.15); }
.form-button { width: 100%; background: var(--navy); color: white; }
.form-note { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: .8rem; }

.site-footer { background: #041118; color: white; padding: 58px 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 44px; }
.site-footer p, .footer-meta { color: rgba(255,255,255,.58); font-size: .9rem; }
.footer-links, .footer-meta { display: grid; align-content: start; gap: 8px; }
.footer-links a { text-decoration: none; }

.lightbox { max-width: min(94vw, 1200px); padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(0,0,0,.9); }
.lightbox img { max-height: 88vh; object-fit: contain; border-radius: 10px; }
.lightbox-close {
  position: absolute; right: 0; top: -48px; border: 0; background: transparent;
  color: white; font-size: 2.2rem; cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute; left: 20px; right: 20px; top: 72px; display: none;
    flex-direction: column; align-items: stretch; gap: 0; padding: 16px;
    background: rgba(7,25,35,.98); border-radius: 16px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .intro-grid, .boat-grid, .story-grid, .picks-grid, .booking-grid { grid-template-columns: 1fr; gap: 45px; }
  .intro-copy { padding-top: 0; }
  .boat-badge { right: 16px; bottom: 16px; }
  .trip-card { min-height: 470px; }
  .gallery-item, .gallery-item.wide { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand-main { font-size: 1.4rem; }
  .brand-sub { font-size: .58rem; }
  .hero-content { padding-bottom: 48px; }
  .hero-media { background-position: 60% center; }
  h1 { font-size: clamp(3rem, 17vw, 4.8rem); }
  .trip-grid { grid-template-columns: 1fr; }
  .trip-card { min-height: 450px; }
  .trip-content { padding: 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-form { padding: 23px; }
  .gallery-grid { grid-auto-rows: 170px; }
  .gallery-item, .gallery-item.wide { grid-column: span 12; }
  .gallery-item.tall { grid-row: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-points { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
