@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,800;1,900&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --bg:      #060D16;
  --bg2:     #0A1624;
  --bg3:     #0F1E30;
  --text:    #D8EBF2;
  --muted:   #4A6E82;
  --accent:  #12BF9C;   /* teal */
  --rust:    #C44E1A;   /* weathered rust — secondary hit */
  --border:  #152232;
  --border2: #1F3348;   /* heavier border for key lines */
  --nav-h:   176px;

  /* Heavy grain (data URI SVG noise) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── GRAIN OVERLAY (applied via pseudo where needed) ────── */
.has-grain { position: relative; }
.has-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
  opacity: 0.55;
}

/* ─── SECTION DIAGONAL CUTS ──────────────────────────────── */
/* Sharp angled cut going up-left to down-right */
.cut-down {
  height: 56px;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.cut-down svg { display: block; width: 100%; height: 100%; }

.cut-up {
  height: 56px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}
.cut-up svg { display: block; width: 100%; height: 100%; }

/* Thick ruled accent line — used between sections */
.thick-rule {
  height: 3px;
  background: var(--rust);
  width: 100%;
  opacity: 0.7;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes waterShimmer {
  0%   { opacity: 0.06; transform: scale(1); }
  50%  { opacity: 0.14; transform: scale(1.05); }
  100% { opacity: 0.06; transform: scale(1); }
}

@keyframes waveScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  flex-direction: column;
  background: var(--bg);
  z-index: 200;
}

/* Rust→teal stripe at very top */
nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rust) 0%, var(--accent) 50%, var(--rust) 100%);
}

/* ── Top tier: social | LOGO | CTA ── */
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 48px 0;
  flex: 1;
}

.nav-top-left,
.nav-top-right {
  display: flex;
  align-items: center;
  width: 220px;
  gap: 20px;
}
.nav-top-right { justify-content: flex-end; }

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
  filter: brightness(1.08);
}
.nav-logo .accent { color: var(--accent); }
.nav-logo .reg {
  font-size: 10px;
  color: var(--muted);
  vertical-align: super;
  font-weight: 400;
  margin-left: 2px;
}

.nav-social {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-social:hover { color: var(--text); }

.nav-social--icon { display: inline-flex; align-items: center; gap: 7px; }
.nav-social--icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

/* ── Bottom tier: centered nav links ── */
.nav-bottom {
  border-top: 1px solid var(--border2);
  border-bottom: 3px solid var(--rust);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 0 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}
.nav-links li { display: flex; align-items: baseline; }

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--rust);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid var(--rust);
  transition: all 0.15s;
}
.nav-cta:hover {
  background: transparent;
  color: var(--rust);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;          /* thicker toggle lines */
  background: var(--text);
  transition: all 0.2s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 190;
  /* clear the fixed header so the first item isn't hidden behind it */
  padding: calc(var(--nav-h) + 28px) 28px 60px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 8vw, 38px);
  text-transform: uppercase;
  line-height: 1.05;
  padding: 16px 0;
  border-bottom: 2px solid var(--border2);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav a .m-num { font-size: 12px; color: var(--muted); font-weight: 400; }
.mobile-nav .mobile-cta {
  margin-top: 32px;
  background: var(--rust);
  color: var(--text);
  font-size: 18px;
  padding: 18px 0;
  justify-content: center;
  border: none;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid var(--text);
  color: var(--text);
  transition: all 0.15s;
}
.btn:hover { background: var(--text); color: var(--bg); }

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #060D16;
}
.btn--accent:hover { background: transparent; color: var(--accent); }

.btn--rust {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--text);
}
.btn--rust:hover { background: transparent; color: var(--rust); }

.btn--ghost {
  background: transparent;
  border-color: var(--border2);
  color: var(--muted);
}
.btn--ghost:hover { border-color: var(--text); color: var(--text); }

