/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:         #1E1E1E;
  --bg-2:       #161615;
  --bg-3:       #262624;
  --bg-light:   #F7F7F7;
  --paper:      #FFFFFF;

  --ink:        #1E1E1E;
  --ink-soft:   #3A3A38;
  --ink-mute:   #6B6B68;

  --cream:      #F3EFE8;
  --cream-mute: rgba(243, 239, 232, 0.68);
  --cream-dim:  rgba(243, 239, 232, 0.42);

  --coral:      #FB5849;
  --coral-deep: #DD4433;
  --coral-soft: rgba(251, 88, 73, 0.16);

  --green:      #75FD9E;
  --green-deep: #35C46C;
  --green-soft: rgba(117, 253, 158, 0.14);

  --line:       rgba(30, 30, 30, 0.12);
  --line-dark:  rgba(243, 239, 232, 0.14);

  --display: "Anton", "Arial Narrow", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1220px;
  --radius: 18px;
  --radius-sm: 10px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.02; }
ul { list-style: none; padding: 0; }
::selection { background: var(--coral); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--coral); color: var(--cream);
  border-radius: 8px; font-weight: 700;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.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;
}
.section { padding-block: 5rem; }
.section-light { background: var(--bg-light); color: var(--ink); }
.section-dark { background: var(--bg); color: var(--cream); }
.section-paper { background: var(--paper); color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-soft);
}

.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  margin-top: .5rem;
}
.section-head p {
  margin-top: .9rem;
  font-size: 1.05rem;
  color: var(--ink-mute);
  max-width: 52ch;
}
.section-dark .section-head p { color: var(--cream-mute); }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s, color .3s;
}
.btn-primary {
  background: var(--coral);
  color: #1a0f0c;
  box-shadow: 0 10px 26px -8px rgba(251, 88, 73, 0.55);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -10px rgba(251, 88, 73, 0.65);
  background: #ff6a5a;
}
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-ghost {
  border: 1.5px solid var(--line-dark);
  color: var(--cream);
  background: rgba(243, 239, 232, 0.04);
}
.section-light .btn-ghost, .section-paper .btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(30, 30, 30, 0.03);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(243, 239, 232, 0.1); }
.section-light .btn-ghost:hover, .section-paper .btn-ghost:hover { background: rgba(30,30,30,0.06); }

.btn-block { width: 100%; }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  padding-block: 1.15rem;
  transition: background-color .4s var(--ease-out), padding .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav.is-scrolled {
  background: rgba(22, 22, 21, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 rgba(243,239,232,0.08);
  padding-block: .75rem;
}
.brand {
  display: flex; flex-direction: column; line-height: 1;
  color: var(--cream);
  font-family: var(--display);
  text-transform: uppercase;
}
.brand-top { font-size: 1.28rem; letter-spacing: .01em; }
.brand-bottom {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .2em;
  color: var(--coral); margin-top: .25rem; text-transform: uppercase;
}
.nav-links { display: none; align-items: center; gap: 2.1rem; }
.nav-link {
  position: relative; padding-block: .3rem;
  font-size: .92rem; font-weight: 600; color: var(--cream-mute);
  transition: color .3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px; background: var(--coral);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-actions .btn-primary { padding: .75rem 1.35rem; font-size: .88rem; }
.nav-cta-hide-mobile { display: none; }

.menu-toggle {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(243,239,232,.08);
  color: var(--cream);
}
.menu-toggle svg { width: 20px; height: 20px; }
.menu-toggle .icon-close { display: none; }
[aria-expanded="true"] .icon-open { display: none; }
[aria-expanded="true"] .icon-close { display: block; }

.nav-mobile {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile-list { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.nav-mobile-list a {
  font-family: var(--display); text-transform: uppercase;
  font-size: 2.1rem; color: var(--cream); letter-spacing: .01em;
}
.nav-mobile-list a:hover { color: var(--coral); }
.nav-mobile .btn-primary { margin-top: 1rem; }
html.menu-open { overflow: hidden; }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 6.5rem; padding-bottom: 3rem;
  background: var(--bg);
  color: var(--cream);
  overflow: clip;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.55) contrast(1.15) brightness(.62) saturate(1.3);
}
.hero-bg-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30,20,17,.55) 0%, rgba(20,15,13,.86) 62%, var(--bg) 100%),
    linear-gradient(100deg, rgba(251,88,73,.30), transparent 55%);
  mix-blend-mode: multiply;
}
.hero-bg-tint::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,20,17,.35) 0%, rgba(20,15,13,.82) 62%, var(--bg) 100%);
}

.hero-court {
  position: absolute; inset: 6% 4%; z-index: -1;
  width: auto; height: auto;
  opacity: .55;
  pointer-events: none;
}
.court-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: drawCourt 2.6s var(--ease-out) .3s forwards;
}
@keyframes drawCourt { to { stroke-dashoffset: 0; } }

