/* ========== Blue Gold Fisheries — fun & informative ocean theme ========== */

:root {
  --navy-950: #041528;
  --navy-900: #0a2342;
  --navy-800: #0e3a66;
  --navy-700: #145a8a;
  --sea-500: #1a8fb8;
  --sea-400: #2ec4e0;
  --sea-300: #7dd3fc;
  --gold-500: #e8b923;
  --gold-400: #f5d06a;
  --gold-300: #ffe9a8;
  --foam: #f0f9ff;
  --sand: #e8eef5;
  --ink: #0b1c2c;
  --muted: #5a738a;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 18px 50px rgba(4, 21, 40, 0.18);
  --radius: 20px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--foam);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 1.15rem;
}

/* Ambient bubbles — fixed layer (shop page / fallback) */
.ocean-bubbles {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* Section-local bubbles (navy/blue sections only) */
.has-bubbles {
  position: relative;
  overflow: hidden;
}

.deep-bubbles {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

/* Content sits above bubbles (wave stays absolute at section bottom) */
.has-bubbles > *:not(.deep-bubbles):not(.hero-bg):not(.wave-divider) {
  position: relative;
  z-index: 3;
}

.hero.has-bubbles .hero-bg {
  z-index: 0;
}

.hero.has-bubbles .hero-content {
  z-index: 3;
}

/* Full-bleed foam wave under hero — must stay absolute (not relative from has-bubbles) */
.hero .wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4;
  pointer-events: none;
  color: var(--foam);
  line-height: 0;
}

.hero .wave-divider svg {
  display: block;
  width: 100%;
  height: 56px;
}

.ocean-bubbles span,
.deep-bubbles span {
  position: absolute;
  bottom: -48px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(46, 196, 224, 0.12) 45%, rgba(46, 196, 224, 0.05) 70%, transparent 75%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  animation: rise 14s linear infinite;
  will-change: transform, opacity;
}

/* Hero: a bit more visible over the tuna */
.hero .deep-bubbles span {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45), rgba(126, 211, 252, 0.2) 40%, rgba(46, 196, 224, 0.08) 65%, transparent 75%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.ocean-bubbles span:nth-child(1),
.deep-bubbles span:nth-child(1) { left: 6%; width: 9px; height: 9px; animation-duration: 15s; }
.ocean-bubbles span:nth-child(2),
.deep-bubbles span:nth-child(2) { left: 14%; width: 14px; height: 14px; animation-duration: 11s; animation-delay: 1.2s; }
.ocean-bubbles span:nth-child(3),
.deep-bubbles span:nth-child(3) { left: 24%; width: 8px; height: 8px; animation-duration: 17s; animation-delay: 3s; }
.ocean-bubbles span:nth-child(4),
.deep-bubbles span:nth-child(4) { left: 34%; width: 16px; height: 16px; animation-duration: 12s; animation-delay: 0.6s; }
.ocean-bubbles span:nth-child(5),
.deep-bubbles span:nth-child(5) { left: 46%; width: 10px; height: 10px; animation-duration: 14s; animation-delay: 4s; }
.ocean-bubbles span:nth-child(6),
.deep-bubbles span:nth-child(6) { left: 56%; width: 13px; height: 13px; animation-duration: 10s; animation-delay: 2s; }
.ocean-bubbles span:nth-child(7),
.deep-bubbles span:nth-child(7) { left: 66%; width: 8px; height: 8px; animation-duration: 16s; animation-delay: 5s; }
.ocean-bubbles span:nth-child(8),
.deep-bubbles span:nth-child(8) { left: 76%; width: 15px; height: 15px; animation-duration: 13s; animation-delay: 1.8s; }
.ocean-bubbles span:nth-child(9),
.deep-bubbles span:nth-child(9) { left: 86%; width: 11px; height: 11px; animation-duration: 15s; animation-delay: 3.5s; }
.ocean-bubbles span:nth-child(10),
.deep-bubbles span:nth-child(10) { left: 94%; width: 18px; height: 18px; animation-duration: 11s; animation-delay: 0.3s; }
.ocean-bubbles span:nth-child(11),
.deep-bubbles span:nth-child(11) { left: 40%; width: 7px; height: 7px; animation-duration: 19s; animation-delay: 6s; }
.ocean-bubbles span:nth-child(12),
.deep-bubbles span:nth-child(12) { left: 70%; width: 12px; height: 12px; animation-duration: 14s; animation-delay: 7s; }

@keyframes rise {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0; }
  8% { opacity: 0.85; }
  100% { transform: translate3d(10px, -115vh, 0) scale(1.45); opacity: 0; }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.25s, box-shadow 0.25s, backdrop-filter 0.25s;
}

