/* ============================================================
   Carp Control Bowfishing Charters
   Dark "instrument-panel-at-night" theme · toxic-lime accent
   ============================================================ */
:root {
  /* Color */
  --cc-green: #8DC63F;
  --cc-green-bright: #ADDB3C;
  --cc-green-deep: #48711C;
  --cc-silver-hi: #EEF1F3;
  --cc-silver: #C7CCD1;
  --cc-silver-lo: #6D737B;
  --cc-ink: #0A0C0F;
  --app-bg: #08090B;
  --cc-panel: #111519;
  --cc-panel-2: #161B20;

  --text-1: #FFFFFF;
  --text-2: rgba(235, 235, 245, 0.60);
  --text-3: rgba(235, 235, 245, 0.30);
  --gray: #8E8E93;
  --orange: #f5a623;

  --hairline: rgba(255, 255, 255, 0.10);
  --hairline-soft: rgba(255, 255, 255, 0.08);
  --surface-inset: rgba(255, 255, 255, 0.05);
  --chrome: linear-gradient(150deg, #EEF1F3 0%, #B6BBC1 20%, #4a4f56 52%, #C7CCD1 74%, #7a7f86 100%);

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lime: 0 6px 18px rgba(141, 198, 63, 0.28);
  --shadow-feature: 0 12px 40px rgba(72, 113, 28, 0.22);

  /* Type */
  --font-display: 'Anton', Impact, sans-serif;
  --font-cond: 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, #10160f 0%, rgba(16, 22, 15, 0) 55%),
    var(--app-bg);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;               /* only body — keeps sticky header working */
}
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; }
a { color: var(--cc-green); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--cc-green-bright); }
::selection { background: var(--cc-green); color: var(--cc-ink); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 22px; }
.lime { color: var(--cc-green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  font-size: 16px; padding: 13px 26px; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer; transition: transform .18s var(--ease), background .18s var(--ease);
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.97); }
.btn-lg { font-size: 18px; padding: 16px 30px; letter-spacing: 1px; }
.btn-primary { background: var(--cc-green); color: var(--cc-ink); box-shadow: var(--shadow-lime); }
.btn-primary:hover { background: var(--cc-green-bright); color: var(--cc-ink); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06); color: #fff; border: 1px solid var(--hairline);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.btn-block { width: 100%; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; font-size: 14px; color: var(--cc-green); margin: 0;
}
.section-head { max-width: 640px; margin: 0 auto 44px; }
.section-head.left { margin-left: 0; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2,
.about-inner h2,
.contact-info h2 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(40px, 6vw, 68px); line-height: .95; letter-spacing: .5px; margin: 10px 0 0;
  color: #fff;
}
.section-lead { color: var(--text-2); font-size: 18px; margin: 18px 0 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 12, 15, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--hairline-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 10px; min-height: 64px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 52px; width: auto; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5)); }
.header-tagline { display: none; }   /* mobile only — fills the space where the logo was */
.main-nav {
  display: flex; align-items: center; gap: 30px;
  font-family: var(--font-cond); font-weight: 600; font-size: 15px; letter-spacing: .6px; text-transform: uppercase;
}
.main-nav a { color: var(--text-2); }
.main-nav a:hover { color: var(--cc-green); }
.main-nav .nav-cta {
  background: var(--cc-green); color: var(--cc-ink); font-weight: 700; padding: 10px 20px;
  border-radius: var(--r-pill); letter-spacing: .8px; box-shadow: 0 4px 14px rgba(141, 198, 63, .28);
}
.main-nav .nav-cta:hover { background: var(--cc-green-bright); color: var(--cc-ink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
  background: linear-gradient(135deg, #0d140a 0%, #0a0e08 45%, #06080a 100%);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, .35) 0%, rgba(8, 11, 9, .55) 40%, rgba(6, 8, 6, .92) 100%),
    radial-gradient(80% 60% at 30% 30%, rgba(72, 113, 28, .30), rgba(8, 9, 11, 0) 60%);
}
.hero-scan {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
.hero-inner { padding: 120px 22px 90px; }
.hero-content { max-width: 760px; }
.hero-logo-wrap { display: none; }   /* desktop keeps the logo in the header; shown big in the hero on mobile */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 14px;
  color: var(--cc-green-bright); border: 1px solid rgba(141, 198, 63, .4); background: rgba(141, 198, 63, .08);
  padding: 7px 15px; border-radius: var(--r-pill);
}
.eyebrow-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cc-green); box-shadow: 0 0 10px var(--cc-green); }
.hero-title {
  font-family: var(--font-display); font-weight: 400; line-height: .92; letter-spacing: .5px;
  font-size: clamp(52px, 9vw, 116px); margin: 22px 0 0; text-transform: uppercase; color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .6);
}
.hero-sub { max-width: 560px; margin: 24px 0 0; font-size: 19px; line-height: 1.6; color: rgba(235, 235, 245, .82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 38px 0 0;
  font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .7px; font-size: 14px;
}
.hero-badges li {
  background: rgba(255, 255, 255, .05); border: 1px solid var(--hairline-soft);
  padding: 9px 15px; border-radius: var(--r-pill); color: rgba(235, 235, 245, .85);
}
.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, .55); animation: cc-bob 2.2s var(--ease) infinite;
}
.scroll-hint:hover { color: var(--cc-green); }
@keyframes cc-bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }
@keyframes cc-flow { to { background-position: 18px 0; } }
@keyframes cc-travel { 0% { left: 8%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { left: 92%; opacity: 0; } }
@keyframes cc-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(141, 198, 63, 0); } 50% { box-shadow: 0 0 16px 2px rgba(141, 198, 63, .55); } }

