/* ═══════════════════════════════════════════════════════════════════════
   Sea Wolf Adventures: Main Stylesheet
   Brand Colors LOCKED: do not modify
   Fonts: Cormorant Garamond (headings) + Jost (body)
   ══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ─── RESET & BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #080c08;
  --forest-dark:  #111a11;
  --forest:       #1e3520;
  --forest-mid:   #2a3d2a;
  --forest-light: #365036;
  --gold:         #c8922a;
  --gold-light:   #dfa83c;
  --gold-pale:    #f0d080;
  --cream:        #f5f0e8;
  --white:        #ffffff;
  --text-muted:   #8a9a88;
  --border:       rgba(200,146,42,0.2);
  --nav-height:   76px;
}

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

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: 'Jost', system-ui, sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────── */

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.12;
  font-weight: 600;
}

h1 { font-size: clamp(1.8rem, 8vw, 4.2rem); word-wrap: break-word; overflow-wrap: break-word; }
h2 { font-size: clamp(1.6rem, 6vw, 3.2rem); word-wrap: break-word; overflow-wrap: break-word; }
h3 { font-size: clamp(1.3rem, 5vw, 2rem); word-wrap: break-word; overflow-wrap: break-word; }

.section-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.8rem;
}

/* ─── NAV ───────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(8,12,8,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,146,42,0.12);
  transition: background 0.35s ease;
}

.nav.scrolled {
  background: rgba(8,12,8,0.97);
  border-bottom-color: rgba(200,146,42,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: clamp(95px, 7.8vw, 113px);
  height: clamp(95px, 7.8vw, 113px);
  flex-shrink: 0;
  border-radius: 0;
  border: none;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.footer-logo-mark {
  width: clamp(68px, 7vw, 100px);
  height: clamp(68px, 7vw, 100px);
  flex-shrink: 0;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-logo-text .brand-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.82);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 3px;
  letter-spacing: 0.1em !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Mobile nav */
.nav-toggle { display: none; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 960px) {
  .nav { padding: 0 1.5rem; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8,12,8,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 0.5rem 1.5rem !important; display: inline-block !important; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ─── HERO ──────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 55%;
  will-change: transform;
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(8,12,8,0.95) 0%, rgba(8,12,8,0.5) 40%, rgba(8,12,8,0.15) 70%, transparent 100%),
    linear-gradient(to right, rgba(8,12,8,0.7) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 0 4rem 7rem;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 32px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: rgba(245,240,232,0.88);
  max-width: 100%;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.45);
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(200,146,42,0.7));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

@media (max-width: 768px) {
  .hero-content { padding: 0 1.5rem 5rem; }
  .hero-scroll { display: none; }
}

/* ─── BUTTONS ───────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.2rem;
  box-shadow: 0 4px 28px rgba(200,146,42,0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(200,146,42,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 0.9rem 2rem;
  border-color: rgba(245,240,232,0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  padding: 0.9rem 2rem;
  border-color: var(--gold);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}


/* ─── LAYOUT UTILS ──────────────────────────────────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 768px) { .container { padding: 0 1.4rem; } }

section { position: relative; }

/* ─── TRUST BAR ─────────────────────────────────────────────────────── */

