:root {
  --bg: #f8f4ea;
  --surface: #fcf8ef;
  --surface-2: #ffffff;
  --text: #1f2120;
  --muted: #6c6f73;
  --green: #2f5d16;
  --green-soft: #e9efe2;
  --orange: #d66d19;
  --line: rgba(47, 39, 24, 0.08);
  --shadow: 0 10px 30px rgba(37, 32, 21, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
}

html[lang="hi"] body,
html[lang="ne"] body {
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
.interactive-card {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 234, 0.97);
  border-bottom: 1px solid var(--line);
}

.nav,
.section-shell,
.footer-shell,
.footer-bottom {
  width: min(1760px, calc(100% - 6rem));
  margin: 0 auto;
}

.nav {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-copy strong,
.section-title,
.story-body h3,
.footer-brand h3,
.footer-links h4,
.hero-content h1 {
  font-family: "Playfair Display", serif;
}

.brand-copy strong {
  color: var(--green);
  font-size: 2.05rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.nav-links a {
  position: relative;
  font-size: 1.15rem;
  color: var(--text);
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active-link {
  color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
  transform: scaleX(1);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.lang-btn {
  min-width: 64px;
  border: 0;
  background: transparent;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.lang-btn.active {
  background: var(--green);
  color: #fff;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(28, 24, 14, 0.28), rgba(28, 24, 14, 0.42)),
    radial-gradient(circle at 20% 35%, rgba(226, 174, 78, 0.35), transparent 20%),
    linear-gradient(180deg, rgba(80, 70, 39, 0.22), rgba(48, 42, 23, 0.45)),
    url("hero-doon-landscape.webp") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 15, 10, 0.02), rgba(18, 15, 10, 0.3)),
    linear-gradient(90deg, rgba(255, 213, 112, 0.04), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 2rem));
  color: #fff;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  line-height: 0.95;
}

.hero-subtitle {
  margin: 1.3rem 0 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 400;
}

.hero-description {
  width: min(1100px, 100%);
  margin: 2rem auto 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.55;
}

.cta-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cta-button:hover,
.btn:hover,
.filter-chip:hover,
.lang-btn:hover,
.interactive-card:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
}

.cta-button:active,
.btn:active,
.filter-chip:active,
.lang-btn:active,
.menu-toggle:active,
.interactive-card:active {
  transform: scale(0.98);
}

.cta-button {
  margin-top: 3rem;
  background: var(--orange);
  color: #fff;
  padding: 1.15rem 2.75rem;
  font-size: 1.35rem;
  box-shadow: 0 16px 28px rgba(214, 109, 25, 0.28);
}

.cta-button:hover {
  background: #bf6015;
}

section {
  padding: 6rem 0;
}

.section-shell {
  text-align: center;
}

.section-shell.narrow {
  width: min(980px, calc(100% - 2rem));
}

.section-title {
  margin: 0;
  color: var(--green);
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 1.05;
}

.en-title {
  font-size: clamp(3.4rem, 5vw, 5.6rem);
}

.section-intro,
.stories-intro {
  margin: 2rem auto 0;
  max-width: 1100px;
  color: var(--muted);
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  line-height: 1.55;
}

.stats-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.about-detail-panel {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

.about-detail-block {
  padding: 1.8rem 2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-detail-block h3 {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.about-detail-block p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.85;
}

.about-gallery {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  text-align: left;
}

.about-photo-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-photo {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  display: block;
}

.about-photo-copy {
  padding: 1.35rem 1.4rem 1.6rem;
}

.about-photo-copy h3 {
  margin: 0 0 0.7rem;
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
}

.about-photo-copy p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.stat-card {
  display: grid;
  gap: 1rem;
  place-items: center;
}

.stat-number,
.stat-icon {
  color: var(--orange);
  font-size: 4rem;
  font-weight: 700;
}

.stat-label {
  font-size: 1.9rem;
}

.explore-grid {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  text-align: left;
}

.explore-card {
  display: grid;
  gap: 1.5rem;
  padding: 0.4rem;
  border-radius: 24px;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.explore-card:hover,
.explore-card:focus-visible {
  background: rgba(47, 93, 22, 0.05);
  box-shadow: 0 18px 34px rgba(37, 32, 21, 0.1);
  outline: none;
}

.card-image,
.story-image {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.card-image {
  aspect-ratio: 1.7 / 1;
}

.forest-scene {
  background:
    linear-gradient(rgba(42, 39, 17, 0.08), rgba(42, 39, 17, 0.22)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.village-scene {
  background:
    linear-gradient(rgba(90, 54, 15, 0.12), rgba(90, 54, 15, 0.18)),
    url("https://images.unsplash.com/photo-1510798831971-661eb04b3739?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.river-scene {
  background:
    linear-gradient(rgba(73, 58, 21, 0.1), rgba(73, 58, 21, 0.2)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.sunrise-scene {
  background:
    linear-gradient(rgba(119, 71, 22, 0.12), rgba(119, 71, 22, 0.08)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.card-copy h3 {
  margin: 0;
  color: var(--green);
  font-size: 2.35rem;
}

.card-copy p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 1.55rem;
}

.discover-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.discover-section {
  padding-top: 0;
}

.location-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(56, 35, 19, 0.28), rgba(56, 35, 19, 0.36)),
    url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.location-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 24, 14, 0.04), rgba(28, 24, 14, 0.18));
}

.location-hero-copy {
  position: relative;
  z-index: 1;
  color: #fff;
}

.location-subtitle {
  margin: 1rem 0 0;
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
}

.location-shell {
  text-align: left;
  padding-top: 3.5rem;
}

.location-lead {
  margin: 0 0 3rem;
  max-width: 1120px;
  font-size: 1.35rem;
  line-height: 1.7;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-facts h3,
.location-detail-section h3,
.reserve-panel h3 {
  margin: 0 0 2rem;
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  line-height: 1.05;
}

.fact-item {
  margin-bottom: 2rem;
}

.fact-item h4,
.reserve-stat h4,
.season-card h4,
.location-two-column h4 {
  margin: 0 0 0.7rem;
  color: var(--orange);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.fact-item p,
.reserve-panel p,
.season-card p,
.location-two-column p,
.location-lead {
  color: var(--text);
}

.fact-item p,
.reserve-stat p,
.season-card p,
.location-two-column p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
}

.location-image-card {
  min-height: 720px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.location-detail-section {
  margin-top: 4.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.location-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.location-two-column p + p,
.location-two-column h4 + p + p {
  margin-top: 2rem;
}

.reserve-panel {
  margin-top: 4.5rem;
  padding: 2.2rem 2.2rem 2.5rem;
  border-radius: 22px;
  background: rgba(47, 93, 22, 0.05);
  border: 1px solid rgba(47, 93, 22, 0.08);
}

.reserve-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.season-card {
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.villages-section .section-shell {
  text-align: center;
}

.village-road-panel {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  text-align: left;
}

.village-road-image {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.village-road-copy {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(47, 93, 22, 0.05);
  border: 1px solid rgba(47, 93, 22, 0.08);
}

.village-road-copy h3 {
  margin: 0 0 1rem;
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
}

.village-road-copy p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.8;
}

.village-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.village-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(47, 93, 22, 0.06), rgba(47, 93, 22, 0.12));
  border: 1px solid rgba(47, 93, 22, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.village-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(37, 32, 21, 0.12);
}

.village-card h3 {
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.25;
}

.btn {
  min-width: 280px;
  padding: 1.2rem 2rem;
  font-size: 1.3rem;
  border: 2px solid var(--green);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 26px rgba(47, 93, 22, 0.22);
}

.btn-outline {
  background: transparent;
  color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: #fff;
}

.stories-section .section-shell {
  text-align: left;
}

.stories-intro {
  margin: 0;
  max-width: 1300px;
  color: var(--text);
}

.filter-row {
  margin-top: 4rem;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.filter-chip {
  border: 1px solid var(--line);
  background: transparent;
  padding: 1rem 2.1rem;
  border-radius: 16px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.filter-chip.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 14px 26px rgba(47, 93, 22, 0.18);
}

.stories-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.featured-blog {
  padding-top: 1rem;
}

.blog-article {
  overflow: hidden;
  background: var(--surface-2);
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.blog-hero-image {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.blog-content {
  padding: 2.5rem 2.5rem 3rem;
}

.blog-title {
  margin: 1.3rem 0 1rem;
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.08;
}

.blog-meta {
  display: flex;
  gap: 1.8rem;
  color: var(--muted);
  font-size: 1.15rem;
  flex-wrap: wrap;
}

.blog-divider {
  height: 1px;
  margin: 2rem 0 2.3rem;
  background: var(--line);
}

.blog-copy {
  display: grid;
  gap: 1.8rem;
}

.blog-copy p {
  margin: 0;
  max-width: 1200px;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.75;
}

.video-section {
  padding-top: 2rem;
}

.video-layout {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 2rem;
  align-items: start;
  text-align: left;
}

.video-frame-wrap,
.video-links-card {
  background: var(--surface-2);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-frame-wrap {
  padding: 0;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.video-links-card {
  padding: 2rem;
}

.video-links-card h3 {
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.video-links-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.video-link-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.video-gallery {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: left;
}

.video-card {
  background: var(--surface-2);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-card-body {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.video-card-body h3 {
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.video-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.facebook-video-wrap {
  background: #f2f4f7;
}

.social-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(47, 93, 22, 0.14);
  background: rgba(47, 93, 22, 0.05);
  color: var(--green);
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.social-link-btn:hover {
  transform: translateY(-2px);
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(47, 93, 22, 0.18);
}

.story-card {
  overflow: hidden;
  background: var(--surface-2);
  border-radius: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
  border: 1px solid transparent;
}

.story-card:hover,
.story-card:focus-visible,
.blog-article.highlighted {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(37, 32, 21, 0.14);
  outline: none;
}

.story-card:hover,
.story-card:focus-visible {
  border-color: rgba(47, 93, 22, 0.16);
}

.story-image {
  aspect-ratio: 1.82 / 1;
  border-radius: 0;
  box-shadow: none;
}

.story-body {
  padding: 1.8rem 1.8rem 2rem;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 600;
}

.story-body h3 {
  margin: 1.4rem 0 1rem;
  color: var(--green);
  font-size: 2.1rem;
  line-height: 1.18;
}

.story-body .accent-title {
  color: var(--orange);
}

.story-body p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.65;
}

.story-meta {
  margin-top: 1.6rem;
  display: flex;
  gap: 1.6rem;
  color: var(--muted);
  font-size: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  margin-top: 4rem;
  background: var(--green);
  color: #f4f4e9;
  padding: 4.5rem 0 2rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  margin: 0;
  font-size: 3rem;
}

.footer-brand p,
.footer-links a {
  color: rgba(244, 244, 233, 0.86);
  font-size: 1.15rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-links h4 {
  margin: 0 0 1rem;
  font-size: 1.9rem;
}

.social-row {
  display: flex;
  gap: 1rem;
}

.social-row a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.7rem;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
}

.social-icon {
  position: relative;
  overflow: hidden;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  transition: transform 180ms ease, fill 180ms ease;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 180ms ease;
}

.social-icon:hover svg {
  transform: scale(1.08);
}

.facebook-icon {
  background: linear-gradient(135deg, #1877f2, #0a56c9);
}

.facebook-icon::before {
  background: linear-gradient(135deg, #3c8cff, #1877f2);
}

.instagram-icon {
  background: linear-gradient(135deg, #fdc468 0%, #df4996 45%, #8a39d6 100%);
}

.instagram-icon::before {
  background: linear-gradient(135deg, #ffd776 0%, #f35a9d 45%, #9c4ce0 100%);
}

.youtube-icon {
  background: linear-gradient(135deg, #ff3131, #c40000);
}

.youtube-icon::before {
  background: linear-gradient(135deg, #ff5a5a, #e00000);
}

.social-icon:hover::before {
  opacity: 1;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(244, 244, 233, 0.86);
  font-size: 1rem;
  flex-wrap: wrap;
}

.footer-policy {
  display: flex;
  gap: 2rem;
}

.flash-section {
  animation: sectionFlash 900ms ease;
}

@keyframes sectionFlash {
  0% {
    background-color: rgba(47, 93, 22, 0.12);
  }

  100% {
    background-color: transparent;
  }
}

.pulse-click {
  animation: pulseClick 320ms ease;
}

@keyframes pulseClick {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(0.98);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1200px) {
  .nav,
  .section-shell,
  .footer-shell,
  .footer-bottom {
    width: min(100% - 2rem, 1760px);
  }

  .nav {
    grid-template-columns: auto auto auto;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .stories-grid,
  .explore-grid,
  .stats-grid,
  .about-gallery,
  .footer-shell,
  .video-layout,
  .video-gallery,
  .location-grid,
  .location-two-column,
  .reserve-stats,
  .season-grid,
  .village-road-panel,
  .village-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0 0.4rem;
  }

  .nav-links.open {
    display: flex;
  }

  .language-toggle {
    margin-left: auto;
  }

  .hero-content h1 {
    font-size: clamp(3.6rem, 14vw, 5.2rem);
  }

  .hero-subtitle {
    font-size: 1.9rem;
  }

  .hero-description,
  .section-intro,
  .stories-intro {
    font-size: 1.15rem;
  }

  .section-title,
  .en-title {
    font-size: 2.7rem;
  }

  .blog-content {
    padding: 1.5rem 1.25rem 2rem;
  }

  .blog-title {
    font-size: 2.2rem;
  }
}

.post-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.post-modal.open {
  display: block;
}

.post-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.62);
  backdrop-filter: blur(6px);
}

.post-modal-panel {
  position: relative;
  width: min(1200px, calc(100% - 2rem));
  max-height: calc(100vh - 3rem);
  margin: 1.5rem auto;
  overflow: auto;
  border-radius: 20px;
  background: var(--surface-2);
  box-shadow: 0 24px 60px rgba(22, 19, 13, 0.28);
}

.post-modal-close {
  position: sticky;
  top: 1rem;
  z-index: 2;
  margin-left: calc(100% - 4.5rem);
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 33, 32, 0.78);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.post-modal-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.post-modal-body {
  padding: 2rem 2rem 2.5rem;
}