/* ---------- Stats ---------- */
.stats {
  border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft);
  background: linear-gradient(90deg, rgba(72, 113, 28, .10), rgba(16, 21, 15, 0) 60%), var(--cc-panel);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 18px; border-right: 1px solid var(--hairline-soft); }
.stat:last-child { border-right: 0; }
.stat-num { display: block; font-family: var(--font-display); font-size: 34px; color: #fff; line-height: 1; }
.stat-label { display: block; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1px; color: var(--text-2); font-size: 14px; margin-top: 6px; }

/* ---------- Meet Your Captain ---------- */
.section-captain { background: linear-gradient(90deg, rgba(72, 113, 28, .10), rgba(16, 21, 15, 0) 55%), var(--cc-panel); }
.captain-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 56px; align-items: center; }
.captain-media { position: relative; }
.hero-boat { display: none; }   /* mobile only — shown under the hero buttons */
.captain-frame { background: var(--chrome); padding: 4px; border-radius: calc(var(--r-xl) + 4px); box-shadow: var(--shadow-card); }
.captain-photo { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 3; background: #0c0f0a; }
.captain-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.captain-tag {
  position: absolute; bottom: -18px; left: -18px; background: var(--cc-green); color: var(--cc-ink);
  font-family: var(--font-display); font-size: 19px; text-transform: uppercase; letter-spacing: .5px;
  padding: 11px 18px; border-radius: var(--r-md); box-shadow: 0 8px 20px rgba(0, 0, 0, .4);
}
.captain-copy h2 { text-align: left; }
.captain-bio { color: var(--text-2); font-size: 17px; margin: 22px 0 0; }
.captain-bio + .captain-bio { margin-top: 14px; }
.captain-bio.emphasis { color: #fff; font-weight: 500; }
.credentials {
  list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 10px;
  font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .6px; font-size: 13px;
}
.credentials li {
  background: rgba(141, 198, 63, .10); border: 1px solid rgba(141, 198, 63, .32);
  color: var(--cc-green-bright); padding: 8px 14px; border-radius: var(--r-pill);
}
.credentials li.cred-break { display: none; }   /* forces 3-then-2 on mobile only */

/* ---------- Sections ---------- */
.section { padding: 96px 0; border-top: 1px solid var(--hairline-soft); }
.section-panel { background: var(--cc-panel); }
.section-species { background: linear-gradient(180deg, var(--cc-panel) 0%, var(--app-bg) 100%); }

/* ---------- Trips ---------- */
.trips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 380px)); justify-content: center; gap: 20px; margin-top: 44px; }
.trip-card {
  position: relative; background: var(--cc-panel-2); border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl); padding: 28px; display: flex; flex-direction: column;
}
.trip-card .top-bar { position: absolute; top: 0; left: 24px; right: 24px; height: 3px; background: var(--cc-silver-lo); border-radius: 0 0 3px 3px; }
.trip-card.featured {
  background: linear-gradient(180deg, rgba(72, 113, 28, .18), rgba(17, 21, 25, 0) 45%), var(--cc-panel-2);
  border: 1.5px solid rgba(141, 198, 63, .55); box-shadow: var(--shadow-feature);
}
.trip-card.featured .top-bar { background: var(--cc-green); box-shadow: 0 0 12px var(--cc-green); }
.trip-badge {
  position: absolute; top: -13px; left: 28px; background: var(--cc-green); color: var(--cc-ink);
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-size: 12px; padding: 5px 13px; border-radius: var(--r-pill);
}
.trip-card h3 { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: 26px; }
.trip-meta { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1px; color: var(--gray); font-size: 13px; margin: 2px 0 0; }
.trip-price-row { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 4px; flex-wrap: wrap; }
.trip-price { font-family: var(--font-display); font-size: 52px; color: #fff; line-height: 1; }
.trip-card.featured .trip-price { color: var(--cc-green); }
.trip-price-unit { font-family: var(--font-cond); color: var(--text-2); font-size: 16px; }
.trip-note { color: var(--cc-green); font-family: var(--font-cond); font-weight: 600; font-size: 15px; margin: 0; }
.trip-desc { color: var(--text-2); margin: 16px 0 20px; font-size: 15px; }
.trip-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 11px; font-size: 15px; color: rgba(235, 235, 245, .9); }
.trip-features li { display: flex; gap: 10px; align-items: flex-start; }
.trip-features li::before { content: "▸"; color: var(--cc-green); flex-shrink: 0; }
.trip-cta { margin-top: auto; text-align: center; padding: 13px; }
.trip-cta.ghost { background: rgba(255, 255, 255, .06); border: 1px solid var(--hairline); color: #fff; }
.trip-cta.ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.deposit-note {
  text-align: center; margin: 30px auto 0; max-width: 640px;
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-size: 16px; color: var(--cc-green);
}
.fineprint { color: var(--gray); font-size: 14px; margin-top: 12px; text-align: center; }

/* ---------- Species ---------- */
.species-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
.species-card { background: var(--cc-panel-2); border: 1px solid var(--hairline-soft); border-radius: var(--r-xl); overflow: hidden; }
.species-media {
  height: 150px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a2210, #0c0f0a); border-bottom: 1px solid var(--hairline-soft);
}
.species-body { padding: 22px 24px 26px; }
.species-body h3 { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: 24px; }
.species-body p { color: var(--text-2); font-size: 15px; margin: 8px 0 0; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 52px; position: relative; }
.steps-line {
  position: absolute; top: 26px; left: 6%; right: 6%; height: 2px; opacity: .55;
  background: repeating-linear-gradient(90deg, var(--cc-green) 0 10px, transparent 10px 18px);
  background-position: 0 0; animation: cc-flow 1.1s linear infinite;
}
.steps-dot {
  position: absolute; top: 20px; left: 8%; width: 14px; height: 14px; border-radius: 50%;
  background: var(--cc-green); box-shadow: 0 0 14px 3px rgba(141, 198, 63, .7); z-index: 3;
  animation: cc-travel 3.6s var(--ease) infinite;
}
.step { padding: 0 16px; position: relative; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%; background: var(--cc-panel-2); border: 2px solid var(--cc-green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; color: var(--cc-green); position: relative; z-index: 1;
  animation: cc-pulse 3.6s ease-in-out infinite;
}
.steps > .step:nth-child(3) .step-num { animation-delay: 0s; }
.steps > .step:nth-child(4) .step-num { animation-delay: .9s; }
.steps > .step:nth-child(5) .step-num { animation-delay: 1.8s; }
.steps > .step:nth-child(6) .step-num { animation-delay: 2.7s; }
.step h3 { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: 22px; margin: 20px 0 0; }
.step p { color: var(--text-2); font-size: 15px; margin: 8px 0 0; }

/* ---------- About ---------- */
.about-inner { max-width: 820px; margin: 0 auto; }
.about-inner h2 { text-align: left; }
.about-copy { color: var(--text-2); font-size: 17px; margin: 20px 0 0; }
.about-copy + .about-copy { margin-top: 14px; }
.checklist {
  list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .6px; font-size: 15px;
}
.checklist li { display: flex; gap: 10px; align-items: center; }
.checklist li span { color: var(--cc-green); }
.about-inner .btn { margin-top: 30px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; gap: 16px; margin-top: 44px; }
.gallery-item {
  position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--hairline-soft);
  background: linear-gradient(135deg, #1a2210, #0c0f0a);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: .7rem .9rem; font-size: 13px; color: #fff;
  background: linear-gradient(0deg, rgba(4, 8, 4, .85), transparent);
}
.gallery-grid > :nth-child(1) { grid-row: span 2; }
.gallery-grid > :nth-child(5) { grid-column: span 2; }
.gallery-ph { display: flex; align-items: center; justify-content: center; color: rgba(141, 198, 63, .4); }
.gallery-ph svg { width: 46px; height: 46px; }
.gallery-hint { display: none; }
.gallery-marquee { display: none; }   /* mobile only — auto-scrolling one-row marquee */

/* Mobile hero logo: drop in, then float; water ripples where it lands */
@keyframes logo-drop {
  0%   { transform: translateY(-190px); opacity: 0; }
  55%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .6)) drop-shadow(0 0 5px rgba(255, 255, 255, .3)); }
  50%      { filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .6)) drop-shadow(0 0 20px rgba(255, 255, 255, .85)); }
}
.gallery-clickable { cursor: zoom-in; }
.gallery-clickable:focus-visible { outline: 2px solid var(--cc-green); outline-offset: 3px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 5vh 4vw;
  background: rgba(6, 8, 6, .93); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .22s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 100%; }