.arrow { transition: transform 0.15s; }
.btn:hover .arrow { transform: translateX(5px); }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
.label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
.label--accent { color: var(--accent); }
.label--rust   { color: var(--rust); }

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 10vw, 160px);
  line-height: 0.87;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;          /* bumped from 800 */
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.90;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
}
p { font-size: 15px; line-height: 1.75; color: var(--muted); }

/* ─── LAYOUT ──────────────────────────────────────────────── */
main { padding-top: var(--nav-h); }
.section { padding: 120px 48px; }
.divider { border-top: 2px solid var(--border2); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* extra top padding pushes the headline down so the photo reads through */
  padding: 320px 48px 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  /* Crunch the contrast for a harder, grittier look */
  filter: contrast(1.06) saturate(0.95) brightness(0.78);
}

/* Dark gradient bottom-up */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,13,22,0.92) 0%, rgba(6,13,22,0.35) 38%, rgba(6,13,22,0) 68%);
}

/* Heavy grain over the whole hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* Animated teal glow from below */
.hero-water-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: radial-gradient(
    ellipse 80% 50% at 25% 100%,
    rgba(18, 191, 156, 0.09) 0%,
    transparent 70%
  );
  z-index: 0;
  animation: waterShimmer 8s ease-in-out infinite;
  pointer-events: none;
}

/* Scrolling wave pattern at base */
.hero-wave-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%;
  height: 80px;
  z-index: 1;
  pointer-events: none;
  animation: waveScroll 22s linear infinite;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--rust); }
.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust);
}

.hero h1 { margin-bottom: 28px; }

.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(216, 235, 242, 0.55);
  max-width: 440px;
  margin-bottom: 44px;
}

.hero-scroll {
  position: absolute;
  right: 48px;
  bottom: 72px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--rust), transparent);
}

/* ─── STATS STRIP ─────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--border2);
  background: var(--bg2);
  background-image: var(--grain);
  background-blend-mode: overlay;
}

.stat {
  padding: 48px;
  border-right: 2px solid var(--border2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.stat:last-child { border-right: none; }

/* Rust slash accent — decorative diagonal */
.stat::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border: 2px solid var(--rust);
  opacity: 0.12;
  transform: rotate(20deg);
}

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: var(--text);
}
.stat-value .unit { font-size: 34px; color: var(--accent); }

/* Stats rise into place as the strip scrolls in */
.stats .stat {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.stats--in .stat { opacity: 1; transform: none; }
.stats--in .stat:nth-child(2) { transition-delay: 0.12s; }
.stats--in .stat:nth-child(3) { transition-delay: 0.24s; }
.stats--in .stat:nth-child(4) { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .stats .stat { opacity: 1; transform: none; transition: none; }
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── TRIP CARDS ──────────────────────────────────────────── */
.trips-header {
  padding: 80px 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 2px solid var(--border2);
}
.trips-header-left { display: flex; flex-direction: column; gap: 16px; }
.trips-header h2 { max-width: 500px; }

.trips-grid { display: grid; grid-template-columns: 1fr 1fr; }

.trip-card {
  border-top: 2px solid var(--border2);
  border-right: 2px solid var(--border2);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  position: relative;
  transition: background 0.2s;
}
.trip-card:nth-child(2n) { border-right: none; }
.trip-card:hover { background: var(--bg2); }

/* Rust diagonal slash in corner on hover */
.trip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 4px;
  background: var(--rust);
  z-index: 3;
  transition: width 0.35s ease;
}
.trip-card:hover::before { width: 100%; }

.trip-card-img-wrap { overflow: hidden; position: relative; }

.trip-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.65s ease;
  filter: contrast(1.08) saturate(1.1) brightness(0.72);
}
.trip-card:hover .trip-card-img {
  transform: scale(1.06);
  filter: contrast(1.1) saturate(1.2) brightness(0.85);
}

/* Heavy vignette on card images */
.trip-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6,13,22,0.6) 100%);
  pointer-events: none;
}

