/* ═══════════════════════════════════════════════════
   PANDA & AVIFAUNA EXPLORE LODGE — PREMIUM DESIGN
   Aesthetic: Cinematic Himalayan Luxury · Deep Forest
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --moss:       #2a4428;
  --forest:     #162b1b;
  --deep:       #0c1a10;
  --sage:       #4e6e50;
  --sage-light: #6a8f6d;
  --mist:       #c0cdb8;
  --cream:      #f4efe4;
  --warm:       #b8936a;
  --gold:       #c9a05c;
  --gold-pale:  #e8d09a;
  --fog:        #e9ede3;
  --charcoal:   #1e1e1e;
  --snow:       #faf8f4;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;

  --section-pad: clamp(80px, 10vw, 120px);

  --shadow-sm:  0 2px 12px rgba(12,26,16,0.12);
  --shadow-md:  0 8px 40px rgba(12,26,16,0.18);
  --shadow-lg:  0 24px 80px rgba(12,26,16,0.28);
  --shadow-xl:  0 40px 120px rgba(12,26,16,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--deep);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Android: prevent horizontal scroll from any element */
html {
  overflow-x: hidden;
}

/* Baseline image rule — prevents layout breakage from local images */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* content-visibility removed — causes NO_LCP on mobile */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* Android fix: prevent subpixel overflow */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-sizing: border-box;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,12,0.75) 0%, transparent 100%);
  pointer-events: none;
}

nav.scrolled {
  background: rgba(12,26,16,0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  padding: 16px 56px;
  box-shadow: 0 1px 0 rgba(201,160,92,0.15), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  /* Android: prevent logo from overflowing */
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
}
.nav-logo:hover { opacity: 0.85; }

.nav-logo-img-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,160,92,0.55);
  flex-shrink: 0;
  overflow: hidden;
  transition: width 0.3s, height 0.3s;
  background: #fff;
}
nav.scrolled .nav-logo-img-wrap {
  width: 38px;
  height: 38px;
}
.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.0);
  padding: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.nav-logo span {
  display: block;
  font-size: 0.58rem;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  font-weight: 300;
  opacity: 0.65;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  position: relative;
  z-index: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover { color: var(--gold-pale); }
.nav-links a:hover::after { right: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  padding: 4px;
  background: transparent;
  border: none;
  /* Android fix: prevent shrink, stable size */
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span {
  width: 26px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
  display: block;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(78,110,80,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,160,92,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  transition: color 0.25s;
  position: relative;
  z-index: 1;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(12,26,16,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mobile-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.hamburger {
  transition: visibility 0.2s ease, opacity 0.2s ease;
}

/* ── HERO ── */
#hero {
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: translateZ(0);
}
.slide.active {
  opacity: 1;
  animation: kenburns 22s linear infinite;
  will-change: transform;
}
@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  50%  { transform: scale(1.06) translate(-0.5%, 0.3%); }
  100% { transform: scale(1.0) translate(0, 0); }
}
/* Mobile — disable kenburns, just crossfade */
@media (max-width: 768px) {
  .slide.active {
    animation: none;
    will-change: opacity;
    transform: none;
  }
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,18,11,0.55) 0%, rgba(10,22,14,0.3) 50%, rgba(8,18,11,0.7) 100%),
    linear-gradient(105deg, rgba(8,18,11,0.7) 0%, transparent 55%);
}

/* Slide 1 uses real <img> tag (better LCP). Slides 2-4 loaded by script.js after LCP */
.slide:nth-child(1) { background-image: none; }

/* LCP hero image fills the slide */
.hero-lcp-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.mist-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(10,20,12,0.8) 0%, rgba(10,20,12,0.4) 35%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,160,92,0.45);
  color: var(--gold-pale);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 2px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease 0.1s both;
  font-weight: 400;
  background: rgba(12,26,16,0.7);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  color: #fff;
  line-height: 1.0;
  font-weight: 900;
  animation: fadeUp 0.7s ease 0.2s both;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-pale);
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 24px auto;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-weight: 300;
  animation: fadeUp 0.6s ease 0.35s both;
  letter-spacing: 0.02em;
}

.hero-meta {
  margin-top: 20px;
  color: rgba(255,255,255,0.42);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: fadeUp 0.6s ease 0.45s both;
  font-weight: 300;
}

.hero-buttons {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.55s both;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-cue span {
  color: rgba(255,255,255,0.35);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--deep);
  padding: 15px 38px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,160,92,0.4);
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  padding: 15px 38px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.35s;
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  color: #fff;
}

/* ── ANIMATIONS ── */
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes popupUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── SECTION BASE ── */
section { padding: var(--section-pad) 40px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.64rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
}
.section-label::after {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  color: var(--forest);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── ABOUT ── */
#about { background: var(--cream); position: relative; }
#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(78,110,80,0.3), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  margin-top: 64px;
}

.about-image-wrap { position: relative; }
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid rgba(78,110,80,0.2);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}
.about-image-wrap img {
  width: 100%;
  height: auto;            /* let height be natural */
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 43% center;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  display: block;
  position: relative;
  z-index: 1;
  filter: saturate(0.92);
  transition: filter 0.5s;
}
.about-image-wrap:hover img { filter: saturate(1.05); }

.about-image-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--forest);
  color: var(--gold);
  padding: 28px 32px;
  border-radius: 2px;
  font-family: var(--font-display);
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.about-image-badge::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,160,92,0.2);
  border-radius: 1px;
  pointer-events: none;
}
.about-image-badge strong { display: block; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-image-badge span  { font-size: 0.7rem; letter-spacing: 0.12em; opacity: 0.75; font-family: var(--font-body); text-transform: uppercase; }

.about-text p {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.95;
  color: #2a2a2a;
  margin-bottom: 22px;
  font-weight: 500;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  border-top: 1px solid rgba(78,110,80,0.18);
  padding-top: 44px;
}
.stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--forest); font-weight: 900; line-height: 1; }
.stat span   { font-size: 0.72rem; color: var(--sage); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; display: block; }

/* ── WHY ── */
#why {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(78,110,80,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(201,160,92,0.08) 0%, transparent 45%);
  pointer-events: none;
}
#why .section-label      { color: rgba(192,205,184,0.7); }
#why .section-title      { color: var(--cream); }
#why .section-title em   { color: var(--gold); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.why-card {
  background: rgba(10,20,12,0.5);
  padding: 44px 36px;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover { background: rgba(30,60,34,0.7); transform: translateY(-3px); }
.why-card:hover::before { right: 0; }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 22px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.why-card:hover .why-icon { transform: scale(1.2) translateY(-4px); }
.why-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); margin-bottom: 12px; font-weight: 700; }
.why-card p  { font-size: 0.86rem; color: rgba(192,205,184,0.9); line-height: 1.75; font-weight: 500; }

/* ── OWNER ── */
#owner {
  background: linear-gradient(160deg, var(--fog) 0%, #e8ede0 50%, var(--fog) 100%);
  position: relative;
  overflow: hidden;
}

#owner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78,110,80,0.07) 0%, transparent 70%);
  pointer-events: none;
}
#owner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,92,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.owner-card {
  max-width: 1000px;
  margin: 64px auto 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(12,26,16,0.18), 0 0 0 1px rgba(78,110,80,0.1);
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: stretch;
  position: relative;
}

/* Top gold accent bar */
.owner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--forest), var(--gold) 40%, var(--sage) 70%, var(--forest));
  z-index: 2;
}

