:root {
  --arena-orange: #d2500a;
  --arena-orange-2: #ff6a16;
  --field: #0f6f43;
  --max: 1180px;
  --radius: 8px;
  --header-text: #ffffff;
  color-scheme: dark;
}

body.theme-dark {
  --page: #0a0a0a;
  --band: #10100f;
  --band-2: #151514;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(10, 10, 10, 0.72);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.11);
  --accent-line: rgba(210, 80, 10, 0.42);
  --shadow: rgba(0, 0, 0, 0.48);
  --pattern: rgba(255, 255, 255, 0.035);
  color-scheme: dark;
}

body.theme-light {
  --page: #f7f8f5;
  --band: #ffffff;
  --band-2: #eef2ec;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #10100f;
  --muted: rgba(16, 16, 15, 0.68);
  --line: rgba(16, 16, 15, 0.12);
  --accent-line: rgba(210, 80, 10, 0.34);
  --shadow: rgba(24, 30, 20, 0.14);
  --pattern: rgba(15, 111, 67, 0.055);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(100% - 40px, var(--max));
  min-height: 86px;
  margin: 0 auto;
  color: var(--header-text);
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, top 220ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  min-height: 68px;
  padding: 0 14px;
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px var(--shadow);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 76px;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.38));
}

.site-header.is-scrolled .brand img {
  width: 56px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 28px);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  opacity: 0.9;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--arena-orange-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.primary-cta,
.secondary-cta,
.event-price a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.primary-cta,
.event-price a {
  gap: 10px;
  background: linear-gradient(135deg, var(--arena-orange-2), var(--arena-orange));
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(210, 80, 10, 0.28);
}

.nav-cta {
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.78rem;
}

.nav-cta svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.primary-cta {
  min-height: 58px;
  padding: 0 22px;
  font-size: 0.86rem;
}

.secondary-cta {
  min-height: 58px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: 0.84rem;
}

