/* ============================================================
   MATE IN THE MOUNTAINS — Design System v2
   Editorial adventure brand. Bold, immersive, authentic.
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --forest:       #1B3A2D;
  --forest-deep:  #0D1F16;
  --forest-light: #2E6B4F;
  --gold:         #C8A45A;
  --gold-dark:    #A8863A;
  --gold-light:   #D4B97A;
  --cream:        #FAF7F2;
  --cream-dark:   #F0EBE0;
  --white:        #FFFFFF;
  --dark:         #0A0A0A;
  --text:         #1A1A1A;
  --text-muted:   #6B6B6B;
  --text-light:   #999;
  --border:       #E8E5DE;
  --border-dark:  #C8C4BA;
  --overlay:      rgba(10, 15, 12, 0.75);
  --overlay-light: rgba(27, 58, 45, 0.4);

  --color-success: #2E6B4F;
  --color-warning: #E67E22;
  --color-error:   #C0392B;
  --color-info:    #3498DB;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs:      clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
  --text-sm:      clamp(0.82rem, 0.78rem + 0.2vw, 0.9rem);
  --text-base:    clamp(0.95rem, 0.88rem + 0.3vw, 1.06rem);
  --text-lg:      clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  --text-xl:      clamp(1.25rem, 1.1rem + 0.75vw, 1.55rem);
  --text-2xl:     clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem);
  --text-3xl:     clamp(2.2rem, 1.6rem + 2.8vw, 3.5rem);
  --text-display: clamp(3rem, 2rem + 5vw, 5.5rem);

  --leading-tight:  1.1;
  --leading-snug:   1.25;
  --leading-normal: 1.65;

  --tracking-tight:  -0.03em;
  --tracking-normal: 0;
  --tracking-wide:   0.05em;
  --tracking-wider:  0.12em;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --section-y: clamp(4rem, 10vw, 8rem);
  --section-x: clamp(1.25rem, 5vw, 4rem);

  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 80px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 8px 36px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.04);

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    150ms;
  --dur-normal:  250ms;
  --dur-slow:    450ms;
  --transition:  var(--dur-normal) var(--ease-out);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--leading-normal);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Accessibility --- */
.skip-link {
  position: absolute; top: -100%; left: var(--space-4);
  background: var(--forest); color: var(--white); padding: var(--space-3) var(--space-6);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600;
  z-index: 10000; transition: top var(--dur-fast);
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-snug);
  color: var(--dark);
}
h1 { font-size: var(--text-display); letter-spacing: var(--tracking-tight); line-height: var(--leading-tight); }
h2 { font-size: var(--text-3xl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--section-x); }
.container--narrow { max-width: var(--max-width-narrow); }
.section { padding: var(--section-y) 0; }
.section--dark { background: var(--forest-deep); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--forest { background: var(--forest); color: var(--white); }
.section--forest h2, .section--forest h3, .section--forest h4 { color: var(--white); }
.section--cream { background: var(--cream); }
.section--reviews {
  position: relative; overflow: hidden; color: var(--white);
}
.section--reviews .hero-bg::after { background: rgba(10, 15, 12, 0.82); }
.section--reviews h2, .section--reviews h3, .section--reviews h4 { color: var(--white); }
.section--reviews .section-header p { color: rgba(255,255,255,0.65); }
.section--reviews .testimonial-card {
  background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.section--reviews .testimonial-card::before { color: var(--gold); opacity: 0.2; }
.section--reviews .testimonial-card:hover { background: rgba(255,255,255,0.12); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.section--reviews .testimonial-text { color: rgba(255,255,255,0.9); }
.section--reviews .testimonial-name { color: var(--white); }
.section--reviews .testimonial-detail { color: rgba(255,255,255,0.5); }
.section--reviews .testimonial-avatar { background: var(--gold); color: var(--dark); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: var(--tracking-wide);
  border-radius: var(--radius-sm); border: 2px solid transparent;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); white-space: nowrap; line-height: 1;
  position: relative; overflow: hidden;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-primary {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
}
.btn-primary::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; background: rgba(255,255,255,0.2);
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-3px); box-shadow: 0 8px 25px rgba(200,164,90,0.4);
}
.btn-primary:hover::before { width: 300px; height: 300px; }
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-xs); }
.btn-secondary {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: var(--white); color: var(--forest); border-color: var(--white);
  transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}
.btn-outline {
  background: transparent; color: var(--forest); border-color: var(--border-dark);
}
.btn-outline:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-ghost { background: transparent; color: var(--forest); border-color: transparent; }
.btn-ghost:hover { background: var(--cream); }
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }
.btn-lg { padding: var(--space-4) var(--space-10); font-size: var(--text-base); }
.btn-block { width: 100%; justify-content: center; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); background: transparent;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.scrolled {
  background: rgba(13, 31, 22, 0.92); box-shadow: 0 2px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  height: 64px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--section-x);
}
.nav-logo { display: flex; align-items: center; gap: var(--space-3); }
.nav-logo-img {
  height: 58px; width: auto; flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--white);
}
.nav-links { display: flex; align-items: center; gap: var(--space-8); }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: var(--text-sm); font-weight: 500;
  transition: color var(--transition); position: relative; padding: var(--space-1) 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--gold); transition: width var(--dur-normal) var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta .btn { padding: var(--space-2) var(--space-5); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: var(--space-1); }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); transform-origin: center; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center;
    background: var(--forest-deep); padding: var(--space-16) var(--section-x);
    gap: var(--space-6);
    clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem);
    transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 999;
  }
  .nav-links.open {
    clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem);
  }
  .nav-links a {
    font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 700;
    color: rgba(255,255,255,0.9);
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
  }
  .nav-links.open a { opacity: 1; transform: translateY(0); }
  .nav-links.open a:nth-child(1) { transition-delay: 0.15s; }
  .nav-links.open a:nth-child(2) { transition-delay: 0.25s; }
  .nav-links.open a:nth-child(3) { transition-delay: 0.35s; }
  .nav-links.open a:nth-child(4) { transition-delay: 0.45s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { display: none; }
  .nav-toggle { z-index: 1001; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero--video .hero-bg { background: none; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 15, 12, 0.2) 0%,
    rgba(10, 15, 12, 0.4) 50%,
    rgba(10, 15, 12, 0.85) 100%
  );
}
.hero--video .hero-bg::after {
  background: linear-gradient(180deg,
    rgba(10, 15, 12, 0.05) 0%,
    rgba(10, 15, 12, 0.1) 40%,
    rgba(10, 15, 12, 0.65) 100%
  );
}
.hero-content {
  position: relative; z-index: 1; width: 100%; max-width: var(--max-width);
  margin: 0 auto; padding: var(--space-20) var(--section-x) var(--space-16);
}
.hero h1 {
  color: var(--white); margin-bottom: var(--space-6);
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  max-width: 14ch;
}
.hero p {
  font-size: var(--text-lg); opacity: 0.85; margin-bottom: var(--space-8);
  max-width: 500px;
}
.hero-buttons { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: var(--space-12); margin-top: var(--space-12);
  padding-top: var(--space-8); border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat { text-align: left; min-width: 100px; }
.hero-stat-number {
  font-family: var(--font-heading); font-size: var(--text-2xl);
  font-weight: 700; color: var(--gold);
}
.hero-stat-label {
  font-size: var(--text-xs); color: rgba(255,255,255,0.5); margin-top: var(--space-1);
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
}

@media (max-width: 600px) {
  .hero { min-height: 90vh; }
  .hero-stats { gap: var(--space-8); }
  .hero h1 { max-width: 100%; }
}

/* --- Page Hero --- */
.page-hero {
  position: relative; min-height: 50vh; display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden;
}
.page-hero .hero-bg::after { background: var(--overlay); }
.page-hero .hero-content {
  padding-bottom: var(--space-12);
}
.page-hero h1 { color: var(--white); margin-bottom: var(--space-3); max-width: 16ch; }
.page-hero p { font-size: var(--text-lg); opacity: 0.8; max-width: 550px; }

/* --- Section Headers --- */
.section-header { max-width: 650px; margin-bottom: var(--space-12); }
.section-header.section-header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header--center .section-label { justify-content: center; }
.section-header p { color: var(--text-muted); font-size: var(--text-lg); margin-top: var(--space-3); }
.section--dark .section-header p, .section--forest .section-header p { color: rgba(255,255,255,0.6); }
.section-label {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--tracking-wider);
  color: var(--gold-dark); margin-bottom: var(--space-3);
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--gold); flex-shrink: 0;
}
.section--dark .section-label, .section--forest .section-label,
.section--reviews .section-label { color: var(--gold); }
.section--dark .section-label::before, .section--forest .section-label::before,
.section--reviews .section-label::before { background: var(--gold); }