/* ── Image panel ── */
.owner-image {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.owner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.82) contrast(1.06);
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1), filter 0.5s;
  position: absolute;
  top: 0; left: 0;
}
.owner-card:hover .owner-image img {
  transform: scale(1.04);
  filter: saturate(0.94) contrast(1.04);
}

/* Gradient overlay on image */
.owner-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(12,26,16,0.72) 0%, rgba(12,26,16,0.15) 45%, transparent 100%),
    linear-gradient(to right, transparent 60%, rgba(255,255,255,0.04));
  pointer-events: none;
}

/* Decorative corner bracket */
.owner-img-corner {
  position: absolute;
  top: 16px; left: 16px;
  width: 42px; height: 42px;
  border-top: 2px solid rgba(201,160,92,0.6);
  border-left: 2px solid rgba(201,160,92,0.6);
  border-radius: 2px 0 0 0;
  pointer-events: none;
}
.owner-img-corner::after {
  content: '';
  position: absolute;
  bottom: -26px; right: -26px;
  width: 42px; height: 42px;
  border-bottom: 2px solid rgba(201,160,92,0.6);
  border-right: 2px solid rgba(201,160,92,0.6);
  border-radius: 0 0 2px 0;
}

/* ── Experience badge on image ── */
.owner-exp-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #a87a3a 100%);
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 40px;
  box-shadow: 0 8px 28px rgba(201,160,92,0.45), 0 2px 8px rgba(0,0,0,0.3);
  white-space: nowrap;
  z-index: 2;
}

.owner-exp-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.owner-exp-number sup {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: super;
}

.owner-exp-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  opacity: 0.88;
}

/* ── Info panel ── */
.owner-info { padding: 52px 50px 48px; display: flex; flex-direction: column; }

/* Badges row */
.owner-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--fog);
  color: var(--sage);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(78,110,80,0.2);
  font-weight: 500;
}

.owner-badge-gold {
  background: rgba(201,160,92,0.1);
  color: #8a6020;
  border-color: rgba(201,160,92,0.35);
}

.owner-info h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--forest);
  margin-bottom: 6px;
  font-weight: 900;
  line-height: 1.1;
}

.owner-title {
  color: var(--sage);
  font-size: 0.8rem;
  margin-bottom: 0;
  letter-spacing: 0.06em;
}

/* ── Stats strip ── */
.owner-stats-strip {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 28px 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
  border-radius: 10px;
  padding: 18px 24px;
  box-shadow: 0 4px 20px rgba(12,26,16,0.15);
}

.owner-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.owner-stat strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.owner-stat strong sup {
  font-size: 0.9rem;
  vertical-align: super;
}

.owner-stat span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.owner-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 0 4px;
}

.owner-info p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 16px;
  font-weight: 500;
}
.owner-info p strong {
  color: var(--forest);
  font-weight: 600;
}

/* ── Pull quote ── */
.owner-quote {
  position: relative;
  margin: 20px 0 22px;
  padding: 18px 22px 18px 48px;
  background: linear-gradient(135deg, rgba(78,110,80,0.06) 0%, rgba(201,160,92,0.05) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.owner-quote-mark {
  position: absolute;
  top: 4px; left: 14px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  font-style: italic;
}

.owner-quote p {
  font-family: var(--font-serif);
  font-size: 1.05rem !important;
  font-style: italic;
  color: var(--forest) !important;
  line-height: 1.65 !important;
  margin-bottom: 8px !important;
  font-weight: 400 !important;
}

.owner-quote cite {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-style: normal;
}

.owner-note {
  margin-top: auto;
  padding: 14px 20px;
  border-left: 2px solid var(--gold);
  background: var(--fog);
  font-size: 0.78rem;
  color: var(--sage);
  font-style: italic;
  line-height: 1.65;
  border-radius: 0 6px 6px 0;
}

/* ── Mobile ── */
@media (max-width: 960px) {
  .owner-card    { grid-template-columns: 1fr; border-radius: 12px; }
  .owner-image   { min-height: 420px; }
  .owner-image img { object-position: center top; }
  .owner-exp-badge { bottom: 20px; }
}

@media (max-width: 600px) {
  .owner-info {
    padding: 32px 24px 28px;
  }
  .owner-card {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }
  .owner-image {
    min-height: 340px;
  }
  .owner-image img {
    object-position: center top;
  }
  .owner-info h2 {
    font-size: 1.8rem;
  }
  .owner-stats-strip {
    padding: 14px 16px;
    gap: 0;
  }
  .owner-stat strong {
    font-size: 1.4rem;
  }
  .owner-stat span {
    font-size: 0.55rem;
  }
  .owner-exp-badge {
    padding: 10px 18px;
    gap: 8px;
  }
  .owner-exp-number {
    font-size: 1.6rem;
  }
  .owner-badges-row {
    gap: 6px;
  }
  .owner-quote {
    padding: 14px 16px 14px 40px;
  }
}

/* ── GUIDE TEAM ── */
#guide-team { background: var(--fog); }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
  align-items: stretch;
}

.guide-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
}
.guide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--forest), var(--gold), var(--forest));
  z-index: 1;
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.guide-photo-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--moss);
  flex-shrink: 0;
  position: relative;
}
.guide-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.82) contrast(1.05);
  transition: transform 0.7s ease, filter 0.5s;
}
.guide-card:hover .guide-photo-wrap img {
  transform: scale(1.04);
  filter: saturate(0.95);
}

.guide-info { padding: 32px 32px 36px; flex: 1; display: flex; flex-direction: column; }

.guide-badge {
  display: inline-block;
  background: var(--fog);
  color: var(--sage);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
  border: 1px solid rgba(78,110,80,0.2);
  width: fit-content;
}

.guide-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--forest);
  margin-bottom: 16px;
  font-weight: 900;
}

.guide-info p {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.85;
  color: #333333;
  font-weight: 500;
  margin: 0;
  flex: 1;
}

/* Two-card grid variant for camp management */
.guide-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

#camp-management { background: var(--cream); }

/* Guide grid responsive */
@media (max-width: 960px) {
  .guide-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .guide-grid--two { max-width: 100%; }
}
@media (max-width: 600px) {
  .guide-grid { grid-template-columns: 1fr; gap: 24px; }
  .guide-grid--two { grid-template-columns: 1fr; }
  .guide-photo-wrap { height: 220px; }
  .guide-info { padding: 28px 24px 32px; }
}

/* ── WILDLIFE GALLERY ── */
#gallery { background: var(--charcoal); padding-bottom: 100px; position: relative; }
#gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(22,43,27,0.8) 0%, transparent 60%);
  pointer-events: none;
}
#gallery .section-label    { color: rgba(192,205,184,0.65); }
#gallery .section-title    { color: #fff; }
#gallery .section-title em { color: var(--gold); }

.gallery-tab-row {
  display: flex;
  gap: 0;
  margin-top: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.gtab {
  padding: 13px 30px;
  background: transparent;
  border: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 1.5px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font-body);
  font-weight: 500;
}
.gtab.active { color: var(--gold); border-bottom-color: var(--gold); }
.gtab:hover:not(.active) { color: rgba(255,255,255,0.7); }

/* Species grid — 4 columns desktop */
.species-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

/* ── CRITICAL: Consistent species cards ── */
.species-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  /* Ensure the card height is driven by the image, not content */
  display: flex;
  flex-direction: column;
}
.species-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.6); }

