/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --nps-green: #1a3c1a;
  --nps-green-light: #2d5a27;
  --nps-brown: #3d2b1f;
  --nps-gold: #c4972a;
  --nps-cream: #faf8f0;
  --nps-white: #ffffff;
  --nps-gray: #4a4a4a;
  --nps-gray-light: #e8e5dc;
  --nps-red: #c0392b;
  --nps-orange: #e67e22;
  --nps-blue: #2980b9;
  --nps-shadow: 0 2px 12px rgba(0,0,0,0.08);
  --nps-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--nps-cream);
  color: var(--nps-gray);
  line-height: 1.6;
}

.hidden { display: none !important; }

/* === Header === */
.site-header {
  background: var(--nps-green);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.logo-image {
  border-radius: var(--radius);
  display: block;
  flex: 0 0 auto;
  height: 40px;
  object-fit: cover;
  width: 40px;
}

.logo-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav { display: flex; gap: 8px; }

.nav-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.15);
  color: white;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 600;
}

.language-switcher select {
  appearance: none;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  color: white;
  cursor: pointer;
  font: inherit;
  min-width: 108px;
  padding: 7px 28px 7px 10px;
}

.language-switcher::after {
  color: rgba(255,255,255,0.8);
  content: '\25BE';
  font-size: 0.72rem;
  margin-left: -28px;
  pointer-events: none;
}

.language-switcher option {
  color: var(--nps-gray);
}

/* === Home Hero === */
.hero {
  position: relative;
  min-height: 480px;
  background:
    radial-gradient(ellipse at 18% 80%, rgba(196,151,42,0.2) 0%, transparent 52%),
    linear-gradient(135deg, rgba(26,60,26,0.96) 0%, rgba(45,90,39,0.94) 48%, rgba(61,43,31,0.96) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
  padding: 48px 24px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 15 L50 35 L30 35 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.25) 0%, transparent 52%, rgba(0,0,0,0.18) 100%);
}

.hero-content {
  position: relative;
  text-align: left;
  color: white;
  max-width: 520px;
  z-index: 1;
}

.hero-media {
  position: relative;
  width: min(44vw, 520px);
  z-index: 1;
}

.hero-media img {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-btn {
  display: inline-block;
  background: var(--nps-gold);
  color: var(--nps-brown);
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(196,151,42,0.4);
}

.hero-btn:hover {
  background: #d4a72e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,151,42,0.5);
}

/* === Filter Bar === */
.filter-bar {
  background: var(--nps-white);
  border-bottom: 1px solid var(--nps-gray-light);
  padding: 20px 0;
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.filter-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#search {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid var(--nps-gray-light);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--nps-cream);
}

#search:focus { border-color: var(--nps-green-light); }

.filter-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  padding: 6px 16px;
  border: 1.5px solid var(--nps-gray-light);
  border-radius: 50px;
  background: transparent;
  color: var(--nps-gray);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.tag:hover { border-color: var(--nps-green-light); color: var(--nps-green); }
.tag.active { background: var(--nps-green); color: white; border-color: var(--nps-green); }
.tag:disabled {
  cursor: wait;
  opacity: 0.55;
}

#search:disabled {
  background: #f4f1e7;
  cursor: wait;
}

/* === Parks Grid === */
.parks-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.parks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* === Park Card === */
.park-card {
  background: var(--nps-white);
  border-radius: var(--radius-lg);
  contain-intrinsic-size: 420px;
  content-visibility: auto;
  overflow: hidden;
  box-shadow: var(--nps-shadow);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.park-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nps-shadow-lg);
}

.card-image { height: 200px; position: relative; overflow: hidden; }

.card-image-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 3rem; position: relative;
}

.card-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-image-inner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.image-credit,
.park-image-credit {
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 0.68rem;
  line-height: 1.3;
}

.image-credit {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 1;
  max-width: calc(100% - 20px);
  padding: 4px 8px;
  border-radius: var(--radius);
  text-align: right;
}