/* --- Filter Tabs --- */
.filter-tabs { display: flex; gap: var(--space-2); margin-bottom: var(--space-10); flex-wrap: wrap; }
.filter-tab {
  padding: var(--space-2) var(--space-5); border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 500;
  background: transparent; color: var(--text-muted); transition: all var(--transition);
  border: 1px solid var(--border);
}
.filter-tab:hover { border-color: var(--forest); color: var(--forest); }
.filter-tab.active { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* --- Trek Cards --- */
.treks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: var(--space-6); }
.trek-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0,0,0,0.04);
}
.trek-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.14); border-color: rgba(0,0,0,0.08); }
.trek-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: var(--radius-md); }
.trek-card:hover .btn-outline { background: var(--forest); color: var(--white); border-color: var(--forest); }
.trek-card-image { position: relative; height: 260px; overflow: hidden; }
.trek-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.trek-card:hover .trek-card-image img { transform: scale(1.07); }
.trek-card-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.15));
  pointer-events: none; transition: opacity 0.5s ease;
}
.trek-card:hover .trek-card-image::after {
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
}
.trek-card-badge {
  position: absolute; top: var(--space-4); left: var(--space-4);
  background: rgba(27, 58, 45, 0.8); color: var(--white);
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-sm);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.02em;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}
.trek-card-country {
  position: absolute; top: var(--space-4); right: var(--space-4);
  background: rgba(255,255,255,0.85); color: var(--dark);
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-sm);
  font-size: var(--text-xs); font-weight: 600;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
}
.trek-card-body { padding: var(--space-5) var(--space-5) var(--space-6); }
.trek-card-title {
  font-family: var(--font-heading); font-size: var(--text-xl);
  font-weight: 700; margin-bottom: var(--space-2); color: var(--dark);
}
.trek-card-meta {
  display: flex; gap: var(--space-4); margin-bottom: var(--space-4);
  font-size: var(--text-xs); color: var(--text-muted); flex-wrap: wrap;
}
.trek-card-meta span { display: flex; align-items: center; gap: var(--space-1); }
.trek-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--space-4); border-top: 1px solid var(--border);
}
.trek-card-price { font-size: var(--text-lg); font-weight: 700; color: var(--forest); }
.trek-card-price small { font-size: var(--text-xs); font-weight: 400; color: var(--text-muted); }

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

/* --- Icon (replaces emoji) --- */
.icon-box {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 28px; height: 28px; }
.icon-box--gold { background: rgba(200,164,90,0.12); color: var(--gold); }
.icon-box--forest { background: rgba(46,107,79,0.1); color: var(--forest-light); }
.icon-box--light { background: rgba(255,255,255,0.08); color: var(--gold); }

/* --- Services / How It Works --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-8); }
.service-card {
  padding: var(--space-8); border-radius: var(--radius-md); transition: all var(--transition);
}
.service-card:hover { transform: translateY(-3px); }
.service-icon {
  width: 56px; height: 56px; margin-bottom: var(--space-5); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.service-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.service-card p { font-size: var(--text-base); color: var(--text-muted); }

.section--dark .service-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.section--dark .service-card:hover { background: rgba(255,255,255,0.08); }
.section--dark .service-icon { background: rgba(200,164,90,0.12); }
.section--dark .service-card p, .section--forest .service-card p { color: rgba(255,255,255,0.6); }

/* --- Steps (numbered how-it-works) --- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); counter-reset: step; }
.step { counter-increment: step; }
.step-number {
  font-family: var(--font-heading); font-size: var(--text-display); font-weight: 800;
  color: var(--gold); opacity: 0.15; margin-bottom: var(--space-2); line-height: 0.85;
}
.step-number::before { content: counter(step, decimal-leading-zero); }
.step h3 {
  font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700;
  margin-bottom: var(--space-2); margin-top: calc(var(--space-2) * -1);
}
.step p { font-size: var(--text-sm); color: var(--text-muted); }
.section--dark .step p, .section--forest .step p { color: rgba(255,255,255,0.6); }
.section--dark .step-number, .section--forest .step-number { color: var(--gold); opacity: 0.2; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; gap: var(--space-6); } }

/* --- Feature Cards (About page) --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-6); }
.feature-card {
  background: var(--white); border-radius: var(--radius-md); padding: var(--space-8);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--dur-slow) var(--ease-out);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon { margin-bottom: var(--space-4); }
.feature-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.feature-card p { font-size: var(--text-base); color: var(--text-muted); }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--space-6); }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-md); padding: var(--space-8);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--dur-slow) var(--ease-out); position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: var(--space-4); right: var(--space-6);
  font-family: var(--font-heading); font-size: 4rem; line-height: 1;
  color: var(--gold); opacity: 0.15;
}
.testimonial-card:hover { box-shadow: 0 12px 35px rgba(0,0,0,0.1); transform: translateY(-5px); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: var(--space-4); }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-text {
  font-size: var(--text-base); line-height: 1.8; color: var(--text);
  margin-bottom: var(--space-6); font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-sm); flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: var(--text-sm); }
.testimonial-detail { font-size: var(--text-xs); color: var(--text-muted); }

/* --- Why / Features Grid --- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-8); }
.why-item { padding: var(--space-4); }
.why-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: var(--space-4);
  background: rgba(200,164,90,0.1);
}
.why-item h4 { margin-bottom: var(--space-2); font-size: var(--text-base); }
.why-item p { font-size: var(--text-sm); color: var(--text-muted); }
.section--dark .why-item p, .section--forest .why-item p { color: rgba(255,255,255,0.55); }
.section--dark .why-icon, .section--forest .why-icon { background: rgba(200,164,90,0.1); }

/* --- Giving Back --- */
.giving-back {
  background: var(--white); border-radius: var(--radius-md); padding: var(--space-10);
  display: flex; align-items: flex-start; gap: var(--space-6);
  max-width: var(--max-width-narrow); margin: 0 auto;
  border-left: 4px solid var(--gold); box-shadow: var(--shadow-sm);
}
.giving-back-icon { flex-shrink: 0; }
.giving-back-icon svg { width: 32px; height: 32px; color: var(--gold-dark); }
.giving-back h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.giving-back p { font-size: var(--text-base); color: var(--text-muted); line-height: 1.8; }
@media (max-width: 600px) { .giving-back { flex-direction: column; } }

