/* ============================================================
   BOWMAN FLY FISHING — CRO V3
   Elkwood-inspired design language applied:
   - Thick gold accent dividers between sections
   - Dramatic oversized serif headlines
   - Dark immersive sections with cinematic feel
   - Bold colored accent bands
   - Large footer typography
   - Atmospheric image backgrounds on FAQ
   ============================================================ */

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

/* Skip nav — visible only on focus for keyboard users */
.skip-nav {
  position: absolute; top: -100px; left: 16px; z-index: 10001;
  background: #1C2420; color: #fff; padding: 12px 24px;
  font-size: 0.875rem; font-weight: 600; border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }
html, body { overflow-x: hidden; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif; color: #1C2420;
  background: #F0EDE5; line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }


/* --- Buttons — Two sizes, gold = CTA only --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px; border: 1.5px solid transparent;
  cursor: pointer; transition: all 0.3s ease; white-space: nowrap; padding: 14px 32px;
}
.btn-gold { background: #B08D57; color: #fff; border-color: #B08D57; }
.btn-gold:hover { background: #9E7D4D; border-color: #9E7D4D; }
.btn-secondary { background: transparent; color: #1C2420; border: 1.5px solid rgba(28,36,32,0.2); }
.btn-secondary:hover { border-color: #1C2420; }
.btn-ghost { background: transparent; color: #1C2420; border-color: transparent; padding-left: 0; }
.btn-ghost:hover { color: #3D5A47; }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline-light:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-green { background: #3D5A47; color: #fff; border-color: #3D5A47; }
.btn-green:hover { background: #2F4A3A; border-color: #2F4A3A; }
.btn-gold-outline { background: transparent; color: #B08D57; border: 1.5px solid #B08D57; }
.btn-gold-outline:hover { background: #B08D57; color: #fff; }
/* Keep btn-blue as alias for backward compat */
.btn-blue { background: #3D5A47; color: #fff; border-color: #3D5A47; }
.btn-blue:hover { background: #2F4A3A; border-color: #2F4A3A; }
.btn-lg { padding: 16px 40px; font-size: 0.75rem; }
.btn-xl { padding: 18px 44px; font-size: 0.8125rem; }
.btn-nav { padding: 10px 24px; font-size: 0.6875rem; letter-spacing: 0.14em; }


/* --- Typography --- */
.eyebrow {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #3D5A47; margin-bottom: 14px;
  display: inline-block; position: relative;
}
.eyebrow::after {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: #B08D57;
  margin-top: 8px;
}
.eyebrow-light { color: #fff; }
.eyebrow-light::after { background: rgba(255,255,255,0.2); }
.eyebrow-gold { color: #B08D57; }
.eyebrow-gold::after { background: #B08D57; }
/* Hide underline on eyebrows inside dark hero overlays */
.hero-full-content .eyebrow::after { display: none; }

h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 2.8rem); line-height: 1.1;
  color: #1C2420; margin-bottom: 18px; letter-spacing: -0.015em;
}

/* Section divider — used sparingly */
.section-divider {
  height: 2px; background: rgba(176,141,87,0.2); width: 100%;
}


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(20,28,24,0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(176,141,87,0.1);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 48px; width: auto; display: block; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9375rem; color: #D6D2C4; letter-spacing: 0.04em; line-height: 1.1; }
.logo-text span { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 0.5rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(214,210,196,0.5); margin-top: 2px; }
.footer-left .logo-img { height: 32px; }
.footer-left .logo-text { font-size: 0.875rem; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.75rem; font-weight: 400; color: rgba(214,210,196,0.75); letter-spacing: 0.03em; transition: color 0.3s; }
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 400; color: rgba(214,210,196,0.6); letter-spacing: 0.03em; }
.nav-phone:hover { color: #D6D2C4; }

/* Mobile menu */
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; outline: none;
  -webkit-appearance: none; appearance: none;
  cursor: pointer; padding: 8px;
}
.mobile-menu-toggle:focus { outline: none; }
.mobile-menu-toggle span {
  width: 20px; height: 1.5px; background: #D6D2C4; border-radius: 1px; transition: all 0.3s;
}
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(20,28,24,0.97); backdrop-filter: blur(16px);
  z-index: 999; padding: 40px 24px;
  flex-direction: column; align-items: center; gap: 24px;
}
.mobile-nav.active { display: flex; }
body.nav-open { overflow: hidden; }
body.nav-open .mobile-sticky { display: none !important; }
.mobile-nav a {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600;
  color: #D6D2C4; transition: color 0.3s;
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav .btn { margin-top: 16px; }
.mobile-nav-section { display: flex; flex-direction: column; align-items: center; gap: 0; width: 100%; }
.mobile-nav-label {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600;
  color: #D6D2C4; cursor: pointer; padding: 10px 0;
  letter-spacing: 0; text-transform: none;
  display: flex; align-items: center; gap: 8px;
}
.mobile-nav-label::after {
  content: ''; display: inline-block;
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 6px solid #B08D57;
  transition: transform 0.2s;
}
.mobile-nav-section.open .mobile-nav-label::after { transform: rotate(180deg); }
.mobile-nav-sub {
  display: none; flex-direction: column; align-items: center; gap: 4px;
  padding: 4px 0 12px;
}
.mobile-nav-section.open .mobile-nav-sub { display: flex; }
.mobile-nav-sub a {
  font-family: 'Inter', sans-serif; font-size: 0.9375rem; font-weight: 400;
  color: rgba(214,210,196,0.7); padding: 6px 0;
}
.mobile-nav-sub a:hover { color: #fff; }

/* Nav dropdowns */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
}
.nav-dropdown > a::after {
  content: ''; display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent; border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px; transition: transform 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: rgba(20,28,24,0.97); backdrop-filter: blur(16px);
  border: 1px solid rgba(176,141,87,0.15); border-radius: 6px;
  padding: 20px 0 12px; min-width: 200px; z-index: 1001;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.nav-dropdown::before {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 20px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 8px 24px;
  font-size: 0.8125rem; font-weight: 400; color: rgba(214,210,196,0.8);
  white-space: nowrap; transition: all 0.2s;
}
.nav-dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,0.12); }


/* ============================================================
   HERO — Split layout
   ============================================================ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 64px;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 60px 60px 80px;
  background: #F0EDE5; position: relative;
}
.hero-left::after {
  content: ''; position: absolute;
  right: 0; top: 15%; bottom: 15%; width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(176,141,87,0.2) 30%, rgba(176,141,87,0.2) 70%, transparent 100%);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(61,90,71,0.2);
  border-radius: 100px; padding: 7px 18px;
  font-size: 0.6875rem; font-weight: 500; color: #3D5A47;
  letter-spacing: 0.02em; margin-bottom: 32px; width: fit-content;
}
.badge-stars { color: #B08D57; letter-spacing: 2px; font-size: 0.625rem; }

.hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.06; color: #1C2420; margin-bottom: 20px; letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1rem; font-weight: 400; color: #6a7570; line-height: 1.7;
  margin-bottom: 36px; max-width: 440px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

/* Hero trust badges — inline within hero */
.hero-trust-row {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.04em;
  color: #8E9A9B;
}

.hero-stats {
  display: flex; align-items: center; gap: 28px;
  padding-top: 32px; border-top: 1px solid rgba(28,36,32,0.08);
}
.hero-stat strong {
  display: block; font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 1.875rem; color: #1C2420; line-height: 1; letter-spacing: -0.02em;
}
.hero-stat span { font-size: 0.5625rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #8E9A9B; margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 28px; background: rgba(28,36,32,0.08); }

.hero-right { position: relative; overflow: hidden; }
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-color: #2a3530;
}
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,36,32,0.15) 0%, transparent 30%, transparent 70%, rgba(28,36,32,0.3) 100%),
    radial-gradient(ellipse at center, transparent 50%, rgba(28,36,32,0.25) 100%);
}
.hero-img-card { position: absolute; bottom: 32px; left: 32px; right: 32px; z-index: 2; }
.hero-img-card-inner {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-radius: 6px; padding: 12px 16px;
  font-size: 0.75rem; font-weight: 600; color: #1C2420;
}