.site-header.scrolled {
  background: rgba(4, 21, 40, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  z-index: 2;
  /* Never a boxed/pill chrome around the wordmark */
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
  box-shadow: 0 0 0 2px rgba(232, 185, 35, 0.25);
}

.brand-text em {
  font-style: normal;
  color: var(--gold-400);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.15rem 0.55rem;
  min-width: 0;
  flex: 1 1 auto;
  border: none;
  background: none;
  box-shadow: none;
}

.nav-links > li {
  flex-shrink: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.4rem 0.3rem;
  transition: color 0.15s;
  white-space: nowrap;
  display: inline-block;
  border: none;
  box-shadow: none;
}

/* Cart never takes the gold pill — always a normal tab */
.nav-links a.nav-cart {
  flex-shrink: 0;
}

.nav-links a.nav-cart.nav-cta {
  background: none !important;
  color: rgba(255, 255, 255, 0.88) !important;
  padding: 0.35rem 0.15rem !important;
  border-radius: 0;
  font-weight: 500 !important;
  filter: none !important;
}

.nav-links a.nav-cart:hover {
  color: var(--gold-400) !important;
}

.nav-links a:hover {
  color: var(--gold-400);
}

/* Gold bubble — applied to whichever section is active */
.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950) !important;
  padding: 0.4rem 0.75rem !important;
  border-radius: 999px;
  font-weight: 700 !important;
  transition: color 0.15s, background 0.2s, filter 0.15s, padding 0.2s;
}

.nav-links a.nav-cta:hover {
  filter: brightness(1.05);
  color: var(--navy-950) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  transform-origin: center;
}

/* Body lock while mobile menu is open (menu itself still scrolls) */
body.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #041528;
  overflow: hidden;
}

/* picture wrapper must fill the hero bg */
.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

/*
 * Desktop: wide hero art (hero-boat-desktop.jpg via <picture>) fills edge-to-edge.
 * Full fish is painted into the wide canvas — no blur bars, no side crop of head/tail.
 * Phone keeps original hero-boat.jpg + stacked layout in the 560px media query.
 */
.hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 21, 40, 0.5) 0%, rgba(4, 21, 40, 0.28) 38%, rgba(4, 21, 40, 0.88) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(232, 185, 35, 0.12), transparent 50%);
}

.hero-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-400);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gold-text {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 36rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s, filter 0.15s, background 0.15s, border-color 0.15s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 10px 30px rgba(232, 185, 35, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.stat strong {
  display: block;
  font-size: 1.15rem;
  color: var(--gold-300);
}

.stat span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  color: var(--foam);
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 56px;
  display: block;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.75rem;
}

.section-head h2,
.about-copy + .mission-card h3,
.catch-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

/* About */
.about {
  background: var(--foam);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.about-copy strong {
  color: var(--navy-900);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.checklist li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  border-top: 1px solid rgba(14, 58, 102, 0.1);
  color: var(--navy-800);
  font-weight: 500;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 800;
}

.mission-card {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.mission-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.25), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Mission card bubbles sit under copy */
.mission-card.has-bubbles > .deep-bubbles {
  z-index: 1;
  border-radius: inherit;
}

.mission-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.mission-card h3 {
  font-family: var(--display);
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
  /* High contrast on navy — was too dark / hard to read */
  color: #fff !important;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.02em;
}

.mission-card p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 2;
}

.mission-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.mission-tags span,
.pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(245, 208, 106, 0.35);
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

/* Catch */
.catch {
  background: linear-gradient(180deg, #e8f4fc 0%, var(--foam) 100%);
}

.catch-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.catch-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.catch-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.catch-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(4, 21, 40, 0.88);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(232, 185, 35, 0.4);
  backdrop-filter: blur(8px);
}

.catch-badge-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-400);
}