.trip-card-body {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.trip-card-meta { display: flex; justify-content: space-between; align-items: center; }
.trip-card h3 { transition: color 0.15s; }
.trip-card:hover h3 { color: var(--accent); }
.trip-card p { font-size: 14px; line-height: 1.7; }

.trip-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: gap 0.15s, color 0.15s;
}
.trip-link:hover { gap: 14px; color: var(--accent); }

/* ─── SPLIT SECTION ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--border2);
  min-height: 640px;
}
.split--reverse .split-img  { order: 1; }
.split--reverse .split-text { order: 0; }

.split-img { overflow: hidden; position: relative; }
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  transition: transform 0.7s ease;
  filter: contrast(1.1) saturate(1.05) brightness(0.85);
}
.split:hover .split-img img { transform: scale(1.04); }

.split-text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  background: var(--bg2);
  background-image: var(--grain);
  background-blend-mode: overlay;
}
.split-text h2 { margin-bottom: 0; }
.split-text p { max-width: 420px; }

/* ─── VIDEO BREAK ────────────────────────────────────────── */
.video-break {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-break-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.1) saturate(1.05) brightness(0.75);
}
.video-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,13,22,0.55) 0%,
    rgba(6,13,22,0.25) 40%,
    rgba(6,13,22,0.25) 60%,
    rgba(6,13,22,0.65) 100%
  );
  /* Rust left-edge accent */
  border-left: 5px solid var(--rust);
}
.video-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.video-break-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 10vw, 140px);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  margin-bottom: 24px;
}
.video-break-sub {
  font-size: 15px;
  color: var(--text);
  opacity: 0.75;
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* ─── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  padding: 140px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  border-top: 2px solid var(--border2);
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: contrast(1.3) saturate(0.7);
}

.cta-banner--rates { padding: 100px 48px; }

/* Banner photo — faint texture behind the copy on desktop */
.cta-banner-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: contrast(1.3) saturate(0.7);
  pointer-events: none;
  z-index: 0;
}
.cta-banner--photo .cta-banner-photo {
  opacity: 0.55;
  object-position: center 25%;
  filter: contrast(1.03) saturate(1) brightness(0.6);
}

/* Text sits over a photo here, so the muted blue label is unreadable */
.cta-banner--photo .label { color: var(--text); }
.cta-banner--photo h2,
.cta-banner--photo p { text-shadow: 0 2px 18px rgba(6, 13, 22, 0.9); }

/* Photo-forward CTA — pulls the image back so the whole scene reads */
.cta-banner--photo { min-height: 620px; }
.cta-banner--photo .cta-banner-bg {
  opacity: 0.55;
  background-size: cover;
  background-position: center 25%;
  filter: contrast(1.03) saturate(1) brightness(0.6);
}
.cta-banner--photo .cta-banner-content { position: relative; z-index: 3; }

/* Grain on CTA */
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  mix-blend-mode: overlay;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.cta-banner h2 { max-width: 700px; }


/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  border-top: 2px solid var(--border2);
  padding: 80px 48px 48px;
  background: var(--bg);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--rust) 0%, var(--accent) 40%, var(--rust) 100%);
  opacity: 0.5;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 72px;
  border-bottom: 2px solid var(--border2);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  line-height: 0;
}
.footer-logo img {
  height: 88px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.footer-logo:hover img { opacity: 0.75; }
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 240px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 2px solid var(--border2);
  padding: 8px 16px;
  transition: all 0.15s;
}
.footer-socials a:hover { border-color: var(--rust); color: var(--rust); }

.footer-col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--accent); }
.footer-links li.info { font-size: 13px; color: var(--muted); line-height: 1.55; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ─── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  padding: 100px 48px 72px;
  border-bottom: 2px solid var(--border2);
  background: var(--bg2);
  background-image: var(--grain);
  background-blend-mode: overlay;
  position: relative;
  overflow: hidden;
}

