/* ═══════════════════════════════════════════════════════════
   KOLKHETI NATIONAL PARK — style.css
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --forest:    #0b1a0b;
  --deep:      #111e11;
  --moss:      #1e3a1e;
  --fern:      #2d5a2d;
  --mist:      #6a9b6a;
  --cream:     #f0ead8;
  --parchment: #e2d9c4;
  --gold:      #c8a23e;
  --gold-dim:  rgba(200,162,62,0.35);
  --water:     #2a5858;
}

html { scroll-behavior: smooth; }

body {
  background: var(--forest);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ────────────────────────────────────────
   CUSTOM CURSOR
──────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s;
}
.cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1px solid rgba(200,162,62,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor-ring.hovered {
  width: 58px; height: 58px;
  opacity: 0.35;
}

/* ────────────────────────────────────────
   NAV
──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 26px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(11,26,11,0.92) 0%, transparent 100%);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(11,26,11,0.97);
  padding: 18px 52px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.nav-logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.38em;
  color: var(--gold);
  font-weight: 300;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11,26,11,0.98);
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ────────────────────────────────────────
   HERO — SCROLL EXPAND
──────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer aerial background */
.hero-outer-bg {
  position: absolute;
  inset: 0;
  background-image: url('materials/Kolkheti_National_Park,_Western_Georgia,_Sept._2017.jpg');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.45) saturate(1.1);
  transform: scale(1.04);
  transition: transform 0.6s ease;
  will-change: transform;
}
.hero-outer-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(11,26,11,0.55) 100%),
    linear-gradient(to bottom, rgba(11,26,11,0.45) 0%, transparent 30%, transparent 65%, rgba(11,26,11,0.9) 100%);
  z-index: 1;
}

/* Scroll-expand media wrapper */
.hero-media-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 340px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,0,0,0.6);
  transition: width 0s, height 0s, border-radius 0.4s;
  will-change: width, height;
}
.hero-media-inner {
  position: relative;
  width: 100%; height: 100%;
}
.hero-media-inner video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.32);
  transition: opacity 0.3s;
}

/* Title */
.hero-title-wrap {
  position: absolute;
  z-index: 3;
  text-align: center;
  pointer-events: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-title-left,
.hero-title-center,
.hero-title-right {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7.5vw, 112px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  will-change: transform;
  transition: transform 0s;
}
.hero-title-center em {
  font-style: italic;
  color: var(--mist);
}

/* Eyebrow + scroll hint */
.hero-sub-wrap {
  position: absolute;
  bottom: 44px;
  left: 50%; transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}
.hero-sub {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.5);
  font-weight: 300;
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.35);
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

/* CTA - appears after expand */
.hero-cta-wrap {
  position: absolute;
  bottom: 52px;
  left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
.hero-cta-wrap.visible {
  opacity: 1;
  pointer-events: all;
}

/* ────────────────────────────────────────
   BUTTONS
──────────────────────────────────────── */
.btn-primary {
  padding: 13px 34px;
  background: var(--gold);
  color: var(--forest);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); }

.btn-ghost {
  padding: 13px 34px;
  border: 1px solid rgba(240,234,216,0.28);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ────────────────────────────────────────
   STATS BAR
──────────────────────────────────────── */
.stats-bar {
  background: var(--deep);
  border-top:    1px solid rgba(200,162,62,0.12);
  border-bottom: 1px solid rgba(200,162,62,0.12);
  padding: 34px 0;
  display: flex;
  justify-content: center;
}
.stat-item {
  text-align: center;
  padding: 0 56px;
  border-right: 1px solid rgba(240,234,216,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.38);
  margin-top: 7px;
  display: block;
}

/* ────────────────────────────────────────
   SECTION COMMONS
──────────────────────────────────────── */
.section-tag {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--mist);
}

/* ────────────────────────────────────────
   STORY
──────────────────────────────────────── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.story-text {
  background: var(--deep);
  padding: 110px 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240,234,216,0.72);
  margin-top: 26px;
  max-width: 460px;
}
.story-badges {
  display: flex;
  gap: 12px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.badge {
  padding: 7px 16px;
  border: 1px solid var(--gold-dim);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.story-visual {
  position: relative;
  overflow: hidden;
}
.story-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.9s ease;
}
.story-visual:hover .story-img { transform: scale(1.0); }
.story-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,30,17,0.35) 0%, transparent 45%);
}
.story-caption {
  position: absolute;
  bottom: 28px; left: 28px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.45);
}

/* ────────────────────────────────────────
   QUOTE
──────────────────────────────────────── */
.quote-section {
  position: relative;
  height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.28) saturate(0.75);
}
.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 860px;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 110px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.4;
  display: block;
  margin-bottom: 18px;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3.2vw, 40px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream);
}
.quote-source {
  margin-top: 22px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* ────────────────────────────────────────
   WILDLIFE
──────────────────────────────────────── */
.wildlife {
  padding: 110px 44px;
  background: var(--forest);
}
.wildlife-header {
  text-align: center;
  margin-bottom: 64px;
}
.wildlife-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: rgba(240,234,216,0.5);
  margin-top: 16px;
  line-height: 1.7;
}
.wildlife-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 270px 270px;
  gap: 3px;
  max-width: 1180px;
  margin: 0 auto;
}
.wcard           { position: relative; overflow: hidden; }
.wcard-wide      { grid-column: span 2; }

