/* =========================================
   HALI HUNTER CHARTERS — main.css
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600&family=Source+Serif+4:ital,wght@0,300;0,400;1,300&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jaini&display=swap');

/* ----- CSS Variables ----- */
:root {
  --navy:       #0d1f2d;
  --navy-light: #162d40;
  --navy-mid:   #1e3a50;
  --ocean:      #1a5c7a;
  --ocean-light:#2378a0;
  --seafoam:    #1da2e4;
  --gold:       #d4933a;
  --gold-light: #e8b060;
  --cream:      #f5f0e8;
  --white:      #ffffff;
  --text-main:  #f0ece3;
  --text-muted: #9db5c4;
  --text-dark:  #1a2e3d;

  --font-display: 'Teko', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-accent:  'Source Serif 4', serif;

  --radius:    8px;
  --radius-lg: 14px;
  --shadow:    0 4px 24px rgba(0,0,0,0.35);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.2);
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--navy);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  line-height: 1.1;
  font-weight: 600;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 0.6rem;
}

/* ----- Layout Utilities ----- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 80px 0; }

.divider {
  width: 60px;
  height: 3px;
  background: var(--text-muted);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}

/* =========================================
   STICKY CONTACT BAR
   ========================================= */
#contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 31, 45, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(77, 184, 160, 0.2);
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.3s;
}

.contact-bar__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  white-space: nowrap;
}

.contact-bar__logo span {
  color: var(--seafoam);
}

.contact-bar__buttons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn-call {
  background: var(--seafoam);
  color: var(--navy);
}
.btn-call:hover { background: #5da7cf; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4); }

.btn-email {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-email:hover { border-color: var(--seafoam); color: var(--seafoam); }

.btn-rates {
  background: #2a9d5c;
  color: #ffffff;
}
.btn-rates:hover { background: #5da7cf; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4); }

.btn-icon {
  font-size: 1rem;
  line-height: 1;
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,31,45,0.3) 0%, rgba(13,31,45,0.7) 60%, rgba(13,31,45,0.97) 100%),
    url('images/hero__bg.JPEG') center/cover no-repeat;
  z-index: 0;
}

/* placeholder bg if no photo yet */
.hero__bg--placeholder {
  background:
    linear-gradient(to bottom, rgba(13,31,45,0.2) 0%, rgba(13,31,45,0.85) 70%, var(--navy) 100%),
    linear-gradient(135deg, #0d3b5e 0%, #0a2233 100%);
}

#hero .container {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: flex;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__badge {
  background: var(--seafoam);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

.hero__location {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero__title-wrap {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: flex;
  margin-bottom: 30rem;
  padding-top: 1.5rem;
}

.hero__logo-top {
  display: block;
  width: 45em;
  height: auto;
  object-fit: contain;
  margin: 0 0 0.85rem 0;
  opacity: 0.9;
  filter: invert(1);
}

.hero__location--top {
  text-align: flex;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}


@media (max-width: 1024px) {
  .hero__top {
    margin-bottom: 40rem;
  }
  .hero__logo-top {
    width: 43em;
  }
  .hero__location--top {
    margin-left: 0.75rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 820px) {
  .hero__top {
    margin-bottom: 25rem;
  }
  .hero__logo-top {
    width: 35em;
  }
  .hero__location--top {
    margin-left: 1rem;
    font-size: 0.9rem;
  }

  .hero__species {
    padding-top: 5.5rem;
  }
}

@media (max-width: 769px) {
  .hero__species {
    padding-top: 1rem;
  }
}

@media (max-width:541px) and (max-height: 721px) {
  .hero__top {
    margin-bottom: 10.25rem;
  }
  .hero__logo-top {
    width: 21em;
  }
  
  .hero__location--top {
    margin-left: 1rem;
    font-size: 0.82rem;
  }

  .hero__title-wrap {
    font-size: 0.95rem;
  }

  .hero__species {
    padding-top: 0.01rem;
  }
}

@media (max-width: 430px) {
  .hero__top {
    margin-bottom: 16.5rem;
  }
  .hero__logo-top {
    width: 23em;
  }
  .hero__location--top {
    margin-left: 0.75rem;
    font-size: 0.9rem;
  }

  .hero__species {
    padding-top: 1rem;
  }
}

@media (max-width: 400px) {
  .hero__top {
    margin-bottom: 13.25rem;
  }
  .hero__logo-top {
    width: 21em;
  }
  
  .hero__location--top {
    margin-left: 1rem;
    font-size: 0.82rem;
  }

  .hero__title-wrap {
    font-size: 0.95rem;
  }
}

@media (max-width: 376px) {
  .hero__top {
    margin-bottom: 12rem;
  }
  .hero__logo-top {
    width: 20em;
  }
  
  .hero__location--top {
    margin-left: 0.75rem;
    font-size: 0.82rem;
  }
  .hero__title-wrap {
    font-size: 0.95rem;
  }
}

.hero__title {
  color: var(--seafoam);
  font-size: 250%;
  font-family: var(--font-accent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  text-align: flex;
}

.hero__logo {
  display: block;
  width: 12.1em;
  height: 3.2em;
  object-fit: contain;
  margin: 0 0 0.75rem 0;
  opacity: 0.9;
  filter: invert(1);
}

.hero__location--centered {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}


.hero__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.hero__species {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.species-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.species-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--seafoam);
  flex-shrink: 0;
}

/* =========================================
   VESSEL SECTION
   ========================================= */
#vessel {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vessel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.vessel__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  box-shadow: var(--shadow);
}

.vessel__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vessel__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
  background: var(--navy-mid);
  border: 2px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}

.vessel__photo-placeholder .placeholder-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.vessel_desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.vessel__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.spec-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}

.spec-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.spec-card__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}