.catch-copy p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.info-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.info-tile {
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem;
  border: 1px solid rgba(14, 58, 102, 0.08);
  box-shadow: 0 8px 24px rgba(4, 21, 40, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(4, 21, 40, 0.1);
}

.info-tile h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--navy-900);
}

.info-tile p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Vessel */
.vessel {
  background: var(--navy-950);
  color: #fff;
}

.vessel .section-head h2,
.vessel .eyebrow {
  color: var(--gold-400);
}

.vessel .section-head h2 {
  color: #fff;
}

.vessel .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.vessel-hero-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-900);
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.vessel-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 480px;
  object-fit: cover;
  object-position: center 35%;
  background: var(--navy-950);
}

.vessel-hero-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vessel-hero-info h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin: 0 0 0.4rem;
  color: var(--gold-400);
}

.vessel-hero-info > p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.25rem;
}

.spec-list {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.55rem;
}

.spec-list dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.spec-list dd {
  margin: 0;
  font-weight: 600;
  color: #fff;
  text-align: right;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gear-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.35rem;
}

.gear-card.highlight {
  background: linear-gradient(160deg, rgba(232, 185, 35, 0.18), rgba(232, 185, 35, 0.05));
  border-color: rgba(232, 185, 35, 0.4);
}

.gear-card h4 {
  margin: 0 0 0.85rem;
  color: var(--gold-400);
  font-size: 1.05rem;
}

.gear-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.gear-card li + li {
  margin-top: 0.4rem;
}

/* Crew */
.crew {
  background: linear-gradient(180deg, var(--foam), #dff0fa);
}

.crew-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.crew-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 58, 102, 0.06);
  transition: transform 0.2s;
}

.crew-card:hover {
  transform: translateY(-4px);
}

.crew-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(232, 185, 35, 0.35);
}

.crew-card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--navy-900);
}

.crew-role {
  color: var(--sea-500);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0 0 0.85rem;
}

.crew-card p:last-child {
  margin: 0;
  color: var(--muted);
}

/* Season */
.season {
  background: var(--foam);
}

.season-board {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.month-btn {
  appearance: none;
  border: 1px solid rgba(14, 58, 102, 0.12);
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem 0.5rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  color: var(--navy-900);
  transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
  text-align: center;
}

.month-btn small {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.month-btn:hover {
  transform: translateY(-2px);
  border-color: var(--sea-400);
}

.month-btn.active {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-color: transparent;
}

.month-btn.active small {
  color: var(--gold-400);
}

.month-btn.peak:not(.active) {
  background: linear-gradient(135deg, #fff8e1, #fff);
  border-color: rgba(232, 185, 35, 0.45);
}

.season-panel {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}

.season-panel h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  margin: 0 0 0.65rem;
  color: var(--gold-400);
}

.season-panel p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.intensity {
  display: grid;
  gap: 0.4rem;
}

.intensity span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

.intensity-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.intensity-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--sea-400), var(--gold-500));
  border-radius: inherit;
  transition: width 0.35s ease;
}

.season-note {
  text-align: center;
  color: var(--muted);
  max-width: 40rem;
  margin: 1.75rem auto 0;
  font-size: 0.95rem;
}