/* Fixed image sizing — PREVENTS local images stretching the card */
.species-card img {
  width: 100%;
  height: 240px;         /* fixed height, same for every card */
  object-fit: cover;     /* crop, never stretch */
  display: block;
  flex-shrink: 0;        /* don't let flex squish it */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
  filter: brightness(0.85) saturate(0.9);
}
.species-card:hover img { transform: scale(1.08); filter: brightness(1.02) saturate(1.05); }

.species-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,18,11,0.97) 0%, rgba(8,18,11,0.7) 50%, transparent 100%);
  padding: 52px 16px 20px;
  transition: all 0.4s;
}

.species-status {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 7px;
  font-weight: 600;
  font-family: var(--font-body);
}
.status-endangered { background: rgba(200,50,50,0.9);    color: #fff; }
.status-vulnerable { background: rgba(210,130,20,0.9);   color: #fff; }
.status-lc         { background: rgba(40,150,70,0.9);    color: #fff; }
.status-rare       { background: rgba(90,50,190,0.9);    color: #fff; }

.species-name   { font-family: var(--font-display); font-size: 1rem; color: #fff; font-weight: 700; line-height: 1.2; display: block; }
.species-sci    { font-family: var(--font-serif); font-style: italic; font-size: 0.76rem; color: rgba(192,205,184,0.65); margin-top: 3px; display: block; }
.species-detail { font-size: 0.73rem; color: rgba(192,205,184,0.55); margin-top: 8px; line-height: 1.5; display: none; }
.species-card:hover .species-detail { display: block; }

.sighting-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  color: var(--gold-pale);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 4px 11px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  z-index: 2;
}

.species-panel { display: none; }
.species-panel.active { display: grid; }

/* Red Panda panel — 2-column layout */
.panda-panel {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
}
.panda-panel .species-card img { height: 300px; }

/* Wide card spans both columns */
.species-card.panda-wide {
  grid-column: span 2;
}
.species-card.panda-wide img {
  height: 380px;
  aspect-ratio: unset;
  
}

/* ── LOAD MORE BIRDS ── */
.load-more-wrap {
  grid-column: 1 / -1;   /* ADD THIS */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}

.load-more-wrap.hidden {
  display: none;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(201,160,92,0.5);
  color: var(--gold-pale);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.load-more-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,160,92,0.06);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.load-more-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,160,92,0.15);
}

.load-more-btn:hover::before { transform: translateX(0); }

.load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.load-more-icon {
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.load-more-btn:hover .load-more-icon { transform: scale(1.3) rotate(-8deg); }

.load-more-arrow {
  transition: transform 0.3s ease;
  opacity: 0.6;
}
.load-more-btn:hover .load-more-arrow { transform: translateY(3px); opacity: 1; }

.load-more-hint {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: rgba(192,205,184,0.4);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* Newly injected species cards animate in */
.species-card.injected {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.species-card.injected.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── LODGE GALLERY ── */
#lodge-gallery { background: var(--cream); padding-bottom: 100px; }
.lodge-gallery-intro {
  max-width: 580px;
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: #333333;
  line-height: 1.8;
  font-weight: 500;
}

.lodge-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
  margin-top: 44px;
}
.lodge-photo {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: var(--moss);
  box-shadow: var(--shadow-sm);
}
.lodge-photo.span-row { grid-row: span 2; }

/* ── CRITICAL: Lodge photo images — fixed, non-stretching ── */
.lodge-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
  filter: brightness(0.88) saturate(0.92);
}
.lodge-photo:hover img { transform: scale(1.06); filter: brightness(1) saturate(1); }

.lodge-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,30,16,0.9), transparent);
  padding: 36px 20px 18px;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lodge-photo:hover .lodge-caption { opacity: 1; transform: translateY(0); }
.lodge-caption h4 { font-family: var(--font-display); font-size: 1rem; color: #fff; margin-bottom: 3px; font-weight: 700; }
.lodge-caption p  { font-size: 0.74rem; color: rgba(192,205,184,0.8); }

.lodge-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.lodge-strip .lodge-photo { height: 180px; }

/* ── LIGHTBOX ── */
/*
  HTML structure (cannot change):
    .lightbox
      button.lightbox-close        (absolute)
      button.lightbox-nav.prev     (absolute – siblings of img-wrap)
      .lightbox-img-wrap
        img#lightboxImg
        .lightbox-meta
      button.lightbox-nav.next     (absolute – siblings of img-wrap)

  Strategy: make .lightbox position:fixed + flex-column centred.
  The two nav buttons are position:absolute relative to .lightbox.
  The img-wrap gets horizontal padding equal to the arrow width so
  the image never slides behind the arrows on any screen size.
*/

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5,10,7,0.97);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

/* Close button — absolute to .lightbox */
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s;
  touch-action: manipulation;
  line-height: 1;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* Nav arrows — absolute to .lightbox, vertically centred */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s;
  touch-action: manipulation;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/*
  img-wrap: takes up the space between the two arrows.
  padding-left/right = arrow width (48px) + gap (16px) = 80px each side.
  This keeps the image perfectly centred on all screen sizes.
*/
.lightbox-img-wrap {
  width: 100%;
  padding: 0 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Image — always fully visible, never cropped, always centred */
.lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;       /* fills the padded wrapper */
  max-height: 72vh;      /* leaves room for caption below */
  object-fit: contain;   /* show the full photo, never crop */
  border-radius: 2px;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

/* Caption below the image */
.lightbox-meta {
  margin-top: 18px;
  text-align: center;
  padding: 0 8px;
  width: 100%;
}
.lightbox-meta h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}
.lightbox-meta p {
  color: rgba(192,205,184,0.65);
  font-size: 0.82rem;
  margin-top: 5px;
  font-style: italic;
  font-family: var(--font-serif);
}

/* ── LIGHTBOX — TABLET ── */
@media (max-width: 960px) {
  .lightbox-nav  { width: 44px; height: 44px; font-size: 1.4rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  /* padding = 44px arrow + 10px gap = 54px, round up to 70px */
  .lightbox-img-wrap { padding: 0 70px; }
  .lightbox img { max-height: 68vh; }
}

/* ── LIGHTBOX — MOBILE ── */
@media (max-width: 600px) {
  .lightbox-nav  { width: 38px; height: 38px; font-size: 1.2rem; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  /* padding = 38px arrow + 6px gap = 44px */
  .lightbox-img-wrap { padding: 0 50px; }
  .lightbox img      { max-height: 58vh; }
  .lightbox-meta h3  { font-size: 1rem; }
  .lightbox-meta p   { font-size: 0.76rem; }
  .lightbox-close    { top: 12px; right: 12px; width: 34px; height: 34px; font-size: 1rem; }
}

/* ── TOURS ── */
#tours { background: var(--cream); }

.tour-tabs {
  display: flex;
  gap: 0;
  margin-top: 52px;
  border-bottom: 1px solid rgba(78,110,80,0.2);
  flex-wrap: wrap;
}
.tab-btn {
  padding: 14px 36px;
  background: transparent;
  border: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 1.5px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font-body);
  font-weight: 500;
}
.tab-btn.active  { color: var(--forest); border-bottom-color: var(--gold); font-weight: 600; }
.tab-btn:hover:not(.active) { color: var(--forest); }

.tour-content { display: none; margin-top: 60px; }
.tour-content.active { display: block; }

/* Tour header — replaces inline styles */
.tour-header { margin-bottom: 32px; }
.tour-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
}
.tour-header p {
  color: var(--sage);
  margin-top: 6px;
  font-size: 0.9rem;
}

.timeline { position: relative; padding-left: 44px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201,160,92,0.1) 100%);
}
.tl-item {
  position: relative;
  margin-bottom: 44px;
  opacity: 1;
  transform: none;
}
.tl-item.will-animate {
  opacity: 0;
  transform: translateX(-24px);
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.tl-item.visible { opacity: 1 !important; transform: translateX(0) !important; }
.tl-dot {
  position: absolute;
  left: -48px; top: 8px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 3px rgba(201,160,92,0.3);
  transition: box-shadow 0.3s;
}
.tl-item:hover .tl-dot { box-shadow: 0 0 0 6px rgba(201,160,92,0.2); }
.tl-day  { font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; font-family: var(--font-body); }
.tl-card {
  background: #fff;
  border-radius: 3px;
  padding: 26px 32px;
  box-shadow: var(--shadow-sm);
  border-left: 2px solid var(--gold);
  transition: box-shadow 0.35s, transform 0.35s;
}
.tl-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.tl-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--forest); margin-bottom: 10px; font-weight: 700; }
.tl-card p  { font-size: 0.88rem; color: #3a3a3a; line-height: 1.72; font-weight: 500; }
.tl-tags    { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.tl-tag     { background: var(--fog); color: var(--sage); padding: 4px 13px; border-radius: 2px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.04em; }
.tl-tag.gold { background: rgba(201,160,92,0.12); color: #7a5c28; }
.tl-note {
  margin: 8px auto 0;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px dashed rgba(78,110,80,0.35);
  border-radius: 3px;
  color: var(--sage);
  font-size: 0.78rem;
  font-style: italic;
  text-align: center;     /* center text */
  display: block;         /* remove flex */
  white-space: nowrap;    /* single line */
  background: rgba(78,110,80,0.04);
}.tl-note {
  margin: 8px auto 0;
  width: fit-content;
  padding: 8px 14px;
  text-align: center;
  white-space: nowrap;
}
.tl-note {
  margin: 8px auto 12px;  /* bottom space added */
}
/* mobile fix */
@media (max-width: 768px) {
  .tl-note {
    white-space: normal;   /* allow wrap */
    width: auto;
    margin: 8px 12px 12px; /* side padding */
  }
}
.timeline .tl-item:last-child {
  margin-bottom: 10px;
}

.tl-note {
  margin-top: 6px;
}
/* ── FACILITIES ── */
#facilities { background: #fff; }
.fac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.fac-card {
  padding: 36px 32px;
  border: 1px solid rgba(78,110,80,0.12);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.fac-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fac-card:hover { box-shadow: var(--shadow-md); border-color: rgba(78,110,80,0.25); transform: translateY(-5px); }
.fac-card:hover::after { transform: scaleX(1); }
.fac-icon  { font-size: 2.4rem; margin-bottom: 18px; display: block; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.fac-card:hover .fac-icon { transform: scale(1.2) translateY(-4px); }
.fac-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--forest); margin-bottom: 10px; font-weight: 700; }
.fac-card p  { font-size: 0.84rem; color: #444; line-height: 1.68; font-weight: 500; }

/* ── TESTIMONIALS ── */
#testimonials { background:var(--forest); overflow:hidden; position:relative; }
#testimonials::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 100% 50%,rgba(201,160,92,0.06) 0%,transparent 55%),radial-gradient(ellipse at 0% 50%,rgba(78,110,80,0.15) 0%,transparent 50%); pointer-events:none; }
#testimonials .section-label { color:rgba(192,205,184,0.6); }
#testimonials .section-title { color:var(--cream); }
.testimonial-slider { position:relative; margin-top:56px; }
.testimonial-track { display:flex; transition:transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { min-width:100%; padding:0 100px; }
.testimonial-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:3px; padding:52px 56px; position:relative; overflow:hidden; }
.testimonial-card::before { content:''; position:absolute; bottom:0; left:0; right:0; height:1px; background:linear-gradient(to right,transparent,var(--gold),transparent); }
.quote-mark { font-family:var(--font-display); font-size:9rem; color:var(--gold); opacity:0.12; line-height:0; position:absolute; top:52px; left:44px; font-weight:900; }
.testimonial-text { font-family:var(--font-serif); font-size:1.55rem; font-style:italic; color:var(--cream); line-height:1.7; position:relative; z-index:1; font-weight:300; }
.testimonial-author { margin-top:32px; display:flex; align-items:center; gap:18px; }
.author-avatar { width:50px; height:50px; border-radius:50%; background:rgba(78,110,80,0.3); border:1px solid rgba(201,160,92,0.2); display:flex; align-items:center; justify-content:center; font-size:1.4rem; }
.author-name { color:var(--gold-pale); font-weight:500; font-size:0.9rem; }
.author-origin { color:rgba(192,205,184,0.55); font-size:0.76rem; margin-top:3px; }
.slider-controls { display:flex; gap:10px; justify-content:center; margin-top:40px; }
.slider-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.2); cursor:pointer; transition:all 0.35s cubic-bezier(0.4,0,0.2,1); border:none; }
.slider-dot.active { background:var(--gold); width:32px; border-radius:4px; }

/* ── CTA ── */
#cta {
  background: var(--moss);
  text-align: center;
  padding: 130px 40px;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/cta-himalayan-landscape-bg.webp') center / cover no-repeat;
  opacity: 0.12;
}
#cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10,20,12,0.6) 100%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
#cta .section-label        { justify-content: center; color: rgba(192,205,184,0.7); }
#cta .section-label::after { display: none; }
#cta .section-label::before { content: ''; flex: 0 0 48px; height: 1px; background: rgba(192,205,184,0.4); }
#cta .section-title        { color: var(--cream); }
#cta .section-title em     { color: var(--gold); }
.cta-sub { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; color: rgba(192,205,184,0.75); margin-top: 18px; font-weight: 300; }
.cta-buttons { margin-top: 52px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 17px 40px;
  border: none;
  border-radius: 2px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s;
  font-family: var(--font-body);
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
}
.btn-wa:hover { background: #1ebe5c; transform: translateY(-3px); box-shadow: 0 16px 44px rgba(37,211,102,0.5); }

/* ── CONTACT ── */
.contact {
  position: relative;
  background-image: url('images/contact-himalayan-landscape.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 110px 0;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8,18,12,0.88), rgba(8,18,12,0.94));
}
.contact-overlay { position: absolute; inset: 0; pointer-events: none; }

.contact-grid {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.2fr);
  gap: 60px;
  align-items: start;
  padding: 0 40px;
}

.contact-info,
.booking-form {
  min-width: 0;
}

.booking-form {
  width: 100%;
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.contact-item-val,
.footer-contact-item a {
  word-break: break-word;
}
.contact .section-title  { color: #fff; }
.contact .section-label  { color: var(--gold-pale); }
.contact .divider        { height: 1px; background: linear-gradient(to right, var(--gold), rgba(255,255,255,0.1)); margin: 24px 0; }
.contact-info p          { color: rgba(255,255,255,0.92); margin-bottom: 36px; font-size: 1rem; line-height: 1.75; font-family: var(--font-serif); font-weight: 500; }
.contact-items           { display: flex; flex-direction: column; gap: 14px; }
.contact-item            { display: flex; align-items: flex-start; gap: 16px; padding: 18px 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); backdrop-filter: blur(16px); border-radius: 3px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.contact-item:hover      { transform: translateX(6px); background: rgba(255,255,255,0.07); border-color: rgba(201,160,92,0.3); }
.contact-item-icon       { width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), #a0773a); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; box-shadow: 0 6px 18px rgba(201,160,92,0.3); }
.contact-item-label      { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; font-family: var(--font-body); }
.contact-item-val        { color: #fff; font-size: 0.92rem; }

/* ── BOOKING FORM ── */
.booking-form {
  background: rgba(8,18,12,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 44px;
  backdrop-filter: blur(24px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  position: relative;
}
.booking-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  border-radius: 4px 4px 0 0;
}
.form-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 32px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 9px;
  font-family: var(--font-body);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 13px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: all 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(201,160,92,0.12), 0 8px 24px rgba(0,0,0,0.3);
}
.form-group select option { background: #0a1410; color: #fff; }
.form-group textarea { min-height: 110px; resize: vertical; }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--deep);
  border: none;
  border-radius: 3px;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s;
  box-shadow: 0 8px 30px rgba(201,160,92,0.35);
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.form-submit:hover { background: var(--gold-pale); transform: translateY(-3px); box-shadow: 0 16px 44px rgba(201,160,92,0.45); }
.form-submit:hover::before { transform: translateX(100%); }
.form-submit:active { transform: translateY(0); }

/* ── FORM POPUPS ── */
.form-popup {
  position: fixed;
  
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}
.popup-card {
  background: var(--deep);
  color: #fff;
  padding: 36px;
  border-radius: 4px;
  text-align: center;
  width: 340px;
  max-width: 90vw;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  border: 1px solid rgba(201,160,92,0.15);
  animation: popupUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.popup-icon  { font-size: 36px; margin-bottom: 12px; }
.popup-card h3 { margin: 12px 0 10px; font-size: 1.3rem; font-family: var(--font-display); }
.popup-card p  { font-size: 0.88rem; opacity: 0.75; line-height: 1.6; }
.popup-card button {
  margin-top: 20px;
  padding: 11px 28px;
  border: none;
  border-radius: 3px;
  background: var(--gold);
  color: var(--deep);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  transition: background 0.25s;
}
.popup-card button:hover { background: var(--gold-pale); }

/* ── FIND US / LOCATION MAP SECTION ── */
#find-us {
  padding: clamp(56px, 7vw, 80px) 0;
  background: var(--forest);
  color: var(--cream);
}

#find-us .container {
  padding: 0 clamp(20px, 4vw, 56px);
}

#find-us .reveal {
  opacity: 1 !important;
  transform: none !important;
}

#find-us .section-label {
  color: var(--gold);
  justify-content: flex-start;
}

#find-us .section-title {
  color: var(--cream);
  text-align: left;
  margin-bottom: 18px;
}

#find-us .section-intro {
  color: var(--mist);
  max-width: 680px;
  margin: 0 0 36px 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.map-click-wrap {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
  max-width: 100%;
  margin: 0;
}

#find-us .findus-header {
  margin-bottom: 36px;
}

