/* ============================================
   REEL SMART CHARTERS — Design System
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Tokens --- */
:root {
  /* Color */
  --navy: #0a1f3d;
  --navy-deep: #061428;
  --navy-light: #142e57;
  --sand: #f4ead5;
  --sand-light: #faf5e9;
  --orange: #f59327;
  --orange-deep: #d97706;
  --teal: #1a7a8c;
  --teal-deep: #0e5867;
  --foam: #e6f3f5;
  --bg: #fafaf7;
  --surface: #ffffff;
  --ink: #1a1f2e;
  --ink-soft: #4a5568;
  --ink-mute: #8896a8;
  --line: #e7e2d3;
  --line-soft: #f0ebde;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-narrow: 960px;
  --container-wide: 1440px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(60px, 9vw, 120px);

  /* Effects */
  --t: all .35s cubic-bezier(.2,.8,.2,1);
  --t-fast: all .2s ease;
  --shadow-sm: 0 2px 8px rgba(10,31,61,.06), 0 1px 3px rgba(10,31,61,.04);
  --shadow: 0 8px 30px rgba(10,31,61,.08), 0 2px 8px rgba(10,31,61,.06);
  --shadow-lg: 0 24px 60px rgba(10,31,61,.14), 0 8px 24px rgba(10,31,61,.08);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--ink-soft); }
.lead { font-size: 1.18rem; line-height: 1.7; color: var(--ink-soft); max-width: 65ch; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.eyebrow::before { content: "\2014  "; opacity: .6; }

/* --- Layout helpers --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-y) 0; position: relative; }
.section-tight { padding: clamp(40px, 6vw, 70px) 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 20px rgba(245,147,39,.35);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245,147,39,.45);
}
.btn-secondary {
  background: var(--navy);
  color: white;
}
.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: white; }
.btn-ghost-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-ghost-light:hover { background: white; color: var(--navy); border-color: white; }
.btn-lg { padding: 17px 38px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* --- NAV --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(6, 20, 40, 0.85);
  transition: background .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(6, 20, 40, 0.98);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--t-fast);
  flex-shrink: 0;
}
/* Logo is now display-only — hide redundant brand text span (logo already contains wordmark) */
.nav-logo > span:not(.nav-logo-badge) { display: none; }

.nav-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: var(--t-fast);
  flex-shrink: 0;
}
.nav-logo-badge img {
  height: 64px;
  width: auto;
  display: block;
}
.nav.scrolled .nav-logo-badge { padding: 6px 10px; }
.nav.scrolled .nav-logo-badge img { height: 54px; }
.nav-logo:hover .nav-logo-badge { transform: scale(1.04); box-shadow: 0 6px 20px rgba(0,0,0,.4); }

@media (max-width: 540px) {
  .nav-logo-badge { padding: 6px 10px; }
  .nav-logo-badge img { height: 52px; }
  .nav.scrolled .nav-logo-badge img { height: 46px; }
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,.85);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--t-fast);
}
.nav-links a:hover, .nav-links a.active {
  color: white;
  background: rgba(255,255,255,.08);
}
.nav-cta {
  margin-left: 12px;
  padding: 11px 24px;
  background: var(--orange);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--t);
}
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--t-fast);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 40, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity .3s ease;
}
.nav-backdrop.open { display: block; opacity: 1; }

@media (max-width: 980px) {
  .nav-toggle { display: flex; z-index: 1010; position: relative; }
  .nav-inner > .nav-links { display: none !important; }
}

/* Mobile menu — JS moves .nav-links to body; styled here for body-level placement */
body > .nav-links.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(88vw, 380px);
  height: 100vh;
  height: 100dvh;
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 90px 0 30px;
  background: #061428 !important;
  background-image: linear-gradient(180deg, #0a1f3d 0%, #061428 100%) !important;
  transform: translateX(105%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.6);
  z-index: 1005;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
body > .nav-links.mobile-menu.open { transform: translateX(0); }
body > .nav-links.mobile-menu a {
  display: block;
  padding: 18px 28px;
  font-size: 1.08rem;
  font-weight: 500;
  color: white !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  text-decoration: none;
}
body > .nav-links.mobile-menu a:hover { background: rgba(255,255,255,.05) !important; }
body > .nav-links.mobile-menu a.active {
  background: rgba(245,147,39,.15) !important;
  color: var(--orange) !important;
  border-left: 4px solid var(--orange);
}
body > .nav-links.mobile-menu .nav-cta {
  margin: 26px 22px 0;
  padding: 14px 24px;
  text-align: center;
  background: var(--orange) !important;
  color: white !important;
  border: none;
  border-bottom: none;
  border-radius: 999px;
  font-weight: 600;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  color: white;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
  transform: scale(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,20,40,.4) 0%, rgba(6,20,40,.55) 60%, rgba(6,20,40,.85) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(245,147,39,.25) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 60px 0 100px;
}
.hero h1 {
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero h1 .accent { color: var(--orange); font-style: italic; }
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(255,255,255,.92);
  max-width: 600px;
  margin-bottom: 36px;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tags {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.85);
}
.hero-tag svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
  display: flex; justify-content: center;
  padding-top: 8px;
}
.hero-scroll::after {
  content: "";
  width: 3px; height: 8px;
  background: white;
  border-radius: 2px;
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* --- Page Header (interior pages) --- */
.page-header {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center;
  color: white;
  padding: 140px 0 80px;
  overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.5);
  z-index: 0;
}
.page-header-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,20,40,.55) 0%, rgba(6,20,40,.85) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: white; margin-bottom: 14px; }
.page-header .lead { color: rgba(255,255,255,.88); }
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { opacity: .5; }

