/* =========================================================
   Family Fun Fishing Charters — Shared Stylesheet
   ========================================================= */

:root {
  /* Cinematic palette — deep ink-navy + warm brass, sand & paper neutrals.
     Legacy var names retained so every existing rule adopts the new look. */
  --teal-deep: #0a1a24;   /* deepest ink-navy: dark sections + headings on light */
  --teal: #14333f;        /* lifted ink for layered surfaces */
  --teal-fog: #3f6675;    /* muted teal: avatars / secondary marks */
  --ink-2: #0f2733;       /* elevated dark card surface */
  --ink-3: #163847;       /* highest dark surface */

  --coral: #d9a441;       /* BRASS — primary accent (legacy name) */
  --coral-deep: #b0801f;  /* deep brass */
  --brass-lt: #ecca7d;    /* light brass for highlights / gradients */

  --cream: #f4ebdd;       /* paper: light bg + light text on dark */
  --cream-deep: #ece0cb;  /* deeper paper for alternating sections */
  --sand: #e6dac0;        /* warm sand */
  --paper: #faf6ee;       /* lightest paper (cards) */

  --ink: #15222a;         /* body / heading text on light */
  --ink-soft: #45535c;    /* soft body copy */
  --muted: #8c8475;       /* uppercase labels / captions */

  --line: rgba(10,26,36,0.12);
  --line-d: rgba(244,235,221,0.16);
  --glass: rgba(244,235,221,0.82);

  --shadow-sm: 0 2px 10px rgba(10,26,36,0.07);
  --shadow: 0 24px 60px -22px rgba(10,26,36,0.32);
  --shadow-lg: 0 50px 110px -34px rgba(10,26,36,0.52);
  --brass-glow: 0 14px 44px -10px rgba(217,164,65,0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }

/* ============ TOP TICKER ============ */
.ticker-top {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 0.55rem 0;
  overflow: hidden;
  position: relative;
  z-index: 101;
  border-bottom: 1px solid rgba(245,236,217,0.1);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 50s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex; align-items: center;
  gap: 0.7rem;
  padding: 0 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,236,217,0.85);
}
.ticker-item strong { color: var(--cream); font-weight: 600; }
.ticker-item .ti-sep {
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
}
.ticker-dot {
  width: 7px; height: 7px;
  background: #6fcf97;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(111,207,151,0.25);
  animation: livepulse 2s infinite;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes livepulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(111,207,151,0.25); }
  50% { box-shadow: 0 0 0 7px rgba(111,207,151,0.0); }
}

/* ============ NAV ============ */
nav.top {
  position: fixed; top: 32px; left: 0; right: 0;
  padding: 1.1rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  transition: all 0.4s ease;
  background: rgba(245, 236, 217, 0);
}
nav.top.scrolled {
  top: 0;
  background: rgba(245, 236, 217, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14, 53, 64, 0.08);
  padding: 0.85rem 2.5rem;
}
nav.top.solid {
  top: 32px;
  background: rgba(245, 236, 217, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14, 53, 64, 0.08);
}
nav.top.solid.scrolled { top: 0; }
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
  text-decoration: none;
}
.nav-brand em { font-style: italic; font-weight: 400; opacity: 0.9; }
nav.scrolled .nav-brand, nav.solid .nav-brand { color: var(--teal-deep); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cream);
  text-decoration: none; font-weight: 500;
  transition: opacity 0.3s, color 0.4s;
}
nav.scrolled .nav-links a, nav.solid .nav-links a { color: var(--teal-deep); }
.nav-links a:hover { opacity: 0.6; }
.nav-links a.active { color: var(--coral) !important; }
.nav-cta {
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--cream);
  border-radius: 999px;
  color: var(--cream) !important;
  transition: all 0.3s;
}
nav.scrolled .nav-cta, nav.solid .nav-cta { border-color: var(--teal-deep); color: var(--teal-deep) !important; }
.nav-cta:hover { background: var(--cream); color: var(--teal-deep) !important; opacity: 1 !important; }
nav.scrolled .nav-cta:hover, nav.solid .nav-cta:hover { background: var(--teal-deep); color: var(--cream) !important; }
@media (max-width: 768px) {
  nav.top { padding: 1rem 1.25rem; }
  .nav-links { gap: 0.8rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .ticker-item { padding: 0 1.5rem; font-size: 0.65rem; }
}

/* ============ STICKY MOBILE BAR ============ */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--teal-deep);
  color: var(--cream);
  padding: 0.9rem 1.2rem;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .meta {
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.mobile-cta .meta .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,236,217,0.6);
}
.mobile-cta .meta .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
}
.mobile-cta a.btn-call {
  background: var(--coral);
  color: var(--cream);
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 3px;
  white-space: nowrap;
}
@media (max-width: 768px) { .mobile-cta { display: flex; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--teal-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.6) saturate(0.92) contrast(1.06);
  transform: scale(1.14);
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1.18) translate(-1%, 2%); }
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(130% 90% at 50% 32%, transparent 48%, rgba(8,20,28,0.55) 100%),
    linear-gradient(180deg, rgba(8,20,28,0.55) 0%, rgba(8,20,28,0.12) 30%, rgba(8,20,28,0.5) 62%, rgba(8,20,28,0.97) 100%);
}
.hero-overline {
  position: absolute;
  top: 8rem; left: 2.5rem;
  color: var(--cream);
  font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0; animation: fadeUp 1.2s 0.3s ease forwards;
  z-index: 5;
}
.hero-overline::before {
  content: ''; display: inline-block;
  width: 30px; height: 1px; background: var(--cream);
  vertical-align: middle; margin-right: 12px;
  opacity: 0.7;
}
.hero-content {
  position: relative; z-index: 5;
  padding: 0 2.5rem 6rem;
  width: 100%;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin-bottom: 2rem;
}
.hero h1 em { font-style: italic; font-weight: 400; opacity: 0.95; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.5s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.65s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.8s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero-meta {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 236, 217, 0.25);
  opacity: 0; animation: fadeUp 1.2s 1.2s ease forwards;
}
.hero-meta .sub {
  max-width: 480px;
  color: rgba(245, 236, 217, 0.85);
  font-size: 1.05rem; line-height: 1.55;
}
.hero-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  white-space: nowrap;
}
.hero-phone:hover { color: var(--coral); }
.hero-phone .label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  z-index: 4;
  pointer-events: none;
}
.hero-waves svg { width: 100%; height: 100%; display: block; }
.hero-waves path { fill: var(--cream); }