/* =========================================
   CAPTAIN BIO SECTION
   ========================================= */
#captain {
  background: var(--navy);
}

.captain__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.captain__photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--navy-mid);
  box-shadow: var(--shadow);
  border: 3px solid rgba(77,184,160,0.2);
  position: relative;
}

.captain__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.captain__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
  background: var(--navy-mid);
  border: 2px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}

.captain__photo-placeholder .placeholder-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.captain__bio p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.75;
}

.captain__bio p strong {
  color: var(--text-main);
  font-family: var(--font-body);
}

.captain__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.credential-tag {
  background: var(--navy-mid);
  border: 1px solid rgba(77,184,160,0.25);
  color: var(--seafoam);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
}

/* =========================================
   REVIEWS SECTION
   ========================================= */
#reviews {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.reviews__stars {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.reviews__summary {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.reviews__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.review-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.review-card__stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.6rem; }

.review-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-family: var(--font-accent);
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card__author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.05em;
}
/*
.btn-fishingbooker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: #1c62ae;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid #1a679e;
  transition: box-shadow 0.2s, transform 0.15s, background 0.2s;
  text-decoration: none;
}

.btn-fishingbooker::before {
  content: '🐟';
  font-size: 1rem;
}

.btn-fishingbooker:hover {
  background: #f0fdf7;
  box-shadow: 0 4px 20px rgba(26,158,110,0.25);
  transform: translateY(-1px);
} */

/* =========================================
   FOOTER
   ========================================= */
/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #080f16;
  padding: 2.75rem 1.5rem 2.25rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.footer__logo {
  width: clamp(7rem, 16vw, 10rem);
  height: auto;
  display: block;
  opacity: 0.95;
  filter: invert(1);
}

.footer__brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--text-main);
}

.footer__contact,
.footer__location,
.footer__copy {
  margin: 0;
  text-align: center;
}

.footer__contact {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer__location {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer__copy {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
  max-width: 34rem;
}

.footer__divider {
  display: inline-block;
  margin: 0 0.45rem;
  color: rgba(255,255,255,0.35);
}

footer a {
  color: var(--seafoam);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .footer__brand {
    gap: 0.35rem;
  }

  .footer__logo {
    width: 7.25rem;
  }

  .footer__brand-text {
    font-size: 1.05rem;
  }

  .footer__contact,
  .footer__location {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .footer__divider {
    margin: 0 0.35rem;
  }

  .footer__copy {
    font-size: 0.76rem;
  }
}

/* =========================================
   RATES PAGE — Trip cards
   ========================================= */
#rates-hero {
  padding: 160px 0 80px;
  background:
    linear-gradient(to bottom, rgba(13,31,45,0.4) 0%, rgba(13,31,45,0.9) 80%, var(--navy) 100%),
    url('images/hali4.png') center/cover no-repeat;
  text-align: center;
}

#rates-hero h1 { color: var(--white); }
#rates-hero p {
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

#trip-types { background: var(--navy); }
#pricing     { background: var(--navy-light); border-top: 1px solid rgba(255,255,255,0.05); }
#species-info{ background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05); }
#book-cta {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.book-cta--map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/map.JPEG') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.book-cta--map::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--navy-light) 0%,
    transparent 20%,
    transparent 80%,
    var(--navy-light) 100%
  );
  z-index: 1;
}