/* How */
.how {
  background: linear-gradient(180deg, #dff0fa, var(--foam));
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.step {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid rgba(14, 58, 102, 0.08);
  box-shadow: 0 10px 28px rgba(4, 21, 40, 0.06);
  position: relative;
}

.step-num {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--gold-500);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  color: var(--navy-900);
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Fun facts */
.fun {
  background: var(--navy-950);
  color: #fff;
}

.fun .section-head h2 {
  color: #fff;
}

.fun-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.fun-card {
  background: linear-gradient(160deg, rgba(20, 90, 138, 0.45), rgba(14, 58, 102, 0.35));
  border: 1px solid rgba(232, 185, 35, 0.3);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: opacity 0.25s, transform 0.25s;
}

.fun-card.swap {
  opacity: 0;
  transform: translateY(8px);
}

.fun-emoji {
  font-size: 2.5rem;
  margin: 0 0 1rem;
}

.fun-text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  line-height: 1;
}

.carousel-btn:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
  transform: scale(1.05);
}

.fun-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.fun-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
}

.fun-dots button.active {
  background: var(--gold-400);
  transform: scale(1.2);
}

/* Contact */
.contact {
  background: linear-gradient(180deg, var(--foam), #cfe8f5);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  margin: 0 0 0.85rem;
  color: var(--navy-900);
}

.contact-copy > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(14, 58, 102, 0.1);
  color: var(--navy-800);
}

.contact-list strong {
  display: inline-block;
  min-width: 6.5rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 58, 102, 0.08);
}

.contact-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  color: var(--navy-900);
}

.contact-card > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.contact-card .pill {
  background: rgba(14, 58, 102, 0.06);
  border-color: rgba(14, 58, 102, 0.12);
  color: var(--navy-800);
}

.contact-card .btn.full + .btn.full {
  margin-top: 0.75rem;
}

.contact-card .contact-back-top {
  background: transparent;
  border: 2px solid rgba(14, 58, 102, 0.2);
  color: var(--navy-800);
  box-shadow: none;
}

.contact-card .contact-back-top:hover {
  border-color: var(--navy-700);
  color: var(--navy-950);
}

/* Shop teaser (home) */
.shop-teaser {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800) 55%, #0c4a6e);
  color: #fff;
}

.shop-teaser-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.shop-teaser-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(232, 185, 35, 0.55);
}

.shop-teaser h2 {
  margin: 0.25rem 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: #fff;
}

.shop-teaser p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin: 0 0 1.25rem;
}

/* Shop page */
.shop-page .site-header {
  background: rgba(4, 21, 40, 0.92);
  backdrop-filter: blur(12px);
}

.shop-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: #fff;
}

.shop-hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: center;
}

.shop-hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(232, 185, 35, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.shop-hero h1 {
  margin: 0.2rem 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: #fff;
}

.shop-hero-lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.shop-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 38rem;
  margin: 0;
}

/* Space the cart CTA cleanly under the copy */
.shop-hero .btn {
  margin-top: 1.5rem;
}

.shop-grid-section {
  background: var(--foam);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 58, 102, 0.08);
  display: flex;
  flex-direction: column;
}

.product-media {
  aspect-ratio: 1;
  background: #eef4f8;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.product-tag {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea-500);
}

.product-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy-900);
}

.product-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.product-price {
  margin: 0.35rem 0 0.65rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-800);
}

.shop-footer-cta {
  margin-top: 3rem;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 58, 102, 0.08);
}

.shop-footer-cta h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  color: var(--navy-900);
}

.shop-footer-cta p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.shop-footer-cta .btn {
  margin: 0.35rem;
}

.shop-back-home {
  border-color: rgba(14, 58, 102, 0.25) !important;
  color: var(--navy-800) !important;
}

.shop-back-home:hover {
  border-color: var(--navy-700) !important;
  color: var(--navy-950) !important;
}

/* Product options + cart */
.product-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.35rem 0 0.85rem;
}

.option-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.color-label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--navy-800);
  font-size: 0.9rem;
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(14, 58, 102, 0.2);
  background: var(--swatch, #ccc);
  cursor: pointer;
  padding: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.color-swatch.active {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
  border-color: var(--navy-800);
}

.size-select,
.qty-input,
.checkout-form input,
.checkout-form textarea {
  font: inherit;
  border: 1px solid rgba(14, 58, 102, 0.18);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  color: var(--ink);
  background: #fff;
}

.qty-input {
  max-width: 5rem;
}

.nav-cart {
  position: relative;
  font-weight: 700 !important;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  margin-left: 0.25rem;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 0.7rem;
  font-weight: 800;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 21, 40, 0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: #fff;
  z-index: 210;
  transform: translateX(105%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(14, 58, 102, 0.1);
}

.cart-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy-900);
}