.hero-ball {
  position: absolute; inset: 6% 4%;
  pointer-events: none; z-index: -1;
}
.hero-ball span {
  position: absolute; top: 0; left: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 18px 4px rgba(251,88,73,.65);
  offset-path: path("M20,340 C160,60 320,420 480,180 S 760,40 900,300 S 1120,120 1240,260");
  offset-rotate: 0deg;
  animation: ballTravel 7s ease-in-out .6s infinite alternate;
  opacity: 0;
  animation-fill-mode: forwards;
}
@keyframes ballTravel {
  0%   { offset-distance: 0%; opacity: .95; }
  4%   { opacity: .95; }
  96%  { opacity: .95; }
  100% { offset-distance: 100%; opacity: .95; }
}

.hero-inner { position: relative; z-index: 1; }
.kicker {
  font-family: var(--mono); font-size: .82rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green);
  display: inline-flex; align-items: center; gap: .6em;
}
.kicker::before { content: "📍"; font-size: .95em; }

.hero-title {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.7rem, 9vw, 6.2rem);
  line-height: .96;
  margin-top: 1rem;
  max-width: 16ch;
}
.hero-title .accent { color: var(--coral); }

.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--cream-mute);
  max-width: 46ch;
}
.hero-sub strong { color: var(--cream); font-weight: 700; }

.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--cream-dim); font-family: var(--mono); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-scroll span {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--coral), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(1); opacity: .5; } 50% { transform: scaleY(.55); opacity: 1; } }

/* =============================================================
   7. Ticker
   ============================================================= */
.ticker {
  position: relative; overflow: hidden;
  background: var(--bg-2);
  border-block: 1px solid var(--line-dark);
  padding-block: .85rem;
}
.ticker-viewport {
  display: inline-flex; width: max-content;
  animation: tickerScroll 32s linear infinite;
}
.ticker-track {
  display: inline-flex; gap: 1.4rem; white-space: nowrap;
  padding-inline-end: 1.4rem;
}
.ticker-item {
  font-family: var(--mono); font-size: .82rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cream-mute);
}
.ticker-dot { color: var(--coral); }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* =============================================================
   8. Pistas (courts)
   ============================================================= */
.courts-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
.court-card {
  --rx: 0deg; --ry: 0deg;
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.court-card:hover {
  transition-duration: .18s;
  box-shadow: 0 40px 70px -30px rgba(30,30,30,.35);
}
.court-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.court-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-soft), filter .5s;
}
.court-card:hover .court-media img { transform: scale(1.08); }
.court-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(30,20,17,.75) 0%, transparent 46%),
              linear-gradient(100deg, rgba(251,88,73,.22), transparent 60%);
  mix-blend-mode: multiply;
}
.court-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .4em;
  padding: .4rem .85rem; border-radius: 999px;
  background: rgba(20,15,13,.55);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}
.court-tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--swatch, var(--green)); }
.court-body { padding: 1.5rem 1.6rem 1.7rem; }
.court-body h3 {
  font-family: var(--display); text-transform: uppercase; font-weight: 400;
  font-size: 1.5rem; letter-spacing: .01em;
}
.court-body p { margin-top: .5rem; color: var(--ink-mute); font-size: .96rem; }

.courts-cta { margin-top: 2.5rem; display: flex; justify-content: center; }

/* =============================================================
   8b. Horario y precios
   ============================================================= */
.schedule-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
.schedule-card {
  --rx: 0deg; --ry: 0deg;
  position: relative;
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: 0 1px 0 var(--line);
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.schedule-card:hover { transition-duration: .18s; box-shadow: 0 40px 70px -30px rgba(30,30,30,.3); }
.schedule-tag {
  display: inline-flex; align-items: center; gap: .45em;
  padding: .4rem .85rem; border-radius: 999px;
  background: var(--bg); color: var(--cream);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}
.schedule-tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--swatch, var(--coral)); }
.schedule-list { margin-top: 1.3rem; display: flex; flex-direction: column; gap: .9rem; }
.schedule-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--line);
}
.schedule-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.schedule-time { font-size: .95rem; color: var(--ink-mute); }
.schedule-price { font-weight: 700; font-size: 1.05rem; white-space: nowrap; }
.schedule-price-peak { color: var(--coral-deep); }

/* =============================================================
   9. Ubicación (map)
   ============================================================= */