/* --- Newsletter --- */
.newsletter {
  background: var(--forest-deep); border-radius: var(--radius-lg); padding: var(--space-16) var(--space-12);
  color: var(--white); max-width: 700px; margin: 0 auto; text-align: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(200,164,90,0.06); pointer-events: none;
}
.newsletter::after {
  content: ''; position: absolute; bottom: -20px; left: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(200,164,90,0.04); pointer-events: none;
}
.newsletter h3 { color: var(--white); font-size: var(--text-2xl); margin-bottom: var(--space-2); }
.newsletter p { color: rgba(255,255,255,0.6); font-size: var(--text-base); margin-bottom: var(--space-6); }
.newsletter-form { display: flex; gap: var(--space-3); max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: var(--space-3) var(--space-4); border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); color: var(--white);
  font-size: var(--text-sm); transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1); }
.newsletter-form .btn { flex-shrink: 0; }
.newsletter-success { display: none; color: var(--gold); font-weight: 600; margin-top: var(--space-4); }
.newsletter-success.show { display: block; }
@media (max-width: 500px) { .newsletter-form { flex-direction: column; } .newsletter { padding: var(--space-10) var(--space-6); } }

/* --- Blog Cards --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--space-6); }
.blog-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--dur-slow) var(--ease-out);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-image { height: 220px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: var(--space-5) var(--space-5) var(--space-6); }
.blog-card-date {
  font-size: var(--text-xs); color: var(--text-light); margin-bottom: var(--space-2);
  text-transform: uppercase; letter-spacing: var(--tracking-wide); font-weight: 500;
}
.blog-card-title { font-family: var(--font-heading); font-size: var(--text-lg); margin-bottom: var(--space-2); }
.blog-card-excerpt { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-4); line-height: 1.7; }
.blog-card-link {
  font-weight: 600; font-size: var(--text-sm); color: var(--forest);
  display: inline-flex; align-items: center; gap: var(--space-1); transition: all var(--transition);
}
.blog-card-link:hover { color: var(--gold); gap: var(--space-2); }
.blog-card:hover .blog-card-link { color: var(--gold); }

/* --- Blog Article --- */
.page-hero--short { min-height: 40vh; }
.page-hero--short .hero-content { padding-bottom: var(--space-8); }
.article-meta {
  font-size: var(--text-sm); opacity: 0.7; margin-top: var(--space-2);
}
.article-content {
  max-width: 720px; margin: 0 auto;
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.125rem);
  line-height: 1.85; color: var(--text-body);
}
.article-content h2 {
  font-family: var(--font-heading); font-size: var(--text-xl);
  font-weight: 700; color: var(--dark);
  margin: var(--space-10) 0 var(--space-4) 0;
}
.article-content p {
  margin-bottom: var(--space-5);
}
.article-content a {
  color: var(--forest); font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--transition);
}
.article-content a:hover { color: var(--gold); }
.article-lead {
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.2rem);
  color: var(--dark); font-weight: 500; line-height: 1.8;
}
.article-image {
  margin: var(--space-8) calc(-1 * var(--space-6));
}
.article-image img {
  width: 100%; height: auto; border-radius: var(--radius-md);
  aspect-ratio: 3/2; object-fit: cover;
}
.article-image figcaption {
  font-size: var(--text-xs); color: var(--text-muted);
  text-align: center; margin-top: var(--space-3);
}
.article-content ul, .article-content ol {
  margin: 0 0 var(--space-5) var(--space-6);
}
.article-content li {
  margin-bottom: var(--space-2);
}
.article-ctas {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6);
  margin-top: var(--space-12); padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}
.article-cta h3 {
  font-family: var(--font-heading); font-size: var(--text-base);
  margin-bottom: var(--space-2);
}
.article-cta p {
  font-size: var(--text-sm); color: var(--text-muted);
  margin-bottom: var(--space-4);
}
@media (max-width: 640px) {
  .article-ctas { grid-template-columns: 1fr; }
  .article-image { margin-left: 0; margin-right: 0; }
}

/* --- CTA Banner --- */
.cta-banner { position: relative; padding: var(--section-y) 0; color: var(--white); overflow: hidden; }
.cta-banner .hero-bg::after { background: var(--overlay); }
.cta-banner .hero-content { max-width: var(--max-width); margin: 0 auto; padding: var(--space-8) var(--section-x); }
.cta-banner h2 { color: var(--white); margin-bottom: var(--space-4); max-width: 16ch; }
.cta-banner p { font-size: var(--text-lg); opacity: 0.8; max-width: 500px; margin-bottom: var(--space-8); }
.cta-newsletter {
  margin-top: var(--space-10); padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.cta-newsletter-text {
  font-size: var(--text-sm); opacity: 0.7; margin-bottom: var(--space-4);
}
.cta-newsletter .newsletter-form {
  max-width: 420px;
}

/* --- Footer --- */
.footer { background: var(--forest-deep); color: rgba(255,255,255,0.6); padding: var(--section-y) 0 var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--space-12); margin-bottom: var(--space-16); }
.footer-brand p { font-size: var(--text-sm); line-height: 1.75; margin-top: var(--space-4); }
.footer h4 {
  color: var(--white); font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 700; margin-bottom: var(--space-4); text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}
.footer-links a {
  display: block; padding: var(--space-2) 0; font-size: var(--text-sm);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: var(--text-sm); margin-bottom: var(--space-3); }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; }
.footer-social a:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.footer-bottom {
  padding-top: var(--space-8); border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-xs); flex-wrap: wrap; gap: var(--space-4);
}
.footer-legal { display: flex; gap: var(--space-6); }
.footer-legal a:hover { color: var(--gold); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TREK DETAIL PAGES — Full Redesign
   Clean, spread out, editorial. Generous whitespace.
   ============================================================ */

/* --- Trek Detail Hero --- */
.trek-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.trek-hero .hero-bg {
  transition: transform 10s cubic-bezier(0.16, 1, 0.3, 1);
}
.trek-hero .hero-bg::after {
  background: linear-gradient(
    0deg,
    rgba(10, 15, 12, 0.82) 0%,
    rgba(10, 15, 12, 0.45) 30%,
    rgba(10, 15, 12, 0.08) 60%,
    transparent 100%
  );
}
.trek-hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--section-x);
  padding-bottom: clamp(var(--space-10), 5vw, var(--space-16));
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  animation: trekHeroFade 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
@keyframes trekHeroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trek-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-4);
  font-size: var(--text-3xl);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}
.trek-hero h1::after { display: none; }
.trek-hero-subtitle {
  font-size: var(--text-lg);
  opacity: 0.88;
  max-width: 540px;
  line-height: 1.7;
  font-weight: 400;
}
.trek-quick-facts {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}
.trek-fact {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-2) var(--space-4);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trek-fact strong {
  color: var(--gold-light);
  font-weight: 700;
}
.trek-back {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-xs);
  font-weight: 500;
  margin-bottom: var(--space-6);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.trek-back:hover {
  color: var(--white);
  gap: var(--space-3);
}

/* --- Trek Detail Layout --- */
.trek-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(var(--space-16), 6vw, var(--space-24));
  align-items: start;
}
@media (max-width: 960px) {
  .trek-detail { grid-template-columns: 1fr; }
}

