/* ==========================================================================
   BOXPARK — A unit of Karni Sports Club
   Palette pulled from the logo: lime green, near-black, white
   ========================================================================== */

:root {
  --lime: #a8d81c;
  --lime-bright: #c2f22a;
  --lime-dim: #7fa514;
  --ink: #0d0f0b;
  --ink-2: #14170f;
  --panel: #1a1d16;
  --panel-2: #22261c;
  --line: rgba(168, 216, 28, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --muted: #a9b0a0;
  --muted-2: #767c6e;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --nav-h: 76px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(20px, 5vw, 48px);
  --shell: min(1320px, 100% - 2 * var(--gutter));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
  text-wrap: balance;
}

/* Long unbroken strings (emails, URLs) must wrap, never overflow */
p, li, address, figcaption { overflow-wrap: break-word; }
a[href^="mailto:"], a[href^="tel:"] { overflow-wrap: anywhere; }

::selection { background: var(--lime); color: var(--ink); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--panel-2); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime-dim); }

/* ---------- Layout helpers ---------- */
.shell { width: var(--shell); max-width: 100%; margin-inline: auto; }

.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(56px, 6vw, 86px) 0; }
.section--alt { background: var(--ink-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--lime);
  display: block;
}

.section-title {
  font-size: clamp(2rem, 5.2vw, 3.6rem);
}
.section-title em {
  font-style: normal;
  color: var(--lime);
}

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head p { color: var(--muted); margin: 18px 0 0; font-size: 1.02rem; }

.section-head--split {
  max-width: none;
  display: flex;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-head--split > div { max-width: 780px; flex: 1 1 420px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  isolation: isolate;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lime-bright);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index: -1;
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(168, 216, 28, .7);
}
.btn--primary:hover { box-shadow: 0 20px 40px -14px rgba(194, 242, 42, .8); }

.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, .22);
  color: var(--white);
}
.btn--ghost:hover { color: var(--ink); border-color: var(--lime-bright); }

.btn--sm { padding: 12px 22px; font-size: 12px; }

.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(13, 15, 11, .82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line-soft);
  height: 66px;
}
.nav__inner {
  width: var(--shell);
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; flex: none; }
.nav__brand img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  transition: transform .4s var(--ease);
}
.nav__brand:hover img { transform: scale(1.06) rotate(-2deg); }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-text b {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .04em;
}
.nav__brand-text span {
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted-2);
  margin-top: 4px;
}

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  position: relative;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--white); }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 13px;
  width: 18px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), width .35s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 21px; width: 13px; }
.nav__burger span:nth-child(3) { top: 26px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); width: 18px; }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(13, 15, 11, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-h) 8vw 8vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3rem);
  text-transform: uppercase;
  padding: 10px 0;
  color: var(--white);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
  border-bottom: 1px solid var(--line-soft);
}
.drawer a:hover { color: var(--lime); }
.drawer.is-open a { opacity: 1; transform: none; }
.drawer.is-open a:nth-child(1) { transition-delay: .08s; }
.drawer.is-open a:nth-child(2) { transition-delay: .14s; }
.drawer.is-open a:nth-child(3) { transition-delay: .20s; }
.drawer.is-open a:nth-child(4) { transition-delay: .26s; }
.drawer.is-open a:nth-child(5) { transition-delay: .32s; }
.drawer__foot { margin-top: 36px; color: var(--muted); font-size: 14px; }
.drawer__foot a { font-size: 14px; font-family: var(--font-body); border: 0; padding: 2px 0; display: block; color: var(--lime); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 118%;
  object-fit: cover;
  object-position: center 55%;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.18) translate3d(-1.5%, -1.5%, 0); }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,15,11,.86) 0%, rgba(13,15,11,.34) 32%, rgba(13,15,11,.82) 78%, var(--ink) 100%),
    radial-gradient(120% 80% at 50% 100%, rgba(168,216,28,.14), transparent 60%);
}