/* ============================================================
   PROOF TICKER — Elkwood-style colored band
   ============================================================ */
.proof-ticker { background: #4A5D6A; overflow: hidden; }
.ticker-inner {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 14px 40px; flex-wrap: nowrap; white-space: nowrap;
}
.ticker-item { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.75); letter-spacing: 0.01em; }
.ticker-stars { color: #fff; letter-spacing: 1px; margin-right: 4px; font-size: 0.625rem; }
.ticker-sep { color: rgba(255,255,255,0.2); }


/* ============================================================
   WHY — Photo cards with text overlay
   ============================================================ */
.why-section {
  padding: 100px 0; background: #F0EDE5;
}
.why-header { text-align: center; margin-bottom: 56px; }
.why-header h2 { max-width: 560px; margin: 0 auto; }

.why-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.why-row:last-child { margin-bottom: 0; }

.why-block {
  border-radius: 10px; padding: 40px 36px;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative; overflow: hidden;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.why-block:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(28,36,32,0.2); }

/* Photo background for why cards */
.why-block-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s;
}
.why-block:hover .why-block-bg { transform: scale(1.04); }
.why-block-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,36,32,0.1) 0%, rgba(28,36,32,0.75) 60%, rgba(28,36,32,0.92) 100%);
}

/* Text sits above the overlay */
.why-block-content { position: relative; z-index: 2; }