.cart-x {
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.cart-empty {
  padding: 1.25rem;
  color: var(--muted);
}

.cart-lines {
  flex: 1;
  overflow: auto;
  padding: 0.75rem 1.25rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(14, 58, 102, 0.08);
}

.cart-line-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  background: #eef4f8;
}

.cart-line-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.cart-line-info strong {
  color: var(--navy-900);
  font-size: 0.95rem;
}

.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.cart-line-actions button {
  border: 1px solid rgba(14, 58, 102, 0.15);
  background: #fff;
  border-radius: 8px;
  min-width: 1.75rem;
  height: 1.75rem;
  cursor: pointer;
}

.cart-remove {
  border: 0 !important;
  color: #b42318;
  background: transparent !important;
  min-width: auto !important;
  font-size: 0.8rem;
}

.cart-line-sub {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.9rem;
}

.cart-footer {
  padding: 1rem 1.25rem 1.35rem;
  border-top: 1px solid rgba(14, 58, 102, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cart-total-row,
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--navy-900);
}

body.cart-open {
  overflow: hidden;
}

/* Checkout */
.checkout-main {
  padding-top: calc(var(--header-h) + 2rem);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.checkout-intro {
  color: var(--muted);
  max-width: 36rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 58, 102, 0.08);
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
}

.checkout-row-3 {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.7fr;
  gap: 0.65rem;
}

.checkout-aside {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 58, 102, 0.08);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.checkout-aside h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  color: var(--navy-900);
}

.checkout-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkout-lines li {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(14, 58, 102, 0.08);
  font-size: 0.9rem;
  color: var(--muted);
}

.checkout-lines img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
}

.checkout-lines strong {
  display: block;
  color: var(--navy-900);
}

.checkout-ship-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.checkout-empty {
  color: var(--muted);
}

.checkout-status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: rgba(14, 58, 102, 0.06);
  color: var(--navy-800);
  font-size: 0.9rem;
}

.checkout-status.error {
  background: rgba(180, 35, 24, 0.08);
  color: #912018;
}

.field-hint {
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
}

.confirm-ok {
  background: rgba(12, 116, 80, 0.08);
  border: 1px solid rgba(12, 116, 80, 0.2);
  color: var(--navy-900);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  line-height: 1.55;
}