/* --- Trek Sections --- */
.trek-section {
  margin-bottom: clamp(var(--space-20), 8vw, var(--space-32));
}
.trek-section + .trek-section {
  padding-top: clamp(var(--space-16), 6vw, var(--space-24));
  border-top: 1px solid var(--border);
}
.trek-section--wide + .trek-pair {
  border-top: none;
  padding-top: 0;
}
.trek-section h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-10);
  color: var(--dark);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  text-align: center;
}
.trek-section h2::after {
  display: none;
}
.trek-section .section-label {
  text-align: center;
}
.trek-section > p {
  font-size: var(--text-base);
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.trek-section > p:first-of-type {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.8;
}
.trek-section > p:last-child {
  margin-bottom: 0;
}

/* --- Paired Sections (side by side on desktop) --- */
.trek-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
  margin-bottom: clamp(var(--space-20), 8vw, var(--space-32));
}
.trek-pair .trek-section {
  margin-bottom: 0;
}
.trek-pair .trek-section + .trek-section {
  padding-top: 0;
  border-top: none;
}
.trek-pair .trek-section > p:first-of-type {
  font-size: var(--text-base);
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .trek-pair {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* Info pair (Itinerary + Includes) — stack vertically like ARRIVAL */
.trek-pair--info {
  grid-template-columns: 1fr;
  gap: clamp(var(--space-16), 6vw, var(--space-24));
}
.trek-pair--info .trek-section + .trek-section {
  padding-top: clamp(var(--space-16), 6vw, var(--space-24));
  border-top: 1px solid var(--border);
}
.trek-pair--info .trek-section h2,
.trek-pair--info .trek-section .section-label {
  text-align: left;
}
.trek-pair--info .itinerary-list {
  max-height: none;
}

/* --- Route Section (wide, prominent centrepiece) --- */
.trek-section--wide {
  padding-top: clamp(var(--space-16), 6vw, var(--space-24));
  padding-bottom: clamp(var(--space-16), 6vw, var(--space-24));
  border-top: 1px solid var(--border);
}
.trek-section--wide .trek-route {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: clamp(var(--space-8), 4vw, var(--space-12)) 0;
  min-height: 200px;
}
.trek-section--wide .trek-route-caption {
  margin-top: var(--space-8);
}

/* Section label — ARRIVAL-style uppercase overline */
.trek-section .section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: var(--space-3);
  display: block;
  text-align: center;
}
/* Photos section — no divider from overview, flows naturally */
.trek-photos {
  border-top: none !important;
  padding-top: 0 !important;
}
.trek-photos h2 {
  font-size: var(--text-lg);
}

/* --- Booking Card (sticky sidebar — ARRIVAL-style clean) --- */
.trek-detail > aside {
  align-self: start;
  position: sticky;
  top: calc(var(--nav-height) + var(--space-8));
}
.booking-card {
  background: var(--forest-deep);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  color: var(--white);
  overflow: hidden;
}
.booking-card::before {
  display: none;
}
.booking-card-price {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-1);
}
.booking-card-price small {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
}
.booking-card-subtitle {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.01em;
}
.booking-card-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.booking-card-actions .btn {
  width: 100%;
  justify-content: center;
}
.booking-card-actions .btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}
.booking-card-actions .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.booking-card-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}
.booking-card-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}
.booking-card-details {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.booking-card-details li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-1) 0;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
}
.booking-card-details li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.booking-card-details li + li {
  border-top: none;
}

/* --- Itinerary Accordion (dark card — ARRIVAL style) --- */
.itinerary-list {
  margin-top: var(--space-8);
  position: relative;
  padding: clamp(var(--space-8), 3vw, var(--space-12));
  background: var(--forest-deep);
  border-radius: var(--radius-xl);
}
.itinerary-list::before { display: none; }
.itinerary-day {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.itinerary-day:last-child {
  border-bottom: none;
}
.itinerary-day::before { display: none; }
.itinerary-day-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}
.itinerary-day-header:hover {
  color: var(--gold-light);
}
.itinerary-day.open .itinerary-day-header {
  color: var(--gold-light);
}
.itinerary-day-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  flex-shrink: 0;
  min-width: 54px;
  text-align: center;
  background: transparent;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s var(--ease-out);
}
.itinerary-day.open .itinerary-day-num {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}
.itinerary-day h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  flex: 1;
  transition: color 0.2s ease;
}
.itinerary-day.open h4 {
  color: var(--white);
}
.itinerary-day-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.itinerary-day.open .itinerary-day-toggle {
  transform: rotate(45deg);
  color: var(--forest-deep);
  background: var(--gold);
  border-color: var(--gold);
}
.itinerary-day-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.itinerary-day-body-inner {
  padding: 0 0 var(--space-6) calc(54px + var(--space-8));
}
.itinerary-day p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
}

/* --- Includes / Excludes --- */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 4vw, var(--space-16));
}
@media (max-width: 600px) {
  .includes-grid { grid-template-columns: 1fr; }
}
.includes-grid > div {
  padding: 0;
}
.includes-grid > div:last-child {
  background: transparent;
}
.includes-grid > div h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  font-weight: 700;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}
.includes-grid > div:first-child h4 {
  color: var(--forest-light);
}
.includes-grid > div:last-child h4 {
  color: var(--color-error);
}
.includes-list li,
.excludes-list li {
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  display: flex;
  align-items: start;
  gap: var(--space-3);
  line-height: 1.75;
  color: var(--text-muted);
}
.includes-list li::before {
  content: '\2713';
  color: var(--forest-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.85rem;
}
.excludes-list li::before {
  content: '\2715';
  color: var(--color-error);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
}

/* --- Trek Route Diagram --- */
.trek-route {
  background: transparent;
  border-radius: 0;
  padding: clamp(var(--space-8), 3vw, var(--space-12)) 0;
  border: none;
  position: relative;
  overflow: hidden;
}
.trek-route svg {
  width: 100%;
  display: block;
}
.trek-route-line {
  fill: none;
  stroke: var(--forest);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 8 6;
}
.trek-route-line-shadow {
  fill: none;
  stroke: var(--forest);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.06;
}
.trek-route-dot {
  fill: var(--white);
  stroke: var(--forest);
  stroke-width: 3;
  transition: all 0.2s ease;
  cursor: default;
}
.trek-route-dot-start,
.trek-route-dot-end {
  fill: var(--gold);
  stroke: var(--forest-deep);
  stroke-width: 3;
}
.trek-route-pin {
  fill: var(--gold);
  stroke: var(--forest-deep);
  stroke-width: 2;
}
.trek-route-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  fill: var(--dark);
  letter-spacing: 0.01em;
}
.trek-route-label-key {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  fill: var(--forest-deep);
  letter-spacing: -0.01em;
}
.trek-route-elev {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  fill: var(--gold-dark);
}
.trek-route-caption {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-6);
  letter-spacing: 0.02em;
  font-style: italic;
}