.hero__inner { position: relative; z-index: 2; width: var(--shell); max-width: 100%; margin-inline: auto; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 16px 8px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(13,15,11,.5);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.hero__badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(168,216,28,.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(168,216,28,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(168,216,28,0); }
  100% { box-shadow: 0 0 0 0 rgba(168,216,28,0); }
}

.hero__title {
  font-size: clamp(2rem, 10.4vw, 9rem);
  line-height: .92;
  letter-spacing: -0.035em;
}
.hero__title .line { display: block; overflow: hidden; padding-block: .04em; margin-block: -.04em; }
.hero__title .line > span {
  display: block;
  transform: translateY(105%);
  animation: riseIn 1s var(--ease) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: .15s; }
.hero__title .line:nth-child(2) > span { animation-delay: .28s; }
@keyframes riseIn { to { transform: translateY(0); } }
.hero__title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--lime);
}

.hero__sub {
  max-width: 560px;
  margin: 26px 0 34px;
  color: #d5dbcd;
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .5s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .64s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  right: var(--gutter);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hero__scroll .bar {
  width: 1px; height: 46px;
  background: linear-gradient(var(--lime), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll .bar::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 14px;
  background: var(--lime-bright);
  animation: slide 2s infinite var(--ease);
}
@keyframes slide { 0% { transform: translateY(-16px); } 100% { transform: translateY(48px); } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line-soft);
  background: var(--ink-2);
  overflow: hidden;
  padding: 20px 0;
  --gap: 44px;
}
.marquee__track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: scrollX 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scrollX { to { transform: translateX(calc(-50% - var(--gap) / 2)); } }
.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: var(--gap);
  white-space: nowrap;
}
.marquee span::after {
  content: "";
  width: 9px; height: 9px;
  background: var(--lime);
  transform: rotate(45deg);
}

/* ---------- Page header (inner pages) ---------- */
.pagehead {
  position: relative;
  padding: calc(var(--nav-h) + clamp(56px, 9vw, 110px)) 0 clamp(48px, 7vw, 84px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 120% at 12% 0%, rgba(168,216,28,.16), transparent 62%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
}
.pagehead__inner { position: relative; z-index: 1; }
.pagehead h1 { font-size: clamp(2.6rem, 8vw, 5.2rem); }
.pagehead p { color: var(--muted); max-width: 560px; margin: 18px 0 0; }
.crumb {
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.crumb a:hover { color: var(--lime); }

/* ---------- Facilities ---------- */
.facilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 22px;
}
.fac {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: transform .55s var(--ease), border-color .45s var(--ease), box-shadow .55s var(--ease);
}
.fac:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.9);
}
.fac__bg { position: absolute; inset: 0; z-index: 0; }
.fac__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .55s var(--ease);
  filter: saturate(.92);
}
.fac:hover .fac__bg img { transform: scale(1.09); filter: saturate(1.1); }
.fac__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,15,11,.28) 0%, rgba(13,15,11,.86) 52%, rgba(13,15,11,.97) 100%);
  transition: opacity .5s var(--ease);
}
.fac__body { position: relative; z-index: 2; }
.fac__icon {
  width: 46px; height: 46px;
  margin-bottom: 16px;
  color: var(--lime);
  transition: transform .5s var(--ease);
}
.fac:hover .fac__icon { transform: translateY(-4px) scale(1.06); }
.fac h3 { font-size: 1.6rem; margin-bottom: 8px; }
.fac p { color: var(--muted); font-size: .94rem; margin: 0 0 18px; }

.tag {
  position: absolute;
  top: 22px; right: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.tag--live { background: var(--lime); color: var(--ink); }
.tag--live .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink);
  animation: blink 1.6s infinite;
}
@keyframes blink { 50% { opacity: .25; } }
.tag--soon {
  background: rgba(255,255,255,.1);
  color: #e5e9de;
  border: 1px solid rgba(255,255,255,.18);
}

.fac--soon .fac__bg img { filter: grayscale(.75) brightness(.6); }
.fac--soon:hover .fac__bg img { filter: grayscale(.3) brightness(.75); }

/* Placeholder art for facilities with no photo yet */
.fac__art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 72% 12%, rgba(168,216,28,.10), transparent 60%),
    linear-gradient(160deg, #1b1f15 0%, #0c0f07 100%);
}
.fac__art::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image:
    linear-gradient(rgba(168,216,28,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,216,28,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: rotate(-14deg);
  transition: transform 1.2s var(--ease);
}
.fac:hover .fac__art::before { transform: rotate(-14deg) scale(1.1); }
.fac__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,15,11,.9) 100%);
}

