:root {
  --blue: #0877f2;
  --blue-hover: #005ce6;
  --blue-dark: #0047ab;
  --blue-soft: #ecf5ff;
  --navy: #071638;
  --navy-light: #162447;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --mist: #f8fafc;
  --green: #10b981;
  --yellow: #f59e0b;
  --coral: #f43f5e;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --font-heading: 'Fredoka', 'Arial Rounded MT Bold', sans-serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: #fbfdff;
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button,
input {
  font: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: relative;
  z-index: 10;
  height: 90px;
  background: var(--paper);
  box-shadow: 0 4px 20px rgba(7, 22, 56, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.brand {
  position: absolute;
  top: 10px;
  left: 0;
  width: 114px;
  height: 114px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(7, 22, 56, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover {
  transform: scale(1.05) translateY(2px);
}

.brand img {
  width: 102px;
  height: 102px;
  object-fit: contain;
}

.site-nav {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  padding: 10px 4px;
  position: relative;
}

.nav-link .icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--blue);
  transition: transform 0.2s ease;
}

.nav-chevron {
  width: 0.8rem;
  height: 0.8rem;
  opacity: 0.6;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link:hover .icon {
  transform: translateY(-2px);
}

.nav-link.is-active {
  color: var(--blue);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  border-radius: 99px;
}

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

.search-toggle-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 4px 12px rgba(8, 119, 242, 0.3);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
}

.search-toggle-btn:hover {
  transform: scale(1.08);
  background-color: var(--blue-hover);
  box-shadow: 0 6px 16px rgba(8, 119, 242, 0.4);
}

.search-toggle-btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.menu-toggle {
  display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, #0977f2 0%, #0052cc 60%, #003fa3 100%);
  color: var(--paper);
  padding: 60px 0 70px;
}

/* Custom Rollercoaster line art style in hero background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 80%, transparent 120px, rgba(255, 255, 255, 0.08) 122px, rgba(255, 255, 255, 0.08) 124px, transparent 126px),
    radial-gradient(circle at 20% 90%, transparent 220px, rgba(255, 255, 255, 0.06) 222px, rgba(255, 255, 255, 0.06) 225px, transparent 227px),
    linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.05) 41%, rgba(255, 255, 255, 0.05) 43%, transparent 44%);
  opacity: 0.85;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.4rem, 4.4rem);
  line-height: 0.98;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 10px rgba(0, 48, 120, 0.2), 0 10px 24px rgba(0, 24, 70, 0.3);
}

.hero-copy p {
  font-size: 1.28rem;
  font-weight: 400;
  opacity: 0.92;
  max-width: 500px;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* Rounded Search Pill in Hero */
.hero-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--paper);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 12px 32px rgba(0, 32, 90, 0.18);
  max-width: 480px;
  width: 100%;
}

.hero-search-wrapper .search-icon {
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.hero-search-input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  width: 100%;
}

.hero-search-input::placeholder {
  color: #94a3b8;
}

.hero-search-input:focus {
  outline: none;
}

.hero-search-btn {
  background: var(--blue);
  color: var(--paper);
  padding: 12px 24px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(8, 119, 242, 0.2);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
}

.hero-search-btn:hover {
  background-color: var(--blue-hover);
  transform: scale(1.03);
}

/* Showcase Map Premium Card */
.hero-showcase {
  justify-self: end;
  width: 100%;
  max-width: 530px;
}

.hero-card {
  background: var(--paper);
  border-radius: 28px;
  padding: 16px 16px 20px;
  box-shadow: 0 20px 48px rgba(0, 24, 70, 0.28);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.year-switcher {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mist);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(8, 119, 242, 0.06);
}

.year-switcher a {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy-light);
  border-radius: 999px;
}

.year-switcher a:hover:not(.is-selected) {
  color: var(--blue);
  background: rgba(8, 119, 242, 0.05);
}

.year-switcher .is-selected {
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 6px 16px rgba(8, 119, 242, 0.35);
}

/* ==========================================================================
   Content Bands & Typography
   ========================================================================== */

.content-band {
  padding: 48px 0;
}