/* Legacy map (fallback) */
.trek-map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: var(--space-4);
}
.trek-map {
  height: 400px;
  width: 100%;
}
@media (max-width: 768px) {
  .trek-map { height: 300px; }
}
.trek-map-caption {
  padding: var(--space-3) 0;
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* --- Availability Table --- */
.availability-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: var(--text-sm);
  overflow: hidden;
}
.availability-table th {
  background: transparent;
  color: var(--text-light);
  padding: var(--space-4) var(--space-5) var(--space-4) 0;
  text-align: left;
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  border-bottom: 2px solid var(--dark);
}
.availability-table th:first-child {
  padding-left: 0;
}
.availability-table td {
  padding: var(--space-5) var(--space-5) var(--space-5) 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
  color: var(--text-muted);
}
.availability-table td:first-child {
  font-weight: 500;
  color: var(--dark);
}
.availability-table tbody tr {
  transition: all 0.2s ease;
}
.availability-table tbody tr:hover td {
  background: rgba(200, 164, 90, 0.04);
}
.availability-table tbody tr:last-child td {
  border-bottom: none;
}
.status-available {
  color: var(--forest-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.status-available::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(46, 107, 79, 0.12);
}
.status-limited {
  color: var(--color-warning);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.status-limited::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-warning);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.12);
  animation: statusPulse 2s ease infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.12); }
  50%      { box-shadow: 0 0 0 6px rgba(230, 126, 34, 0.06); }
}
.status-full {
  color: var(--color-error);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.status-full::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-error);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

/* --- Private Tour Note --- */
.private-tour-note {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-8) var(--space-8) var(--space-10);
  display: flex;
  gap: var(--space-6);
  align-items: start;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
}
.private-tour-note-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.private-tour-note-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.5;
}
.private-tour-note p {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--text-muted);
}
.private-tour-note h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}
.private-tour-note--green {
  border-left-color: var(--forest-light);
}
.private-tour-note--green .private-tour-note-icon svg {
  stroke: var(--forest-light);
}
.private-tour-note--bottom {
  margin-top: var(--space-10);
}
.scheduled-departures-heading {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  margin: var(--space-10) 0 var(--space-3);
}
.text-link {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover {
  color: var(--forest-deep);
}
.trek-part-heading {
  font-family: var(--font-heading);
  color: var(--forest);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-5);
}
.trek-part-heading--later {
  margin-top: var(--space-10);
}

/* --- Trek Photos Slider --- */
.trek-photos-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.trek-photos-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.trek-photos-track::-webkit-scrollbar { display: none; }
.trek-photo {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: grab;
}
.trek-photo:active {
  cursor: grabbing;
}
.trek-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.trek-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.06) 30%,
    transparent 50%
  );
  pointer-events: none;
}
.trek-photo-caption {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-8);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 1;
  letter-spacing: var(--tracking-wide);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.trek-photo-counter {
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--space-1) var(--space-4);
  border-radius: 100px;
  letter-spacing: var(--tracking-wide);
}

/* Slider arrows */
.trek-photos-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
}
.trek-photos-slider:hover .trek-photos-arrow {
  opacity: 1;
}
.trek-photos-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.06);
}
.trek-photos-arrow:focus-visible {
  opacity: 1;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.trek-photos-arrow--prev {
  left: var(--space-5);
}
.trek-photos-arrow--next {
  right: var(--space-5);
}

/* Slider dots */
.trek-photos-dots {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--space-2);
}
.trek-photos-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.trek-photos-dot:hover {
  background: rgba(255, 255, 255, 0.65);
}
.trek-photos-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 100px;
}
.trek-photos-dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .trek-photos-arrow { display: none; }
  .trek-photo { aspect-ratio: 4 / 3; }
}

/* --- Booking Calendar --- */
.booking-cal {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: clamp(var(--space-8), 3vw, var(--space-12));
  min-height: 200px;
  box-shadow: var(--shadow-sm);
}

/* Steps indicator */
.bc-steps {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border);
}
.bc-step {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: var(--tracking-wide);
}
.bc-step--active {
  color: var(--dark);
  font-weight: 700;
}
.bc-step--done {
  color: var(--forest-light);
}
.bc-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--text-light);
  flex-shrink: 0;
}
.bc-step--active .bc-step-num {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.bc-step--done .bc-step-num {
  background: var(--forest-light);
  color: var(--white);
  border-color: var(--forest-light);
}

/* Calendar header */
.bc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}
.bc-month-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark);
}
.bc-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
}
.bc-nav:hover {
  border-color: var(--dark);
  color: var(--dark);
}

/* Month dots */
.bc-month-dots {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.bc-month-dot {
  padding: var(--space-2) var(--space-4);
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
}
.bc-month-dot:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.bc-month-dot.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* Calendar grid */
.bc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: var(--space-8);
}
.bc-day-label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  padding: var(--space-3) 0;
}
.bc-day {
  text-align: center;
  padding: var(--space-2);
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-day--empty {
  visibility: hidden;
}
.bc-day--past {
  color: var(--border-dark);
  cursor: default;
}
.bc-day--available {
  cursor: pointer;
  transition: all 0.2s ease;
}
.bc-day--available:hover {
  background: rgba(27, 58, 45, 0.06);
  transform: scale(1.05);
}
.bc-day--departure {
  cursor: pointer;
  transition: all 0.2s ease;
}
.bc-day--departure:hover {
  background: rgba(27, 58, 45, 0.06);
  transform: scale(1.05);
}
.bc-day--departure::after {
  display: none;
}
.bc-day--selected {
  background: var(--forest) !important;
  color: var(--white) !important;
}
.bc-day--selected::after {
  background: var(--white) !important;
}
.bc-day--full {
  background: rgba(192, 57, 43, 0.08);
  color: var(--color-error);
  cursor: default;
  text-decoration: line-through;
}
.bc-day--full::after {
  background: var(--color-error);
}

/* Departure cards */
.bc-departures {
  display: none;
}
.bc-dep {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}
.bc-dep:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-xs);
}
.bc-dep-dates {
  font-size: var(--text-sm);
  color: var(--dark);
  flex: 1;
}
.bc-dep-dates strong {
  font-weight: 600;
}
.bc-dep-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.bc-dep-spots {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--forest-light);
}
.bc-dep--limited .bc-dep-spots {
  color: var(--color-warning);
}
.bc-dep--full .bc-dep-spots {
  color: var(--color-error);
}
.bc-dep-price {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--dark);
}
.bc-dep-price small {
  font-weight: 400;
  color: var(--text-muted);
}
.bc-dep--full {
  opacity: 0.5;
  pointer-events: none;
}
.bc-no-deps {
  font-size: var(--text-sm);
  color: var(--text-light);
  padding: var(--space-8) 0;
  text-align: center;
}

/* Private CTA */
.bc-private {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}
.bc-private p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

/* Selection panel */
.bc-selection {
  margin-top: var(--space-8);
  padding: var(--space-8);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  animation: bcSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes bcSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bc-selection-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: var(--space-6);
}
.bc-selection-header h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--dark);
}
.bc-selection-header p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin: var(--space-1) 0 0;
}
.bc-selection-close {
  font-size: 1.4rem;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s ease;
}
.bc-selection-close:hover {
  color: var(--dark);
}

/* Group size control */
.bc-group {
  margin-bottom: var(--space-6);
}
.bc-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-3);
}
.bc-group-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.bc-group-btn {
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-group-btn:hover:not(:disabled) {
  background: var(--cream);
}
.bc-group-btn:disabled {
  color: var(--border-dark);
  cursor: default;
}
.bc-group-count {
  width: 50px;
  text-align: center;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--dark);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 42px;
}

/* Pricing */
.bc-pricing {
  margin-bottom: var(--space-6);
}
.bc-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.bc-pricing-amount {
  font-weight: 600;
  color: var(--dark);
}
.bc-pricing-amount small {
  font-weight: 400;
  color: var(--text-muted);
}
.bc-pricing-deposit {
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  margin-top: var(--space-3);
}
.bc-pricing-deposit .bc-pricing-amount {
  color: var(--forest);
}
.bc-secure-note {
  font-size: var(--text-xs);
  color: var(--text-light);
  text-align: center;
  margin-top: var(--space-4);
}