/* --- Cards --- */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: var(--t);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-img {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
}
.card-body { padding: 28px; }

/* --- Grid --- */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }

/* --- Section heads --- */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.sec-head .lead { margin-left: auto; margin-right: auto; }
.sec-head-left { max-width: 760px; margin: 0 0 60px; }

/* --- Trust strip --- */
.trust {
  background: var(--navy);
  color: white;
  padding: 36px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.trust-item .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.trust-item .lbl {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  display: block;
}

/* --- Trip cards --- */
.trip-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.trip-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.trip-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.trip-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.trip-card:hover .trip-card-img img { transform: scale(1.06); }
.trip-card-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--orange);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.trip-card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.trip-card h3 { margin-bottom: 8px; }
.trip-card .duration { color: var(--orange-deep); font-size: 0.9rem; font-weight: 600; margin-bottom: 14px; }
.trip-card p { flex: 1; }
.trip-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.trip-card-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.trip-card-price small {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}
.trip-card-price small:first-child { margin-bottom: 2px; }
.trip-card-price small:last-child { margin-top: 4px; }

/* --- Species ribbon --- */
.species-ribbon {
  background: linear-gradient(180deg, var(--sand-light) 0%, var(--bg) 100%);
  padding: 80px 0;
}
.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.species-tag {
  background: white;
  padding: 18px 12px 16px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  transition: var(--t-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.species-tag:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.species-tag .photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sand-light);
  box-shadow: 0 4px 10px rgba(10,31,61,.1);
  flex-shrink: 0;
}
.species-tag .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.species-tag .name { font-weight: 600; color: var(--navy); font-size: 0.92rem; line-height: 1.2; }

/* --- Live conditions widget --- */
.conditions {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--teal-deep) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.conditions::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q25 0 50 10 T100 10' stroke='%23ffffff' stroke-opacity='.04' fill='none' stroke-width='1'/%3E%3C/svg%3E") repeat;
  opacity: 0.6;
}
.conditions .container { position: relative; z-index: 1; }
.conditions h2 { color: white; }
.conditions .eyebrow { color: var(--orange); }
.conditions .lead { color: rgba(255,255,255,.85); }

.cond-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.cond-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--t);
}
.cond-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.cond-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.cond-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(245,147,39,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.cond-icon svg { width: 22px; height: 22px; }
.cond-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.cond-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 4px;
}
.cond-value small { font-size: 0.9rem; font-weight: 500; opacity: .75; }
.cond-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.cond-loading { opacity: .5; font-style: italic; }

/* Tide rows */
.tide-rows { display: flex; flex-direction: column; gap: 8px; }
.tide-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.tide-row:last-child { border-bottom: none; }
.tide-row .type {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.tide-row .type.high { color: #6cd4e3; }
.tide-row .type.low { color: #f59327; }
.tide-row .time { font-variant-numeric: tabular-nums; color: rgba(255,255,255,.85); }

/* --- About / Captain --- */
.cap-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.cap-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cap-img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,31,61,.4) 100%);
}
.cap-img-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.cap-quote {
  position: absolute;
  bottom: 30px; left: 30px; right: 30px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: white;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .cap-split { grid-template-columns: 1fr; gap: 40px; }
}