.card-designation {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: white; padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.card-state {
  font-size: 0.8rem; color: var(--nps-green-light);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 4px;
}

.card-title {
  font-size: 1.25rem; font-weight: 700;
  color: var(--nps-brown); margin-bottom: 8px; line-height: 1.3;
}

.card-desc {
  font-size: 0.9rem; color: var(--nps-gray);
  line-height: 1.5; flex: 1; margin-bottom: 16px;
}

.card-meta {
  display: flex; gap: 16px;
  padding-top: 16px; border-top: 1px solid var(--nps-gray-light);
}

.card-meta-item { font-size: 0.8rem; }
.card-meta-label { color: #999; font-weight: 500; }
.card-meta-value { color: var(--nps-brown); font-weight: 600; }

/* === Park Detail Hero === */
.park-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.park-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 20%, rgba(0,0,0,0.6) 100%);
}

.park-hero-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 32px;
  width: 100%;
  color: white;
}

.park-hero-designation {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.park-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.park-hero-tagline {
  font-size: 1.3rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 4px;
}

.park-hero-state {
  font-size: 0.95rem;
  opacity: 0.8;
}

.park-image-credit {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 10px;
  border-radius: var(--radius);
  text-decoration: none;
}

.park-image-credit:hover {
  text-decoration: underline;
}

/* === Alerts Bar === */
.alerts-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.alert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}

.alert-item.alert-warning {
  background: #fff8e1;
  border-left: 4px solid var(--nps-gold);
  color: #5d4e37;
}

.alert-item.alert-danger {
  background: #fdecea;
  border-left: 4px solid var(--nps-red);
  color: #6b2c24;
}

.alert-item.alert-info {
  background: #e8f4fd;
  border-left: 4px solid var(--nps-blue);
  color: #1a4971;
}

.alert-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-content { flex: 1; }

.alert-title {
  font-weight: 700;
  margin-bottom: 2px;
}

/* === Park Section Navigation === */
.park-nav {
  background: var(--nps-white);
  border-bottom: 2px solid var(--nps-gray-light);
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.park-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.park-nav-inner::-webkit-scrollbar { display: none; }

.park-nav-link {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: var(--nps-gray);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.park-nav-link:hover {
  color: var(--nps-green);
  background: rgba(45,90,39,0.04);
}

.park-nav-link.active {
  color: var(--nps-green);
  border-bottom-color: var(--nps-green);
}

/* === Park Content Sections === */
.park-content { padding-bottom: 60px; }

.park-section {
  contain-intrinsic-size: 960px;
  content-visibility: auto;
  padding: 48px 0 0;
  border-bottom: 1px solid var(--nps-gray-light);
}

.park-section:last-child { border-bottom: none; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 48px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--nps-brown);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--nps-green);
  display: inline-block;
}

.section-intro {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--nps-gray);
  max-width: 800px;
}

/* === Plan Your Visit Cards === */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 40px;
}

.plan-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  display: block;
}

.plan-card:hover {
  border-color: var(--nps-green-light);
  box-shadow: var(--nps-shadow);
  transform: translateY(-2px);
}

.plan-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.plan-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--nps-brown);
  margin-bottom: 6px;
}

.plan-card p {
  font-size: 0.85rem;
  color: var(--nps-gray);
  line-height: 1.4;
}

/* === Subsections === */
.subsection {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--nps-gray-light);
}

.subsection-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nps-brown);
  margin-bottom: 16px;
}

/* === Accommodation Cards === */
.accommodation-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
}

.accommodation-type {
  font-weight: 700;
  color: var(--nps-green);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.accommodation-options {
  font-size: 0.9rem;
  color: var(--nps-gray);
  line-height: 1.5;
}

.reservation-summary {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-left: 4px solid var(--nps-green-light);
  border-radius: var(--radius);
  color: var(--nps-gray);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 14px;
  padding: 14px 16px;
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.booking-callout {
  background: linear-gradient(135deg, rgba(74, 144, 100, 0.08), rgba(196, 151, 42, 0.12));
  border: 1px solid rgba(74, 144, 100, 0.18);
  border-radius: var(--radius);
  margin-top: 18px;
  padding: 18px;
}

.booking-callout-title {
  color: var(--nps-brown);
  font-size: 1rem;
  margin: 0 0 12px;
}

.booking-link {
  margin-top: 0;
}

.booking-disclosure {
  color: var(--nps-gray);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 12px 0 0;
}

.resource-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-left: 4px solid var(--nps-green);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
}

.resource-link:hover {
  border-color: var(--nps-green-light);
  box-shadow: var(--nps-shadow);
}

.resource-link span {
  color: var(--nps-brown);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.resource-link small {
  color: var(--nps-green);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

/* === Visitor Center Cards === */
.vc-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
}

.vc-name {
  font-weight: 700;
  color: var(--nps-brown);
  font-size: 1rem;
  margin-bottom: 4px;
}

.vc-meta {
  font-size: 0.85rem;
  color: var(--nps-green);
  margin-bottom: 6px;
}

.vc-desc {
  font-size: 0.9rem;
  color: var(--nps-gray);
  line-height: 1.5;
}

/* === Regulations === */
.regulations-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 8px;
}

.regulations-list li {
  padding: 10px 14px 10px 36px;
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  position: relative;
  line-height: 1.4;
}

.regulations-list li::before {
  content: '!';
  position: absolute;
  left: 12px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--nps-gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Info Blocks === */
.info-block {
  margin-top: 28px;
}

.info-block-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nps-brown);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--nps-gray-light);
}