/* Form (Step 2) */
.bc-form-summary {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.bc-form-summary strong {
  font-size: var(--text-sm);
  color: var(--dark);
}
.bc-form-summary span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  flex: 1;
}
.bc-form-change {
  font-size: var(--text-xs);
  color: var(--forest);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 600px) {
  .bc-form-row { grid-template-columns: 1fr; }
}
.bc-form-group {
  margin-bottom: var(--space-5);
}
.bc-form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-2);
}
.bc-req {
  color: var(--color-error);
}
.bc-form-group input,
.bc-form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  transition: all 0.2s ease;
  background: var(--white);
  font-family: var(--font-body);
}
.bc-form-group input:focus,
.bc-form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(46, 107, 79, 0.08);
}
.bc-error {
  border-color: var(--color-error) !important;
}
.bc-form-check {
  display: flex;
  gap: var(--space-4);
  align-items: start;
  margin: var(--space-6) 0;
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.bc-form-check.bc-error {
  border-color: var(--color-error);
  background: rgba(192, 57, 43, 0.03);
}
.bc-form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--forest);
}
.bc-form-check label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.65;
}
.bc-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-8);
}
.bc-back {
  font-size: var(--text-sm);
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.bc-back:hover {
  color: var(--dark);
}

/* Confirm (Step 3) */
.bc-confirm-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
}
.bc-confirm-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--text-light);
  margin-bottom: var(--space-6);
}
.bc-confirm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border);
}
.bc-confirm-item--full {
  grid-column: 1 / -1;
}
.bc-confirm-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 3px;
}
.bc-confirm-value {
  font-size: var(--text-sm);
  color: var(--dark);
  font-weight: 500;
}
.bc-confirm-pricing {
  text-align: center;
}
.bc-confirm-total {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: var(--space-3) 0;
}
.bc-confirm-total strong {
  font-size: var(--text-base);
  color: var(--dark);
}
.bc-confirm-deposit {
  display: flex;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  background: var(--cream);
  border-radius: var(--radius-md);
  margin: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--forest);
}
.bc-confirm-deposit strong {
  font-size: var(--text-lg);
  color: var(--forest);
}
.bc-confirm-balance {
  font-size: var(--text-xs);
  color: var(--text-light);
  margin-top: var(--space-3);
}
.bc-confirm-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
}

/* Success (Step 4) */
.bc-success {
  text-align: center;
  padding: var(--space-12) var(--space-6);
}
.bc-success-icon {
  margin-bottom: var(--space-6);
}
.bc-success h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--dark);
  margin-bottom: var(--space-4);
}
.bc-success > p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto var(--space-8);
  line-height: 1.75;
}
.bc-success-details {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-8);
  display: inline-block;
  margin-bottom: var(--space-10);
}
.bc-success-details p {
  font-size: var(--text-sm);
  color: var(--dark);
  margin: var(--space-1) 0;
}
.bc-success-next {
  text-align: left;
  max-width: 420px;
  margin: 0 auto var(--space-8);
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.bc-success-next h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-5);
}
.bc-success-next ol {
  list-style: decimal;
  padding-left: var(--space-5);
}
.bc-success-next li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: var(--space-2) 0;
  line-height: 1.7;
}
.bc-success-contact {
  font-size: var(--text-xs);
  color: var(--text-light);
}

/* Calendar mobile */
@media (max-width: 600px) {
  .booking-cal { padding: var(--space-5); }
  .bc-steps { gap: var(--space-1); }
  .bc-step-label { display: none; }
  .bc-dep {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }
  .bc-dep-meta { justify-content: space-between; }
  .bc-confirm-grid { grid-template-columns: 1fr; }
  .bc-confirm-actions {
    flex-direction: column-reverse;
    gap: var(--space-3);
  }
  .bc-confirm-actions .btn { width: 100%; }
  .bc-form-actions {
    flex-direction: column-reverse;
    gap: var(--space-3);
    align-items: stretch;
  }
  .bc-form-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .bc-form-actions .bc-back {
    text-align: center;
    padding: var(--space-3);
  }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  .trek-hero .hero-bg { transition: none; }
  .trek-hero-content { animation: none; }
  .bc-selection { animation: none; }
  .itinerary-day-body { transition: none; }
  .trek-photo img { transition: none; }
  .trek-photos-arrow { transition: none; }
  .itinerary-day-num { transition: none; }
  .itinerary-day-toggle { transition: none; }
}

/* Focus-visible for interactive elements */
.bc-nav:focus-visible,
.bc-month-dot:focus-visible,
.bc-group-btn:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}
.bc-day--departure:focus-visible,
.bc-day--available:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: -2px;
}
.itinerary-day-header:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.trek-back:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
  border-radius: 2px;
}

/* --- Trek page mobile adjustments --- */
@media (max-width: 960px) {
  .trek-hero { min-height: 55vh; }
  .trek-section {
    margin-bottom: var(--space-16);
  }
  .trek-section + .trek-section {
    padding-top: var(--space-16);
  }
  .trek-pair {
    margin-bottom: var(--space-16);
  }
  .itinerary-day-header {
    padding: var(--space-4) 0;
    gap: var(--space-3);
  }
  .itinerary-day-body-inner {
    padding: 0 0 var(--space-5) calc(54px + var(--space-6));
  }
  .booking-card {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--space-6) var(--space-8);
    display: flex;
    align-items: center;
    gap: var(--space-5);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  }
  .booking-card-price {
    font-size: var(--text-xl);
    margin-bottom: 0;
    white-space: nowrap;
  }
  .booking-card-subtitle {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    font-size: var(--text-xs);
  }
  .booking-card-actions {
    flex-direction: row;
    margin-bottom: 0;
    flex: 1;
    gap: var(--space-2);
  }
  .booking-card-details {
    display: none;
  }
  /* Add body padding so content isn't hidden behind fixed bar */
  body:has(.booking-card) {
    padding-bottom: 100px;
  }
  .private-tour-note {
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-8);
  }
}
@media (max-width: 600px) {
  .trek-hero { min-height: 50vh; }
  .trek-hero h1 { font-size: var(--text-2xl); }
  .trek-hero-subtitle { font-size: var(--text-base); }
  .trek-quick-facts { gap: var(--space-2); margin-top: var(--space-6); }
  .trek-fact {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-3);
  }
  .trek-section h2 { font-size: var(--text-xl); }
  .trek-section--wide {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
  .availability-table { font-size: var(--text-xs); }
  .availability-table th,
  .availability-table td {
    padding: var(--space-3) var(--space-3) var(--space-3) 0;
  }
  .itinerary-list {
    padding: var(--space-5);
    border-radius: var(--radius-lg);
  }
  .itinerary-day-num { min-width: 46px; font-size: 0.65rem; }
  .trek-route {
    padding: var(--space-4) 0;
  }
  .trek-photo { aspect-ratio: 4 / 3; }
  .booking-card {
    padding: var(--space-4) var(--space-6);
    flex-wrap: wrap;
  }
  .booking-card-subtitle {
    display: none;
  }
  .booking-card-actions {
    width: 100%;
  }
  .private-tour-note {
    padding: var(--space-6);
    border-radius: var(--radius-md);
  }
}

