/* ============================================================
   Grumpmeister.com — Main Stylesheet
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  --sky-light:   #CCE9FF;
  --sky-mid:     #60C4EE;
  --sky-deep:    #0AABDE;
  --grass-light: #CBEDB0;
  --grass-mid:   #76D645;
  --grass-deep:  #4A8C2A;
  --cloud-white: #F8FBFF;
  --track-dark:  #2C2C3A;
  --track-mid:   #555566;
  --gold-thrill: #FFD234;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', 'Segoe UI', sans-serif;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-card: 0 4px 20px rgba(10, 171, 222, 0.12);
  --shadow-hover: 0 8px 32px rgba(10, 171, 222, 0.22);

  --max-width: 1100px;
  --section-pad-v: 80px;
  --section-pad-h: 24px;

  --sky-link:     #1a5c8e;
  --sky-dark:     #2471b0;
  --sky-btn-hover: #1d5e97;
  --gold-dark:    #E8C000;
}

/* --- Skip Link -------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  z-index: 200;
  background: var(--gold-thrill);
  color: var(--track-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.1s ease;
}

.skip-link:focus {
  top: 12px;
}

/* --- Focus Visible ---------------------------------------- */
*:focus-visible {
  outline: 3px solid var(--sky-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--track-dark);
  background: var(--cloud-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sky-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--grass-deep);
}

ul {
  list-style: none;
}

/* --- Layout Utilities ------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--section-pad-h);
  padding-right: var(--section-pad-h);
}

.section-pad {
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
}

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--track-dark);
}

h1 { font-size: clamp(3.5rem, 8vw, 6.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 700; }

p {
  color: var(--track-mid);
  max-width: 65ch;
}

.section-heading {
  text-align: center;
  margin-bottom: 12px;
}

.section-subheading {
  text-align: center;
  font-size: 1.1rem;
  color: var(--track-mid);
  margin-bottom: 48px;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.15s cubic-bezier(0.25, 1, 0.5, 1), background 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary {
  background: var(--gold-thrill);
  color: var(--track-dark);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--track-dark);
}

.btn-secondary {
  background: var(--sky-dark);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--sky-btn-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

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

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 251, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(96, 196, 238, 0.3);
}

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

.site-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--track-dark);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-logo:hover {
  color: var(--sky-deep);
}

.site-logo span {
  color: var(--sky-dark);
}

.footer-brand .site-logo span {
  color: var(--sky-mid);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--track-dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--sky-link);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--sky-link);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--track-mid);
  transition: color 0.2s cubic-bezier(0.25, 1, 0.5, 1), transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-social a:hover {
  transform: translateY(-2px);
}

.nav-social a.yt-icon:hover { color: #FF0000; }
.nav-social a.ig-icon:hover { color: #C13584; }
.nav-social a.tt-icon:hover { color: #010101; }
.nav-social a.x-icon:hover  { color: #000; }

/* Hamburger */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--track-dark);
  line-height: 1;
  font-size: 1.6rem;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cloud-white);
    border-bottom: 1px solid rgba(96, 196, 238, 0.3);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(44, 44, 58, 0.08);
  }

  .nav-links a {
    display: block;
    padding: 12px 24px;
    width: 100%;
  }

  .nav-links a::after {
    display: none;
  }

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

  .site-header {
    position: relative;
  }

  .site-header .container {
    position: relative;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: sticky;
  top: 68px; /* sit flush below the sticky header */
  z-index: 0;
  height: calc(85vh - 68px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Photo layer — oversized vertically so the parallax pan has room */
.hero-image {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  height: 130%;
  background-color: var(--track-dark);
  background-image: url('../assets/images/header_home.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 45, 0.60) 0%,
    rgba(30, 30, 45, 0.50) 45%,
    rgba(30, 30, 45, 0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--section-pad-h);
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-thrill);
}

.hero-subline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Sections that slide over the sticky home hero */
.latest-video,
.about-snapshot,
.social-links,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ============================================================
   LATEST VIDEO SECTION
   ============================================================ */
.latest-video {
  background: var(--cloud-white);
}

.latest-video .section-heading {
  margin-bottom: 40px;
  color: var(--sky-dark);
}

.social-links .section-heading {
  margin-bottom: 16px;
}

.about-snapshot {
  padding-top: 96px;
  padding-bottom: 96px;
}

.video-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-cta {
  text-align: center;
  margin-top: 28px;
}

.video-cta a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--sky-link);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
}

.video-cta a::after {
  content: '→';
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-cta a:hover {
  color: var(--grass-deep);
}

.video-cta a:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   ABOUT SNAPSHOT SECTION
   ============================================================ */
.about-snapshot {
  background: var(--grass-light);
}

.about-snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-snapshot-text h2 {
  margin-bottom: 16px;
}

.about-snapshot-text p {
  margin-bottom: 20px;
}

.about-snapshot-text p:last-of-type {
  margin-bottom: 28px;
}

.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* ============================================================
   SOCIAL LINKS SECTION
   ============================================================ */
.social-links {
  background: var(--cloud-white);
}

/* YouTube featured block */
.yt-featured {
  display: block;
  background: var(--track-dark);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  margin-bottom: 12px;
}

.yt-featured:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: inherit;
}

.yt-featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}

.yt-featured-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yt-featured-brand svg {
  color: #FF0000;
  flex-shrink: 0;
}

.yt-featured-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.yt-featured-cta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.yt-featured-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 65ch;
  margin: 0 0 20px;
  line-height: 1.65;
}

.yt-featured-handle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sky-mid);
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Secondary platform rows */
.social-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.platform-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cloud-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(96, 196, 238, 0.15);
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.platform-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: inherit;
}