/* Diagonal hatching lines — like a worn work surface */
.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: repeating-linear-gradient(
    -20deg,
    transparent,
    transparent 55px,
    rgba(18, 191, 156, 0.04) 55px,
    rgba(18, 191, 156, 0.04) 56px
  );
  pointer-events: none;
}

/* Rust bar on left edge */
.page-header::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--rust);
  opacity: 0.7;
}

.page-header-label { margin-bottom: 20px; }
.page-header h1 {
  font-size: clamp(60px, 9vw, 140px);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.page-header-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ─── FISHING PAGE ─────────────────────────────────────────── */
.fishing-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--border2);
  min-height: 500px;
}
.fishing-item--reverse .fishing-item-img { order: 1; }
.fishing-item--reverse .fishing-item-text { order: 0; }

.fishing-item-img { overflow: hidden; background: var(--bg2); }
.fishing-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
  transition: transform 0.65s ease;
  filter: contrast(1.12) saturate(1.1) brightness(0.85);
}
.fishing-item:hover .fishing-item-img img { transform: scale(1.05); }

.fishing-item-text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  background: var(--bg);
  background-image: var(--grain);
  background-blend-mode: overlay;
}
.fishing-item--reverse .fishing-item-text {
  background: var(--bg2);
  background-image: var(--grain);
  background-blend-mode: overlay;
}

.fishing-item h2 { font-size: clamp(40px, 4.5vw, 72px); }
.fishing-item p { max-width: 400px; }

.species-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.species-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 2px solid var(--border2);
  padding: 6px 12px;
  transition: all 0.15s;
}
.species-tag:hover { border-color: var(--rust); color: var(--rust); }

/* ─── RATES PAGE ─────────────────────────────────────────── */
.rates-intro {
  padding: 120px 48px 88px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  border-bottom: 2px solid var(--border2);
  background: var(--bg2);
  background-image: var(--grain);
  background-blend-mode: overlay;
}
.rates-intro p { max-width: 440px; }

.rates-list { padding: 0 48px; }

.rate-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: 64px 0;
  border-bottom: 2px solid var(--border2);
  position: relative;
}

/* Rust vertical left rule that sweeps in on hover */
.rate-item::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--rust);
  transition: height 0.3s ease;
}
.rate-item:hover::before { height: 100%; }

.rate-left { display: flex; flex-direction: column; gap: 14px; }
.rate-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.92;
  text-transform: uppercase;
}
.rate-desc { font-size: 14px; color: var(--muted); max-width: 460px; line-height: 1.7; }

.rate-prices-col { display: flex; flex-direction: column; gap: 24px; text-align: right; }
.rate-price-block { display: flex; flex-direction: column; gap: 4px; }
.rate-price-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.rate-price-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
}
.rate-price-detail { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }

.rates-note {
  padding: 60px 48px;
  border-bottom: 2px solid var(--border2);
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--bg2);
}
.rates-note p { max-width: 600px; font-size: 14px; }

/* ─── GUIDE PAGE ─────────────────────────────────────────── */
.guide-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--border2);
  min-height: 85vh;
}
.guide-hero-img { overflow: hidden; }
.guide-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
  filter: contrast(1.12) saturate(1.05) brightness(0.85);
}

.guide-hero-text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: var(--bg2);
  background-image: var(--grain);
  background-blend-mode: overlay;
}
.guide-hero-text h1 { font-size: clamp(52px, 6vw, 88px); margin-bottom: 4px; }
.guide-hero-text .guide-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.guide-hero-text p { max-width: 420px; }

.guide-bio {
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  border-bottom: 2px solid var(--border2);
  align-items: center;
}
.guide-bio-right { display: flex; flex-direction: column; gap: 20px; }
.guide-bio-right p { max-width: 460px; }

.guide-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text);
  border-left: 4px solid var(--rust);
  padding-left: 28px;
  margin: 12px 0;
}