.scroll-cue {
  position: absolute;
  bottom: 6rem; right: 2.5rem;
  color: var(--cream);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  z-index: 6;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: ''; display: block;
  width: 1px; height: 50px;
  background: var(--cream);
  margin: 0.6rem auto 0;
  animation: scrollPulse 2.5s infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (max-width: 768px) { .scroll-cue { display: none; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============ PAGE HERO (slimmer for subpages) ============ */
.page-hero {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 11rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--coral); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 1.5rem;
}
.page-hero h1 em { font-style: italic; color: var(--cream); opacity: 0.85; }
.page-hero p.lead {
  font-size: 1.15rem;
  max-width: 580px;
  color: rgba(245,236,217,0.8);
  line-height: 1.6;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C240,10 480,70 720,40 C960,10 1200,70 1440,40 L1440,60 L0,60 Z' fill='%23f5ecd9'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

/* ============ WAVE DIVIDERS ============ */
.wave-divider { position: relative; height: 50px; overflow: hidden; }
.wave-divider svg { width: 100%; height: 100%; }
.wave-divider path { fill: none; stroke-width: 1; stroke-linecap: round; }

/* ============ INTRO ============ */
.intro { padding: 8rem 0 7rem; position: relative; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 900px) {
  .intro { padding: 5rem 0 4rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px;
  background: var(--coral);
  vertical-align: middle;
  margin-right: 14px;
}
.intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--teal-deep);
  letter-spacing: -0.015em;
}
.intro h2 em { font-style: italic; }
.intro-body p {
  font-size: 1.15rem; line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
  max-width: 580px;
}
.intro-body p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; line-height: 1.45;
  color: var(--teal-deep); font-weight: 500;
}
.intro-body p.lead::first-letter {
  font-size: 4rem; float: left;
  line-height: 0.85;
  margin: 0.3rem 0.6rem 0 0;
  font-style: italic;
  color: var(--coral);
}

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--cream);
  padding: 4rem 0;
  border-top: 1px solid rgba(14,53,64,0.08);
  border-bottom: 1px solid rgba(14,53,64,0.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(14,53,64,0.1);
}
.trust-item:last-child { border-right: none; }
@media (max-width: 900px) { .trust-item { border-right: none; border-bottom: 1px solid rgba(14,53,64,0.1); padding-bottom: 2rem; } }
.trust-item .ti-icon {
  width: 32px; height: 32px;
  margin: 0 auto 1rem;
  color: var(--coral);
}
.trust-item h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--teal-deep);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.trust-item .sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ STATS ============ */
.stats {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='100' viewBox='0 0 1200 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q150,20 300,50 T600,50 T900,50 T1200,50' stroke='%23f5ecd9' stroke-width='0.5' fill='none' opacity='0.15'/%3E%3Cpath d='M0,65 Q150,35 300,65 T600,65 T900,65 T1200,65' stroke='%23f5ecd9' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 100% 100%; opacity: 0.6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
.stat { text-align: center; }
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1; color: var(--cream);
  font-weight: 500;
}
.stat .num em { font-style: italic; color: var(--coral); font-size: 0.6em; vertical-align: super; }
.stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 236, 217, 0.7);
  margin-top: 0.8rem;
}

/* ============ PRICING CALCULATOR ============ */
.calculator { padding: 8rem 0 4rem; position: relative; }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
  background: var(--paper);
  padding: 4rem;
  border: 1px solid rgba(14,53,64,0.1);
  position: relative;
}
.calc-grid::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 50%, var(--coral) 100%);
}
@media (max-width: 900px) {
  .calculator { padding: 5rem 0 3rem; }
  .calc-grid { grid-template-columns: 1fr; padding: 2.5rem; gap: 3rem; }
}
.calc-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--teal-deep);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.calc-intro h2 em { font-style: italic; color: var(--coral); }
.calc-intro p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; }

.slider-row { margin-bottom: 3rem; }
.slider-display { display: flex; align-items: baseline; gap: 0.7rem; margin-bottom: 1.5rem; }
.slider-display .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; line-height: 1;
  color: var(--teal-deep);
  font-weight: 500;
  font-feature-settings: "tnum";
}
.slider-display .lbl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-style: italic;
  color: var(--muted);
}
.slider {
  width: 100%;
  height: 4px;
  background: var(--cream-deep);
  outline: none;
  appearance: none;
  border-radius: 2px;
  margin-bottom: 0.7rem;
}
.slider::-webkit-slider-thumb {
  appearance: none;
  width: 28px; height: 28px;
  background: var(--coral);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--coral), 0 4px 12px rgba(217,164,65,0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
}
.slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.slider::-moz-range-thumb {
  width: 28px; height: 28px;
  background: var(--coral);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--coral);
  border-radius: 50%;
  cursor: pointer;
}
.slider-marks {
  display: flex; justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  padding: 0 6px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(14,53,64,0.1);
}
@media (max-width: 600px) { .price-grid { grid-template-columns: 1fr; } }
.price-item { background: var(--paper); padding: 1.5rem; text-align: left; }
.price-item .ptitle {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.price-item .ptotal {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--teal-deep);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.3rem;
  font-feature-settings: "tnum";
  transition: color 0.3s;
}
.price-item .pper {
  font-size: 0.8rem;
  color: var(--coral);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ============ TRIPS ============ */
.trips { padding: 4rem 0 6rem; }
.trips-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
  align-items: end;
}
@media (max-width: 768px) { .trips-header { grid-template-columns: 1fr; margin-bottom: 3rem; } }
.trips-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 500;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
}
.trips-header h2 em { font-style: italic; color: var(--coral); }
.trips-header p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 420px;
  line-height: 1.65;
  justify-self: end;
}
@media (max-width: 768px) { .trips-header p { justify-self: start; } }