.map-click-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 48px 120px rgba(12,26,16,0.55);
}

.location-map-embed {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: saturate(0.75) brightness(0.9);
  transition: filter 0.35s;
  pointer-events: none;
}

.map-click-wrap:hover .location-map-embed {
  filter: saturate(1) brightness(1);
}

.map-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 10;
  background: rgba(12, 26, 16, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,160,92,0.3);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.3s;
}

.map-click-wrap:hover .map-overlay-card {
  background: rgba(12, 26, 16, 0.96);
  border-color: rgba(201,160,92,0.6);
}

.map-pin-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.map-overlay-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.map-overlay-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.map-overlay-sub {
  font-size: 0.82rem;
  color: var(--mist);
  font-family: var(--font-body);
}

.map-overlay-coords {
  font-size: 0.75rem;
  color: var(--gold);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}

.map-open-btn {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}

.map-click-wrap:hover .map-open-btn {
  background: var(--gold-pale);
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .location-map-embed { height: 300px; }
  .map-overlay-card {
    flex-wrap: wrap;
    bottom: 16px;
    left: 12px;
    right: 12px;
    padding: 14px 16px;
    gap: 10px;
  }
  .map-open-btn { width: 100%; text-align: center; }
}

/* ── FOOTER ── */
footer {
  position: relative;
  background-image: url('images/hero-himalayan-ridge-dawn.webp');
  background-size: cover;
  background-position: center 30%;
  background-attachment: scroll;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Ensure footer extends to very bottom of page with no gaps */
  display: block;
  width: 100%;
}