.nav-cta:hover,
.primary-cta:hover,
.secondary-cta:hover,
.event-price a:hover,
.nav-cta:focus-visible,
.primary-cta:focus-visible,
.secondary-cta:focus-visible,
.event-price a:focus-visible {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #070707;
  border-bottom: 1px solid rgba(210, 80, 10, 0.7);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 42%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.hero-ball {
  position: absolute;
  right: 11%;
  bottom: 15%;
  z-index: 3;
  width: clamp(76px, 8vw, 122px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 35%, #fff 0 18%, transparent 19%),
    radial-gradient(circle at 58% 60%, #fff 0 18%, transparent 19%),
    radial-gradient(circle at 28% 68%, #fff 0 15%, transparent 16%),
    radial-gradient(circle at 64% 26%, #111 0 14%, transparent 15%),
    radial-gradient(circle at 35% 48%, #111 0 16%, transparent 17%),
    radial-gradient(circle at 50% 50%, #f6f2ea 0 63%, #c7c0b6 64% 100%);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(210, 80, 10, 0.42);
  animation: ball-drift 6s ease-in-out infinite;
}

.hero-ball span {
  position: absolute;
  inset: 12%;
  border-top: 3px solid rgba(255, 106, 22, 0.85);
  border-radius: 50%;
  transform: rotate(-18deg);
  filter: drop-shadow(0 0 18px rgba(255, 106, 22, 0.72));
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(278px, 360px);
  gap: clamp(28px, 7vw, 84px);
  align-items: end;
  width: min(100% - 40px, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 0 72px;
}

.hero-copy {
  max-width: 760px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  color: var(--arena-orange-2);
  font-size: clamp(4rem, 9.4vw, 8rem);
  font-weight: 900;
  text-shadow: 0 24px 56px rgba(0, 0, 0, 0.58);
}

h1::first-line {
  color: #ffffff;
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1.16;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.hero-note {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
  line-height: 1.5;
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.rating {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.rating strong {
  color: var(--arena-orange-2);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.rating span,
.quick-info span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.quick-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.quick-info strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.5rem;
}

.hero-panel a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 80, 10, 0.2);
  border: 1px solid rgba(255, 106, 22, 0.52);
  border-radius: var(--radius);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 96px;
  background: var(--band);
  border-bottom: 1px solid var(--accent-line);
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, var(--pattern) 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(315deg, var(--pattern) 25%, transparent 25%) 0 0 / 18px 18px;
  opacity: 0.7;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 116px) 0;
}

.section-heading {
  max-width: 860px;
}

.section-heading p,
.events-copy > p:first-child,
.booking-block > p:first-child {
  margin: 0 0 14px;
  color: var(--arena-orange-2);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2 {
  max-width: 900px;
  color: var(--text);
  font-size: clamp(2rem, 4.35vw, 4rem);
  font-weight: 900;
}

.intro {
  background: linear-gradient(180deg, var(--band), var(--page));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 7vw, 80px);
  align-items: start;
}

.intro-copy p,
.support-head > p,
.events-copy p:not(:first-child),
.booking-block p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
  line-height: 1.64;
}

.intro-copy p + p {
  margin-top: 18px;
}

.structure {
  background:
    radial-gradient(circle at 100% 15%, rgba(210, 80, 10, 0.13), transparent 24rem),
    var(--band-2);
}

.court-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.court-card,
.pricing-card,
.assist-card,
.review,
.floor-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px var(--shadow);
}

.court-card {
  min-height: 180px;
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.court-card::after {
  position: absolute;
  inset: 14px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  pointer-events: none;
}

.theme-light .court-card::after {
  border-color: rgba(15, 111, 67, 0.18);
}

.court-card span,
.pricing-card span,
.hours-board span,
.floor-grid span {
  color: var(--arena-orange-2);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.court-card strong {
  display: block;
  margin-top: 16px;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.court-card p {
  max-width: 350px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 24px;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.facility {
  min-height: 246px;
  padding: 30px 18px;
  text-align: center;
  background: color-mix(in srgb, var(--surface) 56%, transparent);
}

.facility + .facility {
  border-left: 1px solid var(--accent-line);
}

.facility svg,
.assist-card svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facility svg {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  color: var(--arena-orange-2);
  stroke-width: 3;
}

.facility h3,
.assist-card h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.facility p,
.assist-card p,
.floor-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.support {
  background:
    linear-gradient(120deg, rgba(15, 111, 67, 0.18), transparent 36%),
    var(--band);
}

.support-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.44fr);
  gap: clamp(26px, 6vw, 68px);
  align-items: end;
}

.assist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.assist-card {
  min-height: 230px;
  padding: 26px;
}

.assist-card svg {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--arena-orange-2);
  stroke-width: 3;
}

.schedule {
  background:
    linear-gradient(120deg, rgba(210, 80, 10, 0.16), transparent 35%),
    var(--page);
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.schedule-layout .section-heading,
.schedule-cta {
  grid-column: 1 / -1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  min-height: 206px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 26px;
  text-align: center;
}

.pricing-card.featured {
  background:
    linear-gradient(145deg, rgba(210, 80, 10, 0.24), transparent 70%),
    var(--surface);
  border-color: var(--accent-line);
}

.pricing-card strong {
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.pricing-card small {
  max-width: 250px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.35;
}

.event-price {
  grid-column: 1 / -1;
}

.event-price strong {
  font-size: clamp(1.55rem, 3.1vw, 2.7rem);
}

.event-price a {
  min-height: 46px;
  margin-top: 8px;
  padding: 0 16px;
  font-size: 0.75rem;
}

.hours-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px var(--shadow);
}

.hours-board article {
  min-height: 172px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 22px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hours-board article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.hours-board article:nth-child(n + 3) {
  border-bottom: 0;
}

.hours-board strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.18;
  text-transform: uppercase;
}

.hours-board p {
  max-width: 250px;
  margin: 10px 0 0;
  color: var(--arena-orange-2);
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  font-weight: 800;
  line-height: 1.24;
}

.schedule-cta {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.schedule-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.5;
}

.events {
  background:
    radial-gradient(circle at 10% 0%, rgba(210, 80, 10, 0.14), transparent 24rem),
    linear-gradient(180deg, var(--band), var(--band-2));
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 0.88fr);
  gap: clamp(30px, 7vw, 84px);
  align-items: center;
}

.event-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px var(--shadow);
}

.event-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.event-image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.events-copy p:not(:first-child) {
  margin-top: 24px;
}

.floor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.floor-grid article {
  padding: 22px;
}

.floor-grid strong {
  display: block;
  margin: 10px 0 12px;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.event-tags span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: color-mix(in srgb, var(--arena-orange) 13%, var(--surface));
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 800;
}

.reviews {
  background: var(--page);
}

.review-summary {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-top: 26px;
  color: var(--muted);
}

.review-summary strong {
  color: var(--arena-orange-2);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.review {
  min-height: 190px;
  padding: 24px;
  margin: 0;
}

.review blockquote {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.2;
}

.review figcaption {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.location {
  background:
    linear-gradient(120deg, rgba(15, 111, 67, 0.17), transparent 36%),
    var(--band);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(290px, 0.78fr);
  gap: clamp(32px, 8vw, 100px);
  align-items: center;
}

.booking-block p:not(:first-child) {
  margin-top: 24px;
}

.booking-block .primary-cta {
  margin-top: 30px;
}

.map-card {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  min-height: 360px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.map-card:hover,
.map-card:focus-visible {
  border-color: var(--accent-line);
  transform: translateY(-3px);
}

.map-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.map-card div {
  display: grid;
  gap: 8px;
  padding: 0 26px 26px;
}

.map-card span {
  color: var(--muted);
  font-size: 1.02rem;
}

.map-card strong {
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1.16;
  text-transform: uppercase;
}

.site-footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  width: min(100% - 40px, var(--max));
  min-height: 190px;
  margin: 0 auto;
  padding: 34px 0;
}

.footer-inner img {
  width: 90px;
}

.footer-inner p {
  max-width: 280px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--arena-orange-2);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ball-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-18px, -20px, 0) rotate(-22deg);
  }
}

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

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    width: min(100% - 28px, var(--max));
  }

  .nav-cta {
    justify-self: end;
  }

  .hero-inner,
  .intro-grid,
  .support-head,
  .schedule-layout,
  .events-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    padding-top: 112px;
  }

  .hero-panel {
    max-width: 520px;
  }

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

  .facility:nth-child(odd) {
    border-left: 0;
  }

  .facility:nth-child(n + 3) {
    border-top: 1px solid var(--accent-line);
  }

  .assist-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .schedule-layout {
    gap: 18px;
  }

  .event-image,
  .event-image img {
    min-height: 430px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 76px;
  }

  .site-header.is-scrolled {
    top: 8px;
  }

  .brand img {
    width: 62px;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .nav-cta svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 38%, rgba(0, 0, 0, 0.96) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.28));
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero-inner {
    min-height: 100svh;
    padding: 104px 0 36px;
  }

  h1 {
    font-size: clamp(3.28rem, 15.5vw, 5.2rem);
  }

  .hero-lead {
    font-size: 1.1rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
  }

  .hero-panel {
    padding: 18px;
  }

  .rating strong {
    font-size: 2.15rem;
  }

  .hero-ball {
    right: 7%;
    bottom: 43%;
    width: 72px;
  }

  .court-grid,
  .facility-grid,
  .pricing-grid,
  .hours-board,
  .floor-grid {
    grid-template-columns: 1fr;
  }

  .court-card {
    min-height: 166px;
    padding: 24px;
  }

  .court-card strong {
    font-size: 2.65rem;
  }

  .facility + .facility,
  .facility:nth-child(n + 3) {
    border-top: 1px solid var(--accent-line);
    border-left: 0;
  }

  .facility {
    min-height: auto;
    padding: 28px 20px;
  }

  .section h2 {
    font-size: clamp(1.9rem, 10.2vw, 3rem);
  }

  .support-head {
    gap: 18px;
  }

  .assist-card {
    min-height: auto;
  }

  .event-price {
    grid-column: auto;
  }

  .pricing-card {
    min-height: 178px;
    padding: 22px;
  }

  .pricing-card strong {
    font-size: 2.45rem;
  }

  .event-price strong {
    font-size: 1.65rem;
  }

  .hours-board article,
  .hours-board article:nth-child(odd),
  .hours-board article:nth-child(n + 3) {
    min-height: 142px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hours-board article:last-child {
    border-bottom: 0;
  }

  .schedule-cta {
    display: grid;
  }

  .event-image,
  .event-image img {
    min-height: 320px;
  }

  .event-tags {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner img {
    width: 76px;
  }
}

body.theme-light .site-header {
  color: #10100f;
}

body.theme-light .hero {
  background: #f7f8f5;
}

body.theme-light .hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 0.96) 0%, rgba(247, 248, 245, 0.84) 44%, rgba(247, 248, 245, 0.12) 100%),
    linear-gradient(180deg, rgba(247, 248, 245, 0.18) 0%, rgba(247, 248, 245, 0.88) 100%);
}