.trip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 7rem;
  position: relative;
}
.trip:nth-child(even) .trip-img { order: 2; }
@media (max-width: 900px) {
  .trip { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
  .trip:nth-child(even) .trip-img { order: 0; }
}
.trip-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--sand);
}
.trip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  filter: saturate(0.9) contrast(1.05);
}
.trip:hover .trip-img img { transform: scale(1.04); }
.trip-img .badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--cream);
  color: var(--teal-deep);
  padding: 0.4rem 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.trip-content .trip-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--coral);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.trip-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--teal-deep);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.trip-content h3 em { font-style: italic; }
.trip-meta {
  display: flex; gap: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(14, 53, 64, 0.15);
  border-bottom: 1px solid rgba(14, 53, 64, 0.15);
  margin-bottom: 1.5rem;
}
.trip-meta div .k {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.trip-meta div .v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--teal-deep);
  font-weight: 500;
}
.trip-content p {
  color: var(--ink-soft);
  font-size: 1.02rem; line-height: 1.7;
  margin-bottom: 1.5rem;
}
.trip-content .add {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2rem;
}
.btn {
  display: inline-flex; align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--teal-deep);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}
.btn:hover { background: var(--coral); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-outline { background: transparent; color: var(--teal-deep); border: 1px solid var(--teal-deep); }
.btn-outline:hover { background: var(--teal-deep); color: var(--cream); border-color: var(--teal-deep); }

/* ============ COMPARISON TABLE ============ */
.compare { padding: 7rem 0; background: var(--paper); }
.compare-wrap {
  overflow-x: auto;
  margin-top: 4rem;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--cream);
}
.compare-table thead th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--teal-deep);
  padding: 1.5rem 1.2rem;
  text-align: left;
  border-bottom: 2px solid var(--teal-deep);
  font-weight: 500;
  vertical-align: bottom;
}
.compare-table thead th .price {
  font-size: 0.85rem;
  color: var(--coral);
  font-style: italic;
  display: block;
  margin-top: 0.3rem;
}
.compare-table tbody td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(14,53,64,0.1);
  font-size: 0.92rem;
  color: var(--ink-soft);
  vertical-align: top;
}
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--teal-deep);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.compare-table .check { color: #2a8a5f; font-size: 1.2rem; }
.compare-table .x { color: var(--muted); }
.compare-table .feat { background: rgba(217,164,65,0.06); }

/* ============ THE CATCH ============ */
.catch {
  background: var(--paper);
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
}
.catch::before {
  content: 'THE CATCH';
  position: absolute;
  top: 4rem; right: -2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  font-style: italic;
  color: var(--teal-deep);
  opacity: 0.04;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.catch-header { margin-bottom: 5rem; max-width: 700px; }
.catch-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--teal-deep);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.catch-header h2 em { font-style: italic; color: var(--coral); }
.catch-header p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.65; max-width: 560px; }

.fish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .fish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .fish-grid { grid-template-columns: 1fr; } }
.fish-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(14, 53, 64, 0.12);
  background: var(--cream);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.fish-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(217,164,65,0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.fish-card:hover { background: var(--teal-deep); transform: translateY(-6px); border-color: var(--teal-deep); }
.fish-card:hover::after { opacity: 1; }
.fish-card svg {
  width: 180px; height: auto; max-width: 84%;
  margin: 0 auto 1.2rem;
  display: block;
  color: var(--teal-deep);
  transition: transform 0.5s ease, color 0.45s ease;
}
.fish-card:hover svg { transform: translateX(8px) rotate(-2deg); }
.fish-card:hover svg { color: var(--coral); }
/* Inlined sketch fish: scoped + currentColor so they recolor on hover */
.fish-card svg .outline, .fish-card svg .outline-thin, .fish-card svg .mark {
  fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round;
}
.fish-card svg .outline { stroke-width: 5; }
.fish-card svg .outline-thin { stroke-width: 3; }
.fish-card svg .mark { stroke-width: 2.2; opacity: 0.85; }
.fish-card svg .dot { fill: currentColor; stroke: none; }
.fish-card svg .sketch, .fish-card svg .sketch2 {
  fill: none; stroke: #a98f63; stroke-linecap: round; stroke-linejoin: round;
}
.fish-card svg .sketch { stroke-width: 1.6; opacity: 0.5; }
.fish-card svg .sketch2 { stroke-width: 1.2; opacity: 0.36; }

/* Photographic fish cut-outs (PNG) — transparent specimens, work on cream + ink hover */
.fish-card img {
  width: auto; height: auto; max-width: 88%; max-height: 124px;
  margin: 0 auto 1.2rem; display: block; object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(10,26,36,0.22));
  transition: transform 0.5s ease, filter 0.4s ease;
  animation: fishbob 6s ease-in-out infinite;
}
.fish-card:nth-child(2n) img { animation-duration: 7.2s; animation-delay: -2s; }
.fish-card:nth-child(3n) img { animation-duration: 5.4s; animation-delay: -1s; }
.fish-card:hover img { animation: none; transform: translateX(8px) rotate(-2deg) scale(1.03); }
@media (prefers-reduced-motion: reduce) { .fish-card img { animation: none; } }

/* Footer agency credit */
.foot-bottom .foot-credit { display: inline-block; margin-top: 0.45rem; }
.foot-bottom a {
  color: rgba(244,235,221,0.75); text-decoration: none;
  border-bottom: 1px solid var(--coral); padding-bottom: 1px;
  transition: color 0.3s;
}
.foot-bottom a:hover { color: var(--cream); }
/* Keep the footer credit clear of the fixed mobile call-bar (so the link is tappable),
   and make decorative pseudo-elements ignore pointer events. */
@media (max-width: 768px) { body footer.main { padding-bottom: 6.5rem; } }
.marquee::before, footer.main::before, footer.main::after, .wave-divider::after { pointer-events: none; }