.fac__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
}
.fac__link .arrow { transition: transform .35s var(--ease); }
.fac:hover .fac__link .arrow { transform: translateX(5px); }

/* ---------- About / split ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split__media:hover img { transform: scale(1.06); }
.split__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 40%, rgba(13,15,11,.55));
  pointer-events: none;
}
.split__badge {
  position: absolute;
  left: clamp(14px, 3vw, 22px); bottom: clamp(14px, 3vw, 22px);
  z-index: 2;
  background: var(--lime);
  color: var(--ink);
  border-radius: 14px;
  padding: clamp(11px, 2vw, 16px) clamp(14px, 2.4vw, 20px);
  font-family: var(--font-display);
  line-height: 1.05;
}
.split__badge b { display: block; font-size: clamp(1.15rem, 4.4vw, 2rem); white-space: nowrap; }
.split__badge span { font-size: clamp(9px, 2vw, 11px); letter-spacing: .16em; text-transform: uppercase; }

.prose p { color: var(--muted); margin: 0 0 16px; }
.prose .section-title + p { margin-top: 22px; }
.prose p.lead { color: #dfe4d8; font-size: clamp(1rem, 1.1vw + .8rem, 1.12rem); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 34px;
}
.stat {
  background: var(--ink-2);
  padding: 26px 22px;
  transition: background .4s var(--ease);
}
.stat:hover { background: var(--panel-2); }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--lime);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------- Coaches ---------- */
.coaches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}
.coach {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s var(--ease);
}
.coach:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 30px 60px -34px #000;
}
.coach__photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--panel-2); }
.coach__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1s var(--ease), filter .5s;
  filter: grayscale(.35) contrast(1.03);
}
.coach:hover .coach__photo img { transform: scale(1.05); filter: grayscale(0); }
.coach__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,29,22,.96));
}
.coach__role {
  position: absolute;
  z-index: 2;
  left: 20px; bottom: 18px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime);
}
.coach__body { padding: 22px 24px 26px; }
.coach__body h3 { font-size: 1.32rem; }
.coach__meta { color: var(--muted-2); font-size: 13px; margin: 6px 0 16px; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  font-size: 11.5px;
  letter-spacing: .06em;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(168,216,28,.09);
  border: 1px solid var(--line);
  color: #cfe08e;
  transition: background .3s, transform .3s var(--ease);
}
.chip:hover { background: rgba(168,216,28,.2); transform: translateY(-2px); }

/* Coach detail cards */
.coachcard {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  align-items: start;
}
.coachcard + .coachcard { margin-top: 28px; }
.coachcard__photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}
.coachcard__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1s var(--ease);
}
.coachcard__photo:hover img { transform: scale(1.05); }
.coachcard h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.coachcard .role {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.qual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 20px;
  margin-top: 26px;
}
.qual h4 {
  font-size: 11.5px;
  letter-spacing: .2em;
  color: var(--muted-2);
  margin-bottom: 12px;
}
.qual ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  font-size: .93rem;
  color: #d3d8ca;
}
.qual ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--lime);
  transform: rotate(45deg);
}

.honours { margin-top: 28px; }
.honour {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
  transition: padding-left .35s var(--ease), border-color .35s;
}
.honour:hover { padding-left: 10px; border-color: var(--line); }
.honour__yr {
  font-family: var(--font-display);
  color: var(--lime);
  font-size: 13px;
  letter-spacing: .08em;
  min-width: 78px;
  flex: none;
}
.honour__txt { font-size: .94rem; color: #d3d8ca; }
.honour__txt b { color: var(--white); }

/* ---------- Gallery ---------- */
.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.filter {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all .35s var(--ease);
}
.filter:hover { color: var(--white); border-color: var(--line); transform: translateY(-2px); }
.filter.is-active { background: var(--lime); border-color: var(--lime); color: var(--ink); }

.grid {
  columns: 3;
  column-gap: 16px;
}
.grid figure {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--panel);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.grid figure.is-hidden { display: none; }
.grid figure img {
  width: 100%;
  transition: transform 1s var(--ease), filter .5s var(--ease);
}
.grid figure:hover img { transform: scale(1.06); filter: brightness(1.05); }
.grid figure figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 18px 16px;
  background: linear-gradient(transparent, rgba(13,15,11,.92));
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.grid figure:hover figcaption { opacity: 1; transform: none; }
.grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: border-color .4s var(--ease);
  pointer-events: none;
}
.grid figure:hover::after { border-color: var(--line); }

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 7, 5, .94);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 5vh 5vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 14px;
  transform: scale(.94);
  transition: transform .45s var(--ease);
  object-fit: contain;
}
.lb.is-open img { transform: scale(1); }
.lb__close, .lb__nav {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255,255,255,.05);
  transition: background .3s, transform .3s var(--ease), border-color .3s;
}
.lb__close:hover, .lb__nav:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: scale(1.08); }
.lb__close { top: 22px; right: 22px; }
.lb__nav--prev { left: 18px; top: 50%; margin-top: -25px; }
.lb__nav--next { right: 18px; top: 50%; margin-top: -25px; }
.lb__count {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--muted);
}