/* --- About Page --- */
.about-story {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.about-story .section-label {
  display: block;
  margin-bottom: var(--space-3);
}
.about-story h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-8);
  line-height: var(--leading-snug);
}
.about-story p {
  font-size: var(--text-base);
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}
.about-story-lead {
  font-size: var(--text-lg) !important;
  color: var(--text) !important;
  line-height: 1.8 !important;
}

/* Photo grid */
.about-photos {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-4);
}
.about-photos img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: 320px;
}
@media (max-width: 768px) {
  .about-photos {
    grid-template-columns: 1fr 1fr;
  }
  .about-photos img:first-child {
    grid-column: 1 / -1;
  }
  .about-photos img {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .about-photos {
    grid-template-columns: 1fr;
  }
  .about-photos img {
    height: 200px;
  }
}

/* Values / What We Do */
.about-values {
  text-align: center;
}
.about-values .section-label {
  display: block;
  margin-bottom: var(--space-3);
}
.about-values h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-16);
  line-height: var(--leading-snug);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  text-align: left;
}
.about-value h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-3);
}
.about-value p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* FAQ header */
.about-faq-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.about-faq-header .section-label {
  display: block;
  margin-bottom: var(--space-3);
}
.about-faq-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--dark);
  line-height: var(--leading-snug);
}

/* FAQ list — single column, clean */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  padding: var(--space-5) 0;
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: color var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.faq-question:hover {
  color: var(--forest);
}
.faq-question .icon {
  font-size: 1.2rem;
  transition: transform var(--dur-normal) var(--ease-out);
  flex-shrink: 0;
  color: var(--text-light);
  margin-left: var(--space-4);
}
.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  color: var(--forest);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-answer-inner {
  padding: 0 0 var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 600px;
}

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: var(--space-5); }
.form-group label { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-2); color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: var(--text-sm); transition: all var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(46,107,79,0.08);
}
.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: var(--color-error); box-shadow: 0 0 0 3px rgba(192,57,43,0.06);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.contact-info-card { background: var(--cream); border-radius: var(--radius-lg); padding: var(--space-10); }
.contact-info-item { display: flex; gap: var(--space-4); align-items: start; padding: var(--space-4) 0; }
.contact-info-item + .contact-info-item { border-top: 1px solid var(--border); }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem;
}
.contact-info-item h4 { font-size: var(--text-sm); font-family: var(--font-body); margin-bottom: var(--space-1); }
.contact-info-item p { font-size: var(--text-sm); color: var(--text-muted); }

/* --- Modal --- */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000;
  align-items: center; justify-content: center; padding: var(--section-x);
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-lg); max-width: 560px;
  width: 100%; max-height: 90vh; overflow-y: auto; padding: var(--space-8);
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-6); }
.modal-header h3 { margin: 0; }
.modal-close {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--text-muted); transition: all var(--transition);
}
.modal-close:hover { background: var(--cream); color: var(--dark); }

/* --- Form Success --- */
.form-success {
  display: none; background: var(--cream); border: 1px solid var(--forest-light);
  border-radius: var(--radius-md); padding: var(--space-8); text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--forest-light); margin-bottom: var(--space-2); }

/* --- Scroll Animations --- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 150ms; }
.reveal-delay-2 { transition-delay: 300ms; }
.reveal-delay-3 { transition-delay: 450ms; }
.reveal-delay-4 { transition-delay: 600ms; }

/* Variation: scale up */
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Variation: fade from left */
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* --- Leaflet Overrides --- */
.trek-map {
  background: var(--cream) !important;
  background-image:
    radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px) !important;
  background-size: 24px 24px, 120px 120px, 120px 120px !important;
}
.trek-map .leaflet-tile-pane { display: none !important; }
.trek-map { cursor: default !important; }
.trek-map .leaflet-marker-icon { cursor: default !important; }
.trek-map .leaflet-control-zoom,
.trek-map .leaflet-control-attribution { display: none !important; }
.leaflet-popup-content-wrapper { border-radius: var(--radius-md) !important; font-family: var(--font-body) !important; box-shadow: var(--shadow-lg) !important; }
.leaflet-popup-content { font-size: var(--text-sm) !important; margin: 12px 16px !important; }

.map-label {
  background: none !important; border: none !important; border-radius: 0 !important;
  padding: 2px 4px !important; font-family: var(--font-body) !important;
  font-size: 12px !important; font-weight: 600 !important; color: var(--text-muted) !important;
  box-shadow: none !important; white-space: nowrap !important;
  letter-spacing: 0.01em !important;
}
.map-label-key {
  background: none !important; border: none !important; border-radius: 0 !important;
  padding: 2px 4px !important; font-family: var(--font-body) !important;
  font-size: 14px !important; font-weight: 800 !important; color: var(--forest) !important;
  box-shadow: none !important; white-space: nowrap !important;
  letter-spacing: -0.01em !important;
}
.map-label::before, .map-label-key::before { border: none !important; display: none !important; }
.trek-map .leaflet-tooltip-pane { z-index: 650 !important; }

/* --- Booking Modal Enhancements --- */
.booking-departure-info {
  background: var(--cream); border-radius: var(--radius-md); padding: var(--space-5);
  margin-bottom: var(--space-6); border-left: 3px solid var(--gold);
}
.booking-departure-info h4 {
  font-size: var(--text-lg); margin-bottom: var(--space-1); color: var(--dark);
}
.booking-departure-info p {
  font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-1);
}
.booking-departure-info p:last-child { margin-bottom: 0; }

.booking-deposit-summary {
  background: var(--cream); border-radius: var(--radius-md); padding: var(--space-5);
  margin-bottom: var(--space-6);
}
.deposit-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-2) 0; font-size: var(--text-sm); font-weight: 600;
}
.deposit-line-detail {
  font-weight: 400; color: var(--text-muted); font-size: var(--text-xs);
  border-bottom: 1px solid var(--border); padding-bottom: var(--space-3); margin-bottom: var(--space-2);
}
.deposit-line-balance {
  font-weight: 400; font-size: var(--text-xs); color: var(--text-muted);
}
.deposit-amount { color: var(--forest); font-weight: 700; }
.deposit-total { color: var(--forest); font-weight: 700; font-size: var(--text-base); }

.booking-error {
  background: rgba(192,57,43,0.06); border: 1px solid rgba(192,57,43,0.2);
  border-radius: var(--radius-md); padding: var(--space-4); margin-bottom: var(--space-4);
}
.booking-error p { font-size: var(--text-sm); color: var(--color-error); margin: 0; }
.booking-error a { color: var(--forest); font-weight: 600; text-decoration: underline; }

.booking-terms {
  font-size: var(--text-xs); color: var(--text-muted); text-align: center;
  margin-top: var(--space-3); line-height: 1.6;
}
.booking-terms a { color: var(--forest); text-decoration: underline; }