/* "Text the Captain" SMS button */
.btn-sms { margin: 0.25rem 0 2.25rem; }
.btn-sms svg { width: 18px; height: 18px; flex-shrink: 0; }
.fish-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--teal-deep);
  margin-bottom: 0.4rem;
  transition: color 0.3s;
  position: relative; z-index: 1;
}
.fish-card:hover h4 { color: var(--cream); }
.fish-card .latin {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  transition: color 0.3s;
  position: relative; z-index: 1;
}
.fish-card:hover .latin { color: rgba(245, 236, 217, 0.7); }
.fish-card .season {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  position: relative; z-index: 1;
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 3.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(245,236,217,0.1);
  border-bottom: 1px solid rgba(245,236,217,0.1);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeRun 40s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  display: inline-flex; align-items: center;
}
.marquee-item em { font-style: italic; color: var(--coral); }
.marquee-sep {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
  margin: 0 2.5rem;
  flex-shrink: 0;
}
@keyframes marqueeRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ GALLERY ============ */
.gallery { padding: 9rem 0; background: var(--cream); }
.gallery-header {
  display: flex; justify-content: space-between;
  align-items: end; flex-wrap: wrap;
  gap: 2rem; margin-bottom: 4rem;
}
.gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
}
.gallery-header h2 em { font-style: italic; color: var(--coral); }
.gallery-header p {
  max-width: 380px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
}
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 240px); } }
@media (max-width: 480px) { .bento { grid-template-columns: 1fr; grid-template-rows: repeat(5, 280px); } }
.bento-item {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
}
.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
  filter: saturate(0.92) contrast(1.05);
}
.bento-item:hover img { transform: scale(1.08); filter: saturate(1) contrast(1.1); }
.bento-item .cap {
  position: absolute;
  bottom: 1rem; left: 1rem;
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(14,53,64,0.7);
  padding: 0.4rem 0.8rem;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.bento-item:hover .cap { opacity: 1; transform: translateY(0); }
.bento-item.b1 { grid-column: span 2; grid-row: span 2; }
.bento-item.b2 { grid-column: span 2; }
.bento-item.b3 { grid-column: span 1; }
.bento-item.b4 { grid-column: span 1; }
@media (max-width: 480px) {
  .bento-item.b1, .bento-item.b2, .bento-item.b3, .bento-item.b4 { grid-column: span 1; grid-row: span 1; }
}

/* ============ WATERS / QUOTE ============ */
.waters {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--teal-deep);
}
.waters-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  filter: brightness(0.55) saturate(0.9);
}
@media (max-width: 768px) { .waters-bg { background-attachment: scroll; } }
.waters-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 8rem 2rem;
  max-width: 900px; margin: 0 auto;
}
.waters-content .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-style: italic;
  color: var(--coral); line-height: 0.5;
  margin-bottom: 1rem;
}
.waters-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  color: var(--cream);
  font-weight: 400; font-style: italic;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.waters-content cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 236, 217, 0.75);
  font-weight: 500;
}
.waters-content cite::before {
  content: ''; display: inline-block;
  width: 30px; height: 1px;
  background: var(--coral);
  vertical-align: middle;
  margin-right: 14px;
}

/* ============ MAP ============ */
.map-section {
  padding: 9rem 0;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .map-grid { grid-template-columns: 1fr; gap: 3rem; } }
.map-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  color: var(--teal-deep);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.map-text h2 em { font-style: italic; color: var(--coral); }
.map-text p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}
.map-coords {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14,53,64,0.15);
  display: flex; gap: 2.5rem;
  flex-wrap: wrap;
}
.map-coords div .k {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.map-coords div .v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--teal-deep);
  font-weight: 500;
}
.map-viz {
  aspect-ratio: 5/4;
  background: var(--paper);
  border: 1px solid rgba(14,53,64,0.15);
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}
.map-viz svg { width: 100%; height: 100%; display: block; }
.map-corner {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.map-corner.tl { top: 1rem; left: 1rem; }
.map-corner.tr { top: 1rem; right: 1rem; }
.map-corner.bl { bottom: 1rem; left: 1rem; }
.map-corner.br { bottom: 1rem; right: 1rem; }
.pulse-pin {
  transform-origin: center;
  animation: pulseMark 2.2s ease-out infinite;
}
@keyframes pulseMark {
  0% { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ============ INCLUDED ============ */
.included { padding: 9rem 0; }
.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .inc-grid { grid-template-columns: 1fr; gap: 3rem; } }
.inc-grid h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  color: var(--teal-deep);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.inc-grid h2 em { font-style: italic; color: var(--coral); }
.inc-list { list-style: none; }
.inc-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(14, 53, 64, 0.12);
  align-items: start;
}
.inc-list li:last-child { border-bottom: none; }
.inc-list .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--coral);
  font-weight: 500;
}
.inc-list h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--teal-deep);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.inc-list p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; }

/* ============ FAQ ============ */
.faq { padding: 9rem 0; background: var(--paper); }
.faq-header { max-width: 700px; margin-bottom: 4rem; }
.faq-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--teal-deep);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.faq-header h2 em { font-style: italic; color: var(--coral); }
.faq-header p { color: var(--ink-soft); line-height: 1.65; font-size: 1.05rem; }
.faq-list { max-width: 900px; }
.faq-item {
  border-top: 1px solid rgba(14, 53, 64, 0.15);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(14, 53, 64, 0.15); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--teal-deep);
  font-weight: 500;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--coral); }