.lb-img {
  max-width: min(92vw, 1200px); max-height: 80vh; width: auto; height: auto; object-fit: contain;
  border-radius: var(--r-lg); border: 1px solid rgba(141, 198, 63, .35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .7);
}
.lb-caption {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .6px; font-size: 15px;
  color: rgba(235, 235, 245, .85); text-align: center; max-width: 90vw;
}
.lb-close, .lb-nav {
  position: absolute; background: rgba(22, 27, 32, .8); border: 1px solid var(--hairline);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.lb-close { top: 20px; right: 24px; width: 46px; height: 46px; font-size: 30px; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 34px; line-height: 1; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-close:hover, .lb-nav:hover { background: var(--cc-green); color: var(--cc-ink); }
.lb-nav:hover { transform: translateY(-50%) scale(1.06); }
.lb-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-cond); letter-spacing: 1px; font-size: 14px; color: var(--text-2);
}
@media (max-width: 620px) {
  .lb-nav { width: 42px; height: 42px; font-size: 28px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-close { top: 12px; right: 12px; }
  .lb-img { max-height: 74vh; }
}

/* ---------- Testimonials ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.review-card {
  margin: 0; background: var(--cc-panel-2); border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl); padding: 28px; display: flex; flex-direction: column;
}
.review-card .stars { color: var(--cc-green); font-size: 16px; letter-spacing: 3px; }
.review-card blockquote { margin: 16px 0 0; font-size: 17px; line-height: 1.55; color: #fff; }
.review-card figcaption {
  margin-top: auto; padding-top: 22px; font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .6px; color: var(--text-2); font-size: 14px;
}

/* ---------- FAQ ---------- */
.faq-inner { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details { background: var(--cc-panel-2); border: 1px solid var(--hairline-soft); border-radius: var(--r-lg); padding: 18px 22px; }
.faq-list summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; list-style: none;
  font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; font-size: 19px; color: #fff;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-mark { color: var(--cc-green); font-size: 24px; transition: transform .2s var(--ease); }
.faq-list details[open] .faq-mark { transform: rotate(45deg); }
.faq-list p { color: var(--text-2); margin: 14px 0 0; font-size: 16px; }

/* ---------- Contact ---------- */
.section-contact { background: linear-gradient(180deg, var(--app-bg), #0b1207); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h2 { text-align: left; }
.contact-lead { color: var(--text-2); font-size: 18px; margin: 20px 0 0; max-width: 440px; }
.contact-list { list-style: none; padding: 0; margin: 34px 0 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.ci-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--r-md);
  background: rgba(141, 198, 63, .12); border: 1px solid rgba(141, 198, 63, .3);
  display: flex; align-items: center; justify-content: center;
}
.ci-text { display: flex; flex-direction: column; min-width: 0; }
.ci-label { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1px; color: var(--gray); font-size: 12px; }
.ci-text a, .ci-text span[data-contact] { font-size: 19px; font-weight: 600; color: #fff; }
.ci-text a:hover { color: var(--cc-green); }
.ci-email {
  font-size: clamp(11px, 3.4vw, 16px) !important; white-space: nowrap;
  text-decoration: underline; text-decoration-color: var(--cc-green); text-underline-offset: 3px;
}
.ci-text-btn {
  align-self: flex-start; margin-top: 5px;
  display: inline-flex; align-items: center; line-height: 1;
  font-size: 13px !important; font-family: var(--font-cond); font-weight: 700 !important;
  text-transform: uppercase; letter-spacing: .6px; color: var(--cc-green) !important;
  border: 1px solid rgba(141, 198, 63, .5); border-radius: var(--r-pill); padding: 8px 20px;
}
.ci-text-btn:hover { background: rgba(141, 198, 63, .12); color: var(--cc-green-bright) !important; }

.contact-form {
  background: var(--cc-panel-2); border: 1px solid var(--hairline); border-radius: var(--r-xl);
  padding: 32px; box-shadow: var(--shadow-card);
}
.contact-form h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 30px; letter-spacing: .5px; margin: 0 0 22px; color: #fff; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field-row .field { margin-bottom: 0; }
.field label { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .8px; font-size: 13px; color: var(--text-2); }
.field input, .field select, .field textarea {
  background: var(--surface-inset); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 13px 14px; color: #fff; font-size: 16px; font-family: var(--font-body); outline: none;
  width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box;
  transition: border .15s var(--ease), box-shadow .15s var(--ease); color-scheme: dark;
}
/* iOS Safari gives date inputs an intrinsic width that ignores width:100% and
   overflows the field — reset the native appearance so it sizes to the box. */
.field input[type="date"] { -webkit-appearance: none; appearance: none; min-height: 49px; }
.field input[type="date"]::-webkit-date-and-time-value { text-align: left; margin: 0; }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .5; cursor: pointer; }
/* Reset the native select so it uses the same padding/height as the inputs,
   with a custom lime chevron. */
.field select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238DC63F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 14px;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(141, 198, 63, .6); box-shadow: 0 0 0 3px rgba(141, 198, 63, .15);
}
.field select option { background: #161B20; }
.contact-form .btn-block { margin-top: 4px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 14px 0 0; font-family: var(--font-cond); font-weight: 600; letter-spacing: .4px; font-size: 15px; min-height: 1.2em; }
.form-status.ok { color: var(--cc-green-bright); }
.form-status.err { color: var(--orange); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--hairline-soft); background: var(--cc-ink); }
.footer-top { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; padding-block: 44px; }
.footer-logo { height: 60px; width: auto; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .7px; font-size: 14px; }
.footer-nav a { color: var(--text-2); }
.footer-nav a:hover { color: var(--cc-green); }
.footer-bottom { border-top: 1px solid var(--hairline-soft); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; color: var(--gray); font-size: 13px; padding-block: 18px; }

.loading { grid-column: 1 / -1; text-align: center; color: var(--text-2); padding: 2rem; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .species-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid > :nth-child(3) { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .main-nav {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10, 12, 15, 0.97); backdrop-filter: blur(20px); padding: .5rem 22px 1.25rem;
    border-bottom: 1px solid var(--hairline-soft); transform: translateY(-130%); transition: transform .28s var(--ease);
    max-height: calc(100vh - 64px); overflow-y: auto; font-size: 17px;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--hairline-soft); color: #fff; }
  .main-nav .nav-cta { margin-top: 14px; border-bottom: 0; text-align: center; }
  .nav-toggle { display: flex; }
  /* Move the logo into the hero (big) and drop it from the header on mobile */
  .brand { display: none; }
  /* Big hero logo drops in and settles into greenish-white water */
  .hero-logo-wrap { display: block; position: relative; z-index: 2; text-align: center; margin: 0 auto 24px; }
  .hero-logo {
    display: inline-block; width: min(76%, 300px); height: auto; position: relative; z-index: 1;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .6));
    animation: logo-drop 1.1s cubic-bezier(.3, 1.35, .5, 1), logo-glow 4.5s ease-in-out 1.2s infinite;
  }
  /* Catchy tagline on the left, hamburger on the right */
  .header-tagline {
    display: flex; flex-direction: column; line-height: .9;
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: .5px;
  }
  .header-tagline .ht-1 { color: var(--cc-green); font-size: 17px; }
  .header-tagline .ht-2 { color: #fff; font-size: 17px; }
  .hero-logo {
    display: block; width: min(76%, 300px); height: auto; margin: 0 auto 24px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .55));
  }
  .hero-inner { padding-top: 40px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .steps-line, .steps-dot { display: none; }
  .step-num { animation: none; }
  /* Hide "How It Works" (and its nav links) on mobile; desktop keeps it */
  #expect { display: none; }
  .main-nav a[href="#expect"], .footer-nav a[href="#expect"] { display: none; }
  .captain-grid { grid-template-columns: 1fr; gap: 44px; }
  /* Boat photo sits under the hero buttons on mobile, and is dropped from the gallery */
  .hero-boat {
    display: block; width: 100%; height: auto; margin-top: 22px;
    border-radius: var(--r-lg); border: 1px solid var(--hairline-soft);
  }
  .gallery-grid > .gallery-item:nth-child(5) { display: none; }
  .section { padding: 72px 0; }
}
@media (max-width: 620px) {
  .species-grid, .reviews-grid { grid-template-columns: 1fr; }
  .trips-grid { grid-template-columns: minmax(0, 380px); }
  /* Hero buttons side-by-side on mobile to fill the space */
  .hero-actions { flex-wrap: nowrap; gap: 10px; }
  .hero-actions .btn { flex: 1 1 0; min-width: 0; padding: 14px 10px; font-size: 15px; letter-spacing: .5px; white-space: nowrap; }
  .hero-actions .btn svg { display: none; }
  .reviews-grid > :nth-child(3) { grid-column: auto; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--hairline-soft); text-align: center; padding: 18px; }
  .stat:last-child { border-bottom: 0; }
  .stat-label { white-space: nowrap; }
  /* Credential chips: 3 on top, 2 on bottom, centered */
  .credentials { justify-content: center; gap: 8px; }
  .credentials li { font-size: 12px; padding: 7px 11px; }
  .credentials li.cred-break { display: block; flex-basis: 100%; height: 0; padding: 0; margin: 0; border: 0; background: none; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 16px; }
  .field-row .field { margin-bottom: 0; }
  /* Gallery: auto-scrolling one-row marquee on mobile */
  #gallery-grid { display: none; }
  .gallery-hint { display: none; }
  .gallery-marquee { display: block; overflow: hidden; margin-inline: -22px; }
  .gallery-track {
    display: flex; gap: 12px; width: max-content;
    will-change: transform;   /* moved by JS (see startMarquee) so it can pause for the lightbox */
  }
  .marquee-img {
    width: 210px; height: 280px; flex: 0 0 auto; object-fit: cover; cursor: zoom-in;
    border-radius: var(--r-lg); border: 1px solid var(--hairline-soft);
  }
  .footer-top { flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 22px; }
  .footer-nav { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
}

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