.content-band.tight {
  padding: 24px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(8, 119, 242, 0.08);
  padding-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text-link:hover {
  color: var(--blue-hover);
}

.text-link .icon {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.25s ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

/* ==========================================================================
   Popular Parks Section (5 Columns)
   ========================================================================== */

.park-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.park-card {
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid rgba(8, 119, 242, 0.06);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.park-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(8, 119, 242, 0.15);
}

.park-card a {
  display: block;
  height: 100%;
}

.park-card img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Floating White Circle Badge for Icons */
.card-icon {
  position: absolute;
  top: calc(100% - 126px);
  left: 18px;
  width: 50px;
  height: 50px;
  background: var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  box-shadow: 0 6px 16px rgba(8, 119, 242, 0.18);
  border: 1.5px solid var(--mist);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.park-card:hover .card-icon {
  transform: scale(1.08) rotate(3deg);
  color: var(--blue-dark);
}

.card-icon .icon {
  width: 1.45rem;
  height: 1.45rem;
  stroke-width: 2.2;
}

.park-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 16px 18px 6px;
  min-height: 52px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.park-card p {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 18px 20px;
}

/* ==========================================================================
   Browse By Year Section (5 Columns)
   ========================================================================== */

.year-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.year-card {
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid rgba(8, 119, 242, 0.05);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.year-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(8, 119, 242, 0.12);
}

.year-card .icon {
  width: 2rem;
  height: 2rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.year-card:hover .icon {
  transform: scale(1.1);
}

.year-card div {
  display: flex;
  flex-direction: column;
}

.year-card span {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 2px;
}

.year-card small {
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Double-Column Split Layout
   ========================================================================== */

.split-band {
  padding-top: 16px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
  align-items: start;
}

.list-panel {
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid rgba(8, 119, 242, 0.05);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.map-row,
.post-row {
  display: grid;
  align-items: center;
  padding: 16px 20px;
  gap: 18px;
  border-bottom: 1px solid rgba(8, 119, 242, 0.06);
  transition: background-color 0.2s ease;
}

.map-row:last-child,
.post-row:last-child {
  border-bottom: 0;
}

.map-row:hover,
.post-row:hover {
  background-color: var(--mist);
}

.map-row {
  grid-template-columns: 104px 1fr auto;
}

.map-row img,
.post-row img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.map-row h3,
.post-row h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
}

.map-row p,
.post-row p {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.map-row p .icon,
.post-row p .icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--muted);
}

.map-row span {
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(8, 119, 242, 0.12);
}

.post-row {
  grid-template-columns: 104px 1fr;
}

.post-row h3 a:hover {
  color: var(--blue);
}

.post-row p a {
  color: var(--blue);
  font-weight: 800;
}

.post-row p a:hover {
  color: var(--blue-hover);
}

/* Centered CTA under maps list */
.wide-button {
  display: inline-grid;
  place-items: center;
  width: 100%;
  max-width: 320px;
  height: 48px;
  background: var(--blue);
  color: var(--paper);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  border-radius: 999px;
  margin: 20px auto 0;
  box-shadow: 0 4px 12px rgba(8, 119, 242, 0.2);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
}

.wide-button:hover {
  background-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 119, 242, 0.3);
}

.split-layout > div:first-child {
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Stay Up To Date! Newsletter Bar
   ========================================================================== */

.newsletter-bar {
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    linear-gradient(90deg, #0977f2 0%, #0050cc 100%);
  padding: 38px 0;
  color: var(--paper);
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

.newsletter-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.newsletter-intro {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-icon {
  width: 54px;
  height: 54px;
  background: var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.newsletter-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.newsletter-text h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.newsletter-text p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Rounded Form Input Bar */
.newsletter-form {
  display: flex;
  align-items: center;
  background: var(--paper);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  box-shadow: 0 8px 24px rgba(0, 24, 70, 0.12);
  width: 100%;
  max-width: 440px;
  flex-shrink: 0;
}

.newsletter-input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  width: 100%;
}

.newsletter-input::placeholder {
  color: #94a3b8;
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-btn {
  background: var(--blue);
  color: var(--paper);
  padding: 10px 22px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
}

.newsletter-btn:hover {
  background-color: var(--blue-hover);
  transform: scale(1.02);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.site-footer {
  background: var(--navy);
  color: var(--paper);
  padding: 60px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.footer-brand img {
  width: 110px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.45;
  opacity: 0.75;
}

.site-footer h2 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
  opacity: 0.95;
}

.site-footer a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--blue);
  transform: translateX(2px);
}

/* Premium Social Buttons */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link-item {
  width: 38px;
  height: 38px;
  background: var(--paper);
  color: var(--blue-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, color 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-link-item:hover {
  transform: scale(1.12) translateY(-2px);
  background-color: var(--blue);
  color: var(--paper);
}

.social-link-item .icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  stroke: none;
}

.copyright {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 24px;
}

/* ==========================================================================
   Page Hero Style
   ========================================================================== */

.page-hero {
  background: linear-gradient(135deg, #0977f2 0%, #0047ab 100%);
  color: var(--paper);
  padding: 48px 0;
  text-align: center;
}

.compact-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.compact-hero p {
  margin-top: 10px;
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Responsiveness
   ========================================================================== */

@media (max-width: 1024px) {
  .site-header {
    padding: 0 24px;
  }
  .brand {
    left: 24px;
    width: 135px;
  }
  .site-nav {
    gap: 20px;
    font-size: 0.88rem;
  }
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
  }
  .park-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .year-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 30;
    color: var(--blue);
    position: absolute;
    right: 0;
    top: 34px;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: currentColor;
    border-radius: 9px;
    transition: all 0.3s ease;
  }

  .site-nav {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 24px rgba(7, 22, 56, 0.12);
    border-top: 1px solid var(--line);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link.is-active::after {
    display: none;
  }

  .brand {
    left: 0;
    width: 88px;
    height: 88px;
    top: 7px;
  }

  .brand img {
    width: 78px;
    height: 78px;
  }

  .site-header {
    padding: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-copy {
    align-items: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-search-wrapper {
    max-width: 100%;
  }

  .hero-showcase {
    margin-left: auto;
    margin-right: auto;
  }

  .park-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .year-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .site-header {
    height: 80px;
  }
  .brand {
    width: 110px;
    top: 8px;
  }
  .site-nav {
    top: 80px;
  }
  .park-grid,
  .year-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: 2.4rem;
  }
  .hero-card {
    padding: 10px;
  }
  .year-switcher {
    flex-wrap: wrap;
    border-radius: 12px;
  }
  .year-switcher a {
    flex-basis: 33.3%;
    font-size: 0.85rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .map-row {
    grid-template-columns: 80px 1fr;
  }
  .map-row span {
    grid-column: span 2;
    justify-self: start;
    margin-top: 4px;
  }
  .newsletter-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