.platform-row-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-row-icon svg {
  width: 22px;
  height: 22px;
}

.platform-row.ig .platform-row-icon { background: rgba(193, 53, 132, 0.08); color: #C13584; }
.platform-row.tt .platform-row-icon { background: rgba(1, 1, 1, 0.06);       color: #2C2C3A; }

.platform-row-content {
  flex: 1;
  min-width: 0;
}

.platform-row-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--track-dark);
  margin-bottom: 3px;
}

.platform-row-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--track-mid);
  line-height: 1.45;
}

.platform-row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.platform-row-handle {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sky-link);
  white-space: nowrap;
}

.platform-row-arrow {
  color: var(--track-mid);
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), color 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.platform-row:hover .platform-row-arrow {
  transform: translateX(3px);
  color: var(--sky-link);
}

/* ============================================================
   PAGE HERO — BASE + PHOTO VARIANT
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--sky-light) 0%, var(--cloud-white) 70%);
  padding: 80px var(--section-pad-h) 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-hero .hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--track-mid);
  max-width: 55ch;
  margin: 0 auto;
}

/* Photo-backed variant */
.page-hero--photo {
  background-color: var(--track-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 38vh;
  display: flex;
  align-items: center;
  padding: 72px var(--section-pad-h) 60px;
}

.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 45, 0.55) 0%,
    rgba(30, 30, 45, 0.45) 50%,
    rgba(30, 30, 45, 0.65) 100%
  );
  z-index: 0;
}

.page-hero--photo .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero--photo h1 {
  color: #fff;
}

.page-hero--photo .hero-tagline {
  color: rgba(255, 255, 255, 0.82);
}

/* Page-specific background images — swap src when real photos are ready */
.page-hero--about {
  background-image: url('../assets/images/header_about.webp');
}

.page-hero--parks {
  background-image: url('../assets/images/header_parks.webp');
}

/* ============================================================
   ABOUT PAGE — BIO SECTION
   ============================================================ */
.about-bio {
  background: var(--cloud-white);
  padding-top: 96px;
  padding-bottom: 96px;
}

.about-bio-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

.about-bio-photo .about-photo-placeholder,
.about-bio-photo .about-photo {
  max-width: 300px;
  width: 100%;
}

.about-bio-text h2 {
  margin-bottom: 24px;
}

.about-bio-text p {
  margin-bottom: 20px;
  max-width: 60ch;
}

/* ============================================================
   FLAT RIDE CALLOUT BOX
   ============================================================ */
.flat-ride-callout {
  background: var(--grass-light);
  border: 1px solid var(--grass-mid);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 48px;
}

.flat-ride-callout h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.flat-ride-callout p {
  margin-bottom: 16px;
  max-width: 60ch;
}

.flat-ride-callout a {
  font-weight: 700;
  color: var(--sky-link);
  display: inline-block;
  padding: 8px 0;
}

.flat-ride-callout a:hover {
  color: var(--grass-deep);
}

/* ============================================================
   PARKS INDEX PAGE
   ============================================================ */
.parks-index {
  background: var(--grass-light);
}

.parks-index-intro {
  max-width: 60ch;
  margin-bottom: 48px;
}

.parks-index-intro p {
  margin-bottom: 28px;
}

/* ============================================================
   WHERE I'VE BEEN SECTION
   ============================================================ */
.parks-visited {
  background: var(--grass-light);
  padding-top: 64px;
  padding-bottom: 64px;
}

.parks-intro {
  display: flex;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 48px;
}

.parks-count {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--sky-deep);
  flex-shrink: 0;
}

.parks-intro-label h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.parks-intro-label p {
  font-size: 1rem;
  color: var(--track-mid);
  max-width: none;
}

.parks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

/* Default: minimal chip (used on about.html) */
.park-item {
  background: var(--cloud-white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--track-dark);
}

.park-item .flag {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Image card variant (used on parks.html) */
.parks-index .parks-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.parks-index .park-item {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.park-item-image {
  aspect-ratio: 16 / 9;
  background: var(--sky-light);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  flex-shrink: 0;
}

.park-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.parks-index .park-item:hover .park-item-image img {
  transform: scale(1.04);
}

.park-item-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--track-dark);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--sky-dark);
  text-align: center;
  padding: var(--section-pad-v) var(--section-pad-h);
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.95);
  max-width: 48ch;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--track-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px var(--section-pad-h) 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
}

.footer-brand .site-logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-brand .site-logo:hover {
  color: var(--sky-mid);
}

.footer-tagline {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: none;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.5, 1), transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-social a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-snapshot-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-snapshot-grid .about-photo-placeholder,
  .about-snapshot-grid .about-photo {
    max-width: 380px;
    margin: 0 auto;
    order: -1;
  }

  .about-bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-bio-photo .about-photo-placeholder,
  .about-bio-photo .about-photo {
    max-width: 260px;
  }

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

  .footer-social {
    justify-content: center;
  }
}

/* On mobile: drop the sticky hero, let it flow normally */
@media (max-width: 768px) {
  .hero {
    position: relative;
    top: auto;
    height: auto;
    min-height: 85vh;
    padding: 80px var(--section-pad-h) 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad-v: 48px;
    --section-pad-h: 20px;
  }

  .hero {
    min-height: 75vh;
    padding: 64px var(--section-pad-h) 88px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .parks-visited .parks-grid {
    grid-template-columns: 1fr 1fr;
  }

  .parks-index .parks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .social-secondary {
    grid-template-columns: 1fr;
  }

  .yt-featured {
    padding: 28px 24px;
  }

  .yt-featured-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