/* Very dark overlay */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4,10,6,0.88) 0%,
    rgba(4,10,6,0.94) 40%,
    rgba(4,10,6,0.98) 70%,
    rgba(4,10,6,1.0) 100%
  );
  z-index: 0;
  pointer-events: none;
}

footer::after { display: none; }

html, body {
  margin: 0 !important;
  padding: 0 !important;
  background: #0c1a10 !important;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 48px;
}

/* Logo / brand block */
.footer-brand {
  text-align: center;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 6px;
}
.footer-brand-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 4px;
}
.footer-brand-location {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
}

/* Gold divider line */
.footer-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  border: none;
  margin: 0;
}

/* Contact links row */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start; /* IMPORTANT */
  gap: 10px 28px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  transition: color 0.25s;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.footer-contact-item .fc-icon {
  width: 16px;          /* fixed width = perfect alignment */
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.2;
  margin-top: 2px;
}
.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-contact-item:hover,
.footer-contact-item:hover a {
  color: var(--gold-pale);
}

/* Email list inside footer */
.footer-emails {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  overflow: hidden;
}
.footer-emails a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
  word-break: break-all;
  overflow-wrap: break-word;
  white-space: normal;
  font-size: 0.78rem;
}
.footer-contact-item--email {
  align-items: flex-start !important;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.footer-contact-item--email .fc-icon {
  margin-top: 3px;
  flex-shrink: 0;
}

/* Quick nav links */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  list-style: none;
}
.footer-nav li a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.25s;
}
.footer-nav li a:hover { color: var(--gold); }

/* Copyright bar */
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  width: 100%;
}

/* Legacy selectors — keep working for any inline footer markup */
footer strong { color: rgba(255,255,255,0.85); font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
footer a      { color: var(--gold); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold-pale); }