.faq-q .toggle {
  flex-shrink: 0;
  margin-left: 2rem;
  width: 28px; height: 28px;
  border: 1px solid var(--teal-deep);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.faq-q .toggle::before, .faq-q .toggle::after {
  content: '';
  position: absolute;
  background: var(--teal-deep);
  transition: all 0.3s;
}
.faq-q .toggle::before { top: 50%; left: 25%; right: 25%; height: 1px; transform: translateY(-50%); }
.faq-q .toggle::after { top: 25%; bottom: 25%; left: 50%; width: 1px; transform: translateX(-50%); }
.faq-q[aria-expanded="true"] .toggle { background: var(--coral); border-color: var(--coral); }
.faq-q[aria-expanded="true"] .toggle::before, .faq-q[aria-expanded="true"] .toggle::after { background: var(--cream); }
.faq-q[aria-expanded="true"] .toggle::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-a-inner {
  padding: 0 0 2rem;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 800px;
}
.faq-a-inner p + p { margin-top: 0.8rem; }

/* ============ CAPTAIN'S NOTE ============ */
.note {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
}
.note::before {
  content: '';
  position: absolute;
  top: 50%; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,164,65,0.15) 0%, transparent 70%);
  transform: translateY(-50%);
}
.note-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .note-grid { grid-template-columns: 1fr; gap: 3rem; } }
.note-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.note-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.note-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--cream);
  transform: translate(20px, 20px);
  pointer-events: none;
  opacity: 0.4;
}
.note-content .eyebrow { color: var(--coral); }
.note-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}
.note-content h2 em { font-style: italic; }
.note-content p {
  color: rgba(245, 236, 217, 0.85);
  font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 1.3rem;
}
.signature {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  color: var(--coral);
  margin-top: 1.5rem;
  line-height: 1;
}
.signature .role {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 236, 217, 0.6);
  margin-top: 0.8rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--cream-deep); padding: 9rem 0; position: relative; }
.test-header { text-align: center; margin-bottom: 5rem; }
.test-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--teal-deep);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.test-header h2 em { font-style: italic; color: var(--coral); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }
.test {
  padding: 2.5rem;
  background: var(--paper);
  border: 1px solid rgba(14, 53, 64, 0.08);
  position: relative;
}
.test .stars { color: var(--coral); letter-spacing: 0.2em; margin-bottom: 1.2rem; font-size: 0.95rem; }
.test blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--teal-deep);
  font-style: italic;
  margin-bottom: 1.8rem;
}
.test footer {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(14, 53, 64, 0.12);
}
.test footer .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-fog);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
}
.test footer .name { font-weight: 600; color: var(--teal-deep); font-size: 0.95rem; }
.test footer .from { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; }

/* ============ JOURNAL ============ */
.journal { padding: 9rem 0; }
.journal-header {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem;
}
.journal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--teal-deep);
  font-weight: 500; line-height: 1;
  letter-spacing: -0.02em;
}
.journal-header h2 em { font-style: italic; color: var(--coral); }
.journal-header a {
  color: var(--teal-deep);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 0.3rem;
  font-weight: 500;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 768px) { .journal-grid { grid-template-columns: 1fr; } }
.article { text-decoration: none; color: inherit; display: block; }
.article-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 1.8rem;
  background: var(--sand);
}
.article-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.article:hover .article-img img { transform: scale(1.04); }
.article .meta {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.article h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--teal-deep);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.article:hover h3 { color: var(--coral); }
.article p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.6; }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--paper);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(14,53,64,0.08);
  border-bottom: 1px solid rgba(14,53,64,0.08);
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,164,65,0.08) 0%, transparent 70%);
}
.news-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.news-grid h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--teal-deep);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.news-grid h2 em { font-style: italic; color: var(--coral); }
.news-grid > div:first-child p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1.02rem;
  max-width: 460px;
}
.news-form { display: flex; flex-direction: column; gap: 1rem; }
.news-form .field { position: relative; }
.news-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(14,53,64,0.2);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}
.news-form input:focus { border-color: var(--coral); }
.news-form input::placeholder { color: var(--muted); }
.news-form button {
  padding: 1.2rem 2rem;
  background: var(--teal-deep);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-flex; align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.news-form button:hover { background: var(--coral); }
.news-form .fine {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ============ CONTACT FORM ============ */
.contact-section { padding: 7rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--teal-deep);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.contact-info h2 em { font-style: italic; color: var(--coral); }
.contact-info p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-info .info-block {
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(14,53,64,0.12);
}
.contact-info .info-block:last-of-type { border-bottom: none; }
.contact-info .info-block h5 {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.contact-info .info-block .v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--teal-deep);
  font-weight: 500;
  line-height: 1.3;
}
.contact-info .info-block .v a { color: inherit; text-decoration: none; transition: color 0.3s; }
.contact-info .info-block .v a:hover { color: var(--coral); }
.contact-info .info-block .sm { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; margin-top: 0.4rem; }

.contact-form {
  background: var(--paper);
  padding: 3rem;
  border: 1px solid rgba(14,53,64,0.1);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 50%, var(--coral) 100%);
}
@media (max-width: 600px) { .contact-form { padding: 2rem; } }
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--teal-deep);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-form h3 em { font-style: italic; color: var(--coral); }
.contact-form > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(14,53,64,0.2);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.5;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--coral); }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230a1a24' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); }
.form-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--teal-deep);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.6rem;
}
.form-submit:hover { background: var(--coral); }
.form-fine {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 1.2rem;
  text-align: center;
}

/* ============ CTA FINAL ============ */
.cta-final {
  background: var(--cream-deep);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before, .cta-final::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 1px; height: 60%;
  background: var(--teal-deep);
  opacity: 0.15;
}
.cta-final::before { left: 50px; }
.cta-final::after { right: 50px; }
.cta-final .eyebrow { justify-self: center; text-align: center; display: block; }
.cta-final h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--teal-deep);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.cta-final h2 em { font-style: italic; color: var(--coral); }
.cta-final p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.cta-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--teal-deep);
  text-decoration: none;
  display: inline-block;
  margin-top: 3rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--coral);
  transition: color 0.3s;
}
.cta-phone:hover { color: var(--coral); }