.guide-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--border2);
}
.guide-photo { overflow: hidden; border-right: 2px solid var(--border2); }
.guide-photo:last-child { border-right: none; }
.guide-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.65s ease;
  filter: contrast(1.1) saturate(1.05) brightness(0.88);
}
.guide-photo:hover img { transform: scale(1.04); }

.boat-section {
  padding: 120px 48px;
  border-bottom: 2px solid var(--border2);
  background-image: var(--grain);
  background-blend-mode: overlay;
}
.boat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.boat-img { overflow: hidden; }
.boat-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.65s ease;
  filter: contrast(1.1) saturate(1.05) brightness(0.88);
}
.boat-img:hover img { transform: scale(1.03); }
.boat-text { display: flex; flex-direction: column; gap: 20px; }
.boat-spec {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.boat-text p { max-width: 420px; }

.trips-intro {
  max-width: 660px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.trips-intro + .trips-intro { margin-top: -4px; }

/* ─── CAPTIONED FEATURE PHOTO ─────────────────────────────── */
.photo-feature {
  border-top: 2px solid var(--border2);
  background: var(--bg2);
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.photo-feature img {
  width: auto;
  max-width: min(620px, 100%);
  max-height: 72vh;
  height: auto;
  object-fit: contain;
  display: block;
  border: 1px solid var(--border);
}
.photo-feature figcaption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 900px) {
  .photo-feature { padding: 56px 24px; }
  .photo-feature img { max-width: 100%; max-height: 60vh; }
}

.guide-quote-lead {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ─── SLIDESHOW ───────────────────────────────────────────── */
.slideshow-section {
  border-top: 2px solid var(--border2);
  background: var(--bg2);
  padding: 72px 48px;
}
.slideshow { max-width: 900px; margin: 0 auto; }

.slideshow-stage {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  height: clamp(380px, 62vh, 640px);
  overflow: hidden;
}
.slides { list-style: none; margin: 0; padding: 0; height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.slide[data-active="true"] { opacity: 1; pointer-events: auto; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(6, 13, 22, 0.72);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  z-index: 3;
}
.slide-nav:hover { background: var(--rust); border-color: var(--rust); }
.slide-prev { left: 14px; }
.slide-next { right: 14px; }

.slideshow-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}
.slide-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  flex: 1;
}
.slide-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--muted);
  min-width: 58px;
  text-align: right;
}
.slide-play {
  background: none;
  border: 1px solid var(--border2);
  color: var(--muted);
  width: 30px;
  height: 30px;
  font-size: 9px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.slide-play:hover { color: var(--text); border-color: var(--text); }

@media (max-width: 900px) {
  .slideshow-section { padding: 56px 20px; }
  .slideshow-stage { height: clamp(300px, 52vh, 460px); }
  .slide-nav { width: 38px; height: 38px; font-size: 15px; }
  .slide-prev { left: 8px; }
  .slide-next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
}

/* ─── GUIDE GALLERY ───────────────────────────────────────── */
.gallery-section {
  padding: 80px 48px;
  border-top: 2px solid var(--border2);
  background: var(--bg2);
}
.gallery-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  /* contain keeps the whole frame visible instead of cropping in */
  object-fit: contain;
  transition: transform 0.5s ease, opacity 0.2s;
  opacity: 0.9;
}
.gallery-item:hover img { transform: scale(1.04); opacity: 1; }

@media (max-width: 900px) {
  .gallery-section { padding: 60px 24px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
}

.brands-section {
  padding: 72px 48px;
  border-bottom: 2px solid var(--border2);
  background: var(--bg2);
}
.brands-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 40px;
}
.brands-row { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.brands-row img {
  height: 42px;
  width: auto;
  max-width: 165px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.brands-row img:hover { opacity: 0.9; }

/* ─── BOOK / CONTACT PAGE ────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  border-bottom: 2px solid var(--border2);
}

.contact-left {
  padding: 100px 80px 100px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-right: 2px solid var(--border2);
  background: var(--bg);
  background-image: var(--grain);
  background-blend-mode: overlay;
  position: relative;
}

/* Rust left-edge bar */
.contact-left::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--rust);
  opacity: 0.7;
}