/* ---------- Map / location ---------- */
.mapwrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
}
.mapwrap__info { padding: clamp(26px, 3.4vw, 46px); }
.mapwrap__info h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.mapwrap__frame { position: relative; min-height: clamp(300px, 46vw, 440px); filter: grayscale(.25) contrast(1.05); }
.mapwrap__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.infolist { margin: 22px 0 26px; }
.infolist li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  align-items: flex-start;
}
.infolist li:last-child { border-bottom: 1px solid var(--line-soft); }
.infolist svg { width: 19px; height: 19px; color: var(--lime); flex: none; margin-top: 3px; }
.infolist b { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; margin-bottom: 3px; font-family: var(--font-display); }
.infolist span, .infolist a { color: #dfe4d8; font-size: .96rem; }
.infolist a { display: block; transition: color .3s; overflow-wrap: anywhere; }
.infolist li > div { min-width: 0; }
.infolist a:hover { color: var(--lime); }

/* ---------- Contact cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
}
.card {
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform .45s var(--ease), border-color .4s, background .4s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,216,28,.16), transparent 68%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line); }
.card:hover::before { opacity: 1; }
.card__ico {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: rgba(168,216,28,.12);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--lime);
  margin-bottom: 18px;
  transition: transform .45s var(--ease), background .4s;
}
.card:hover .card__ico { transform: rotate(-8deg) scale(1.06); background: rgba(168,216,28,.2); }
.card__ico svg { width: 21px; height: 21px; }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p, .card a { color: var(--muted); font-size: .95rem; margin: 0 0 4px; display: block; overflow-wrap: anywhere; }
.card a:hover { color: var(--lime); }
.card .name { color: var(--white); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-top: 12px; font-family: var(--font-display); }

/* ---------- CTA band ---------- */
.cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(40px, 6vw, 76px);
  text-align: center;
  background: linear-gradient(140deg, #1d2216, #0f1209);
  border: 1px solid var(--line);
}
.cta::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0 62%, rgba(168,216,28,.16) 78%, transparent 92%);
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta__inner { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
.cta p { color: var(--muted); max-width: 520px; margin: 16px auto 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--ink-2);
  padding: clamp(48px, 6vw, 72px) 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 40px;
}
.footer__brand img { height: 52px; width: auto; border-radius: 10px; margin-bottom: 16px; }
.footer p { color: var(--muted-2); font-size: .9rem; margin: 0 0 12px; max-width: 34ch; }
.footer h4 {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer li { margin-bottom: 9px; }
.footer li a, .footer address a {
  color: var(--muted);
  font-size: .92rem;
  transition: color .3s, padding-left .3s var(--ease);
}
.footer li a:hover { color: var(--lime); padding-left: 5px; }
.footer address { font-style: normal; color: var(--muted); font-size: .92rem; line-height: 1.7; overflow-wrap: anywhere; }

.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all .35s var(--ease);
}
.socials a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.footer__bar {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: .82rem;
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 1; transform: none; }
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
html.js [data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .09s; }
[data-reveal][data-delay="2"] { transition-delay: .18s; }
[data-reveal][data-delay="3"] { transition-delay: .27s; }
[data-reveal][data-delay="4"] { transition-delay: .36s; }
/* A reveal target taller than the viewport must not stay hidden */
[data-reveal] { max-width: 100%; }

/* Scroll progress */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--lime-dim), var(--lime-bright));
  z-index: 120;
  transition: width .1s linear;
}