/* Footer responsive */
@media (max-width: 600px) {
  footer { padding: 56px 20px 32px; }
  .footer-inner { width: 100%; max-width: 100%; overflow: hidden; }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  .footer-contact-item {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-contact-item .fc-icon {
    margin-top: 2px;
    width: 18px;
    flex-shrink: 0;
  }
  .footer-emails {
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
    width: 100%;
  }
  .footer-emails a {
    white-space: normal;
    word-break: break-all;
    overflow-wrap: break-word;
    font-size: 0.74rem;
    display: block;
    width: 100%;
  }
  .footer-brand-name { font-size: 1.15rem; }
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  animation: waPulse 2.8s ease-in-out infinite;
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg   { width: 28px; height: 28px; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.35); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
}
.wa-tooltip {
  position: absolute;
  right: 72px; top: 50%;
  transform: translateY(-50%);
  background: var(--deep);
  color: #fff;
  font-size: 0.73rem;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════════════
   ITINERARY ACCORDION (Foreigner Tour)
   ═══════════════════════════════════════════════════ */

.itinerary-accordion {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.iti-item {
  border: 1px solid rgba(78, 110, 80, 0.25);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(22, 43, 27, 0.04);
  transition: box-shadow 0.3s ease;
}

.iti-item:hover {
  box-shadow: 0 4px 20px rgba(12, 26, 16, 0.12);
}

.iti-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.iti-header:hover,
.iti-header[aria-expanded="true"] {
  background: rgba(78, 110, 80, 0.1);
}

.iti-day-badge {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.iti-title {
  flex: 1;
  font-size: clamp(0.82rem, 2.2vw, 0.95rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.35;
  min-width: 0;
}

.iti-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--sage);
  transition: transform 0.3s ease;
  display: block;
  line-height: 1;
}

.iti-header[aria-expanded="true"] .iti-arrow {
  transform: rotate(180deg);
}

.iti-body {
  display: none;
  padding: 0 20px 20px;
  animation: itiFadeIn 0.3s ease;
}

.iti-body.open {
  display: block;
}

@keyframes itiFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.iti-body p {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 12px;
}

.iti-body p:last-of-type {
  margin-bottom: 0;
}

.iti-body h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 16px 0 8px;
  font-weight: 600;
}

.iti-body .tl-tags {
  margin-top: 16px;
}

/* Mobile accordion adjustments */
@media (max-width: 600px) {
  .iti-header {
    padding: 14px 14px;
    gap: 10px;
  }

  .iti-day-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .iti-title {
    font-size: 0.8rem;
  }

  .iti-body {
    padding: 0 14px 16px;
  }

  .iti-body p {
    font-size: 0.88rem;
    line-height: 1.75;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE STYLES

/* ── TABLET (≤ 960px) ── */
@media (max-width: 960px) {
  section        { padding: 80px 28px; }
  nav            {
    padding: 20px 28px;
    /* Android Chrome / Samsung Internet: stable layout */
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
  }
  nav.scrolled   { padding: 14px 28px; }
  .nav-links     { display: none; }
  .hamburger     {
    display: flex;
    flex-shrink: 0;
  }

  .about-grid    { grid-template-columns: 1fr; gap: 56px; }
  .about-image-badge { right: 12px; }

  /* owner card — handled in component CSS */

  .why-grid      { grid-template-columns: 1fr 1fr; }
  .fac-grid      { grid-template-columns: 1fr 1fr; }

  .testimonial-slide { padding: 0 24px; }

  /* Species grid — 2 columns on tablet */
  .species-grid  { grid-template-columns: repeat(2, 1fr); }
  .panda-panel   { grid-template-columns: repeat(2, 1fr); max-width: 100%; }

  .lodge-main-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .lodge-photo.span-row { grid-row: span 1; }
  .lodge-strip   { grid-template-columns: repeat(2, 1fr); }

  .gtab          { padding: 11px 18px; font-size: 0.68rem; }

  .contact-grid  { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
}

/* ── MOBILE (≤ 600px) ── */
@media (max-width: 600px) {
  :root { --section-pad: 72px; }

  section { padding: var(--section-pad) 20px; }

  /* Navigation — keep brand name & address visible, just smaller */
  .nav-logo {
    font-size: 0.78rem;
  }
  .nav-logo span {
    display: block;
    font-size: 0.46rem !important;
    letter-spacing: 0.12em;
    margin-top: 2px;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  /* Hero — full viewport, no white-space gap */
  #hero {
    height: 100vh;
    height: 100svh;
    min-height: -webkit-fill-available;
  }
  html {
    height: -webkit-fill-available;
  }
  .hero-bg,
  .slide {
    background-attachment: scroll;
    height: 100%;
  }

  /* Hero content — properly centered, no overflow */
  .hero-content {
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    padding: 6px 14px;
    margin-bottom: 18px;
    max-width: 90vw;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem) !important;
    line-height: 1.05;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
    padding: 0;
  }

  .hero-sub {
    font-size: clamp(0.95rem, 3.5vw, 1.2rem);
    padding: 0 8px;
    max-width: 90vw;
  }

  .hero-meta {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    padding: 0 8px;
    max-width: 90vw;
    word-break: break-word;
  }

  .hero-divider {
    margin: 16px auto;
  }

  /* Hero buttons stacked */
  .hero-buttons  { 
    flex-direction: column; 
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    width: 100%;
    max-width: 280px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
  }

  /* About */
  .about-stats   { grid-template-columns: 1fr 1fr; }
  .about-image-badge { bottom: -16px; right: 8px; padding: 18px 20px; }
  .about-image-badge strong { font-size: 1.8rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Owner */
  /* Owner — handled in owner CSS block */

  /* Species gallery — 2 columns on mobile */
  .species-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .species-card img { height: 200px; object-fit: cover; object-position: center; }
  .panda-panel .species-card img { height: 220px; object-fit: cover; object-position: center; }
  .species-card.panda-wide img   { height: 180px; object-fit: cover; object-position: center; }
  .panda-panel { grid-template-columns: 1fr 1fr; }

  /* Lodge gallery */
  .lodge-main-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .lodge-photo.span-row { grid-row: span 1; }
  .lodge-photo img { height: 220px; }
  .lodge-strip { grid-template-columns: repeat(2, 1fr); }
  .lodge-strip .lodge-photo { height: 140px; }

  /* Facilities */
  .fac-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-slide  { padding: 0 8px; }
  .testimonial-card   { padding: 32px 28px; }
  .testimonial-text   { font-size: 1.2rem; }

  /* Tours */
  .tab-btn   { padding: 12px 18px; font-size: 0.68rem; letter-spacing: 0.1em; }
  .timeline  { padding-left: 28px; }
  .tl-dot    { left: -32px; }
  .tl-card   { padding: 20px 18px; }

  /* Contact */
  .contact   { background-attachment: scroll; }
  .contact-grid { padding: 0 16px; }
  .booking-form { padding: 24px 20px; }
  .form-row  { grid-template-columns: 1fr; }

  /* CTA */
  #cta { padding: 80px 24px; }
  .cta-sub { font-size: 1.1rem; }

  /* Footer — handled in footer responsive block above */

  /* WhatsApp float */
  .wa-float  { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
  .wa-tooltip { display: none; }
}

/* ── VERY SMALL MOBILE (≤ 380px) ── */
@media (max-width: 380px) {
  .species-grid { grid-template-columns: 1fr; }
  .species-card img { height: 220px; }
  .panda-panel { grid-template-columns: 1fr; }
  .species-card.panda-wide { grid-column: span 1; }
  .lodge-strip { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════
   HAPPY MOMENTS SECTION
   ════════════════════════════════════════════════════ */

#happy-moments {
  padding: var(--section-pad) 40px;
  background: var(--snow);
}

.moments-intro {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #2e4a30;
  max-width: 600px;
  line-height: 1.75;
  margin-top: 0.75rem;
  font-weight: 500;
}

/* ── Masonry grid ── */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Card sizes — only on tablet and above */
.moment-card { grid-row: span 1; }
@media (min-width: 561px) {
  .moment-card.tall { grid-row: span 2; }
  .moment-card.wide { grid-column: span 2; }
}

/* ── Moment card base ── */
.moment-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--moss);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s ease;
}

.moment-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: var(--shadow-lg);
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.4s ease;
  filter: brightness(0.92) saturate(1.05);
}

.moment-card:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.1);
}

/* ── Overlay ── */
.moment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,20,12,0.82) 0%,
    rgba(10,20,12,0.25) 45%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px 16px;
  transition: opacity 0.35s ease;
}

