/* ==========================================================
   Green Hollow Eco Park — public site styles
   Design tokens live at the top; everything below is built on
   them so the palette/type can be re-tuned in one place.
   ========================================================== */

:root {
  /* palette */
  --canopy: #1F4D3A;   /* deep forest green — primary */
  --canopy-dark: #163A2B;
  --moss: #4C7A57;     /* secondary green */
  --leaf: #A8C256;     /* sunlit accent */
  --bark: #6B4A34;     /* grounding neutral */
  --mist: #F6F3EA;     /* warm paper background */
  --pale: #DCE8DE;     /* pale green-grey section tint */
  --ink: #1B2A22;      /* near-black text, greenish */
  --ink-soft: #4A5850;

  /* type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* layout */
  --max-width: 2160px;
  --radius-lg: 28px;
  --radius-md: 16px;
  --header-h: 76px;

  --shadow-soft: 0 12px 30px -14px rgba(27, 42, 34, 0.25);
  --shadow-lift: 0 20px 40px -16px rgba(27, 42, 34, 0.35);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* overflow-x: clip (not hidden) is intentional — hidden turns html/body
   into a scroll container, which silently breaks position: sticky on
   the header. clip blocks the same horizontal swipe-reveal without
   that side effect. */
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  /* soft dot-grid texture so wide screens don't read as empty
     space either side of the centered content */
  background-color: var(--mist);
  background-image: radial-gradient(circle, rgba(76, 122, 87, 0.10) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
img { max-width: 100%; display: block; height: 80%; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.15; font-weight: 600; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

section[id] { scroll-margin-top: calc(var(--header-h)); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 64px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--leaf);
  display: inline-block;
}
.eyebrow--light { color: var(--leaf); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--leaf); color: var(--canopy-dark); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline { background: transparent; border-color: rgba(246,243,234,0.6); color: var(--mist); }
.btn-outline:hover { background: rgba(246,243,234,0.12); }

/* reveal-on-scroll (progressively enhanced by main.js) */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js-enabled .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .js-enabled .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(246, 243, 234, 0.88);
  border-bottom: 1px solid rgba(31, 77, 58, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
/* Blur lives on a pseudo-element, not .site-header itself. Applying
   filter/backdrop-filter directly to .site-header would make it a
   "containing block" for its position:fixed descendants (the mobile
   .main-nav overlay) per the CSS spec — which broke the mobile menu's
   position once the page was scrolled away from the very top. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; text-decoration: none; color: var(--canopy-dark); }
.brand-logo { height: 72px; width: auto; max-width: 220px; object-fit: contain; }

.main-nav ul { display: flex; gap: 22px; align-items: center; }
.main-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--leaf);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav .nav-cta {
  background: var(--canopy);
  color: var(--mist);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.main-nav .nav-cta::after { display: none; }

.lang-switcher { display: flex; align-items: center; gap: 6px; }
.lang-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 11px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-soft);
  border: 1px solid rgba(31,77,58,0.15);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lang-link:hover { border-color: var(--canopy); color: var(--canopy-dark); }
.lang-link.is-active { background: var(--canopy); color: var(--mist); border-color: var(--canopy); }

.lang-switcher--mobile { display: none; }

/* Language dropdown — combined into the main nav, same pill look as
   before but a single <select> instead of separate always-visible
   links. One implementation serves both desktop and mobile since it
   lives inside .main-nav ul, which already reflows responsively. */
.lang-dropdown-item { display: flex; align-items: center; }
.lang-select-wrap { position: relative; display: inline-flex; align-items: center; }
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: 1px solid rgba(31,77,58,0.15);
  border-radius: 999px;
  padding: 7px 30px 7px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lang-select:hover, .lang-select:focus { border-color: var(--canopy); color: var(--canopy-dark); outline: none; }
.lang-select-icon {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px;
  color: var(--ink-soft);
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent;
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--canopy-dark); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--mist);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media picture { display: contents; }
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,58,43,0.15) 0%, rgba(22,58,43,0.55) 65%, rgba(22,58,43,0.88) 100%);
}