/* --- Availability Loading / Error States --- */
.availability-loading {
  padding: var(--space-8); text-align: center; color: var(--text-muted);
  font-size: var(--text-sm);
}
.availability-loading::before {
  content: ''; display: block; width: 24px; height: 24px; margin: 0 auto var(--space-3);
  border: 2px solid var(--border); border-top-color: var(--forest);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.availability-empty, .availability-error {
  padding: var(--space-6); text-align: center; color: var(--text-muted);
  font-size: var(--text-sm); background: var(--cream); border-radius: var(--radius-md);
}
.availability-empty a, .availability-error a { color: var(--forest); font-weight: 600; text-decoration: underline; }

/* --- Booking Confirmed Page --- */
.booking-confirmed-content { padding: var(--space-8) 0; }
.confirmation-check {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--forest-light); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto var(--space-6);
}
.booking-confirmed-content h2 {
  font-size: var(--text-2xl); margin-bottom: var(--space-4);
}
.booking-confirmed-content > p {
  font-size: var(--text-lg); color: var(--text-muted); margin-bottom: var(--space-6);
}
.confirmation-next-steps {
  background: var(--cream); border-radius: var(--radius-md); padding: var(--space-6);
  text-align: left; margin-bottom: var(--space-6);
}
.confirmation-next-steps h4 {
  font-size: var(--text-base); margin-bottom: var(--space-3);
}
.confirmation-next-steps ol {
  list-style: decimal; padding-left: var(--space-6);
}
.confirmation-next-steps li {
  font-size: var(--text-sm); color: var(--text-muted); padding: var(--space-2) 0; line-height: 1.7;
}
.confirmation-ref {
  font-size: var(--text-xs); color: var(--text-light);
  font-family: monospace;
}

/* --- Photo Gallery — dual-row opposing marquee --- */
.gallery-section {
  background: var(--forest-deep);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

/* Subtle grain texture overlay */
.gallery-section::before {
  content: ''; position: absolute; inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none; z-index: 0;
}

/* Header */
.gallery-header {
  text-align: center; position: relative; z-index: 1;
  padding: 0 var(--section-x);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.gallery-overline {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--tracking-wider);
  color: var(--gold); margin-bottom: var(--space-3);
}
.gallery-overline::before, .gallery-overline::after {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold); opacity: 0.4;
}
.gallery-title {
  font-family: var(--font-heading); font-size: var(--text-3xl);
  font-weight: 700; color: var(--white); line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight); margin-bottom: var(--space-4);
}
.gallery-rule {
  width: 48px; height: 3px; background: var(--gold); margin: 0 auto var(--space-4);
  border-radius: 2px;
}
.gallery-subtitle {
  font-size: var(--text-base); color: rgba(255,255,255,0.5);
  max-width: 32ch; margin: 0 auto;
}

/* Marquee containers */
.gallery-marquee {
  width: 100%; overflow: hidden; position: relative; z-index: 1;
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}
.gallery-marquee + .gallery-marquee { margin-top: var(--space-4); }

/* Tracks */
.gallery-track {
  display: flex; gap: var(--space-4);
  width: max-content;
}
.gallery-track--left  { animation: marqueeLeft 50s linear infinite; }
.gallery-track--right { animation: marqueeRight 55s linear infinite; }
.gallery-track:hover  { animation-play-state: paused; }

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

/* Items — mixed aspect ratios for visual tension */
.gallery-item {
  flex-shrink: 0; position: relative; margin: 0;
  width: 320px; height: 240px;
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer;
}
.gallery-item--wide  { width: 440px; height: 240px; }
.gallery-item--tall  { width: 260px; height: 340px; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.85) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}

/* Bottom gradient + caption */
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg,
    rgba(10, 15, 12, 0.7) 0%,
    rgba(10, 15, 12, 0) 50%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none; z-index: 1;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 600; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--white);
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

/* Gold accent bar on caption */
.gallery-item figcaption::before {
  content: ''; display: block;
  width: 20px; height: 2px; background: var(--gold);
  margin-bottom: var(--space-2);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-item       { width: 240px; height: 180px; }
  .gallery-item--wide  { width: 320px; height: 180px; }
  .gallery-item--tall  { width: 200px; height: 260px; }
  .gallery-track { gap: var(--space-3); }
  .gallery-marquee + .gallery-marquee { margin-top: var(--space-3); }
  .gallery-title br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track--left,
  .gallery-track--right { animation: none; }
  .gallery-marquee {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    mask-image: none; -webkit-mask-image: none;
    scroll-snap-type: x mandatory; padding: 0 var(--section-x);
  }
  .gallery-item { scroll-snap-align: start; }
  .gallery-item img { filter: none; }
  .gallery-item figcaption { opacity: 1; transform: none; }
  .gallery-item::after { opacity: 1; }
}

/* --- Trek Photo Gallery (detail pages) --- */
.trek-photos { margin-top: var(--space-4); }
.trek-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.trek-photos-grid .trek-photo {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
  aspect-ratio: 4 / 3;
}
.trek-photos-grid .trek-photo:first-child {
  grid-column: 1 / 3; grid-row: 1 / 3;
  aspect-ratio: auto;
}
.trek-photos-grid .trek-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.trek-photos-grid .trek-photo:hover img { transform: scale(1.06); }
.trek-photos-grid .trek-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,15,12,0.5) 0%, transparent 40%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.trek-photos-grid .trek-photo:hover::after { opacity: 1; }
.trek-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-xs); font-weight: 600; color: var(--white);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  z-index: 1; opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.trek-photo:hover .trek-photo-caption { opacity: 1; transform: translateY(0); }
@media (max-width: 600px) {
  .trek-photos-grid { grid-template-columns: 1fr 1fr; }
  .trek-photos-grid .trek-photo:first-child { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16/9; }
}

/* --- View Transitions API (cross-page smooth transitions) --- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-fade-out 0.2s ease; }
::view-transition-new(root) { animation: vt-fade-in 0.3s ease 0.1s both; }
@keyframes vt-fade-out { to { opacity: 0; transform: scale(0.98); } }
@keyframes vt-fade-in { from { opacity: 0; transform: scale(1.01); } }

/* --- Hero Entrance Animation --- */
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: heroContentIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
.hero-content h1 { animation: heroContentIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both; }
.hero-content > p { animation: heroContentIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both; }
.hero-buttons { animation: heroContentIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both; }
.hero-stats { animation: heroContentIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both; }

/* --- Nav Link Underline Animation --- */
.nav-links a::after {
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Animated Blog Card Link Arrow --- */
.blog-card-link { transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* --- Section label line animation --- */
.section-label::before {
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0;
}
.reveal.visible .section-label::before,
.section-label { width: 20px; }
.reveal .section-label::before { width: 0; }
.reveal.visible .section-label::before { width: 20px; }

/* --- Testimonial card glass hover --- */
.testimonial-card {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Blog card enhanced hover --- */
.blog-card {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

/* --- Giving back card hover --- */
.giving-back {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.giving-back:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* --- Newsletter enhanced --- */
.newsletter {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Steps hover interaction --- */
.step { transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.step:hover { transform: translateY(-4px); }
.step-number { transition: opacity 0.4s ease, transform 0.4s ease; }
.step:hover .step-number { opacity: 0.3; transform: scale(1.05); }

/* --- Footer social icon pulse --- */
.footer-social a {
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-social a:hover {
  transform: translateY(-3px) scale(1.05);
}

/* --- Smooth image loading --- */
img[loading="lazy"] {
  opacity: 0; transition: opacity 0.5s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][complete] { opacity: 1; }

/* --- Why item hover --- */
.why-item { transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.why-item:hover { transform: translateY(-3px); }
.why-icon { transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease; }
.why-item:hover .why-icon { transform: scale(1.1); background: rgba(200,164,90,0.18); }

/* --- Filter tab smooth transitions --- */
.filter-tab { transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.filter-tab:hover { transform: translateY(-1px); }
.filter-tab.active { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(27,58,45,0.2); }

/* --- CTA Banner parallax-ready --- */
.cta-banner .hero-bg { transition: transform 0.1s linear; }

/* --- Utility --- */
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