/* --- FAQ --- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--surface);
  transition: var(--t-fast);
}
.faq-item:hover { border-color: var(--ink-mute); }
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--orange); }
.faq-q {
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
  gap: 20px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  font-weight: 400;
  flex-shrink: 0;
  transition: var(--t-fast);
}
.faq-item[open] .faq-q::after { content: "\2013"; transform: rotate(180deg); }
.faq-a {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-a p { margin-bottom: 0.7em; }
.faq-a p:last-child { margin-bottom: 0; }

/* FAQ category headers */
.faq-cat-title {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.5rem;
  margin: 50px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.faq-cat-title:first-child { margin-top: 0; }

/* --- Gallery --- */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}
.gallery-filter {
  padding: 9px 22px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--t-fast);
}
.gallery-filter:hover { border-color: var(--navy); color: var(--navy); }
.gallery-filter.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.gallery-grid {
  column-count: 3;
  column-gap: 18px;
}
@media (max-width: 880px) { .gallery-grid { column-count: 2; } }
@media (max-width: 540px) { .gallery-grid { column-count: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: block;
  transition: var(--t);
}
.gallery-item img { width: 100%; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,31,61,.7) 100%);
  opacity: 0; transition: var(--t-fast);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .cap {
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
  color: white;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 2;
  opacity: 0; transform: translateY(6px);
  transition: var(--t-fast);
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(6,20,40,.96);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 30px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 40px 80px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* --- Pricing rows --- */
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row h4 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 4px; }
.pricing-row p { margin: 0; font-size: 0.95rem; }
.pricing-row .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
}
.pricing-row .price small { display: block; font-size: 0.7rem; font-weight: 500; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; }

/* --- Booking form --- */
.booking-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  margin-top: 40px;
}
@media (max-width: 980px) { .booking-shell { grid-template-columns: 1fr; } }

.book-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px;
}
.book-form h3 { margin-bottom: 8px; }
.book-form p { color: var(--ink-soft); margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-field label .req { color: var(--orange); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--surface);
  transition: var(--t-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(245,147,39,.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.book-side {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
}
.book-side h3 { color: white; margin-bottom: 22px; }
.book-side ul { list-style: none; }
.book-side li {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: flex-start;
}
.book-side li:last-child { border-bottom: none; }
.book-side li svg {
  width: 22px; height: 22px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.book-side strong { display: block; color: white; font-size: 0.95rem; }
.book-side small { color: rgba(255,255,255,.7); font-size: 0.85rem; }

/* --- CTA strip --- */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, #e07c1f 100%);
  color: white;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='.15'/%3E%3C/svg%3E");
  opacity: .5;
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { color: white; margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,.95); margin-bottom: 28px; font-size: 1.1rem; }
.cta-strip .btn-primary {
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.cta-strip .btn-primary:hover { background: var(--navy-deep); }

/* --- Reviews --- */
.review {
  background: var(--surface);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  position: relative;
}
.review .stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review p {
  font-style: italic;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.7;
}
.review-author {
  display: flex; gap: 14px; align-items: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.review-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.review-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.review-author small { color: var(--ink-mute); font-size: 0.82rem; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h3 { margin-bottom: 8px; }
.contact-method {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-method:last-of-type { border-bottom: none; }
.contact-method-icon {
  width: 48px; height: 48px;
  background: var(--sand-light);
  color: var(--orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; }
.contact-method strong { display: block; color: var(--navy); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.contact-method a { color: var(--ink); font-size: 1.05rem; font-weight: 500; }
.contact-method a:hover { color: var(--orange); }

/* --- Footer --- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img {
  height: 96px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.5));
}
.footer-brand p { color: rgba(255,255,255,.65); font-size: 0.95rem; max-width: 320px; }
.footer h5 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,.7); font-size: 0.95rem; }
.footer a:hover { color: var(--orange); }

.footer-social {
  display: flex; gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  transition: var(--t-fast);
}
.footer-social a:hover { background: var(--orange); color: white; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a:hover { color: var(--orange); }

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* --- Misc --- */
.bg-sand { background: var(--sand-light); }
.bg-foam { background: var(--foam); }
.bg-navy { background: var(--navy); color: white; }
.bg-navy h2, .bg-navy h3 { color: white; }
.bg-navy .lead, .bg-navy p { color: rgba(255,255,255,.85); }
.text-center { text-align: center; }

.divider-wave {
  height: 80px;
  background: var(--bg);
  position: relative;
  margin-bottom: -1px;
}
.divider-wave svg { display: block; width: 100%; height: 100%; }

/* --- 7-day forecast strip --- */
.week-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 30px;
}
@media (max-width: 720px) { .week-strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .week-strip { grid-template-columns: repeat(2, 1fr); } }
.week-day {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 18px 10px;
  text-align: center;
  color: white;
}
.week-name { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: .7; margin-bottom: 8px; }
.week-icon { font-size: 1.6rem; margin-bottom: 6px; }
.week-temp { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.week-temp span { color: rgba(255,255,255,.5); font-weight: 400; font-size: 0.95rem; }
.week-wind { font-size: 0.78rem; opacity: .7; margin-top: 6px; }

/* --- Fishing report page --- */
.report-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 880px) { .report-grid { grid-template-columns: 1fr; } }
.season-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.season-card h3 {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  color: var(--navy);
}
.season-card h3 .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.species-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 10px;
}
.species-pill {
  background: var(--sand-light);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Print */
@media print {
  .nav, .footer, .cta-strip, .hero-scroll { display: none !important; }
  body { color: black; background: white; }
}