.wcard-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
  filter: brightness(0.72) saturate(0.88);
}
.wcard:hover .wcard-img {
  transform: scale(1.07);
  filter: brightness(0.48) saturate(1.05);
}
.wcard-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: linear-gradient(to top, rgba(11,26,11,0.88) 0%, transparent 55%);
}
.wcard:hover .wcard-info {
  background: linear-gradient(to top, rgba(11,26,11,0.96) 0%, rgba(11,26,11,0.2) 100%);
}
.wcard-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--cream);
}
.wcard-latin {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  margin-top: 3px;
  opacity: 0.85;
}
.wcard-desc {
  font-size: 13px;
  color: rgba(240,234,216,0.65);
  margin-top: 9px;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s;
  opacity: 0;
}
.wcard:hover .wcard-desc { max-height: 90px; opacity: 1; }

/* ────────────────────────────────────────
   EXPERIENCES
──────────────────────────────────────── */
.experiences {
  padding: 110px 44px;
  background: var(--deep);
}
.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1180px;
  margin: 0 auto 58px;
}
.exp-header > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: rgba(240,234,216,0.48);
  max-width: 300px;
  line-height: 1.65;
  text-align: right;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1180px;
  margin: 0 auto;
}
.exp-card {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.exp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
  filter: brightness(0.58) saturate(0.82);
}
.exp-card:hover .exp-bg { transform: scale(1.06); filter: brightness(0.42) saturate(0.95); }
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,26,11,0.93) 0%, transparent 52%);
}
.exp-num {
  position: absolute;
  top: 26px; right: 26px;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: rgba(200,162,62,0.45);
  letter-spacing: 0.1em;
}
.exp-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
}
.exp-icon { font-size: 26px; display: block; margin-bottom: 14px; }
.exp-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.exp-desc {
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(240,234,216,0.62);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s;
  opacity: 0;
}
.exp-card:hover .exp-desc { max-height: 120px; opacity: 1; }
.exp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.08s, transform 0.4s 0.08s, gap 0.3s;
}
.exp-card:hover .exp-link { opacity: 1; transform: translateY(0); }
.exp-link:hover { gap: 14px; }
.exp-link::after { content: '→'; }

/* ────────────────────────────────────────
   LOCATION / MAP PIN
──────────────────────────────────────── */
.location-section {
  padding: 110px 44px;
  background: var(--forest);
}
.location-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 72px;
  align-items: center;
}
.loc-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240,234,216,0.6);
  margin-top: 22px;
}
.loc-coords {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}
.coord { display: flex; flex-direction: column; gap: 4px; }
.coord-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.3);
}
.coord-value {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--gold);
  font-style: italic;
}

/* Map card — photo left + map right */
.loc-map-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid rgba(200,162,62,0.14);
  overflow: hidden;
  position: relative;
}
.loc-photo {
  position: relative;
  overflow: hidden;
  height: 480px;
}
.loc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.9);
  transition: filter 0.4s;
}
.loc-map-wrap:hover .loc-photo img { filter: brightness(0.9) saturate(1.0); }
.loc-photo-caption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.6);
  background: rgba(11,26,11,0.6);
  padding: 4px 10px;
}
.loc-map {
  position: relative;
  overflow: hidden;
  height: 480px;
  flex: 1;
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.55) brightness(0.82) hue-rotate(20deg);
  pointer-events: none;   /* prevents map stealing scroll */
  display: block;
}
/* SVG boundary overlay — covers full map area */
.map-boundary-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}
.loc-map-border {
  position: absolute;
  inset: 0;
  border: none;
  pointer-events: none;
}

/* PIN — exactly like the reference screenshot */
.map-pin-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -65%);
  pointer-events: none;
  z-index: 10;
}
.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
/* Ripple pulse ring */
.pin-ripple {
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 80px;
  border: 2px solid rgba(200,162,62,0.35);
  border-radius: 50%;
  animation: ripple 2.4s ease-out infinite;
}
/* Tooltip label */
.pin-label {
  background: var(--deep);
  border: 1px solid rgba(200,162,62,0.3);
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  position: relative;
  margin-bottom: 8px;
}
.pin-label::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  width: 10px; height: 10px;
  background: var(--deep);
  border-right: 1px solid rgba(200,162,62,0.3);
  border-bottom: 1px solid rgba(200,162,62,0.3);
  transform: translateX(-50%) rotate(45deg);
}
/* Pin body — teardrop with photo inside */
.pin-body {
  width: 66px; height: 66px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 6px 28px rgba(200,162,62,0.6);
  overflow: hidden;
  animation: pinBob 2.8s ease-in-out infinite;
  flex-shrink: 0;
}
.pin-photo {
  width: 100%; height: 100%;
  transform: rotate(45deg) scale(1.4);
  overflow: hidden;
}
.pin-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.1);
}
/* Stem line */
.pin-stem {
  width: 2px; height: 34px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-top: -1px;
}
/* Ground dot */
.pin-dot {
  width: 6px; height: 3px;
  background: rgba(200,162,62,0.4);
  border-radius: 50%;
  margin-top: -2px;
}