.location-grid {
  display: grid; gap: 2.5rem;
}
.location-info {
  display: flex; flex-direction: column; gap: 1.6rem;
}
.location-address {
  font-family: var(--display); text-transform: uppercase; font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  line-height: 1.15;
}
.location-address span { display: block; color: var(--coral); }
.location-ref {
  font-size: 1rem; color: var(--cream-mute);
  max-width: 44ch;
}
.location-access {
  display: flex; gap: .9rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-sm);
  background: rgba(243, 239, 232, 0.05);
  border: 1px solid var(--line-dark);
  font-size: .95rem; color: var(--cream-mute);
}
.location-access svg { flex: none; width: 22px; height: 22px; color: var(--green); margin-top: .1rem; }
.location-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.map-frame {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  border: 1px solid var(--line-dark);
  filter: grayscale(.15) contrast(1.03);
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* =============================================================
   11. Contacto (mesh gradient section)
   ============================================================= */
.mesh-section {
  position: relative; overflow: hidden; isolation: isolate;
}
.mesh-section::before {
  content: ""; position: absolute; inset: -15%; z-index: -1;
  background:
    radial-gradient(45% 40% at var(--mesh-x, 25%) var(--mesh-y, 30%), rgba(251,88,73,.35), transparent 65%),
    radial-gradient(50% 45% at calc(100% - var(--mesh-x, 25%)) calc(100% - var(--mesh-y, 30%)), rgba(117,253,158,.22), transparent 65%);
  filter: blur(90px) saturate(130%);
  animation: meshDrift 24s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { --mesh-x: 22%; --mesh-y: 28%; }
  50%      { --mesh-x: 68%; --mesh-y: 62%; }
}

.contact-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: 1fr;
}
.contact-card {
  padding: 1.7rem 1.6rem;
  border-radius: var(--radius);
  background: rgba(243, 239, 232, 0.05);
  border: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: .9rem;
}
.contact-card .icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--coral-soft); color: var(--coral);
}
.contact-card .icon svg { width: 21px; height: 21px; }
.contact-card h3 {
  font-family: var(--display); text-transform: uppercase; font-weight: 400;
  font-size: 1.15rem; letter-spacing: .01em;
}
.contact-card .links { display: flex; flex-direction: column; gap: .35rem; }
.contact-card a.line {
  font-size: 1rem; font-weight: 600; color: var(--cream);
  transition: color .3s;
}
.contact-card a.line:hover { color: var(--coral); }
.contact-card p.muted { color: var(--cream-mute); font-size: .9rem; }

.social-row { display: flex; gap: .8rem; margin-top: .3rem; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(243,239,232,.08); color: var(--cream);
  transition: background .3s, color .3s, transform .3s var(--ease-soft);
}
.social-btn:hover { background: var(--coral); color: #1a0f0c; transform: translateY(-2px); }
.social-btn svg { width: 19px; height: 19px; }

/* =============================================================
   12. Footer
   ============================================================= */
.footer {
  background: var(--bg-2); color: var(--cream-mute);
  padding-block: 3.5rem 2rem;
  border-top: 1px solid var(--line-dark);
}
.footer-top {
  display: grid; gap: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand-top { font-size: 1.4rem; }
.footer-brand p { margin-top: .9rem; max-width: 34ch; font-size: .92rem; }
.footer-col h4 {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream); margin-bottom: .9rem;
}
.footer-col a, .footer-col p { display: block; font-size: .92rem; margin-bottom: .5rem; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 1rem;
  padding-top: 1.6rem;
  font-size: .82rem;
}
.footer-bottom .social-row { margin: 0; }
.footer-bottom a, .footer-bottom .footer-link-btn { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover, .footer-bottom .footer-link-btn:hover { color: var(--coral); }
.footer-link-btn { font: inherit; font-size: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

/* =============================================================
   12b. Cookie banner
   ============================================================= */
.cookie-banner {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 9998;
  background: var(--bg-2);
  border-top: 1px solid var(--line-dark);
  box-shadow: 0 -10px 40px -10px rgba(0,0,0,.4);
  padding-block: 1.3rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: stretch;
}
.cookie-banner-inner p {
  color: var(--cream-mute); font-size: .9rem; max-width: 68ch;
}
.cookie-banner-inner a { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-inner a:hover { color: var(--coral); }
.cookie-banner-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.cookie-banner-actions .btn { padding: .8rem 1.3rem; font-size: .88rem; }

/* =============================================================
   13. Reveal (scroll)
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal]:nth-child(2) { transition-delay: .08s; }
[data-reveal]:nth-child(3) { transition-delay: .16s; }
[data-reveal]:nth-child(4) { transition-delay: .24s; }

/* =============================================================
   14. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .courts-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .cookie-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-banner-actions { flex: none; }
}

@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .hero-scroll { display: flex; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .menu-toggle, .nav-mobile { display: none; }
  .location-grid { grid-template-columns: 1fr 1.1fr; align-items: center; }
  .schedule-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding-block: 7rem; }
}

@media (min-width: 1280px) {
  .nav-cta-hide-mobile { display: inline-flex; }
}

/* =============================================================
   15. Reduced motion — only the truly intrusive stuff
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-ball span { animation-duration: 14s; }
  .ticker-track { animation-duration: 60s; }
  .hero-scroll span { animation: none; }
  .mesh-section::before { animation-duration: 60s; }
}