.moment-badge {
  align-self: flex-start;
  background: rgba(201,160,92,0.9);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.moment-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.moment-label {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.moment-date {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold-pale);
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* ── CTA strip ── */
.moments-cta {
  margin-top: 48px;
  display: flex;

  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
  border-radius: 16px;
  padding: 28px 40px;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}

.moments-cta p {
  font-family: var(--font-serif);
  text-align: center;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: var(--mist);
  line-height: 1.5;
  flex: 1 1 300px;
}

/* ── IMAGE PLACEHOLDER (before photos are dropped in) ──
   Shows a tasteful forest-green placeholder so layout is
   preserved even when image files are missing.
   ─────────────────────────────────────────────────────── */
.moment-card img[src*="moment-"] {
  background: linear-gradient(135deg, var(--moss) 0%, var(--forest) 100%);
}

/* ── Responsive: tablet ── */
@media (max-width: 900px) {
  .moments-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 560px) {
  .moments-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 8px;
  }

  .moment-card img {
    object-position: center center;
  }

  .moments-cta {
    display: block;
    padding: 18px 16px;
    text-align: center;
  }

  .moments-cta p {
    margin-bottom: 12px;
    flex: unset;
  }
}

@media (max-width: 380px) {
  .moments-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}
/*==== pop up box fix===*/
.contact::before {
  z-index: 0;
}

.contact-grid {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  /* Navbar: clean horizontal row, no shifts */
  nav {
    padding: 0 16px !important;
    height: 60px !important;
    min-height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  nav.scrolled {
    padding: 0 16px !important;
    height: 56px !important;
    min-height: 56px !important;
  }

  .nav-logo {
    align-items: center !important;
    gap: 8px !important;
    margin-top: 0 !important;
    font-size: 0.85rem !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
    max-width: calc(100% - 54px) !important;
  }

  .nav-logo-img-wrap {
    width: 36px !important;
    height: 36px !important;
    flex-shrink: 0 !important;
  }

  .nav-logo-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  /* Show brand name and address, scaled for mobile */
  .nav-logo span {
    display: block !important;
    font-size: 0.44rem !important;
    letter-spacing: 0.1em !important;
    margin-top: 2px !important;
    opacity: 0.7 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
  }

  .hamburger {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    margin-left: 8px !important;
  }

  .contact-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: start;
  }
}
/* ════════════════════════════════════════════════════
   GUIDE CARDS — TEXT ONLY (no photo)
   ════════════════════════════════════════════════════ */
.guide-grid--no-photo {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.guide-card--text {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(78,110,80,0.12);
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card--text:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12,26,16,0.18);
}

.guide-card--text .guide-info {
  padding: 2rem;
}

.guide-card-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 0.75rem;
}

.guide-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.guide-skill-tag {
  font-size: 0.72rem;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--fog);
  border: 1px solid rgba(78,110,80,0.18);
  color: var(--sage);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════
   LODGE GALLERY — 3-photo layout
   ════════════════════════════════════════════════════ */
.lodge-main-grid--three {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  margin-top: 44px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.lodge-main-grid--three .span-row {
  grid-column: 1 / -1;
  grid-row: auto;
  aspect-ratio: 16 / 9;
  height: auto;
}

.lodge-main-grid--three .lodge-photo:not(.span-row) {
  aspect-ratio: 4 / 3;
  height: auto;
}

.lodge-main-grid--three .lodge-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .lodge-main-grid--three {
    max-width: 100%;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .lodge-main-grid--three {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lodge-main-grid--three .span-row {
    aspect-ratio: 16 / 10;
  }
  .lodge-main-grid--three .lodge-photo:not(.span-row) {
    aspect-ratio: 4 / 3;
  }
}

/* ════════════════════════════════════════════════════
   PERFORMANCE — Mobile optimisations
   ════════════════════════════════════════════════════ */

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .slide.active { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .tl-item { transition: none; opacity: 1; transform: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.1ms !important; }
}

/* Mobile — remove expensive backdrop-filters */
@media (max-width: 768px) {
  nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .mobile-menu { backdrop-filter: none; }
  .btn-outline { backdrop-filter: none; }
  .map-overlay-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(12,26,16,0.95);
  }
  .booking-form {
    backdrop-filter: none;
    background: rgba(8,18,12,0.97);
  }
  .why-card, .fac-card, .guide-card { box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
  .species-card:hover { transform: none; }
  .moment-card:hover { transform: none; }
}

/* ════════════════════════════════════════════════════
   INTERNATIONAL TOUR — Premium Visual Design
   ════════════════════════════════════════════════════ */

/* ── Hero header ── */
.intl-tour-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 60%, #1a3a1e 100%);
  border-radius: 16px;
  padding: 48px 48px 44px;
  margin-top: 52px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,160,92,0.2);
}
.intl-tour-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,92,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.intl-tour-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--sage-light), var(--gold));
}
.intl-tour-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.intl-tour-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  color: var(--cream);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.intl-tour-subtitle {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(192,205,184,0.85);
  line-height: 1.7;
  font-style: italic;
  max-width: 680px;
  margin-bottom: 32px;
}
.intl-tour-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 12px 0;
}
.intl-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.intl-stat:first-child { padding-left: 0; }
.intl-stat:last-child { border-right: none; }
.intl-stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.intl-stat-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.intl-stat-div {
  display: none; /* dividers handled by border-right on .intl-stat */
}

/* ── Wildlife showcase ── */
.intl-wildlife-section {
  margin-bottom: 40px;
}
.intl-wildlife-label {
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
}
.intl-wildlife-label::after {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: var(--sage-light);
  opacity: 0.4;
}
.intl-wildlife-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 16px;
}
.intl-wildlife-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(78,110,80,0.1);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.intl-wildlife-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.intl-wildlife-img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
}
.intl-wildlife-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  filter: saturate(0.95);
}
/* Hornbill — portrait photo, show head/body from top */
.intl-wildlife-card:nth-child(2) .intl-wildlife-img-wrap {
  aspect-ratio: unset;
  height: 320px;
}
.intl-wildlife-card:nth-child(2) .intl-wildlife-img-wrap img {
  object-position: center 20%;
}
/* Rhino — landscape, center */
.intl-wildlife-card:nth-child(3) .intl-wildlife-img-wrap img {
  object-position: center center;
}
.intl-wildlife-card:hover .intl-wildlife-img-wrap img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.intl-wildlife-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(12,26,16,0.82);
  color: var(--gold-pale);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-weight: 500;
}
.intl-wildlife-info {
  padding: 18px 20px 20px;
}
.intl-wildlife-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 7px;
}
.intl-wildlife-info p {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: #444;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 12px;
}
.intl-wildlife-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.intl-wildlife-tags span {
  font-size: 0.65rem;
  font-family: var(--font-body);
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--fog);
  color: var(--sage);
  border: 1px solid rgba(78,110,80,0.18);
  letter-spacing: 0.04em;
}
.intl-wildlife-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--sage);
  text-align: center;
  padding: 12px 20px;
  background: rgba(78,110,80,0.06);
  border-radius: 8px;
  border: 1px dashed rgba(78,110,80,0.25);
}