/* ============ FOOTER ============ */
footer.main {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 5rem 0 2rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.foot-brand h3 em { font-style: italic; }
.foot-brand p {
  color: rgba(245, 236, 217, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
}
.foot-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.foot-col a, .foot-col p {
  display: block;
  color: rgba(245, 236, 217, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.foot-col a:hover { color: var(--cream); }
.foot-bottom {
  border-top: 1px solid rgba(245, 236, 217, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(245, 236, 217, 0.5);
}
.foot-bottom .mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(245, 236, 217, 0.4);
}

/* ============ 404 PAGE ============ */
.lost {
  min-height: 100vh;
  background: var(--teal-deep);
  color: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.lost::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='400' viewBox='0 0 1200 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,200 Q150,170 300,200 T600,200 T900,200 T1200,200' stroke='%23f5ecd9' stroke-width='1' fill='none' opacity='0.1'/%3E%3Cpath d='M0,230 Q150,210 300,230 T600,230 T900,230 T1200,230' stroke='%23f5ecd9' stroke-width='1' fill='none' opacity='0.08'/%3E%3Cpath d='M0,260 Q150,290 300,260 T600,260 T900,260 T1200,260' stroke='%23d9a441' stroke-width='1' fill='none' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 100% 100%; opacity: 0.6;
}
.lost-content { position: relative; z-index: 2; max-width: 700px; }
.lost .code {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 0.9;
  color: var(--coral);
  font-style: italic;
  margin-bottom: 1rem;
}
.lost h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.lost h1 em { font-style: italic; }
.lost p {
  font-size: 1.05rem;
  color: rgba(245,236,217,0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.lost .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.lost .actions .btn { background: var(--coral); }
.lost .actions .btn:hover { background: var(--cream); color: var(--teal-deep); }
.lost .actions .btn-outline { background: transparent; color: var(--cream); border: 1px solid var(--cream); }
.lost .actions .btn-outline:hover { background: var(--cream); color: var(--teal-deep); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  filter: blur(10px);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1),
              transform 1.1s cubic-bezier(0.16,1,0.3,1),
              filter 1s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: opacity 0.4s ease; transform: none; filter: none; }
}

/* =========================================================
   CINEMATIC POLISH LAYER  (depth + overrides, loaded last)
   ========================================================= */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
::selection { background: var(--coral); color: var(--teal-deep); }
/* Browser scrollbar = a jig sinking down a brass fishing line */
html { scrollbar-width: thin; scrollbar-color: var(--coral) var(--cream-deep); }
::-webkit-scrollbar { width: 15px; }
::-webkit-scrollbar-track {
  background: linear-gradient(to right,
    var(--cream-deep) 0 calc(50% - 1px),
    rgba(217,164,65,0.45) calc(50% - 1px) calc(50% + 1px),
    var(--cream-deep) calc(50% + 1px) 100%);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brass-lt), var(--coral) 50%, var(--coral-deep));
  border: 4px solid transparent; background-clip: padding-box;
  border-radius: 999px; min-height: 52px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--brass-lt), var(--coral-deep)); }

/* --- Hero: vignette, depth, legibility --- */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(125% 78% at 50% 40%, transparent 50%, rgba(6,16,22,0.62) 100%);
}
.hero h1 { text-shadow: 0 2px 50px rgba(0,0,0,0.4); }
.hero-meta { border-top-color: rgba(236,202,125,0.34); }
.hero-meta .sub { text-shadow: 0 1px 20px rgba(0,0,0,0.45); }
.hero-overline::before { background: var(--coral); opacity: 0.9; }

/* --- Nav: glassier, brass CTA --- */
nav.top.scrolled, nav.top.solid {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px -22px rgba(10,26,36,0.5);
}
.nav-cta {
  background: var(--coral); border: 1px solid var(--coral);
  color: var(--teal-deep) !important; font-weight: 600;
  box-shadow: 0 8px 22px -10px rgba(217,164,65,0.7);
}
.nav-cta:hover { background: var(--brass-lt); border-color: var(--brass-lt); color: var(--teal-deep) !important; box-shadow: var(--brass-glow); transform: translateY(-1px); }
nav.top.scrolled .nav-cta, nav.top.solid .nav-cta { background: var(--coral); border-color: var(--coral); color: var(--teal-deep) !important; }
nav.top.scrolled .nav-cta:hover, nav.top.solid .nav-cta:hover { background: var(--brass-lt); border-color: var(--brass-lt); color: var(--teal-deep) !important; }

