/* Breakpoints and reduced-motion overrides */
@media (prefers-reduced-motion: no-preference) {
  /* transform-only hidden state: content stays opaque (visible) even if the
     frame loop / observer is frozen by capture, print or a background tab */
  .reveal {
    transform: translateY(26px);
    transition:
      opacity 0.7s var(--ease),
      transform 0.7s var(--ease);
  }
  .reveal.in {
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-media {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-media .ring {
    display: none;
  }
  .club-grid {
    grid-template-columns: 1fr;
  }
  .sched-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .venue {
    grid-template-columns: 1fr;
  }
  .venue .map {
    min-height: 240px;
    order: -1;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  .cta-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .stats {
    flex-direction: column;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stat:last-child {
    border-bottom: 0;
  }
  section.block {
    padding: 72px 0;
  }
  .club-card {
    padding: 28px;
  }
  .sec-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .res-date {
    width: auto;
  }
  .res-loc {
    display: none;
  }
  .res-row {
    gap: 10px;
  }
  .res-stats {
    flex-direction: column;
  }
  .res-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .res-stat:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