/* ── Route strip ── */
.intl-route-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--forest);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid rgba(201,160,92,0.15);
}
.intl-route-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 80px;
}
.intl-route-icon {
  font-size: 1.4rem;
  display: block;
  line-height: 1;
}
.intl-route-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--cream);
  font-weight: 700;
  white-space: nowrap;
}
.intl-route-days {
  font-family: var(--font-body);
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.intl-route-arrow {
  font-size: 1.2rem;
  color: rgba(201,160,92,0.5);
  padding: 0 6px;
  align-self: center;
}

/* ── Accordion label ── */
.intl-accordion-label {
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
}
.intl-accordion-label::after {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: var(--sage-light);
  opacity: 0.4;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .intl-wildlife-grid { grid-template-columns: 1fr 1fr; }
  .intl-tour-hero { padding: 32px 28px 28px; }
  .intl-stat { padding: 0 18px; }
  .intl-stat-num { font-size: 1.4rem; }
}
@media (max-width: 600px) {
  .intl-wildlife-grid { grid-template-columns: 1fr; }
  .intl-tour-hero { padding: 24px 20px 20px; border-radius: 12px; }
  .intl-tour-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }
  .intl-stat {
    padding: 12px 16px;
    border-right: none;
    border-bottom: none;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    align-items: flex-start;
  }
  .intl-stat:last-child { border: 1px solid rgba(255,255,255,0.08); }
  .intl-stat-num { font-size: 1.5rem; }
  .intl-stat-label { font-size: 0.58rem; white-space: nowrap; }
  .intl-route-strip {
    padding: 14px 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .intl-route-strip::-webkit-scrollbar { display: none; }
  .intl-route-step {
    min-width: 64px;
    flex-shrink: 0;
  }
  .intl-route-name { font-size: 0.65rem; }
  .intl-route-days { font-size: 0.52rem; }
  .intl-route-icon { font-size: 1.1rem; }
  .intl-route-arrow { font-size: 0.8rem; padding: 0 2px; flex-shrink: 0; }
}
/* ════════════════════════════════════════════════════
   FOOTER LAYOUT — Full redesign
   ════════════════════════════════════════════════════ */

/* ── TOP row: logo + tagline left, description right ── */
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.footer-logo-img-wrap {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(201,160,92,0.5);
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,160,92,0.1), 0 6px 24px rgba(0,0,0,0.5);
}
.footer-logo-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: none;
  padding: 0;
}
.footer-logo-text { display: flex; flex-direction: column; gap: 4px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 900;
  color: #fff; line-height: 1.15;
  letter-spacing: 0.01em; display: block;
}
.footer-brand-tagline {
  font-family: var(--font-serif);
  font-style: italic; font-size: 0.88rem;
  color: var(--gold); letter-spacing: 0.03em;
  display: block;
}
.footer-desc {
  font-family: var(--font-serif);
  font-size: 1rem; line-height: 1.8;
  color: rgba(192,205,184,0.75);
  max-width: 560px;
}

/* ── GOLD DIVIDER ── */
.footer-gold-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,160,92,0.55) 25%, rgba(201,160,92,0.55) 75%, transparent);
  margin: 0 0 48px;
}

/* ── 3-column middle ── */
.footer-mid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.footer-col-title::after {
  content: ''; flex: 0 0 24px; height: 1px;
  background: rgba(201,160,92,0.4);
}

/* Quick links */
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links li {
  font-size: 0.82rem;
  font-family: var(--font-body);
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
  position: relative; display: inline-block;
}
.footer-links a::before {
  content: '→'; opacity: 0;
  position: absolute; left: -14px;
  transform: translateX(-4px);
  transition: all 0.25s;
  color: var(--gold); font-size: 0.7rem;
}
.footer-links a:hover { color: var(--gold-pale); padding-left: 14px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

/* Wildlife list items (no link) */
.footer-links li:not(:has(a)) {
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 8px;
}
.footer-link-icon { font-size: 0.9rem; flex-shrink: 0; }

/* Contact cards */
.footer-contact-list {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-contact-card {
  display: flex; align-items: flex-start;
  gap: 14px; padding: 14px 16px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  color: inherit;
}
.footer-contact-card:hover {
  background: rgba(201,160,92,0.1);
  border-color: rgba(201,160,92,0.4);
  transform: translateX(4px);
}
.footer-contact-card-icon {
  font-size: 1.1rem; flex-shrink: 0;
  margin-top: 2px; width: 22px; text-align: center;
}
.footer-contact-card div {
  display: flex; flex-direction: column;
  gap: 3px; min-width: 0;
}
.footer-contact-card-label {
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body); font-weight: 600;
  display: block;
}
.footer-contact-card-val {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  display: block; word-break: break-word; line-height: 1.5;
}
.footer-contact-card:hover .footer-contact-card-val { color: #fff; }

/* ── BOTTOM BAR ── */
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}
.footer-bottom-nav {
  display: flex; gap: 22px; flex-wrap: wrap;
}
.footer-bottom-nav a {
  font-size: 0.65rem; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  font-family: var(--font-body); font-weight: 500;
  transition: color 0.25s;
}
.footer-bottom-nav a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-mid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-mid .footer-col:last-child { grid-column: 1 / -1; }
  .footer-contact-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .footer-inner { padding: 56px 20px 0; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 18px; text-align: center;
    margin-bottom: 36px;
  }
  .footer-logo-wrap { justify-content: center; }
  .footer-desc { max-width: 100%; font-size: 0.92rem; }
  .footer-mid { grid-template-columns: 1fr; gap: 28px; }
  .footer-mid .footer-col:last-child { grid-column: auto; }
  .footer-contact-list { display: flex; flex-direction: column; gap: 8px; }
  .footer-bottom {
    flex-direction: column; align-items: center;
    text-align: center; gap: 10px; padding: 20px 0;
  }
  .footer-col-title { justify-content: center; }
  .footer-links { align-items: center; }
  .footer-links a:hover { padding-left: 0; }
  .footer-links a::before { display: none; }
}

/* ════════════════════════════════════════════════════
   INTERNATIONAL TOUR — Full Animal Gallery Grid
   ════════════════════════════════════════════════════ */

.intl-gallery-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 600;
  margin: 36px 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
}
.intl-gallery-label::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: var(--sage-light);
  opacity: 0.4;
}

.intl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  margin-bottom: 18px;
}

.intl-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: var(--moss);
}

.intl-gallery-card--wide {
  grid-column: span 2;
}

.intl-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), filter 0.4s;
  filter: brightness(0.9) saturate(1.05);
}

/* Tiger frontal is portrait — show from top so face is always visible */
.intl-gallery-card--wide:first-child {
  grid-row: span 2;
}
.intl-gallery-card--wide:first-child img {
  object-position: center top;
}

.intl-gallery-card:hover img {
  transform: scale(1.07);
  filter: brightness(1.02) saturate(1.1);
}

.intl-gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,18,11,0.92) 0%, transparent 100%);
  padding: 28px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s ease;
}

.intl-gallery-card:hover .intl-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.intl-gallery-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.intl-gallery-loc {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--gold-pale);
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .intl-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 170px;
  }
  .intl-gallery-card--wide { grid-column: span 2; }
}

@media (max-width: 600px) {
  .intl-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 8px;
  }
  .intl-gallery-card--wide { grid-column: span 2; }
  /* Show labels always on mobile (no hover) */
  .intl-gallery-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}