/* --- Buttons: depth + premium motion --- */
.btn {
  border-radius: 2px; letter-spacing: 0.22em;
  box-shadow: 0 12px 30px -16px rgba(10,26,36,0.55);
  transition: background 0.4s, color 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.btn:hover { background: var(--coral); color: var(--teal-deep); transform: translateY(-3px); box-shadow: var(--brass-glow); }
.btn .arrow { transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.lost .actions .btn, .lost .actions .btn:hover { color: var(--teal-deep); }

/* --- Calculator + contact: brass accent bar, depth --- */
.calc-grid { box-shadow: var(--shadow); border-color: var(--line); border-radius: 4px; }
.calc-grid::before, .contact-form::before {
  background: linear-gradient(90deg, var(--coral-deep), var(--brass-lt) 50%, var(--coral-deep));
}
.contact-form { box-shadow: var(--shadow); border-radius: 4px; }
.slider::-webkit-slider-thumb { box-shadow: 0 0 0 1px var(--coral), 0 6px 20px rgba(217,164,65,0.5); }

/* --- Cards: cohesive elevation --- */
.trip-img { box-shadow: var(--shadow); border-radius: 4px; }
.note-img { box-shadow: var(--shadow-lg); border-radius: 4px; }
.note-img::after { border-color: var(--coral); opacity: 0.55; }
.bento-item { box-shadow: var(--shadow-sm); border-radius: 4px; }
.fish-card { box-shadow: var(--shadow-sm); border-radius: 4px; }
.fish-card:hover { box-shadow: var(--shadow-lg); }
.test { box-shadow: var(--shadow-sm); border-radius: 4px; transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s; }
.test:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.test > * { position: relative; z-index: 1; }
.test::before {
  content: '\201C'; position: absolute; top: 0.4rem; right: 1.6rem; z-index: 0;
  font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: 1;
  color: var(--coral); opacity: 0.2; pointer-events: none;
}

/* --- Trust strip: lift on hover --- */
.trust-item, .trust-item .ti-icon { transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.trust-item:hover { transform: translateY(-4px); }
.trust-item:hover .ti-icon { transform: scale(1.12); }

/* --- Stats: subtle dividers + warm glow --- */
.stat { position: relative; }
.stat .num { text-shadow: 0 6px 30px rgba(217,164,65,0.18); }
@media (min-width: 769px) {
  .stat + .stat::before {
    content: ''; position: absolute; left: -1rem; top: 50%;
    transform: translateY(-50%); width: 1px; height: 48px; background: var(--line-d);
  }
}

/* --- Marquee: fade edges --- */
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

/* --- Waters quote: deeper cinematic overlay --- */
.waters::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 95% at 50% 45%, rgba(6,16,22,0.25), rgba(6,16,22,0.8));
}
.waters-content { z-index: 2; }

/* --- Dark heroes + CTA: brass glow --- */
.page-hero {
  background:
    radial-gradient(90% 120% at 82% -15%, rgba(217,164,65,0.14), transparent 58%),
    var(--teal-deep);
}
.cta-final {
  background:
    radial-gradient(62% 70% at 50% 0%, rgba(217,164,65,0.12), transparent 70%),
    var(--cream-deep);
}

/* --- Accent legibility: deeper antique-brass on LIGHT backgrounds.
   Bright brass stays on dark sections (higher-specificity rules untouched). --- */
.eyebrow,
.calc-intro h2 em, .trips-header h2 em, .catch-header h2 em,
.gallery-header h2 em, .map-text h2 em, .inc-grid h2 em,
.faq-header h2 em, .test-header h2 em, .journal-header h2 em,
.news-grid h2 em, .cta-final h2 em, .contact-info h2 em,
.trip-content .trip-num, .price-item .pper, .inc-list .num,
.test .stars, .article .meta, .contact-info .info-block h5 {
  color: #a06d12;
}
.faq-q:hover, .article:hover h3,
.contact-info .info-block .v a:hover, .cta-phone:hover {
  color: #a06d12;
}
.nav-links a.active { color: #a06d12 !important; }

/* =========================================================
   FURTHER UPGRADES — live tide board, scroll bar, micro-motion
   ========================================================= */

/* --- Today on the Water: live tide chart (dark band) --- */
.tideboard {
  background: radial-gradient(100% 140% at 85% -25%, rgba(217,164,65,0.13), transparent 55%), var(--teal-deep);
  color: var(--cream);
  padding: 7rem 0; position: relative; overflow: hidden;
  border-top: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d);
}
.tideboard-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .tideboard { padding: 5rem 0; } .tideboard-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.tb-intro .eyebrow { color: var(--coral); }
.tb-intro h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04; font-weight: 500; color: var(--cream);
  letter-spacing: -0.015em; margin-bottom: 1.2rem;
}
.tb-intro h2 em { font-style: italic; color: var(--coral); }
.tb-intro > p { color: rgba(244,235,221,0.78); line-height: 1.7; font-size: 1.02rem; max-width: 440px; }
.tb-readout { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.8rem; border-top: 1px solid var(--line-d); }
.tb-stat .k { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,235,221,0.5); margin-bottom: 0.45rem; }
.tb-stat .v { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--coral); font-weight: 500; line-height: 1; }
.tb-chart {
  background: rgba(244,235,221,0.035); border: 1px solid var(--line-d);
  border-radius: 8px; padding: 1.4rem 1.2rem 0.6rem; box-shadow: var(--shadow-lg);
}
.tb-chart-inner { width: 100%; min-height: 180px; display: flex; align-items: center; justify-content: center; }
.tb-svg { width: 100%; height: auto; display: block; }
.tb-loading { font-family: 'Cormorant Garamond', serif; font-style: italic; color: rgba(244,235,221,0.45); padding: 3rem 0; }
.tb-curve { stroke: var(--brass-lt); stroke-width: 2.4; stroke-linecap: round; filter: drop-shadow(0 3px 10px rgba(217,164,65,0.45)); }
.tb-pt { fill: var(--cream); stroke: var(--coral); stroke-width: 2; }
.tb-lbl { fill: rgba(244,235,221,0.92); font: 600 12px 'DM Sans', sans-serif; letter-spacing: 0.03em; }
.tb-axis { fill: rgba(244,235,221,0.38); font: 600 11px 'DM Sans', sans-serif; letter-spacing: 0.1em; }
.tb-grid { stroke: rgba(244,235,221,0.08); stroke-width: 1; }
.tb-now { stroke: var(--coral); stroke-width: 1.4; stroke-dasharray: 3 4; opacity: 0.7; }
.tb-nowdot { fill: var(--coral); }
.tb-nowglow { fill: var(--coral); opacity: 0.4; transform-box: fill-box; transform-origin: center; animation: tbpulse 2.2s ease-out infinite; }
@keyframes tbpulse { 0% { transform: scale(0.7); opacity: 0.55; } 100% { transform: scale(2.8); opacity: 0; } }

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--brass-lt));
  transform: scaleX(0); transform-origin: 0 50%; z-index: 200;
  transition: transform 0.1s linear;
}

/* --- Nav link underline draw --- */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -5px;
  height: 1px; background: var(--coral);
  transition: right 0.35s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:not(.nav-cta):hover { opacity: 1; }
.nav-links a:not(.nav-cta):hover::after { right: 0; }

/* --- The Catch: gently bobbing fish --- */
.fish-card svg { animation: fishbob 6s ease-in-out infinite; }
.fish-card:nth-child(2n) svg { animation-duration: 7.2s; animation-delay: -2s; }
.fish-card:nth-child(3n) svg { animation-duration: 5.4s; animation-delay: -1s; }
.fish-card:hover svg { animation: none; }
@keyframes fishbob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) { .fish-card svg { animation: none; } }

/* =========================================================
   NAUTICAL / FISHING THEMING
   ========================================================= */