.hero-dots {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(246,243,234,0.4);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.is-active { background: var(--leaf); transform: scale(1.35); }
.hero-content {
  position: relative; z-index: 1;
  padding-block: 64px 76px;
  max-width: 760px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 16px;
  display: block;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 0.35em;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 56ch;
  color: rgba(246,243,234,0.92);
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 22px; right: 24px;
  z-index: 1;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(246,243,234,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mist);
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue svg { animation: bob 1.8s ease-in-out infinite; }
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ---------- about ---------- */
.about-section { padding-block: 100px; background: var(--mist); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 60% 40% 55% 45% / 55% 45% 60% 40%;
  box-shadow: var(--shadow-lift);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.about-text p { color: var(--ink-soft); font-size: 1.02rem; }

.stat-strip { display: flex; gap: 36px; margin-top: 34px; flex-wrap: wrap; }
.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--canopy);
  font-weight: 700;
  display: block;
}
.stat-item .stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- features ---------- */
.features-section { padding-block: 100px; background: var(--pale); }
.section-heading { max-width: 620px; margin-bottom: 50px; }
.section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.feature-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-card:hover .feature-bg { transform: scale(1.06); }
.feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,58,43,0.05) 0%, rgba(22,58,43,0.55) 55%, rgba(22,58,43,0.92) 100%);
}
.feature-content { position: relative; z-index: 1; padding: 28px 24px; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--canopy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--leaf); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--mist); }
.feature-card p { color: rgba(246,243,234,0.85); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- gallery ---------- */
.gallery-section { padding-block: 100px; background: var(--mist); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: var(--pale);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

/* ---------- info banner sections (Ticket Info / Accessibility & Parking) — previous overlay-banner design, kept for reference
.info-banner-section { padding-block: 70px; background: var(--mist); }
.info-banner-section--pale { background: var(--pale); }
.info-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-soft);
}
.info-banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.info-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,58,43,0.1) 0%, rgba(22,58,43,0.55) 55%, rgba(22,58,43,0.88) 100%);
}
.info-banner-content { position: relative; z-index: 1; padding: 40px; color: var(--mist); }
.info-banner-content h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 0; }
*/

/* ---------- info sections (Ticket Info / Accessibility & Parking) — heading above photo, matching Gallery/Attractions ---------- */
.info-section { padding-block: 100px; background: var(--mist); }
.info-section--pale { background: var(--pale); }
.info-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 21 / 9;
}
.info-photo picture { display: contents; }
.info-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(22,58,43,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 12px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(246,243,234,0.5);
  background: transparent; color: var(--mist);
  font-size: 1.4rem; cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(246,243,234,0.5);
  background: rgba(246,243,234,0.08); color: var(--mist);
  cursor: pointer; font-size: 1.2rem;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- info modal (Privacy Policy / Terms of Use) ---------- */
.info-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(22,58,43,0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease;
}
.info-modal.is-open { opacity: 1; visibility: visible; }
.info-modal-panel {
  position: relative;
  background: var(--mist);
  color: var(--ink);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 640px;
  max-height: 82vh;
  overflow-y: auto;
  padding: 44px 36px 36px;
  box-shadow: var(--shadow-lift);
}
.info-modal-title { font-size: 1.5rem; margin-bottom: 18px; }
.info-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(27,42,34,0.15);
  background: transparent; cursor: pointer; font-size: 1.3rem;
  color: var(--ink-soft); line-height: 1;
}
.info-modal-close:hover { background: var(--pale); }
.info-modal-body { font-size: 0.96rem; line-height: 1.75; color: var(--ink-soft); }
.info-modal-body p { margin: 0 0 1em; }
.info-modal-body h1, .info-modal-body h2, .info-modal-body h3 { font-family: var(--font-display); color: var(--ink); margin: 0.7em 0 0.35em; }
.info-modal-body ul, .info-modal-body ol { margin: 0 0 1em 1.4em; padding: 0; }
.info-modal-body a { color: var(--moss); text-decoration: underline; }
.info-modal-body strong, .info-modal-body b { font-weight: 700; color: var(--ink); }
.info-modal-body blockquote { margin: 0 0 1em; padding-left: 16px; border-left: 3px solid var(--leaf); color: var(--ink-soft); }
.info-modal-body .ql-size-small { font-size: 0.8em; }
.info-modal-body .ql-size-large { font-size: 1.4em; }
.info-modal-body .ql-size-huge { font-size: 2.1em; }
.info-modal-body .ql-align-center { text-align: center; }
.info-modal-body .ql-align-right { text-align: right; }
.info-modal-body .ql-align-justify { text-align: justify; }

/* ---------- visit ---------- */
.visit-section { padding-block: 100px; background: var(--canopy-dark); color: var(--mist); }
.visit-section .eyebrow { color: var(--leaf); }
.visit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; }