.trust-bar {
  background: var(--forest-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 3rem;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 3rem;
}

.trust-item {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.trust-item svg {
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

@media (max-width: 600px) {
  .trust-bar { padding: 1.4rem; }
  .trust-divider { display: none; }
}

/* ─── INTRO SECTION ─────────────────────────────────────────────────── */

.intro {
  padding: 8rem 0;
  background: var(--forest-dark);
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.intro-text h2 {
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.intro-text .kwak-greeting {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.intro-text p {
  color: rgba(245,240,232,0.75);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.intro-text .welcome-sign {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-pale);
  display: block;
  margin-top: 2rem;
}

.intro-visual {
  position: relative;
}

.intro-img-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.65);
  position: relative;
}

.intro-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: transform 0.7s ease;
}

.intro-img-frame:hover img { transform: scale(1.04); }

.intro-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--black);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(200,146,42,0.5);
  z-index: 2;
}

.intro-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.intro-badge span {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .intro-inner { grid-template-columns: 1fr; gap: 4rem; }
  .intro { padding: 5rem 0; }
}

/* ─── EXPERIENCES / CARDS GRID ──────────────────────────────────────── */

.experiences {
  padding: 8rem 0;
  background: var(--black);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.section-header h2 { color: var(--white); margin-bottom: 1.2rem; }

.section-header p {
  color: rgba(245,240,232,0.65);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--forest-dark);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.card:hover .card-img { transform: scale(1.06); }

.card-body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 2rem;
}

.card-body h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.card-body p {
  color: rgba(245,240,232,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.card-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s, color 0.2s;
}

.card-link:hover { gap: 0.9rem; color: var(--gold-light); }

/* ─── PHILOSOPHY / DARK PULL-QUOTE SECTION ──────────────────────────── */

.philosophy {
  padding: 9rem 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8922a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  position: relative;
}

.philosophy-quote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -2rem;
  left: -2rem;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}

.philosophy-attr {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── WILDLIFE GRID ─────────────────────────────────────────────────── */

.wildlife-grid {
  padding: 8rem 0;
  background: var(--black);
}

.wildlife-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 3px;
}

.wildlife-cell {
  position: relative;
  overflow: hidden;
}

.wildlife-cell.large {
  grid-column: span 2;
  grid-row: span 2;
}

.wildlife-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  display: block;
  transition: transform 0.7s ease;
}

.wildlife-cell.large img { 
  aspect-ratio: 16/14; 
  object-position: center 35%;
}

.wildlife-cell:hover img { transform: scale(1.04); }

.wildlife-cell-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,12,8,0.85) 0%, transparent 100%);
  padding: 1.5rem 1.2rem 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.wildlife-cell:hover .wildlife-cell-caption { opacity: 1; }

.wildlife-cell-caption span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white);
}

@media (max-width: 768px) {
  .wildlife-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .wildlife-cell.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ─── FULL-BLEED IMAGE STRIP ────────────────────────────────────────── */

.image-strip {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.image-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,12,8,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-strip-text {
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 2rem;
}

.image-strip-text h2 { margin-bottom: 1rem; }
.image-strip-text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
}

/* ─── LODGE FEATURE ─────────────────────────────────────────────────── */

.lodge-feature {
  padding: 8rem 0;
  background: var(--forest-dark);
}

.lodge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.lodge-copy h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.lodge-copy p {
  color: rgba(245,240,232,0.72);
  font-size: 1.02rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.4rem;
}

.lodge-seasons {
  background: rgba(200,146,42,0.08);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 3px 3px 0;
}

.lodge-seasons h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.lodge-seasons p {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.8);
  margin-bottom: 0.3rem;
}

.lodge-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.lodge-gallery img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.6s ease;
}

.lodge-gallery img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.lodge-gallery img:hover { transform: scale(1.03); }

@media (max-width: 900px) {
  .lodge-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── TESTIMONIALS ──────────────────────────────────────────────────── */

.testimonials {
  padding: 8rem 0;
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--forest-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.4rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(245,240,232,0.88);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────────────── */

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,12,8,0.92) 0%, rgba(8,12,8,0.4) 50%, rgba(8,12,8,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 4rem;
  max-width: 900px;
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.page-hero-content .hero-sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.82);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.5);
}

.breadcrumb a { color: rgba(245,240,232,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--gold); }

@media (max-width: 768px) {
  .page-hero-content { padding: 0 1.4rem 3rem; }
}

/* ─── CONTENT SECTIONS (inner pages) ───────────────────────────────── */

.content-section {
  padding: 7rem 0;
}

.content-section.dark { background: var(--forest-dark); }
.content-section.darker { background: var(--black); }
.content-section.mid { background: var(--forest-mid); }
.content-section.forest { background: var(--forest); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.two-col.reversed { }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .content-section { padding: 5rem 0; }
}

.content-text h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.content-text h3 {
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.content-text h3:first-child { margin-top: 0; }

.content-text p {
  color: rgba(245,240,232,0.72);
  font-size: 1.02rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.3rem;
}

.content-text .highlight-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-pale);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}