/* Fallback colored blocks for cards without photos */
.why-block-blue { background: linear-gradient(135deg, #3D5A47, #2F4A3A); color: #fff; box-shadow: 0 4px 20px rgba(61,90,71,0.25); }
.why-block-dark { background: linear-gradient(135deg, #1C2420, #252e28); color: #D6D2C4; box-shadow: 0 4px 20px rgba(28,36,32,0.3); }
.why-block-stone { background: linear-gradient(135deg, #D6D2C4, #cac6b8); color: #1C2420; box-shadow: 0 4px 20px rgba(214,210,196,0.3); }
.why-block-green { background: linear-gradient(135deg, #5B6F55, #4e614a); color: #fff; box-shadow: 0 4px 20px rgba(91,111,85,0.25); }

/* Photo variant — always white text */
.why-block-photo { color: #fff; box-shadow: 0 4px 24px rgba(28,36,32,0.15); }

.why-block-icon { margin-bottom: 16px; }
.why-block h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.375rem; margin-bottom: 8px; letter-spacing: -0.01em; color: inherit; }
.why-block p { font-size: 0.875rem; line-height: 1.65; opacity: 0.85; font-weight: 400; color: inherit; }


/* ============================================================
   MEET THE GUIDES — Elkwood split layout with large portraits
   ============================================================ */
.guides-section {
  padding: 100px 0; background: #1C2420;
}

.guides-layout {
  display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start;
}
.guides-intro h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 2.6rem); }
.guides-intro-text { font-size: 0.9375rem; color: rgba(214,210,196,0.6); line-height: 1.7; margin-bottom: 28px; }

.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.guides-grid-full { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.guide-card { text-align: center; }
.guide-card-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; overflow: hidden;
  transition: transform 0.35s;
}
.guide-card:hover .guide-card-photo { transform: scale(1.03); }
.guide-card-initials { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; color: rgba(255,255,255,0.15); }

.guide-card h4 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.0625rem; color: #fff; margin-bottom: 3px; }
.guide-card-role { font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; display: block; margin-bottom: 8px; }
.guide-card p { font-size: 0.8125rem; color: rgba(214,210,196,0.5); line-height: 1.55; }


/* ============================================================
   VIDEO — Elkwood cinematic full-bleed
   ============================================================ */
.video-section {
  position: relative; height: 520px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.video-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-color: #2a3530;
  filter: brightness(0.6) saturate(0.8);
}
.video-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(28,36,32,0.2) 0%, rgba(28,36,32,0.6) 100%);
}
.video-content { position: relative; z-index: 2; text-align: center; }
.video-play-btn {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(176,141,87,0.15);
  border: 2px solid rgba(176,141,87,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
  margin: 0 auto 20px; padding-left: 4px;
}
.video-play-btn:hover {
  background: rgba(176,141,87,0.3);
  border-color: #fff;
  transform: scale(1.1);
}
.video-caption {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(214,210,196,0.6);
}


/* ============================================================
   TRIPS — With gold accent bar
   ============================================================ */
.trips-section {
  padding: 100px 0; background: #F0EDE5;
}

.trips-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 44px;
}
.trips-header h2 { margin-bottom: 0; }

.trips-availability {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 500; color: #5B6F55;
}
.avail-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5B6F55; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.trips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.trip-card {
  position: relative; background: #FAFAF7; border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(28,36,32,0.06), 0 8px 28px rgba(28,36,32,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.trip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(28,36,32,0.08), 0 20px 48px rgba(28,36,32,0.06);
}

.trip-featured { border: 2px solid #B08D57; }
.trip-badge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: #1C2420; color: #D6D2C4;
  font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}

.trip-card-img { aspect-ratio: 16/10; background-size: cover; background-position: center; background-color: #3a4a42; }

.trip-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.trip-card-body h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 4px; }
.trip-meta { font-size: 0.6875rem; font-weight: 500; color: #8E9A9B; margin-bottom: 16px; letter-spacing: 0.02em; }

.trip-features { list-style: none; margin-bottom: 20px; flex: 1; }
.trip-features li { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; font-weight: 400; color: #5a6560; padding: 6px 0; }

.trip-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(28,36,32,0.06); }
.trip-price span { display: block; font-size: 0.5625rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #8E9A9B; }
.trip-price strong { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #1C2420; }

.trips-also { text-align: center; margin-top: 32px; font-size: 0.8125rem; color: #8E9A9B; }
.trips-also a { color: #3D5A47; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.trips-also a:hover { color: #1C2420; }

/* Trip card spec tags — gold bordered pills */
.trip-specs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.trip-spec {
  font-size: 0.5625rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: #B08D57; border: 1px solid rgba(176,141,87,0.4); border-radius: 100px;
  padding: 3px 10px; white-space: nowrap;
}

/* Trust badge row — slim dark band */
.trust-badges {
  background: #1C2420; padding: 14px 0;
}
.trust-badges-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: center; gap: 32px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(214,210,196,0.7); white-space: nowrap;
}
.trust-badge svg { color: #B08D57; flex-shrink: 0; }

/* Subtle noise texture for dark sections */
.has-texture::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ============================================================
   CORPORATE — Full-bleed immersive
   ============================================================ */
.corporate-section {
  position: relative; min-height: 440px;
  display: flex; align-items: center; overflow: hidden;
}
.corporate-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-color: #2a3530;
}
.corporate-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,36,32,0.92) 0%, rgba(28,36,32,0.8) 35%, rgba(28,36,32,0.25) 100%);
}
.corporate-content { position: relative; z-index: 2; padding: 88px 0; }
.corporate-text { max-width: 480px; }
.corporate-text h2 { color: #fff; font-size: clamp(1.85rem, 3.5vw, 2.6rem); }
.corporate-text p { font-size: 1rem; color: rgba(214,210,196,0.7); line-height: 1.7; margin-bottom: 32px; }


/* ============================================================
   HOSTED TRAVEL — Overlay cards
   ============================================================ */
.travel-section {
  padding: 100px 0; background: #F0EDE5;
}
.travel-header { text-align: center; margin-bottom: 48px; }
.travel-sub { font-size: 0.9375rem; color: #6a7570; max-width: 480px; margin: 0 auto; }

.travel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.travel-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.travel-details-grid > div { display: flex; flex-direction: column; }
.travel-details-grid > div > p:first-of-type { flex: 0; }
.travel-details-grid > div > p:nth-of-type(2) { flex: 1; }

.travel-card {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/3; display: flex; align-items: flex-end;
  transition: transform 0.35s;
}
.travel-card:hover { transform: translateY(-4px); }
.travel-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-color: #3a4a42;
  transition: transform 0.5s;
}
.travel-card:hover .travel-card-img { transform: scale(1.06); }
.travel-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(28,36,32,0.7) 100%);
}
.travel-card-content { position: relative; z-index: 2; padding: 28px; }
.travel-tag { font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; }
.travel-card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; color: #fff; margin: 4px 0; }
.travel-date { font-size: 0.6875rem; color: rgba(214,210,196,0.5); }


/* ============================================================
   GALLERY — Horizontal scroll
   ============================================================ */
.gallery {
  padding: 100px 0; background: #F0EDE5;
}
.gallery-header { text-align: center; margin-bottom: 48px; }

.gallery-scroll {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 40px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-scroll-item {
  flex: 0 0 auto;
  width: 420px; height: 300px;
  border-radius: 8px;
  background-size: cover; background-position: center;
  background-color: #3a4a42;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.35s;
}
.gallery-scroll-item:hover { transform: scale(1.02); }
.gallery-scroll-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28,36,32,0.5) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-scroll-item:hover::after { opacity: 1; }
.gallery-scroll-item .gallery-caption {
  position: absolute; bottom: 16px; left: 20px; right: 20px;
  z-index: 2; color: #fff;
  font-size: 0.8125rem; font-weight: 500;
  opacity: 0; transition: opacity 0.3s; transform: translateY(4px);
}
.gallery-scroll-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Fallback grid for older browsers / subpages */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px; gap: 12px;
  padding: 0 40px; max-width: 1400px; margin: 0 auto;
}
.gallery-item {
  border-radius: 6px; background-size: cover; background-position: center;
  background-color: #3a4a42; transition: transform 0.35s;
  position: relative;
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0; border-radius: 6px;
  box-shadow: inset 0 -50px 50px -25px rgba(28,36,32,0.2);
  pointer-events: none;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.gallery-thumb { cursor: pointer; aspect-ratio: unset; }
.gallery-hidden { display: none !important; }
.gallery-wide { grid-column: span 2; }


/* ============================================================
   FROM THE FIELD — Trip report
   ============================================================ */
.field-section { padding: 100px 0; background: #E8E5DD; }

.field-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.field-image {
  aspect-ratio: 4/3; border-radius: 8px;
  background-size: cover; background-position: center; background-color: #3a4a42;
  box-shadow: 0 8px 32px rgba(28,36,32,0.1);
}
.field-content h2 { margin-bottom: 8px; }
.field-title {
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: 1.0625rem; color: #3D5A47; margin-bottom: 20px; font-style: italic;
}
.field-content p { font-size: 0.9375rem; color: #5a6560; line-height: 1.7; margin-bottom: 16px; }
.field-highlight {
  font-size: 0.875rem; font-weight: 600; color: #1C2420;
  padding: 14px 18px; background: rgba(176,141,87,0.08);
  border-left: 3px solid #B08D57; border-radius: 0 6px 6px 0;
  margin-bottom: 28px;
}


/* ============================================================
   REVIEWS — Elkwood dark bg with featured quote
   ============================================================ */
.reviews {
  padding: 100px 0; background: #F0EDE5; text-align: center;
}
.reviews .eyebrow { color: #3D5A47; }
.reviews h2 { color: #1C2420; margin-bottom: 44px; }

.reviews-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; text-align: left; }

.review-featured {
  background: #4A5D6A; border-radius: 10px; padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.review-featured::before {
  content: '\201C'; position: absolute; top: 16px; right: 28px;
  font-family: 'Playfair Display', serif; font-size: 7rem;
  color: rgba(255,255,255,0.05); line-height: 1; pointer-events: none;
}
.review-stars-lg { color: #B08D57; font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-featured p { font-size: 1.125rem; color: rgba(255,255,255,0.9); line-height: 1.65; font-style: italic; margin-bottom: 24px; }
.review-featured footer { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: #fff;
}
.review-featured footer strong { color: #fff; font-size: 0.875rem; }
.review-featured footer span { color: rgba(214,210,196,0.5); font-size: 0.75rem; }

.reviews-side { display: flex; flex-direction: column; gap: 20px; }
.review-card {
  background: #FAFAF7; border: 1px solid rgba(28,36,32,0.06);
  border-radius: 8px; padding: 28px;
}
.review-stars-sm { color: #B08D57; font-size: 0.8125rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { font-size: 0.9375rem; color: #5a6560; line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.review-card footer { font-size: 0.8125rem; }
.review-card footer strong { color: #1C2420; }
.review-card footer span { color: #8E9A9B; }

.reviews-link {
  display: inline-block; margin-top: 36px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  color: #8E9A9B; text-decoration: none;
}
.reviews-link:hover { color: #5a6560; }


/* ============================================================
   HOW IT WORKS — Dark with colored circles
   ============================================================ */
.how-section {
  padding: 100px 0; text-align: center;
  background: linear-gradient(180deg, #1C2420, #1a211d);
  position: relative; overflow: hidden;
}
/* Noise texture applied automatically to dark sections */
.how-section::after, .final-cta::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}
.how-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(61,90,71,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(91,111,85,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.how-section .eyebrow { color: #fff; }
.how-section h2 { color: #fff; margin-bottom: 52px; }

.how-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; position: relative; }

.how-step { flex: 0 1 260px; text-align: center; }
.how-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: #4A5D6A; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(61,90,71,0.3);
}
.how-step h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9375rem; color: #fff; margin-bottom: 8px; }
.how-step p { font-size: 0.8125rem; color: rgba(214,210,196,0.5); line-height: 1.55; }

.how-connector { width: 60px; height: 1px; background: rgba(176,141,87,0.2); margin-top: 28px; flex-shrink: 0; }


/* ============================================================
   FAQ — With atmospheric bg (Elkwood style)
   ============================================================ */
.faq {
  padding: 100px 0; background: #E8E5DD;
}

.faq-layout { display: grid; grid-template-columns: 300px 1fr; gap: 60px; }
.faq-left { position: sticky; top: 100px; align-self: start; }
.faq-left h2 { margin-bottom: 12px; }
.faq-cta-text { font-size: 0.875rem; color: #5a6560; margin-bottom: 16px; }

.faq-item { border-bottom: 1px solid rgba(28,36,32,0.08); }
.faq-item summary {
  padding: 20px 0; font-weight: 600; font-size: 0.9375rem; color: #1C2420;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; font-weight: 300; color: #B08D57; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 0 20px; font-size: 0.875rem; color: #5a6560; line-height: 1.65; }


/* ============================================================
   LOCATION
   ============================================================ */
.location-section { padding: 100px 0; background: #E8E5DD; }

.location-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.location-text p { font-size: 0.9375rem; color: #5a6560; line-height: 1.7; margin-bottom: 20px; }
.location-rivers { list-style: none; }
.location-rivers li {
  padding: 12px 0; border-bottom: 1px solid rgba(28,36,32,0.06);
  font-size: 0.875rem; color: #5a6560;
}
.location-rivers li strong { color: #1C2420; font-weight: 600; }

.location-map {
  width: 100%; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(28,36,32,0.1);
}
.location-map iframe { width: 100%; height: 100%; border: 0; }


/* ============================================================
   EMAIL — Elkwood-style bold band (slate blue)
   ============================================================ */
.email-section {
  padding: 52px 0;
  background: #4A5D6A;
}

.email-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.email-text h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.375rem; color: #fff; margin-bottom: 4px;
}
.email-text p { font-size: 0.8125rem; color: rgba(214,210,196,0.6); margin: 0; }

.email-form { display: flex; gap: 10px; }
.email-input {
  padding: 14px 20px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px; background: rgba(255,255,255,0.06);
  color: #fff; font-family: 'Inter', sans-serif; font-size: 0.875rem;
  width: 280px; outline: none; transition: border-color 0.3s;
}
.email-input::placeholder { color: rgba(255,255,255,0.3); }
.email-input:focus { border-color: #fff; }


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; padding: 120px 0; overflow: hidden; text-align: center; }
.final-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #2a3530; filter: brightness(0.5) saturate(0.8); }
.final-cta-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(28,36,32,0.3) 0%, rgba(28,36,32,0.7) 100%);
}
.final-cta-content { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.4rem); color: #fff; margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.final-cta p { font-size: 1rem; color: rgba(214,210,196,0.7); margin-bottom: 40px; }
.final-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }


/* ============================================================
   SUB-PAGE: HERO — Full-Bleed Dark
   Used on trip type pages, location pages, about page
   ============================================================ */
.hero-full {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 64px;
}
.hero-full-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #2a3530;
}
.hero-full-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(28,36,32,0.5) 0%,
      rgba(28,36,32,0.35) 40%,
      rgba(28,36,32,0.75) 80%,
      rgba(28,36,32,0.92) 100%
    );
}
.hero-full-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
  padding: 80px 40px 56px;
}
.hero-full-content .eyebrow { color: #fff; }
.hero-full-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 16px;
  max-width: 600px;
  letter-spacing: -0.01em;
}
.hero-full-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 20px;
}
.hero-full-specs {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hero-full-specs .spec {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4B87A;
  padding: 7px 16px;
  border: 1.5px solid rgba(212,184,122,0.6);
  border-radius: 100px;
  background: rgba(10,14,12,0.6);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}


/* ============================================================
   SUB-PAGE: Content Block (long-form text)
   ============================================================ */
.content-block {
  padding: 100px 0;
  background: #F0EDE5;
}
.content-block-col { display: flex; flex-direction: column; }
.content-block-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.content-block-text h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  line-height: 1.15;
  color: #1C2420;
  margin-bottom: 24px;
}
.content-block-text p {
  font-size: 0.9375rem;
  color: #5a6560;
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-block-text p:last-of-type {
  margin-bottom: 28px;
}
/* Read more - hidden on desktop, visible on mobile via @media */
.read-more-btn {
  display: block;
  margin-top: 8px;
  margin-bottom: 20px;
  background: none;
  border: none;
  color: #B08D57;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
}
.content-block-text.truncatable {
  max-height: 220px;
  overflow: hidden;
  position: relative;
}
.content-block-text.truncatable::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, #F0EDE5);
  pointer-events: none;
}
.content-block-text.truncatable.expanded {
  max-height: none;
}
.content-block-text.truncatable.expanded::after {
  display: none;
}
.content-block-image {
  aspect-ratio: 4/3;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: #3a4a42;
  box-shadow: 0 8px 32px rgba(28,36,32,0.1);
  position: sticky;
  top: 100px;
}


/* ============================================================
   SUB-PAGE: Stats Bar
   ============================================================ */
.stats-bar {
  background: #1C2420;
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 48px;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.75rem;
  color: #B08D57;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-item span {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(214,210,196,0.7);
}
.stat-divider {
  width: 1px; height: 36px;
  background: rgba(214,210,196,0.1);
}


/* ============================================================
   SUB-PAGE: Pricing Cards (2-3 cards)
   ============================================================ */
.pricing-section {
  padding: 100px 0;
  background: #E8E5DD;
  text-align: center;
}
.pricing-header { margin-bottom: 44px; }
.pricing-header h2 { margin-bottom: 8px; }
.pricing-desc {
  font-size: 0.9375rem;
  color: #5a6560;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-grid.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}

.pricing-card {
  background: #FAFAF7;
  border-radius: 8px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(28,36,32,0.04), 0 8px 28px rgba(28,36,32,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28,36,32,0.06), 0 20px 48px rgba(28,36,32,0.05);
}
.pricing-card-featured {
  border: 2px solid #B08D57;
  position: relative;
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(28,36,32,0.1), 0 20px 56px rgba(28,36,32,0.08);
  z-index: 2;
}
.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.pricing-card-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #B08D57; color: #fff;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 20px; border-radius: 100px; white-space: nowrap;
}

.pricing-card-bestfor {
  font-size: 0.75rem;
  font-weight: 500;
  color: #3D5A47;
  font-style: italic;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(28,36,32,0.06);
}

.pricing-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3D5A47;
  margin-bottom: 4px;
}
.pricing-card-sub {
  font-size: 0.8125rem;
  color: #8E9A9B;
  margin-bottom: 12px;
}
.pricing-card-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1C2420;
  margin-bottom: 2px;
  line-height: 1;
}
.pricing-card-per {
  font-size: 0.6875rem;
  color: #8E9A9B;
  margin-bottom: 16px;
}

.pricing-card-features {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-card-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; font-weight: 400; color: #5a6560;
  padding: 7px 0;
  border-bottom: 1px solid rgba(28,36,32,0.04);
}
.pricing-card-features li:last-child { border-bottom: none; }
.pricing-card-features svg { flex-shrink: 0; }


/* ============================================================
   SUB-PAGE: Testimonials 3-Up Light
   ============================================================ */
.testimonials-light {
  padding: 100px 0;
  background: #F0EDE5;
  text-align: center;
}
.testimonials-light-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  text-align: left;
}
.testimonial-card-light {
  background: #FAFAF7;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 1px 4px rgba(28,36,32,0.04);
}
.testimonial-card-light .review-stars-sm { margin-bottom: 12px; }
.testimonial-card-light p {
  font-size: 0.9375rem;
  color: #3a4440;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card-light footer {
  font-size: 0.8125rem;
}
.testimonial-card-light footer strong { color: #1C2420; }
.testimonial-card-light footer span { color: #8E9A9B; }


/* ============================================================
   SUB-PAGE: Other Trips Cards (dark background)
   ============================================================ */
.other-trips {
  padding: 100px 0;
  background: #E8E5DD;
  text-align: center;
}
.other-trips .eyebrow { color: #3D5A47; }
.other-trips h2 { color: #1C2420; margin-bottom: 44px; }

.other-trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.other-trip-card {
  background: #FAFAF7;
  border: 1px solid rgba(28,36,32,0.06);
  border-radius: 8px;
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.other-trip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28,36,32,0.08);
}
.other-trip-card-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3D5A47;
  margin-bottom: 8px;
}
.other-trip-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #1C2420;
  margin-bottom: 8px;
}
.other-trip-card p {
  font-size: 0.8125rem;
  color: #5a6560;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.other-trip-card-link {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B08D57;
  transition: color 0.3s;
}
.other-trip-card-link:hover { color: #1C2420; }


/* ============================================================
   SUB-PAGE: Form Component
   ============================================================ */
.booking-form-section {
  padding: 100px 0;
  background: #E8E5DD;
}
.booking-form-section .container {
  max-width: 640px;
}
.booking-form-header {
  text-align: center;
  margin-bottom: 36px;
}
.booking-form-header p {
  font-size: 0.9375rem;
  color: #5a6560;
  margin-top: -8px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1C2420;
}
.form-input,
.form-select,
.form-textarea {
  padding: 14px 16px;
  border: 1px solid rgba(28,36,32,0.12);
  border-radius: 4px;
  background: #FAFAF7;
  color: #1C2420;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #fff;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(28,36,32,0.3);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238E9A9B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
}
.form-microcopy {
  font-size: 0.75rem;
  color: #8E9A9B;
  text-align: center;
  margin-top: 8px;
}


/* ============================================================
   SUB-PAGE: How It Works (inline variant for forms)
   ============================================================ */
.how-inline {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(28,36,32,0.06);
}
.how-inline-step {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.how-inline-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #4A5D6A;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.how-inline-step h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1C2420;
  margin-bottom: 2px;
}
.how-inline-step p {
  font-size: 0.75rem;
  color: #8E9A9B;
  line-height: 1.5;
}


/* ============================================================
   SUB-PAGE: Hero Minimal (utility pages)
   ============================================================ */
.hero-minimal {
  padding: 140px 0 56px;
  background: #F0EDE5;
  text-align: center;
}
.hero-minimal h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: #1C2420;
  margin-bottom: 8px;
}
.hero-minimal p {
  font-size: 1rem;
  color: #5a6560;
  max-width: 480px;
  margin: 0 auto;
}


/* ============================================================
   SUB-PAGE RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .content-block-inner { grid-template-columns: 1fr; }
  .content-block-image { position: static; max-width: 560px; margin: 0 auto; }
  .pricing-grid.pricing-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .other-trips-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-light-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-full { min-height: 340px; }
  .hero-full-content { padding: 60px 20px 40px; }
  .hero-full-content h1 { font-size: 1.85rem; }
  .hero-full-specs { gap: 8px; }
  .hero-full-specs .spec { font-size: 0.5625rem; padding: 4px 10px; }

  .content-block-inner { padding: 0 20px; gap: 32px; }
  .content-block-image { aspect-ratio: 16/10; }

  .stats-bar-inner { flex-wrap: wrap; gap: 20px; padding: 24px 20px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 40%; }

  .pricing-grid,
  .pricing-grid.pricing-grid-3 { grid-template-columns: 1fr; max-width: 400px; }

  .testimonials-light-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }

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

  .form-row { grid-template-columns: 1fr; }
  .how-inline { flex-direction: column; gap: 16px; }

  .booking-form-section .container { padding: 0 20px; }
}


/* ============================================================
   FOOTER — Elkwood-style large nav text
   ============================================================ */
.footer {
  background: #121a16;
  padding: 48px 0 36px;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-tagline { font-size: 0.6875rem; color: rgba(214,210,196,0.3); letter-spacing: 0.04em; }
.footer-nav { display: flex; gap: 32px; }
.footer-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem; font-weight: 600; color: #D6D2C4;
  transition: color 0.3s; letter-spacing: -0.01em;
}
.footer-nav a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.footer-contact a { font-size: 0.75rem; color: rgba(214,210,196,0.4); transition: color 0.3s; }
.footer-contact a:hover { color: #fff; }


/* ============================================================
   MOBILE STICKY
   ============================================================ */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  padding: 10px 16px; padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: rgba(20,28,24,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(176,141,87,0.2); gap: 10px;
}
.mobile-sticky-phone {
  width: 48px; height: 48px; border-radius: 8px; background: #4A5D6A;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.mobile-sticky-btn { flex: 1; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 40px 48px; order: 2; }
  .hero-right { height: 35vh; order: 1; }
  .hero-img-card { display: none; }
  .why-row { grid-template-columns: 1fr 1fr; }
  .guides-layout { grid-template-columns: 1fr; gap: 40px; }
  .guides-grid-full { grid-template-columns: repeat(3, 1fr); }
  .travel-grid { grid-template-columns: 1fr 1fr; }
  .travel-grid .travel-card:last-child { grid-column: span 2; }
  .field-layout { grid-template-columns: 1fr; }
  .location-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-left { position: static; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-phone, .nav-right .btn-nav { display: none; }
  .nav-inner { padding: 0 20px; }
  .mobile-menu-toggle { display: flex; }

  .hero-left { padding: 24px 20px 36px; }
  /* Reserve page: headline first, then form (don't reverse order) */
  .reserve-hero { display: flex; flex-direction: column; }
  .reserve-hero-left { order: 1; padding: 90px 20px 32px !important; }
  .reserve-hero-right { order: 2; padding: 24px 20px 40px !important; height: auto !important; }
  .hero-right { height: 28vh; min-height: 180px; }
  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; padding-top: 24px;
  }
  .hero-stat-divider { display: none; }
  .hero-trust-row { gap: 12px; margin-bottom: 20px; }
  .hero-stat-divider { display: none; }
  .hero h1 { font-size: 1.85rem; }
  .proof-ticker { display: none; }

  .why-row { grid-template-columns: 1fr; }
  .why-block { padding: 28px 24px; min-height: 220px; }

  .guides-layout { grid-template-columns: 1fr; text-align: center; }
  .guides-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .guides-grid-full { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .video-section { height: 320px; }
  .video-play-btn { width: 64px; height: 64px; }

  .trips-grid { grid-template-columns: 1fr; }
  .trips-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  .corporate-section { min-height: auto; }
  .corporate-overlay { background: rgba(28,36,32,0.88); }
  .corporate-content { padding: 48px 20px; }
  .corporate-text { max-width: 100%; }
  .corporate-text h2 { font-size: 1.5rem; }
  .corporate-text p { font-size: 0.875rem; }
  .corporate-text .btn { font-size: 0.625rem; padding: 14px 24px; }

  /* Content blocks on mobile need padding */
  .content-block { padding: 60px 0; }
  .content-block-inner { padding: 0 20px; gap: 24px; }
  .content-block-text h2 { font-size: 1.5rem; margin-bottom: 16px; }
  .content-block-image { aspect-ratio: 3/2; border-radius: 8px; }

  /* Truncate long content blocks on mobile */
  .content-block-text.truncatable {
    max-height: 200px;
    overflow: hidden;
    position: relative;
  }
  .content-block-text.truncatable::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, #F0EDE5);
    pointer-events: none;
  }
  .content-block-text.truncatable.expanded {
    max-height: none;
  }
  .content-block-text.truncatable.expanded::after {
    display: none;
  }
  .read-more-btn {
    display: block;
    margin-top: 8px;
    margin-bottom: 16px;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 0;
  }
  .content-block .btn-gold {
    display: block;
    text-align: center;
    margin-bottom: 12px;
  }

  .travel-grid { grid-template-columns: 1fr; gap: 16px; }
  .travel-grid .travel-card:last-child { grid-column: auto; max-width: 100%; }
  .travel-card { aspect-ratio: 16/10; border-radius: 10px; }
  .travel-card-content { padding: 20px; }
  .travel-card h3 { font-size: 1.125rem; }
  .travel-section { padding: 72px 0; }
  .travel-header { padding: 0 20px; margin-bottom: 32px; }
  .travel-sub { font-size: 0.8125rem; }
  .travel-details-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; padding: 0 20px; gap: 10px; }
  .gallery-wide { grid-column: auto; }
  .gallery-scroll { padding: 0 20px 16px; gap: 12px; }
  .gallery-scroll-item { width: 300px; height: 220px; }

  .field-layout { grid-template-columns: 1fr; gap: 28px; }
  .location-layout { grid-template-columns: 1fr; }

  .reviews-layout { grid-template-columns: 1fr; }

  .how-steps { flex-direction: column; align-items: center; gap: 0; }
  .how-connector { width: 1px; height: 16px; }
  .how-num { width: 40px; height: 40px; font-size: 1rem; margin-bottom: 10px; }
  .how-section h2 { margin-bottom: 28px; }

  .email-inner { flex-direction: column; text-align: center; }
  .email-form { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .email-input { width: 100%; }

  .final-cta { padding: 80px 0 100px; }
  .final-cta-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }

  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .footer-nav a { font-size: 0.9375rem; }
  .footer-contact { align-items: center; }

  .mobile-sticky { display: flex; }
}


/* ============================================================
   PHOTO GALLERY + LIGHTBOX
   ============================================================ */
.photo-gallery {
  padding: 100px 0;
  background: #F0EDE5;
}
.photo-gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 2.8rem); font-weight: 700; color: #1C2420;
  margin-bottom: 44px;
}
.photo-gallery .gallery-header { text-align: center; margin-bottom: 44px; }
.photo-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.gallery-thumb {
  background-size: cover; background-position: center;
  border-radius: 6px; cursor: pointer;
  transition: transform 0.35s;
  position: relative; overflow: hidden;
}
.photo-gallery .gallery-thumb { aspect-ratio: unset; }
.gallery-thumb:hover {
  transform: scale(1.02);
}
.gallery-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-thumb:hover::after { opacity: 1; }

/* Lightbox overlay */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); z-index: 10000;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: 4px;
  animation: lbFadeIn 0.25s ease;
}
@keyframes lbFadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff;
  font-size: 2.5rem; cursor: pointer; z-index: 10001;
  line-height: 1; opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  font-size: 2rem; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0.6; transition: opacity 0.2s, background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-family: 'Inter', sans-serif;
  font-size: 0.8125rem; letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .photo-gallery .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; gap: 10px; padding: 0 20px; }
  .photo-gallery .gallery-grid .gallery-wide { grid-column: auto; }
  .photo-gallery { padding: 72px 0; }
  .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 1.5rem; }
}


/* ============================================================
   WATER CONDITIONS PAGE
   ============================================================ */
.nav-active { color: #B08D57 !important; }

.conditions-section { padding: 60px 0 100px; }

.conditions-loading {
  text-align: center; padding: 80px 0;
  color: rgba(28,36,32,0.5); font-size: 0.875rem;
}
.conditions-spinner {
  width: 32px; height: 32px; border: 3px solid rgba(28,36,32,0.1);
  border-top-color: #3D5A47; border-radius: 50%;
  animation: condSpin 0.8s linear infinite; margin: 0 auto 16px;
}
@keyframes condSpin { to { transform: rotate(360deg); } }

.conditions-error {
  text-align: center; padding: 60px 0;
  color: rgba(28,36,32,0.6); font-size: 0.9375rem; line-height: 1.8;
}
.conditions-error a { color: #3D5A47; font-weight: 600; }

.conditions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}

.conditions-card {
  background: #fff; border-radius: 10px; padding: 28px;
  border: 1px solid rgba(28,36,32,0.06);
  box-shadow: 0 1px 3px rgba(28,36,32,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.conditions-card:hover {
  box-shadow: 0 6px 20px rgba(28,36,32,0.08);
  transform: translateY(-2px);
}
.conditions-card-proxy { border-style: dashed; }

.conditions-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px; gap: 12px;
}
.conditions-card-header h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.25rem; color: #1C2420; line-height: 1.2;
}
.conditions-card-header h3 a { transition: color 0.2s; }
.conditions-card-header h3 a:hover { color: #3D5A47; }
.conditions-subtitle {
  font-size: 0.75rem; color: rgba(28,36,32,0.5); margin-top: 4px;
  display: block;
}

.conditions-badge {
  display: inline-flex; align-items: center;
  font-family: 'Inter', sans-serif; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.conditions-badge-excellent { background: rgba(61,90,71,0.12); color: #3D5A47; }
.conditions-badge-good { background: rgba(61,90,71,0.08); color: #5B8A4D; }
.conditions-badge-fair { background: rgba(176,141,87,0.12); color: #9E7D4D; }
.conditions-badge-poor { background: rgba(180,60,40,0.1); color: #A04030; }
.conditions-badge-unknown { background: rgba(28,36,32,0.06); color: rgba(28,36,32,0.4); }

.conditions-metrics {
  display: flex; gap: 24px; margin-bottom: 20px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(28,36,32,0.06);
}
.conditions-metric { display: flex; flex-direction: column; align-items: center; flex: 1; }
.conditions-metric-value {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.75rem; color: #1C2420; line-height: 1;
}
.conditions-metric-label {
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(28,36,32,0.4); margin-top: 4px;
}
.conditions-metric-tag {
  font-size: 0.5625rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-top: 6px; padding: 2px 8px;
  border-radius: 100px; background: rgba(28,36,32,0.04); color: rgba(28,36,32,0.45);
}
.conditions-tag-excellent { background: rgba(61,90,71,0.1); color: #3D5A47; }
.conditions-tag-good { background: rgba(61,90,71,0.07); color: #5B8A4D; }
.conditions-tag-fair { background: rgba(176,141,87,0.1); color: #9E7D4D; }
.conditions-tag-poor { background: rgba(180,60,40,0.08); color: #A04030; }

.conditions-forecast {
  flex: 1; margin-bottom: 16px;
}
.conditions-forecast p {
  font-size: 0.875rem; line-height: 1.6; color: rgba(28,36,32,0.7);
}

.conditions-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.conditions-species {
  font-size: 0.6875rem; font-weight: 500; color: rgba(28,36,32,0.45);
}
.conditions-updated {
  font-size: 0.625rem; color: rgba(28,36,32,0.35);
}

.conditions-book { width: 100%; text-align: center; }

.conditions-timestamp {
  text-align: center; margin-top: 32px; font-size: 0.6875rem;
  color: rgba(28,36,32,0.35); letter-spacing: 0.02em;
}

/* How to Read section */
.conditions-guide {
  padding: 80px 0; background: #E8E5DD;
}
.conditions-guide h2 { text-align: center; margin-bottom: 40px; }
.guide-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 32px;
}
.guide-item { text-align: center; }
.guide-item .conditions-badge { margin-bottom: 12px; }
.guide-item p { font-size: 0.8125rem; color: rgba(28,36,32,0.6); line-height: 1.55; }
.guide-note {
  text-align: center; font-size: 0.8125rem; color: rgba(28,36,32,0.5);
  line-height: 1.7; max-width: 700px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(28,36,32,0.08);
}

@media (max-width: 1024px) {
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .conditions-grid { grid-template-columns: 1fr; }
  .conditions-section { padding: 40px 0 80px; }
  .conditions-metrics { gap: 16px; }
  .conditions-metric-value { font-size: 1.5rem; }
  .guide-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .guide-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Premium button hover — lift + shadow fade */
.btn-gold {
  position: relative; overflow: hidden;
}
.btn-gold::after {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: 4px;
  box-shadow: 0 8px 24px rgba(176,141,87,0.35);
  opacity: 0; transition: opacity 0.25s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
}
.btn-gold:hover::after { opacity: 1; }
.btn-gold:active { transform: translateY(0); }

/* Gold outline button — fill from bottom */
.btn-gold-outline {
  position: relative; overflow: hidden;
  transition: color 0.35s ease, transform 0.25s ease, border-color 0.35s ease;
}
.btn-gold-outline::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 0;
  background: #B08D57; z-index: -1;
  transition: height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-gold-outline:hover::before { height: 100%; }
.btn-gold-outline:hover { color: #fff; border-color: #B08D57; }

/* Reduced motion — required for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   HOMEPAGE LIVE-CONDITIONS STRIP
   ============================================================ */

.cstrip-section {
  background: #1C2420;
  color: #F5F1E8;
  padding: 56px 24px;
  border-top: 1px solid rgba(214, 210, 196, 0.1);
  border-bottom: 1px solid rgba(214, 210, 196, 0.1);
}
.cstrip-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.cstrip-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B08D57;
  font-weight: 700;
  margin-bottom: 8px;
}
.cstrip-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5B6F55;
  margin-right: 8px;
  vertical-align: middle;
  animation: cstrip-pulse 2s ease-in-out infinite;
}
@keyframes cstrip-pulse {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.cstrip-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #F5F1E8;
  font-weight: 600;
}
.cstrip-section .cstrip-sub {
  color: rgba(245, 241, 232, 0.6);
  font-size: 14px;
  margin-bottom: 32px;
}
.cstrip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.cstrip-card {
  display: block;
  padding: 22px 20px;
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(214, 210, 196, 0.15);
  border-radius: 8px;
  text-decoration: none;
  color: #F5F1E8;
  transition: all .2s;
}
.cstrip-card:hover {
  background: rgba(245, 241, 232, 0.08);
  border-color: #B08D57;
  transform: translateY(-2px);
}
.cstrip-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.cstrip-flow {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}
.cstrip-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  color: #F5F1E8;
  line-height: 1;
}
.cstrip-unit {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
  font-weight: 600;
}
.cstrip-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}
.cstrip-good .cstrip-status {
  background: rgba(91, 111, 85, 0.2);
  color: #8AA678;
  border: 1px solid rgba(91, 111, 85, 0.4);
}
.cstrip-caution .cstrip-status {
  background: rgba(176, 141, 87, 0.15);
  color: #C9A574;
  border: 1px solid rgba(176, 141, 87, 0.4);
}
.cstrip-bad .cstrip-status {
  background: rgba(140, 60, 47, 0.15);
  color: #B97863;
  border: 1px solid rgba(140, 60, 47, 0.4);
}
.cstrip-idle .cstrip-status {
  background: rgba(214, 210, 196, 0.08);
  color: rgba(245, 241, 232, 0.5);
  border: 1px solid rgba(214, 210, 196, 0.15);
}
.cstrip-link {
  display: inline-block;
  color: #B08D57;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(176, 141, 87, 0.4);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.cstrip-link:hover {
  border-bottom-color: #B08D57;
}
.cstrip-cta-fallback {
  color: #B08D57;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