.visit-steps { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }
.visit-step { display: flex; gap: 18px; align-items: flex-start; }
.visit-step .step-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1.5px solid rgba(246,243,234,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.visit-step h4 { font-size: 1.02rem; margin-bottom: 4px; }
.visit-step p { color: rgba(246,243,234,0.75); font-size: 0.92rem; margin: 0; }

.visit-facts { display: grid; gap: 16px; }
.visit-fact { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: rgba(246,243,234,0.06); border-radius: var(--radius-md); }
.visit-fact svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; stroke: var(--leaf); }
.visit-fact h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); font-weight: 500; color: var(--leaf); margin-bottom: 4px; }
.visit-fact p { margin: 0; color: rgba(246,243,234,0.9); font-size: 0.95rem; }

.visit-map { margin-top: 18px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(246,243,234,0.15); }
.visit-map iframe { width: 100%; height: 240px; border: 0; display: block; }

/* ---------- footer ---------- */
.site-footer { background: var(--canopy); color: rgba(246,243,234,0.85); padding-block: 60px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 46px; }
.footer-about { font-size: 0.92rem; color: rgba(246,243,234,0.7); max-width: 34ch; margin-top: 14px; }
.footer-heading { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--leaf); margin-bottom: 14px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { text-decoration: none; font-size: 0.92rem; color: rgba(246,243,234,0.8); }
.footer-links a:hover { color: var(--leaf); }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(246,243,234,0.3);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.footer-social svg { width: 16px; height: 16px; stroke: var(--mist); }
.footer-social svg.icon-fill { fill: var(--mist); stroke: none; }
.footer-bottom {
  border-top: 1px solid rgba(246,243,234,0.15);
  padding-top: 22px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 0.82rem; color: rgba(246,243,234,0.55);
  overflow-wrap: break-word;
  min-width: 0;
}
.footer-bottom-links { display: flex; align-items: center; flex-wrap: wrap; row-gap: 8px; gap: 10px; min-width: 0; }
.footer-bottom-links a { color: rgba(246,243,234,0.7); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--leaf); }
.footer-modal-trigger {
  background: none; border: none; padding: 0; margin: 0;
  font: inherit; cursor: pointer;
  color: rgba(246,243,234,0.7);
}
.footer-modal-trigger:hover { color: var(--leaf); }
.footer-bottom-visit { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px; color: var(--leaf) !important; font-weight: 600; }
.footer-bottom-visit svg { stroke: var(--leaf); flex-shrink: 0; }
.footer-bottom-sep { color: rgba(246,243,234,0.28); }
.footer-powered-by { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.mango-mark { flex-shrink: 0; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    z-index: 90;
    background: var(--mist);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
    padding: 8px 24px 30px;
    overflow-y: auto;
    box-sizing: border-box;
  }
  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s ease, visibility 0s linear 0s;
  }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block;
    width: 100%;
    font-size: 1.15rem;
    padding: 18px 2px;
    border-bottom: 1px solid rgba(31,77,58,0.1);
  }
  .main-nav a::after { display: none; }
  .main-nav .nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 16px;
    border-bottom: none;
  }
  .nav-toggle { display: flex; }

  .lang-switcher--desktop { display: none; }
  .lang-switcher--mobile { display: flex; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(31,77,58,0.1); }

  .lang-dropdown-item { width: 100%; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(31,77,58,0.1); }
  .lang-select-wrap { width: 100%; }
  .lang-select { width: 100%; padding-block: 12px; text-align: left; }

  .hero-content { padding-block: 40px 56px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }

  /* .info-banner-section { padding-block: 48px; }
  .info-banner { min-height: 260px; }
  .info-banner-content { padding: 26px; } */

  .info-section { padding-block: 60px; }
  .info-photo { aspect-ratio: 4 / 3; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-links { gap: 8px; }
}

@media (max-width: 480px) {
  .stat-strip { gap: 22px; }
  .stat-item .stat-number { font-size: 1.7rem; }
}

@media (max-width: 400px) {
  .container { padding-inline: 16px; }
  .footer-bottom { font-size: 0.76rem; }
  .footer-bottom-links { gap: 6px 8px; }
  .footer-powered-by, .footer-bottom-visit { gap: 5px; }
}