.content-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.content-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.content-img:hover img { transform: scale(1.04); }

/* ─── TOUR CARDS ────────────────────────────────────────────────────── */

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.tour-card {
  background: var(--forest-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

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

.tour-card-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.tour-card:hover .tour-card-img img { transform: scale(1.06); }

.tour-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}

.tour-card-body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 2rem 2rem 2.4rem;
}

.tour-card-body h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.tour-duration {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}

.tour-card-body p {
  color: rgba(245,240,232,0.68);
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.8rem;
}

.tour-includes {
  list-style: none;
  margin-bottom: 2rem;
}

.tour-includes li {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.75);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(200,146,42,0.12);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.tour-includes li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── LODGE PACKAGE PAGE ─────────────────────────────────────────────  */

.package-includes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.package-item {
  background: rgba(200,146,42,0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
  text-align: center;
}

.package-item-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.package-item h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.package-item p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.7;
  font-weight: 300;
}

/* Season callout */
.season-callout {
  background: rgba(30,53,32,0.5);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  margin: 3rem 0;
}

.season-callout h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.season-item {
  background: rgba(200,146,42,0.06);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.2rem 1.5rem;
}

.season-item .season-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

.season-item .season-dates {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
}

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

/* Booking CTA section */
.booking-cta {
  background: var(--forest);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}

.booking-cta h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.booking-cta p {
  color: rgba(245,240,232,0.7);
  font-size: 1rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ─── PHOTO GALLERY STRIP ────────────────────────────────────────────  */

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.92);
}

.gallery-strip img:hover {
  transform: scale(1.04);
  filter: brightness(1);
}

@media (max-width: 600px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

/* ─── ABOUT PAGE ─────────────────────────────────────────────────────  */

.team-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.value-item {
  padding: 2rem;
  border-top: 2px solid var(--gold);
}

.value-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.value-item p {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
  font-weight: 300;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────────────  */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info h2 { color: var(--white); margin-bottom: 1.5rem; }

.contact-info p {
  color: rgba(245,240,232,0.72);
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.3rem;
}

.contact-details {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.8);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,146,42,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--forest-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem;
}

.contact-form-wrap h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: rgba(245,240,232,0.6);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 300;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(8,12,8,0.6);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group select {
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c8922a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option {
  background: var(--forest-dark);
  color: var(--cream);
}

/* ─── FOOTER ─────────────────────────────────────────────────────────  */

.footer {
  background: var(--forest-dark);
  border-top: 1px solid var(--border);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.footer-brand p {
  color: rgba(245,240,232,0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-indigenous {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.55);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  font-size: 0.9rem;
}

.footer-social a:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(245,240,232,0.55);
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.8rem;
}

.footer-contact-item .label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(245,240,232,0.65);
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(245,240,232,0.35);
  font-size: 0.8rem;
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(245,240,232,0.35);
  font-size: 0.8rem;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--gold); }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer { padding: 3.5rem 0 2rem; }
}

/* ─── FADE-IN SCROLL ANIMATIONS ─────────────────────────────────────  */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── CTA BANNER ─────────────────────────────────────────────────────  */