#book-cta .container {
  position: relative;
  z-index: 2;
}

.btn-home {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-home:hover { border-color: var(--seafoam); color: var(--seafoam); }

.trips__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.trip-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.trip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.trip-card--featured {
  border-color: var(--gold);
  position: relative;
}

.trip-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--seafoam);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.trip-card__header {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trip-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.trip-card__title { color: var(--white); margin-bottom: 0.3rem; }
.trip-card__duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trip-card__body { padding: 1.5rem 1.75rem; }

.trip-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trip-card__price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.trip-card__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trip-card__includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trip-card__includes li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--seafoam);
  flex-shrink: 0;
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pricing-table th {
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-main);
}

.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(255,255,255,0.03); }

.pricing-table .price-cell {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
}

/* Species grid — photo-backed cards */
.species-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.species-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
  background-color: var(--navy-mid);
  /* photo set via inline CSS variable --species-bg */
  background-image: var(--species-bg, none);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.species-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.species-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 15, 22, 0.97) 0%,
    rgba(8, 15, 22, 0.65) 45%,
    rgba(8, 15, 22, 0.15) 100%
  );
  border-radius: var(--radius-lg);
  transition: background 0.3s ease;
}

.species-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(8, 15, 22, 0.98) 0%,
    rgba(8, 15, 22, 0.55) 50%,
    rgba(8, 15, 22, 0.1) 100%
  );
}

.species-card__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 1;
}

.species-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.species-card__season {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 0.65rem;
}

.species-card__desc {
  font-size: 0.83rem;
  color: rgba(157, 181, 196, 0.9);
  line-height: 1.6;
  /* hide desc by default, slide up on hover */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.species-card:hover .species-card__desc {
  max-height: 120px;
  opacity: 1;
}

/* Fallback placeholder when no photo is set */
.species-card:not([style]) {
  background: var(--navy-mid);
  border: 1px dashed rgba(255,255,255,0.1);
}

/* Book CTA */
.book-cta__heading { color: var(--white); margin-bottom: 0.5rem; }
.book-cta__sub {
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.book-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Licence Alert Block ---- */
.licence-alert {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(212, 147, 58, 0.1);
  border: 2px solid var(--gold);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}
 
.licence-alert__icon {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
 
.licence-alert__body {
  flex: 1;
}
 
.licence-alert__heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
 
.licence-alert__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
 
.licence-alert__text strong {
  color: var(--text-main);
}
 
.licence-alert__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
 
/* licence purchase CTA button */
.btn-licence {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: #2a9d5c;
  color: var(--navy);
  border-radius: var(--radius);
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(212, 147, 58, 0.3);
  align-self: center;
}
 
.btn-licence:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 147, 58, 0.45);
}
 
.btn-licence:active { transform: scale(0.97); }
 
.btn-licence__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
 
.btn-licence__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
 
.btn-licence__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}
 
.btn-licence__sub {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.03em;
}
 
.btn-licence__arrow {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 0.2rem;
  flex-shrink: 0;
}
 
.licence-alert__print-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-top: 1px ;
  border-bottom: 1px ;
  padding: 0.55rem 0;
  margin: 0.15rem 0.75rem;
  line-height: 1.5;
  align-self: stretch;
}
 
.licence-alert__print-note strong {
  color: var(--gold-light);
}



/* what to bring */
#what-to-bring {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0;
}

.bring__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 700px;
}