.contact-left h1 { font-size: clamp(52px, 7vw, 100px); }
.contact-left p { max-width: 380px; }

.contact-details { display: flex; flex-direction: column; gap: 28px; margin-top: 12px; }
.contact-detail-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-detail-value { font-size: 16px; color: var(--text); transition: color 0.15s; }
a.contact-detail-value:hover { color: var(--accent); }

.contact-right {
  padding: 100px 48px 100px 80px;
  background: var(--bg2);
  background-image: var(--grain);
  background-blend-mode: overlay;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-right h2 { font-size: clamp(32px, 3.5vw, 52px); margin-bottom: 48px; }

form { display: flex; flex-direction: column; gap: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border2);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 0;
  outline: none;
  width: 100%;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--rust); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg2); color: var(--text); }
.form-group textarea { resize: none; height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.5; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .trips-grid { grid-template-columns: 1fr; }
  .trip-card { border-right: none !important; }
  .guide-bio { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 900px) {
  :root { --nav-h: 132px; }
  .nav-logo img { height: 88px; }
  .nav-top { padding: 3px 20px 0; align-items: center; }

  /* Social icons left, hamburger right — equal flex basis on both sides
     so the logo lands dead centre regardless of their content widths */
  .nav-top-left,
  .nav-top-right {
    display: flex;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }
  .nav-top-left { gap: 18px; justify-content: flex-start; }
  .nav-top-right { justify-content: flex-end; }
  .nav-logo { flex: 0 0 auto; }
  .nav-social-label,
  .nav-phone { display: none; }
  .nav-social--icon svg { width: 21px; height: 21px; }
  .nav-social { color: var(--text); }

  .nav-bottom, .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* The hero photo is 1920x753. Cropping that into a tall box on a phone
     zooms ~3.5x, so instead show the full frame as a band with text below. */
  .hero {
    display: block;
    height: auto;
    min-height: 0;
    padding: 0 0 56px;
  }
  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1920 / 753;   /* the photo's own ratio — nothing cropped */
    background-position: center;
    filter: contrast(1.04) saturate(1) brightness(0.86);
  }
  .hero-bg::after {
    background: linear-gradient(to top, rgba(6,13,22,0.85) 0%, rgba(6,13,22,0.25) 42%, rgba(6,13,22,0) 70%);
  }

  .hero-content { padding: 28px 24px 0; }

  /* Headline sits over the bottom of the photo; the paragraph and buttons
     stay below it. Equal negative/positive margins keep the flow intact. */
  /* Sized to sit inside the uncropped photo band */
  .hero-content h1 {
    position: relative;
    z-index: 3;
    font-size: clamp(38px, 12vw, 56px);
    margin-top: calc(-1.74em - 14px);
    margin-bottom: 18px;
    text-shadow: 0 2px 28px rgba(6, 13, 22, 0.9);
  }
  .hero-sub { font-size: 15px; }

  /* Strip the decorative rust/teal accents — too busy on a small screen */
  nav::before,
  footer::before,
  .stat::after,
  .page-header::before,
  .page-header::after,
  .rate-item::before,
  .contact-left::before,
  .trip-card::before,
  .cta-banner::before { display: none !important; }
  .nav-bottom { border-bottom: 1px solid var(--border2); }
  .hero-scroll,
  .hero-water-glow,
  .hero-wave-overlay { display: none; }
  .hero::before { display: none; }

  .section { padding: 80px 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 2px solid var(--border2); }
  .stat:nth-child(even) { border-right: none; }
  .trips-header { padding: 60px 24px 0; flex-direction: column; align-items: flex-start; gap: 28px; }
  .trip-card-body { padding: 32px 24px; }
  .split { grid-template-columns: 1fr; }
  .split-text { padding: 60px 24px; }
  .split-img img { min-height: 360px; }
  .cta-banner { padding: 80px 24px; }
  footer { padding: 60px 24px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .page-header { padding: 72px 24px 52px; }
  .fishing-item { grid-template-columns: 1fr; }
  .fishing-item--reverse .fishing-item-img,
  .fishing-item--reverse .fishing-item-text { order: unset; }
  .fishing-item-text { padding: 48px 24px; }
  .fishing-item-img img { min-height: 320px; }
  .rates-intro { padding: 60px 24px; flex-direction: column; align-items: flex-start; }
  .rates-list { padding: 0 24px; }
  .rate-item { grid-template-columns: 1fr; gap: 32px; }
  .rate-item::before { left: 0; width: 100%; height: 4px; top: 0; }
  .rate-prices-col { text-align: left; }
  .rates-note { padding: 48px 24px; flex-direction: column; }
  .guide-hero { grid-template-columns: 1fr; }
  .guide-hero-text { padding: 60px 24px; }
  .guide-hero-img img { min-height: 400px; }
  .guide-bio { padding: 60px 24px; grid-template-columns: 1fr; }
  .guide-photos { grid-template-columns: 1fr; }
  .guide-photo { border-right: none; border-bottom: 2px solid var(--border2); }
  .boat-section { padding: 80px 24px; }
  .boat-grid { grid-template-columns: 1fr; gap: 40px; }
  .brands-section { padding: 60px 24px; }
  .brands-row { gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { padding: 72px 24px 48px; border-right: none; border-bottom: 2px solid var(--border2); }
  .contact-right { padding: 48px 24px 80px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none !important; }
  .footer-top { grid-template-columns: 1fr; }

  /* Show every photo whole — natural ratio, nothing cropped off */
  .split-img img,
  .fishing-item-img img,
  .guide-hero-img img,
  .boat-img img,
  .guide-photo img {
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }
  .split-img, .fishing-item-img, .guide-hero-img, .boat-img { height: auto; }

  /* Every bottom banner: photo becomes a full-width band at its natural
     proportions with the copy below, so nobody gets cropped out. */
  .cta-banner,
  .cta-banner--rates,
  .cta-banner--photo {
    display: block;
    padding: 0 0 56px;
    text-align: center;
    min-height: 0;
  }
  .cta-banner-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    filter: contrast(1.04) saturate(1) brightness(0.95);
  }
  .cta-banner-content { padding: 34px 20px 0; }

  /* Copy sits on the dark background now, so no scrim needed */
  .cta-banner--photo .label,
  .cta-banner--photo h2,
  .cta-banner--photo p { color: var(--text); text-shadow: none; }
  .cta-banner--photo .label { color: var(--muted); }

  .slideshow-section { padding: 44px 16px; }
  .slideshow-stage { height: auto; aspect-ratio: 1 / 1; min-height: 0; }

  .hero { padding: 0 0 48px; }
  .hero-content { padding: 30px 20px 0; }
}

/* ─── FULL-WIDTH FEATURE PHOTO ────────────────────────────── */
.feature-photo {
  border-top: 2px solid var(--border2);
  background: var(--bg2);
  padding: 64px 48px;
  display: flex;
  justify-content: center;
}
/* Portrait shot — show the whole frame instead of cropping into it */
.feature-photo img {
  width: auto;
  max-width: min(560px, 100%);
  max-height: 76vh;
  height: auto;
  object-fit: contain;
  display: block;
  border: 1px solid var(--border);
  filter: contrast(1.04) saturate(1.03);
}
@media (max-width: 900px) {
  .feature-photo { padding: 48px 24px; }
  .feature-photo img { max-width: 100%; max-height: 65vh; }
}