/* ────────────────────────────────────────
   VISIT / HOURS
──────────────────────────────────────── */
.hours-section {
  padding: 110px 44px;
  background: var(--deep);
  border-top: 1px solid rgba(200,162,62,0.08);
}
.hours-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.hours-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: rgba(240,234,216,0.45);
  margin-top: 16px;
  margin-bottom: 60px;
  line-height: 1.7;
}
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 52px;
}
.season-card {
  padding: 42px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(240,234,216,0.04);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.season-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.season-card:hover {
  background: rgba(200,162,62,0.04);
  border-color: rgba(200,162,62,0.14);
  transform: translateY(-4px);
}
.season-card:hover::before { transform: scaleX(1); }
.season-icon { font-size: 30px; display: block; margin-bottom: 14px; }
.season-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 18px;
}
.hours-rows { display: flex; flex-direction: column; gap: 9px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(240,234,216,0.05);
  font-size: 12px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.38);
}
.hours-row span:last-child {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
}
.visit-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 36px;
  border: 1px solid rgba(200,162,62,0.14);
  background: rgba(200,162,62,0.03);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(240,234,216,0.55);
  line-height: 1.55;
  text-align: left;
}
.visit-note span:first-child { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
footer {
  background: var(--forest);
  border-top: 1px solid rgba(200,162,62,0.07);
  padding: 64px 52px 36px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(240,234,216,0.05);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 300;
  margin-top: 4px;
}
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: rgba(240,234,216,0.35);
  line-height: 1.75;
  max-width: 210px;
}
.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 300;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(240,234,216,0.38);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1180px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 10px; color: rgba(240,234,216,0.18); letter-spacing: 0.05em; }
.footer-bottom a { font-size: 10px; color: rgba(200,162,62,0.4); text-decoration: none; transition: color 0.3s; letter-spacing: 0.05em; }
.footer-bottom a:hover { color: var(--gold); }

/* ────────────────────────────────────────
   SCROLL REVEAL
──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.5s; }

/* ────────────────────────────────────────
   KEYFRAMES
──────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; transform: scaleY(0.75); }
}
@keyframes ripple {
  0%   { transform: translateX(-50%) scale(0.7); opacity: 0.7; }
  100% { transform: translateX(-50%) scale(2.2); opacity: 0;   }
}
@keyframes pinBob {
  0%, 100% { transform: rotate(-45deg) translateY(0);  }
  50%       { transform: rotate(-45deg) translateY(-4px); }
}

/* ────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 1024px) {
  .location-inner  { grid-template-columns: 1fr; gap: 44px; }
  .loc-map-wrap    { grid-template-columns: 180px 1fr; height: 400px; }
  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav              { padding: 18px 24px; }
  nav.scrolled     { padding: 14px 24px; }
  .nav-links       { display: none; }
  .nav-hamburger   { display: flex; }

  .hero-media-wrap { width: 280px; height: 340px; }

  .stats-bar       { flex-wrap: wrap; padding: 0; }
  .stat-item       { width: 50%; padding: 26px 16px; border-right: none; border-bottom: 1px solid rgba(240,234,216,0.06); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(240,234,216,0.06); }

  .story           { grid-template-columns: 1fr; }
  .story-text      { padding: 56px 28px; }
  .story-visual    { min-height: 340px; }

  .wildlife        { padding: 72px 20px; }
  .wildlife-grid   { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
  .wcard-wide      { grid-column: span 2; }

  .experiences     { padding: 72px 20px; }
  .exp-header      { flex-direction: column; align-items: flex-start; gap: 12px; }
  .exp-header > p  { text-align: left; }
  .exp-grid        { grid-template-columns: 1fr; }
  .exp-card        { height: 400px; }

  .location-section { padding: 72px 20px; }
  .loc-map-wrap    { grid-template-columns: 1fr; height: auto; }
  .loc-photo       { height: 220px; }
  .loc-map         { height: 320px; }

  .hours-section   { padding: 72px 20px; }
  .seasons-grid    { grid-template-columns: 1fr 1fr; }

  .footer-inner    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom   { flex-direction: column; gap: 10px; text-align: center; }

  nav              { padding: 18px 24px; }
}

@media (max-width: 480px) {
  .hero-title-left,
  .hero-title-center,
  .hero-title-right { font-size: 36px; }
  .hero-cta-wrap    { flex-direction: column; }
  .seasons-grid     { grid-template-columns: 1fr; }
  .wildlife-grid    { grid-template-rows: repeat(4, 200px); }
  .wcard-wide       { grid-column: span 2; }
  .stat-item        { width: 100%; border-right: none; }
}