.info-block p {
  line-height: 1.7;
  color: var(--nps-gray);
}

.info-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  line-height: 1.5;
}

.info-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

/* === Hours Table === */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--nps-green);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hours-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--nps-gray-light);
  color: var(--nps-gray);
}

.hours-table tr:nth-child(even) td {
  background: rgba(0,0,0,0.02);
}

.info-closed {
  margin-top: 12px;
  padding: 12px 16px;
  background: #fdecea;
  border-left: 4px solid var(--nps-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: #6b2c24;
}

.info-closed strong {
  display: block;
  margin-bottom: 2px;
}

/* === Fees Table === */
.fees-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.fees-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--nps-green);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fees-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--nps-gray-light);
}

.fees-table td:last-child {
  font-weight: 600;
  color: var(--nps-brown);
}

.fees-table tr:nth-child(even) td {
  background: rgba(0,0,0,0.02);
}

/* === Weather Grid === */
.weather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.weather-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.weather-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.weather-card.season-summer::before { background: #e67e22; }
.weather-card.season-monsoon::before { background: #2980b9; }
.weather-card.season-winter::before { background: #2ecc71; }

.weather-season {
  font-weight: 700;
  color: var(--nps-brown);
  font-size: 1rem;
  margin-bottom: 2px;
}

.weather-months {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 8px;
}

.weather-temp {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--nps-green);
  margin-bottom: 8px;
}

.weather-desc {
  font-size: 0.85rem;
  color: var(--nps-gray);
  line-height: 1.5;
}

/* === Contact Grid === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.contact-item {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius);
  padding: 16px;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nps-brown);
  word-break: break-all;
}

.contact-value a {
  color: var(--nps-green);
  text-decoration: none;
}

.contact-value a:hover { text-decoration: underline; }

/* === Directions Grid === */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.direction-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.direction-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.direction-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--nps-brown);
  margin-bottom: 8px;
}

.direction-card p {
  font-size: 0.9rem;
  color: var(--nps-gray);
  line-height: 1.6;
}

.coordinates {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #999;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.park-map {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.park-map iframe {
  border: 0;
  display: block;
  height: 360px;
  width: 100%;
}

.park-map-source {
  background: var(--nps-white);
  border-top: 1px solid var(--nps-gray-light);
  color: var(--nps-gray);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
  padding: 12px 16px;
}

.park-map-source a {
  color: var(--nps-green);
  font-weight: 600;
  text-decoration: none;
}

.park-map-source a:hover {
  text-decoration: underline;
}

/* === Things to Do / Activities === */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.activity-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: all 0.2s;
}

.activity-card:hover {
  border-color: var(--nps-green-light);
  box-shadow: var(--nps-shadow);
}

.activity-card-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nps-cream);
  border-radius: var(--radius);
}

.activity-card-body { flex: 1; }

.activity-card-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--nps-brown);
  margin-bottom: 4px;
}

.activity-card-desc {
  font-size: 0.88rem;
  color: var(--nps-gray);
  line-height: 1.5;
}

/* === Wildlife Tags === */
.wildlife-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wildlife-tag {
  background: var(--nps-white);
  border: 1.5px solid var(--nps-green-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--nps-green);
}

/* === Quick Facts Grid === */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.fact-card {
  background: var(--nps-green);
  color: white;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.fact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
  margin-bottom: 4px;
  font-weight: 600;
}

.fact-value {
  font-size: 1.1rem;
  font-weight: 700;
}