.cta-banner {
  padding: 8rem 0;
  background: var(--forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
}

.cta-banner p {
  color: rgba(245,240,232,0.75);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

/* ─── MISC UTILITIES ─────────────────────────────────────────────────  */

.gold-text { color: var(--gold); }
.cream-text { color: var(--cream); }
.muted-text { color: var(--text-muted); }

.text-center { text-align: center; }
.text-left { text-align: left; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── SITEMAP / PRINT ─────────────────────────────────────────────────*/
@media print {
  .nav, .footer, .hero-scroll { display: none; }
  body {
  word-wrap: break-word;
  overflow-wrap: break-word; background: white; color: black; }
}

/* ═══════════════════════════════════════════════════════════════════════
   VIDEO HERO
   Full-viewport background video with image fallback.
   Activated by adding .hero--video to the .hero section.
   ══════════════════════════════════════════════════════════════════════ */

.hero--video {
  position: relative;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* When video is active, hide the fallback image */
.hero--video .hero-bg--fallback {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* When video fails or has no source, JS adds .hero--video-fallback
   to show the background image instead */
.hero--video-fallback .hero-bg--fallback {
  opacity: 1;
  z-index: 0;
}

.hero--video-fallback .hero-video {
  display: none;
}

/* On mobile, prefer the poster image to save bandwidth.
   The JS will also detect connection quality. */
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }
  .hero--video .hero-bg--fallback {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   VIDEO SHOWCASE / GALLERY
   A responsive grid of video cards for wildlife footage.
   ══════════════════════════════════════════════════════════════════════ */

.video-showcase {
  padding: 6rem 0;
  background: var(--forest-deep);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 960px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.video-card {
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.video-card:hover {
  border-color: rgba(200, 146, 42, 0.35);
  transform: translateY(-3px);
}

.video-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--forest-dark);
  overflow: hidden;
}

.video-card-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--forest-dark);
}

/* Cloudflare Stream embed container */
.video-card-stream {
  width: 100%;
  height: 100%;
}

.video-card-stream stream,
.video-card-stream iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Play button overlay for videos without sources (poster-only state) */
.video-card-media::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(200, 146, 42, 0.85);
  border-radius: 50%;
  /* Triangle play icon via CSS */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5f0e8'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

/* Hide the play overlay when the video has a source and is playing */
.video-card-media:has(video[src]) .video-card-media::after,
.video-card-media:has(source)::after {
  display: none;
}

.video-card:hover .video-card-media::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card-info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.video-card-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.video-card-info p {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── FULL-WIDTH VIDEO FEATURE (reusable on any page) ──────────────── */
/* Use this for a cinematic full-bleed video section between content blocks.
   HTML pattern:
   <section class="video-feature">
     <video class="video-feature-player" autoplay loop muted playsinline poster="...">
       <source src="/videos/your-video.mp4" type="video/mp4" />
     </video>
     <div class="video-feature-overlay"></div>
     <div class="video-feature-caption">
       <p>Caption text here</p>
     </div>
   </section>
*/

.video-feature {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.video-feature-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,8,0.7) 0%, transparent 50%);
}

.video-feature-caption {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.video-feature-caption p {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
}


/* ═══════════════════════════════════════════════════════════════════════
   INNER-PAGE LAYOUT CLASSES
   Used by: Lodge Package, Grizzly Bears, Whales/Otters, Concierge pages.
   These pages use a slightly different header/footer pattern than the
   homepage (header.site-header / footer.site-footer vs nav.nav / footer.footer).
   ══════════════════════════════════════════════════════════════════════ */

/* ─── Site Header (inner pages) ──────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 12, 8, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.08);
  transition: background 0.4s ease;
}

.site-header.scrolled {
  background: rgba(8, 12, 8, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height, 72px);
}

/* ─── Site Footer (inner pages) ──────────────────────────────────────── */

.site-footer {
  background: var(--black, #0a0e0a);
  border-top: 1px solid rgba(200, 146, 42, 0.1);
  padding: 4rem 2rem 2rem;
  font-family: 'Jost', sans-serif;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  color: var(--cream, #f5f0e8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--gold, #c8922a);
}

/* ─── Buttons (inner pages) ──────────────────────────────────────────── */

.btn-book {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-deep, #080c08);
  background: var(--gold, #c8922a);
  border: none;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-book:hover {
  background: #d9a73c;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream, #f5f0e8);
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.3);
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--gold, #c8922a);
  color: var(--gold, #c8922a);
}

/* ─── Section Padding (inner pages) ──────────────────────────────────── */

.section-pad {
  padding: 5rem 2rem;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 3.5rem 1.25rem;
  }
}

/* ─── Narrow Container (inner pages) ─────────────────────────────────── */

.container--narrow {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Hero Actions (inner pages) ─────────────────────────────────────── */

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ─── Hero Short variant (whales/otters page) ────────────────────────── */

.hero--short {
  min-height: 70svh;
}

/* ─── Includes Grid (lodge + whales pages) ───────────────────────────── */

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.include-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border: 1px solid rgba(200, 146, 42, 0.25);
  border-radius: 4px;
}

.include-item .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.include-item h3 {
  color: var(--white, #ffffff);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.include-item p {
  color: var(--warm-grey, #b8b0a4);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── Seasons Grid (lodge page) ──────────────────────────────────────── */

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

.season-card {
  border: 1px solid rgba(200, 146, 42, 0.3);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
}

.season-card .label {
  color: var(--gold, #c8922a);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.season-card h3 {
  color: var(--white, #ffffff);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.season-card p {
  color: var(--cream, #f5f0e8);
  font-size: 0.95rem;
  margin: 0;
}

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

/* ─── Concierge-specific classes ─────────────────────────────────────── */

.concierge-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-deep, #080c08);
}

.telegram-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #0088cc;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.telegram-cta:hover {
  background: #006da3;
  transform: translateY(-2px);
}

.steps-section {
  padding: 5rem 2rem;
  background: var(--forest-dark, #0f140f);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border, rgba(200, 146, 42, 0.1));
  border-radius: 4px;
}

.step-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: var(--gold, #c8922a);
  color: var(--forest-deep, #080c08);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  color: var(--white, #ffffff);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--warm-grey, #b8b0a4);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.info-section {
  padding: 5rem 2rem;
  background: var(--forest, #141a14);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.info-card {
  padding: 2rem;
  border: 1px solid var(--border, rgba(200, 146, 42, 0.1));
  border-radius: 4px;
}

.info-card h3 {
  color: var(--gold, #c8922a);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.info-card p,
.info-card li {
  color: var(--cream, #f5f0e8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.info-card ul {
  padding-left: 1.25rem;
  margin: 0;
}

.info-card li {
  margin-bottom: 0.4rem;
}

.final-cta {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--forest-deep, #080c08);
}

/* ─── Mobile nav for inner pages (button toggle) ─────────────────────── */

@media (max-width: 960px) {
  .nav-inner {
    padding: 0 1.25rem;
  }

  .site-header .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height, 72px);
    left: 0;
    right: 0;
    background: rgba(8, 12, 8, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid var(--border, rgba(200, 146, 42, 0.1));
  }

  .site-header .nav-links.open {
    display: flex;
  }

  .site-header .nav-links li {
    width: 100%;
  }

  .site-header .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .site-header .btn-book {
    display: none;
  }

  .site-header .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
  }

  .site-header .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream, #f5f0e8);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
}

@media (min-width: 961px) {
  .site-header .nav-toggle {
    display: none;
  }

  .site-header .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-header .nav-links a {
    color: var(--cream, #f5f0e8);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
  }

  .site-header .nav-links a:hover,
  .site-header .nav-links a[aria-current="page"] {
    color: var(--gold, #c8922a);
  }
}

/* ════════════════════════════════════════════════════════════════
   WILDLIFE MOSAIC — PORTRAIT LAYOUT
   Portrait grizzly column (left) + 2×2 grid (right)
   The grizzly-mother-cub image is 1400×2488 (portrait ~4:7).
   This layout lets it display at its natural proportions.
   ════════════════════════════════════════════════════════════════ */

.wildlife-mosaic--portrait {
  display: grid;
  grid-template-columns: 5fr 7fr;  /* wider portrait column */
  gap: 3px;
  align-items: stretch;
}

/* Portrait hero: left column, full height, image at natural proportions */
.wildlife-cell--portrait {
  position: relative;
  overflow: hidden;
  background: #080c08;
  min-height: 600px;       /* ensure the column is tall enough to show the bears */
}

.wildlife-cell--portrait img {
  width: 100%;
  height: 100%;            /* fill the column */
  display: block;
  object-fit: contain;     /* show the full image, no cropping */
  object-position: center center;
  transition: transform 0.7s ease;
}

.wildlife-cell--portrait:hover img {
  transform: scale(1.02);
}

.wildlife-cell--portrait .wildlife-cell-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,12,8,0.85) 0%, transparent 100%);
  padding: 1.5rem 1.2rem 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.wildlife-cell--portrait:hover .wildlife-cell-caption { opacity: 1; }

/* Right side: 2×2 grid matching the portrait column height */
.wildlife-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.wildlife-mosaic-grid .wildlife-cell {
  position: relative;
  overflow: hidden;
}

.wildlife-mosaic-grid .wildlife-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;       /* taller cells = more height for the portrait column */
  display: block;
  transition: transform 0.7s ease;
}

.wildlife-mosaic-grid .wildlife-cell:hover img { transform: scale(1.04); }

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .wildlife-mosaic--portrait {
    grid-template-columns: 1fr;
  }
  .wildlife-cell--portrait img {
    max-height: 70vw;
    object-fit: cover;
    object-position: center 30%;
  }
  .wildlife-mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}

@media (max-width: 768px) {
  .hero-content { padding: 0 1.25rem 4rem !important; }
  .hero h1 { font-size: 2.2rem !important; }
  .hero-sub { font-size: 1rem !important; padding-right: 1rem; }
}

@media (max-width: 400px) {
  .nav-logo-text .brand-name { font-size: 0.95rem !important; }
  .nav-logo-text .brand-tag { font-size: 0.5rem !important; }
  .nav { padding: 0 0.75rem !important; }
}

@media (max-width: 960px) {
  .nav { 
  }
  .nav-links {
    display: none; /* Keep the main list hidden */
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8,12,8,0.98);
    flex-direction: column;
    padding: 1rem 0;
  }
  /* Show the CTA button even when nav-links are hidden */
  .nav-links .nav-cta-wrapper {
  }
  .nav-cta {
    white-space: nowrap;
  }
  .nav-toggle:checked ~ .nav-links {
  }
}

@media (max-width: 480px) {
  .nav-logo-text { display: none; } /* Hide text on very small screens to make room for button */
  .nav-logo { gap: 0.5rem; }
}

@media (max-width: 960px) {
  .nav { 
    padding: 0 1rem !important; 
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8,12,8,0.98);
    flex-direction: column;
    padding: 1rem 0;
    z-index: 999;
  }
  /* Show the CTA button even when nav-links are hidden */
  .nav-links .nav-cta-wrapper {
    display: block !important;
    position: static !important;
    order: -1; /* Move to top if needed */
  }
  /* On mobile, we want the CTA to be visible in the nav bar, not just the menu */
  .nav-cta {
    display: inline-flex !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
    margin: 0 !important;
    white-space: nowrap;
    background: var(--gold) !important;
    color: var(--black) !important;
    border-radius: 3px;
    font-weight: 600;
  }
  .nav-toggle:checked ~ .nav-links {
    display: flex !important;
  }
  .nav-logo-text .brand-name { font-size: 1rem !important; }
  .nav-logo-text .brand-tag { font-size: 0.5rem !important; }
  
  /* Layout for mobile nav bar */
  .nav-logo { flex: 1; }
  .nav-hamburger { order: 3; margin-left: 1rem; }
  
  /* Special handling to pull the CTA out of the hidden menu on mobile */
  .nav-links {
     display: none !important;
  }
  .nav-toggle:checked ~ .nav-links {
     display: flex !important;
  }
}

/* Custom CSS to show the CTA button in the nav bar on mobile */
@media (max-width: 960px) {
  .nav::after {
    content: 'BOOK A DAY TOUR';
    display: inline-flex;
    background: #c8922a;
    color: #080c08;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    margin-left: auto;
    order: 2;
  }
  /* Hide the original CTA inside the menu if we use the pseudo-element */
  .nav-cta-wrapper { display: none !important; }
}

@media (max-width: 480px) {
  .nav-logo-text { display: none; }
  .nav-logo { flex: 0; }
  .nav::after { font-size: 0.65rem; padding: 0.4rem 0.8rem; }
}

@media (max-width: 960px) {
  .nav-logo-text .brand-tag {
  }
  .nav-logo {
  }
}
@media (max-width: 400px) {
  .nav-logo-text .brand-tag {
  }
}


/* ─── MOBILE OVERLAP FIX ─── */
@media (max-width: 600px) {
  .nav { padding: 0 0.75rem; }
  .nav-logo-text .brand-name { font-size: 1rem; }
  .nav-logo-text .brand-tag { display: none; }
  .nav-cta { font-size: 0.65rem !important; padding: 0.4rem 0.6rem !important; }
  .hero-content { z-index: 1; } /* Ensure hero content is below nav */
  .nav { z-index: 2000; } /* Ensure nav is above everything */
}


/* ─── MOBILE OVERLAP FIX V2 ─── */
@media (max-width: 960px) {
  .nav { 
    padding: 0 1rem !important; 
    justify-content: space-between !important;
    height: 80px !important; /* Slightly taller for better touch targets */
  }
  .nav-logo {
    max-width: 50% !important;
  }
  .nav-logo-text .brand-name {
    font-size: 0.9rem !important;
  }
  .nav-logo-text .brand-tag {
    display: none !important; /* Hide tag on small screens to save space */
  }
  
  /* Ensure the CTA is visible and not overlapping */
  .nav-links {
    display: none; /* Hidden by default */
  }
  
  .nav-toggle:checked ~ .nav-links {
    display: flex !important;
    z-index: 1001 !important;
  }

  /* Move the CTA button out of the flow or give it clear space */
  .nav-links li:last-child {
    order: -1 !important; /* Move to top of mobile menu */
    padding: 1rem !important;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-cta { 
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0.8rem !important;
    font-size: 0.85rem !important;
  }
  
  /* Fix for the 'overlap' - ensure hero content doesn't push into nav space */
  .hero {
    padding-top: 80px !important;
  }
  .hero-content {
    padding-bottom: 4rem !important;
  }
}

@media (max-width: 480px) {
  .nav-logo-text .brand-name {
    font-size: 0.8rem !important;
  }
  .nav-logo-mark {
    width: 32px !important;
    height: 32px !important;
  }
}


/* ─── MOBILE OVERHAUL: STICKY FOOTER & CLEAN NAV ─── */
@media (max-width: 960px) {
  /* 1. Clean up the top nav: Logo and Hamburger only */
  .nav {
    padding: 0 1.25rem !important;
    justify-content: space-between !important;
    height: 70px !important;
    z-index: 2000 !important;
  }
  
  .nav-logo {
    max-width: 75% !important;
  }
  
  .nav-logo-text .brand-name {
    font-size: 1rem !important;
  }
  
  .nav-logo-text .brand-tag {
    display: none !important;
  }

  /* 2. Hide the CTA button from the top nav on mobile */
  .nav-links .nav-cta {
    display: none !important;
  }

  /* 3. Create the Sticky Mobile Footer */
  .mobile-sticky-footer {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: var(--gold);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }

  .mobile-sticky-footer span {
    color: var(--black);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  /* 4. Add padding to body so content isn't hidden by footer */
  body {
    padding-bottom: 65px !important;
  }
  
  /* 5. Ensure hero content is below nav */
  .hero {
    padding-top: 70px !important;
  }
}

/* Hide sticky footer on desktop */
@media (min-width: 961px) {
  .mobile-sticky-footer {
    display: none !important;
  }
}


/* ─── FINAL MOBILE OVERHAUL ─── */
@media (max-width: 960px) {
  .nav {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 70px !important;
    background: rgba(8, 12, 8, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 0 1rem !important;
    justify-content: space-between !important;
    align-items: center !important;
    z-index: 9999 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
  }
  
  .nav-logo {
    display: flex !important;
    align-items: center !important;
    max-width: 70% !important;
    text-decoration: none !important;
  }
  
  .nav-logo-text .brand-name {
    font-size: 0.9rem !important;
    color: var(--gold) !important;
    display: block !important;
  }
  
  .nav-logo-text .brand-tag {
    display: none !important;
  }

  .nav-links {
    display: none !important; /* Hide all links including the old CTA */
  }
  
  .nav-hamburger {
    display: flex !important;
    order: 2 !important;
  }

  .mobile-sticky-footer {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 60px !important;
    background: #D4AF37 !important; /* Solid Gold */
    z-index: 10000 !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.4) !important;
  }

  .mobile-sticky-footer span {
    color: #080C08 !important; /* Deep Black */
    font-family: 'Jost', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
  }

  body {
    padding-top: 70px !important;
    padding-bottom: 60px !important;
  }
}

@media (min-width: 961px) {
  .mobile-sticky-footer {
    display: none !important;
  }
}