.confirm-box {
  max-width: 640px;
  margin: calc(var(--header-h) + 2rem) auto 3rem;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.confirm-box h1 {
  font-family: var(--display);
  color: var(--navy-900);
  margin: 0.25rem 0 0.75rem;
}

.confirm-id {
  color: var(--muted);
}

.confirm-items {
  margin: 1rem 0;
  color: var(--navy-800);
}

.confirm-total {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.confirm-box .btn {
  margin: 0.35rem 0.35rem 0 0;
}

@media (max-width: 800px) {
  .shop-teaser-inner,
  .shop-hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  /* Center logo + copy + button as one stack in the blue hero */
  .shop-hero-inner > div,
  .shop-teaser-inner > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  .shop-hero-lead,
  .shop-note,
  .shop-teaser-inner p {
    margin-left: auto;
    margin-right: auto;
  }

  .shop-hero .btn,
  .shop-teaser .btn {
    margin-top: 1.75rem;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }

  .shop-hero {
    /* Balanced air under the button to the bottom of the blue */
    padding-bottom: 3.25rem;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .checkout-layout,
  .checkout-row-3 {
    grid-template-columns: 1fr;
  }

  .checkout-aside {
    position: static;
  }
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-row {
  display: grid;
  gap: 1rem;
  text-align: center;
  justify-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
}

.footer-brand strong {
  display: block;
  font-size: 0.95rem;
}

.footer-brand span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-note,
.footer-copy {
  margin: 0;
  font-size: 0.88rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Desktop / large screens: airy nav + cinematic full-bleed wide hero */
@media (min-width: 901px) {
  .nav {
    max-width: min(1480px, 96vw);
    padding: 0 1.75rem;
    gap: 1.5rem;
  }

  .nav-links {
    flex-wrap: nowrap;
    gap: 0.2rem 0.75rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.45rem 0.4rem;
  }

  .hero-img {
    object-fit: cover;
    object-position: center 40%;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .catch-layout,
  .vessel-hero-card,
  .season-board,
  .contact-inner,
  .crew-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .gear-grid {
    grid-template-columns: 1fr;
  }

  /* —— Mobile nav: hamburger only when closed; full-screen scrollable drawer when open —— */
  .site-header,
  .site-header.scrolled {
    /* Solid navy from first paint — no white flash (see image0 vs image1) */
    z-index: 200;
    background: #041528 !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  }

  .nav {
    position: relative;
    gap: 0.5rem;
  }

  .brand {
    position: relative;
    z-index: 220;
    min-width: 0;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 220;
    margin-left: auto;
    flex-shrink: 0;
  }

  /* Hamburger → X when open */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding:
      calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.25rem)
      1.5rem
      max(2rem, env(safe-area-inset-bottom, 0px))
      1.5rem;
    background: rgba(4, 21, 40, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* Fully off the page when closed — no squished header tabs under the ☰ */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -12px, 0);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    z-index: 210;
    flex: none;
    min-width: 0;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-links > li {
    flex-shrink: 0;
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.15rem;
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    white-space: normal;
  }

  .nav-links a.nav-cta {
    padding: 0.9rem 1.1rem !important;
  }

  .month-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .info-tiles {
    grid-template-columns: 1fr;
  }

  /*
   * Phone hero: image on top (full tuna), copy BELOW on navy.
   * Desktop stays absolute cover + overlaid text.
   */
  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    /* Navy under the fixed header so body foam never peeks through */
    background: #041528;
    padding: calc(var(--header-h) + env(safe-area-inset-top, 0px)) 0 0;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 48vh;
    background: #041528;
    flex-shrink: 0;
    overflow: hidden;
  }

  .hero-bg picture {
    width: 100%;
    height: 100%;
  }

  /* Tighter gaps between sections on phones (~half of desktop) */
  .section {
    padding: 2.5rem 0;
  }

  .section-head {
    margin-bottom: 1.25rem;
  }

  .section-head.center {
    margin-bottom: 1.35rem;
  }

  .wave-divider svg {
    height: 40px;
  }

  .hero.has-bubbles .hero-bg {
    z-index: 0;
  }

  /* Phone: original photo only (picture source falls back to hero-boat.jpg) */
  .hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .hero-overlay {
    /* Soft vignette only — text lives under the photo now */
    background:
      linear-gradient(180deg, rgba(4, 21, 40, 0.45) 0%, transparent 35%, rgba(4, 21, 40, 0.55) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 3;
    background: linear-gradient(180deg, #041528 0%, #0a2342 100%);
    padding: 1.35rem 1.15rem 2.75rem;
    max-width: none;
    margin: 0;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    margin-bottom: 0.75rem;
  }

  .hero-lead {
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    margin-bottom: 1.5rem;
    gap: 0.6rem;
  }

  .hero-actions .btn {
    padding: 0.75rem 1.15rem;
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 0.75rem 1.35rem;
  }

  .stat strong {
    font-size: 1.05rem;
  }

  .stat span {
    font-size: 0.82rem;
  }

  .month-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fun-carousel {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .carousel-btn {
    order: 2;
  }

  .fun-card {
    order: 1;
    width: 100%;
  }

  .carousel-btn.prev {
    justify-self: end;
    margin-right: 0.25rem;
  }

  .carousel-btn.next {
    justify-self: start;
    margin-left: 0.25rem;
  }

  .fun-carousel {
    grid-template-columns: 1fr 1fr;
  }

  .fun-card {
    grid-column: 1 / -1;
  }
}