/* === References === */
.references-list {
  margin-top: 24px;
  padding-left: 24px;
}

.references-list li {
  margin-bottom: 14px;
  padding-left: 6px;
  line-height: 1.5;
}

.references-list a {
  color: var(--nps-green);
  font-weight: 700;
  text-decoration: none;
}

.references-list a:hover { text-decoration: underline; }

.references-list span {
  display: block;
  font-size: 0.85rem;
  color: #777;
}

/* === No Results === */
.no-results {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

.grid-message {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--nps-shadow);
  grid-column: 1 / -1;
  padding: 56px 28px;
  text-align: center;
}

.grid-message h3 {
  color: var(--nps-brown);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.grid-message p {
  color: #777;
  margin: 0 auto;
  max-width: 38ch;
}

.no-results h3 { font-size: 1.3rem; color: var(--nps-brown); margin-bottom: 8px; }
.no-results p { color: #999; }

/* === Footer === */
.site-footer {
  background: var(--nps-brown);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 32px 24px;
}

.footer-inner p { margin-bottom: 4px; }
.footer-note { font-size: 0.8rem; opacity: 0.6; }

/* === Card SVG scenes === */
.card-svg-scene { width: 100%; height: 100%; }

.landscape-jim-corbett { background: linear-gradient(135deg, #2d5016 0%, #4a7c28 50%, #6b9e3a 100%); }
.landscape-ranthambore { background: linear-gradient(135deg, #8B6914 0%, #C4972A 50%, #d4b44a 100%); }
.landscape-kaziranga { background: linear-gradient(135deg, #1a4a3a 0%, #2e7d5e 50%, #40a87a 100%); }
.landscape-sundarbans { background: linear-gradient(135deg, #0d4f4f 0%, #1a8a7a 50%, #28b5a0 100%); }
.landscape-bandipur { background: linear-gradient(135deg, #5C3D1E 0%, #8B6F3A 50%, #a88d55 100%); }

/* === Long-form Content Guides === */
.content-view {
  background:
    radial-gradient(circle at 12% 4%, rgba(196,151,42,0.14), transparent 28%),
    linear-gradient(180deg, #f6f1e4 0%, var(--nps-cream) 520px);
}

.content-article {
  color: #3f382f;
}

.content-hero {
  background:
    linear-gradient(135deg, rgba(26,60,26,0.96), rgba(61,43,31,0.94)),
    url("assets/home-hero-1280.jpg") center / cover;
  color: white;
  overflow: hidden;
  position: relative;
}

.content-hero::after {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: '';
  inset: 0;
  opacity: 0.5;
  position: absolute;
}

.content-hero-inner {
  margin: 0 auto;
  max-width: 980px;
  padding: 74px 24px 82px;
  position: relative;
  z-index: 1;
}

.content-eyebrow {
  color: #e7c46e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.content-hero h1 {
  font-size: clamp(2.1rem, 6vw, 4.8rem);
  letter-spacing: -1.8px;
  line-height: 0.98;
  max-width: 900px;
}

.content-dek {
  color: rgba(255,255,255,0.86);
  font-size: 1.18rem;
  margin-top: 22px;
  max-width: 720px;
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.content-meta span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: rgba(255,255,255,0.86);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 12px;
}

.content-shell {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 310px;
  margin: -38px auto 0;
  max-width: 1160px;
  padding: 0 24px 56px;
  position: relative;
  z-index: 2;
}

.content-main,
.quick-facts-box,
.content-cta,
.related-articles {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(61,43,31,0.08);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(45,50,22,0.12);
}

.content-main {
  padding: 36px;
}

.content-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 90px;
}

.table-of-contents {
  background: #f6f1e4;
  border: 1px solid #eadfc6;
  border-radius: 18px;
  margin-bottom: 32px;
  padding: 24px;
}

.table-of-contents h2,
.quick-facts-box h2,
.content-cta h2,
.related-articles h2 {
  color: var(--nps-brown);
  font-size: 1rem;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.table-of-contents ol {
  columns: 2;
  list-style-position: inside;
}

.table-of-contents li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.table-of-contents a,
.content-section a {
  color: var(--nps-green);
  font-weight: 800;
  text-decoration-color: rgba(26,60,26,0.25);
  text-underline-offset: 3px;
}

.content-section {
  border-top: 1px solid #eadfc6;
  padding: 34px 0 0;
}

.content-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.content-section h2 {
  color: var(--nps-green);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.5px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.content-section p {
  color: #514940;
  font-size: 1.03rem;
  line-height: 1.82;
  margin-bottom: 18px;
}

.content-checklist {
  background: #f9f5eb;
  border-left: 4px solid var(--nps-gold);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0;
  padding: 20px 22px;
}

.content-checklist li::before {
  color: var(--nps-gold);
  content: '•';
  font-weight: 900;
  margin-right: 10px;
}

.comparison-table-wrap {
  margin: 24px 0;
  overflow-x: auto;
}

.comparison-table {
  border-collapse: collapse;
  min-width: 640px;
  width: 100%;
}

.comparison-table caption {
  color: var(--nps-brown);
  font-weight: 800;
  margin-bottom: 10px;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #e4d8bf;
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: var(--nps-green);
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.comparison-table tr:nth-child(even) td {
  background: #fbf8ef;
}

.quick-facts-box,
.content-cta {
  padding: 24px;
}

.quick-facts-box dl {
  display: grid;
  gap: 14px;
}

.quick-facts-box div {
  border-bottom: 1px solid #eadfc6;
  padding-bottom: 14px;
}

.quick-facts-box div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.quick-facts-box dt {
  color: #786b5c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quick-facts-box dd {
  color: var(--nps-brown);
  font-weight: 800;
  margin-top: 3px;
}

.content-cta {
  background: var(--nps-green);
  color: white;
}

.content-cta h2 {
  color: white;
}

.content-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}

.content-cta a {
  background: var(--nps-gold);
  border-radius: 999px;
  color: var(--nps-brown);
  display: inline-block;
  font-weight: 900;
  padding: 10px 16px;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #f9f5eb;
  border: 1px solid #eadfc6;
  border-radius: 14px;
  padding: 16px 18px;
}

.faq-list summary {
  color: var(--nps-brown);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.sources-section ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.sources-section li {
  border-left: 4px solid #eadfc6;
  padding-left: 14px;
}

.sources-section span {
  color: #786b5c;
  display: block;
  font-size: 0.86rem;
}

.related-articles {
  margin: 0 auto 64px;
  max-width: 1160px;
  padding: 30px;
}

.related-article-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.related-article-card {
  background: #f9f5eb;
  border: 1px solid #eadfc6;
  border-radius: 16px;
  color: var(--nps-gray);
  display: grid;
  gap: 8px;
  padding: 18px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.related-article-card:hover {
  box-shadow: var(--nps-shadow);
  transform: translateY(-2px);
}

.related-article-card span {
  color: var(--nps-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.related-article-card strong {
  color: var(--nps-green);
  line-height: 1.25;
}

.related-article-card small {
  color: #74695d;
  line-height: 1.45;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 24px;
    min-height: auto;
    padding: 36px 20px;
  }
  .hero-content {
    max-width: 560px;
    text-align: center;
  }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-media {
    width: min(100%, 440px);
  }
  .parks-grid { grid-template-columns: 1fr; }
  .header-inner {
    height: auto; padding: 12px 16px;
    flex-direction: column; gap: 8px;
  }
  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  .park-hero { min-height: 280px; }
  .park-hero-content h1 { font-size: 1.8rem; }
  .park-hero-tagline { font-size: 1rem; }
  .park-nav-link { padding: 12px 14px; font-size: 0.82rem; }
  .section-title { font-size: 1.4rem; }
  .plan-cards { grid-template-columns: 1fr 1fr; }
  .info-two-col { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .regulations-list { grid-template-columns: 1fr; }
  .section-inner { padding: 0 16px 36px; }
  .filter-bar { position: relative; top: 0; }
  .content-shell {
    grid-template-columns: 1fr;
    margin-top: -24px;
    padding: 0 16px 36px;
  }
  .content-main {
    padding: 26px 20px;
  }
  .content-sidebar {
    position: static;
  }
  .table-of-contents ol {
    columns: 1;
  }
  .content-hero-inner {
    padding: 54px 20px 62px;
  }
  .related-articles {
    margin: 0 16px 44px;
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .header-actions,
  .language-switcher,
  nav {
    width: 100%;
  }
  .language-switcher {
    justify-content: center;
  }
  nav {
    justify-content: center;
  }
  .plan-cards { grid-template-columns: 1fr; }
  .weather-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
}