/* Back to top */
.totop {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  z-index: 90;
  opacity: 0;
  transform: translateY(16px) scale(.9);
  pointer-events: none;
  transition: all .4s var(--ease);
  box-shadow: 0 14px 30px -12px rgba(168,216,28,.6);
}
.totop.is-vis { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--lime-bright); transform: translateY(-3px); }

/* ---------- Responsive ---------- */

/* Very wide screens — let the shell breathe instead of stranding content */
@media (min-width: 1600px) {
  :root { --gutter: clamp(48px, 6vw, 96px); }
}

/* 5 facility cards read better as 3 + 2 than 4 + 1 */
@media (min-width: 1080px) {
  .facilities { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1180px) {
  .footer__grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr); }
  .footer__grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .split { grid-template-columns: minmax(0, 1fr); }
  .split__media { aspect-ratio: 16 / 11; }
  .mapwrap { grid-template-columns: minmax(0, 1fr); }
  .mapwrap__frame { order: -1; }
  .coachcard { grid-template-columns: minmax(0, 1fr); }
  .coachcard__photo { max-width: 300px; aspect-ratio: 1 / 1; }
  .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer__grid > div:last-child { grid-column: auto; }
  .grid { columns: 2; }
}

@media (max-width: 1100px) {
  /* Not enough room for the strapline once the nav links crowd in */
  .nav__brand-text span { display: none; }
}

@media (max-width: 900px) {
  .section-head--split { align-items: flex-start; }
}