.bring__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bring__check {
  color: var(--seafoam);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.bring__title {
  color: var(--text-main);
  font-size: 0.9rem;
  display: block;
}

.bring__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {

  .contact-bar__logo { display: none; }

  #hero { padding-top: 70px; }

  .vessel__grid,
  .captain__grid { grid-template-columns: 1fr; gap: 2rem; }

  .captain__grid { grid-template-rows: auto auto; }
  .captain__photo-wrap { max-width: 260px; aspect-ratio: 1/1; }

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

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

  .species-grid { grid-template-columns: 1fr 1fr; }
  .species-card { aspect-ratio: 4/5; }
  .species-card__desc { max-height: 120px; opacity: 1; }

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

  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.8rem; }

  section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .contact-bar__buttons .btn-email { display: none; }
  .species-grid { grid-template-columns: 1fr; }
  .species-card { aspect-ratio: 16/9; }
  .species-card__desc { max-height: 120px; opacity: 1; }
  .pricing-table { font-size: 0.85rem; }
}

/* Hide logo at 500px and below so all 3 buttons fit cleanly */
@media (max-width: 500px) {
  .contact-bar__logo { display: none; }
  .btn-email {display: none;}
 
  #contact-bar {
    justify-content: center;
    padding: 0.65rem 1rem;
  }
 
  .contact-bar__buttons {
    width: 100%;
    justify-content: center;
    gap: 0.45rem;
  }
 
  .btn {
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
  }
}
 
@media (max-width: 430px) {
  /* Very small phones: hide email button, just call + rates */
  .contact-bar__buttons .btn-email { display: none; }
  .btn-email {display: none;}
 
  .contact-bar__buttons {
    gap: 0.5rem;
  }
 
  .btn {
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
  }


 
  .species-grid { grid-template-columns: 1fr; }
  .pricing-table { font-size: 0.85rem; }
}

 
/* =========================================
   PHOTO GALLERY — SLIDER
   ========================================= */
#gallery {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 60px;
}
 
.gallery__intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
 
.gallery__intro p {
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}
 
/* ---- Slider wrapper — constrained on desktop, full-bleed on mobile ---- */
.slider__wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  height: clamp(260px, 52vw, 580px);
  background: var(--navy-mid);
  user-select: none;
  border-radius: var(--radius-lg);
}

/* On large screens add horizontal padding so the slider
   sits inset from the page edges with some air around it */
#gallery .slider__wrapper {
  margin: 0 auto;
}

@media (min-width: 769px) {
  #gallery {
    padding-bottom: 80px;
  }
  .slider__wrapper {
    /* cap height more aggressively on big monitors */
    height: clamp(380px, 42vw, 560px);
  }
}
 
/* The scrolling track — all slides in a row */
.slider__track {
  display: flex;
  height: 100%;
  /* JS sets transform: translateX() to slide */
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
 
/* Each individual slide */
.slider__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
 
.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
 
/* Caption bar at bottom of each slide */
.slider__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1rem;
  background: linear-gradient(to top, rgba(8,15,22,0.82) 0%, transparent 100%);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}
 
/* ---- Prev / Next arrows ---- */
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 31, 45, 0.75);
  border: 1.5px solid rgba(77, 184, 160, 0.35);
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  backdrop-filter: blur(4px);
}
 
.slider__arrow:hover {
  background: rgba(77, 184, 160, 0.25);
  border-color: var(--seafoam);
}
 
.slider__arrow:active { transform: translateY(-50%) scale(0.93); }
 
.slider__arrow--prev { left: 1rem; }
.slider__arrow--next { right: 1rem; }
 
/* ---- Dot indicators ---- */
.slider__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
 
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
 
.slider__dot.active {
  background: var(--seafoam);
  transform: scale(1.25);
}
 
/* ---- Lightbox ---- */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 12, 20, 0.97);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
}
 
#lightbox.open { display: flex; }
 
#lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 60px rgba(0,0,0,0.7);
  cursor: default;
}
 
#lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
#lightbox__close:hover { background: rgba(255,255,255,0.2); }
 
#lightbox__prev,
#lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}
#lightbox__prev { left: 1.25rem; }
#lightbox__next { right: 1.25rem; }
#lightbox__prev:hover,
#lightbox__next:hover { background: rgba(255,255,255,0.22); }
 
#lightbox__counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}
 
/* Slider responsive tweaks */
@media (max-width: 600px) {
  .slider__arrow {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .slider__arrow--prev { left: 0.5rem; }
  .slider__arrow--next { right: 0.5rem; }
  #lightbox__prev { left: 0.5rem; }
  #lightbox__next { right: 0.5rem; }
}