body.theme-light h1 {
  color: var(--arena-orange);
  text-shadow: none;
}

body.theme-light h1::first-line {
  color: #10100f;
}

body.theme-light .hero-lead {
  color: rgba(16, 16, 15, 0.92);
}

body.theme-light .hero-note {
  color: rgba(16, 16, 15, 0.68);
}

body.theme-light .secondary-cta {
  background: rgba(16, 16, 15, 0.08);
  border-color: rgba(16, 16, 15, 0.16);
  color: #10100f;
}

body.theme-light .hero-panel {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(16, 16, 15, 0.12);
  color: #10100f;
  box-shadow: 0 22px 60px rgba(24, 30, 20, 0.18);
}

body.theme-light .rating,
body.theme-light .quick-info {
  border-color: rgba(16, 16, 15, 0.1);
}

body.theme-light .rating span,
body.theme-light .quick-info span {
  color: rgba(16, 16, 15, 0.64);
}

body.theme-light .hero-panel a {
  background: rgba(210, 80, 10, 0.1);
  border-color: rgba(210, 80, 10, 0.34);
  color: #10100f;
}
/* Correção mobile - header e hero */
@media (max-width: 680px) {
  .site-header {
    position: fixed;
    top: 12px;
    left: 14px;
    right: 14px;
    width: auto;
    min-height: 64px;
    padding: 8px 12px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
  }

  .site-header.is-scrolled {
    top: 12px;
    min-height: 64px;
    padding: 8px 12px;
  }

  .brand img {
    width: 56px;
  }

  .site-header.is-scrolled .brand img {
    width: 56px;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 16px;
    white-space: nowrap;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 44px;
    align-items: start;
    gap: 28px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-note {
    margin-bottom: 0;
  }

  .hero-panel {
    width: 100%;
    max-width: none;
    margin-top: 8px;
  }

  .quick-info {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .quick-info strong {
    white-space: nowrap;
    text-align: right;
    font-size: 1.9rem;
    line-height: 1.05;
  }

  .rating strong {
    font-size: 2.4rem;
  }
}