@media (max-width: 820px) {
  :root { --nav-h: 68px; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: block; }
  .hero { min-height: 88vh; min-height: 88svh; }
  .hero__scroll { display: none; }
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .grid { columns: 1; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .footer p { max-width: none; }
  .fac { min-height: 330px; padding: 22px; }
  .hero__title .outline { -webkit-text-stroke-width: 1.5px; }
  .hero__badge { font-size: 11px; letter-spacing: .1em; }
  .section-head--split > div { flex-basis: auto; }
  .coachcard { padding: 20px 18px; }
  .coachcard__photo { max-width: 220px; }
  .honour { flex-direction: column; gap: 2px; }
  .honour__yr { min-width: 0; }
  .qual-grid { gap: 14px; }
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stat { padding: 18px 12px; }
  .stat span { font-size: 10px; letter-spacing: .1em; }
  .card { padding: 26px 22px; }
  .mapwrap__info { padding: 24px 20px; }
  .totop { right: 16px; bottom: 16px; width: 42px; height: 42px; }

  /* Lightbox controls sit below the image so they never cover it */
  .lb { padding: 4vh 4vw 96px; }
  .lb__nav { top: auto; bottom: 20px; margin-top: 0; width: 44px; height: 44px; }
  .lb__nav--prev { left: 50%; margin-left: -58px; }
  .lb__nav--next { right: 50%; margin-right: -58px; }
  .lb__count { bottom: 34px; left: auto; right: 22px; transform: none; }
  .lb__close { top: 16px; right: 16px; width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .nav__brand img { height: 34px; }
  .nav__brand-text b { font-size: 17px; }
  .hero__actions .btn, .cta__actions .btn { flex: 1 1 100%; }
  .marquee { padding: 15px 0; --gap: 28px; }
  .drawer { padding-top: calc(var(--nav-h) + 12px); }
  .filters { gap: 7px; }
  .filter { padding: 9px 15px; font-size: 11px; letter-spacing: .1em; }
  .split__media { aspect-ratio: 4 / 3; }
}

@media (max-width: 380px) {
  .stats { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

/* Short landscape phones: the hero should shrink to its content */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: 0; padding-top: calc(var(--nav-h) + 24px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
  .hero__sub, .hero__actions { opacity: 1; }
}

/* ==========================================================================
   Rules & Guidelines page
   ========================================================================== */

/* Jump links across the top of the rulebook */
.jumpbar {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: clamp(34px, 5vw, 56px);
}
a.filter { text-decoration: none; }

/* --- Rule groups --- */
.ruleset {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 20px;
}

.rulegroup {
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  transition: border-color .4s var(--ease), transform .45s var(--ease);
}
.rulegroup:hover { border-color: var(--line); transform: translateY(-4px); }

.rulegroup__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.rulegroup__ico {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 12px;
  background: rgba(168, 216, 28, .12);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--lime);
  transition: transform .45s var(--ease), background .4s;
}
.rulegroup:hover .rulegroup__ico { transform: rotate(-8deg) scale(1.06); background: rgba(168, 216, 28, .2); }
.rulegroup__ico svg { width: 20px; height: 20px; }
.rulegroup__head h3 { font-size: 1.12rem; letter-spacing: -.01em; }

/* Numbered rules — <ol> markers off, custom counters on */
.rule-list, .mark-list { list-style: none; margin: 0; padding: 0; }
.rule-list { counter-reset: rule; }
.rule-list li {
  counter-increment: rule;
  position: relative;
  padding-left: 42px;
  margin-bottom: 15px;
  font-size: .945rem;
  color: #cdd3c4;
  line-height: 1.6;
}
.rule-list li:last-child { margin-bottom: 0; }
.rule-list li::before {
  content: counter(rule, decimal-leading-zero);
  position: absolute;
  left: 0; top: 1px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--lime);
  background: rgba(168, 216, 28, .1);
  border: 1px solid var(--line);
  border-radius: 7px;
  width: 28px;
  height: 22px;
  display: grid;
  place-items: center;
  transition: background .3s var(--ease), color .3s;
}
.rule-list li:hover::before { background: var(--lime); color: var(--ink); }
.rule-list li b, .rule-list li strong { color: var(--white); font-weight: 600; }

/* Tick / cross lists for the do-and-don't blocks */
.mark-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  font-size: .945rem;
  color: #cdd3c4;
  line-height: 1.6;
}
.mark-list li::before {
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}
.mark-list--yes li::before { content: "✓"; color: var(--lime); }
.mark-list--no li::before { content: "✕"; color: #e0685c; }

/* --- Per-sport blocks --- */
.sport {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.sport + .sport { margin-top: 24px; }

.sport__head {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 34px);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(120deg, rgba(168, 216, 28, .07), transparent 60%);
}
.sport__ico {
  width: 46px; height: 46px;
  flex: none;
  color: var(--lime);
}
.sport__head h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
.sport__head p { margin: 5px 0 0; color: var(--muted); font-size: .92rem; }
.sport__head > div { flex: 1 1 240px; min-width: 0; }

.sport__body {
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

/* Match-format spec sheet */
.spec { border-top: 1px solid var(--line-soft); }
.spec div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: .9rem;
  transition: padding-left .35s var(--ease);
}
.spec div:hover { padding-left: 8px; }
.spec dt {
  color: var(--muted-2);
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0;
  flex: none;
  padding-top: 3px;
}
.spec dd { margin: 0; color: var(--white); text-align: right; font-weight: 500; }

.subhead {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 14px;
}
.sport__body .subhead:not(:first-child) { margin-top: 26px; }

/* --- Callout --- */
.notice {
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  border-radius: 14px;
  background: rgba(168, 216, 28, .05);
  padding: 22px 24px;
  margin-top: 26px;
}
.notice h4 {
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--lime);
  margin-bottom: 10px;
}
.notice p { margin: 0; color: #cdd3c4; font-size: .93rem; }
.notice p + p { margin-top: 10px; }

/* --- FAQ (native details/summary, no JS) --- */
.faq { border-top: 1px solid var(--line-soft); }
.faq details {
  border-bottom: 1px solid var(--line-soft);
  transition: background .35s var(--ease);
}
.faq details[open] { background: rgba(255, 255, 255, .02); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 52px 22px 4px;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(.98rem, 1.6vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -.01em;
  transition: color .3s var(--ease), padding-left .35s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--lime); padding-left: 10px; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 12px; top: 50%;
  width: 13px; height: 13px;
  margin-top: -7px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(45deg);
  transition: transform .4s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > p {
  margin: 0;
  padding: 0 52px 24px 4px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .sport__body { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 620px) {
  .rulegroup { padding: 22px 20px; }
  .rule-list li { padding-left: 36px; font-size: .92rem; }
  .spec div { flex-direction: column; gap: 3px; }
  .spec dd { text-align: left; }
  .faq summary { padding: 18px 44px 18px 2px; }
  .faq details > p { padding: 0 44px 20px 2px; }
}