:root { --hook: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 28'%3E%3Ccircle cx='12' cy='3.2' r='2.2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M12 5.4V14a5 5 0 1 1-5 5' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round'/%3E%3Cpath d='M7 19l-2.6-1M7 19l.4-2.7' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E"); }

/* Fish-hook markers replace the eyebrow / overline dashes */
.eyebrow::before {
  content: ''; display: inline-block; width: 15px; height: 19px;
  background: currentColor;
  -webkit-mask: var(--hook) no-repeat center / contain;
          mask: var(--hook) no-repeat center / contain;
  vertical-align: -0.34em; margin-right: 11px;
}
.hero-overline::before {
  content: ''; display: inline-block; width: 14px; height: 18px;
  background: var(--coral);
  -webkit-mask: var(--hook) no-repeat center / contain;
          mask: var(--hook) no-repeat center / contain;
  vertical-align: -0.32em; margin-right: 12px; opacity: 1;
}

/* Buttons: a hook that "sets" on hover */
.btn::before {
  content: ''; flex-shrink: 0; width: 14px; height: 17px;
  background: currentColor;
  -webkit-mask: var(--hook) no-repeat center / contain;
          mask: var(--hook) no-repeat center / contain;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.btn:hover::before { transform: rotate(-20deg) translateY(-1px); }
.nav-cta { display: inline-flex; align-items: center; gap: 0.55rem; }
.nav-cta::before {
  content: ''; flex-shrink: 0; width: 12px; height: 15px;
  background: currentColor;
  -webkit-mask: var(--hook) no-repeat center / contain;
          mask: var(--hook) no-repeat center / contain;
}

/* Twisted-rope seams between sections */
.marquee, footer.main { position: relative; }
.marquee::before, footer.main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(45deg, var(--brass-lt) 0 3px, var(--coral-deep) 3px 6px);
  opacity: 0.7;
}

/* Scroll progress -> a fish reeling a brass line across the top */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; pointer-events: none; transform: none; background: none; }
.sp-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: linear-gradient(90deg, var(--coral-deep), var(--brass-lt)); }
.sp-fish { position: absolute; top: 1px; left: 0; width: 26px; height: 15px; transform: translateX(-58%); color: var(--brass-lt); filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45)); transition: left 0.08s linear; }
.sp-fish svg { width: 100%; height: 100%; display: block; }

/* =========================================================
   NAUTICAL EXTRAS — compass watermark, rope frames, anchors
   ========================================================= */
:root { --anchor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 58'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='7' r='4.5'/%3E%3Cpath d='M24 11.5V49'/%3E%3Cpath d='M14 20h20'/%3E%3Cpath d='M8 33c0 13 10 17 16 17s16-4 16-17'/%3E%3Cpath d='M8 33 4 39M8 33 13 35'/%3E%3Cpath d='M40 33 44 39M40 33 35 35'/%3E%3C/g%3E%3C/svg%3E"); }

/* Compass-rose watermark behind the stats */
.stats-grid { z-index: 1; }
.stats::after {
  content: ''; position: absolute; z-index: 0; top: 50%; left: 50%;
  width: 360px; height: 360px; transform: translate(-50%, -50%);
  opacity: 0.07; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1.2'%3E%3Ccircle cx='60' cy='60' r='55'/%3E%3Ccircle cx='60' cy='60' r='40'/%3E%3Cpath d='M60 60 78 78M60 60 42 78M60 60 78 42M60 60 42 42'/%3E%3C/g%3E%3Cg fill='%23d9a441'%3E%3Cpath d='M60 5 65 60 60 55 55 60Z'/%3E%3Cpath d='M115 60 60 65 65 60 60 55Z'/%3E%3Cpath d='M60 115 55 60 60 65 65 60Z'/%3E%3Cpath d='M5 60 60 55 55 60 60 65Z'/%3E%3Ccircle cx='60' cy='60' r='4'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

/* Rope-framed trip photos */
.trip-img::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border: 6px solid transparent;
  border-image: repeating-linear-gradient(45deg, var(--brass-lt) 0 4px, var(--coral-deep) 4px 8px) 6;
}

/* Ornamental anchor section dividers */
.sea-divider { display: flex; align-items: center; justify-content: center; gap: 1.6rem; padding: 4.5rem 2rem; }
.sea-divider::before, .sea-divider::after {
  content: ''; height: 1px; width: min(220px, 26vw);
  background: linear-gradient(90deg, transparent, #a06d12);
}
.sea-divider::after { background: linear-gradient(90deg, #a06d12, transparent); }
.sea-divider .anchor {
  flex-shrink: 0; width: 30px; height: 36px; background: #a06d12;
  -webkit-mask: var(--anchor) no-repeat center / contain;
          mask: var(--anchor) no-repeat center / contain;
}

/* Anchor on the wave divider + footer rope seam */
.wave-divider { position: relative; }
.wave-divider::after, footer.main::after {
  content: ''; position: absolute; left: 50%;
  width: 26px; height: 31px; background: #a06d12;
  -webkit-mask: var(--anchor) no-repeat center / contain;
          mask: var(--anchor) no-repeat center / contain;
}
.wave-divider::after { top: 50%; transform: translate(-50%, -50%); }
footer.main::after { top: 15px; transform: translateX(-50%); background: var(--coral); opacity: 0.9; }

/* Hooks on contact + newsletter submit buttons (full consistency) */
.form-submit { display: flex; align-items: center; justify-content: center; gap: 0.65rem; }
.form-submit::before, .news-form button::before {
  content: ''; flex-shrink: 0; width: 13px; height: 16px;
  background: currentColor;
  -webkit-mask: var(--hook) no-repeat center / contain;
          mask: var(--hook) no-repeat center / contain;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.form-submit:hover, .news-form button:hover { color: var(--teal-deep); }
.form-submit:hover::before, .news-form button:hover::before { transform: rotate(-20deg) translateY(-1px); }

/* =========================================================
   STICKY "WHAT'S ABOARD" + FISHING-LINE LIST DIVIDERS
   ========================================================= */
.inc-grid > div:first-child { position: sticky; top: 110px; align-self: start; }
@media (max-width: 900px) { .inc-grid > div:first-child { position: static; } }

/* List dividers become a fishing line ending in a loop + hook */
.inc-list li, .contact-info .info-block { border-bottom: none; }
.inc-list li:not(:last-child), .contact-info .info-block:not(:last-of-type) { position: relative; }
.inc-list li:not(:last-child)::after,
.contact-info .info-block:not(:last-of-type)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, rgba(160,109,18,0.18), rgba(160,109,18,0.6) 92%);
}
.inc-list li:not(:last-child)::before,
.contact-info .info-block:not(:last-of-type)::before {
  content: ''; position: absolute; right: 7px; bottom: -9px; z-index: 2;
  width: 13px; height: 17px; background: #a06d12;
  -webkit-mask: var(--hook) no-repeat center / contain;
          mask: var(--hook) no-repeat center / contain;
}
