:root {
  --black: #050505;
  --black-2: #0b0b0a;
  --ink: #171411;
  --orange: #ff681d;
  --orange-dark: #a73512;
  --cream: #f4eee3;
  --muted: rgba(244, 238, 227, 0.72);
  --line: rgba(244, 238, 227, 0.16);
  --selva: #123c30;
  --max: 1720px;
  --gutter: clamp(18px, 5vw, 86px);
  --display: "Zuume Rough Bold", "Zuume Rough", "Zuume", "Bebas Neue", "Antonio", Impact, sans-serif;
  --condensed: "Antonio", "Bebas Neue", Arial Narrow, sans-serif;
  --body: "Poppins", Arial, sans-serif;
  color: var(--cream);
  background: var(--black);
  font-family: var(--body);
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Zuume Rough Bold";
  src:
    local("Zuume Rough Bold"),
    local("ZuumeRough-Bold"),
    local("Zuume Rough Bold Oblique");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 104, 29, 0.18), transparent 30rem),
    linear-gradient(120deg, rgba(18, 60, 48, 0.34), transparent 38rem),
    var(--black);
}

body.nav-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 90;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--orange);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.grain,
.scroll-meter {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
}

.grain {
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
}

.scroll-meter {
  inset: 0 0 auto;
  z-index: 95;
  height: 3px;
  background: rgba(244, 238, 227, 0.08);
}

.scroll-meter span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--orange);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(22px, 4vw, 64px);
  padding: 20px var(--gutter);
  border-bottom: 1px solid transparent;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    padding 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  border-color: rgba(244, 238, 227, 0.12);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  font-family: var(--condensed);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 0.95;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-lockup img {
  width: 46px;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(255, 104, 29, 0.24));
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.7vw, 26px);
  font-family: var(--condensed);
  font-size: clamp(1.035rem, 1.15vw, 1.15rem);
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 2px;
  text-decoration: none;
}

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

.site-nav a:hover::before,
.site-nav a:focus-visible::before,
.site-nav a[aria-current="page"]::before {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a[aria-current="page"] {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 238, 227, 0.26);
  color: var(--cream);
  background: rgba(244, 238, 227, 0.05);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

h1 span,
h2 span {
  display: block;
}

h1 span {
  white-space: nowrap;
}

p {
  margin-bottom: 0;
}

.video-hero,
.hero,
.simple-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.video-hero {
  min-height: 100svh;
  background: var(--black);
}

.video-hero-media,
.video-hero-shade {
  position: absolute;
  inset: 0;
}

.video-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--black);
  pointer-events: none;
}

.video-hero-shade {
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.46), transparent 32%, rgba(5, 5, 5, 0.28)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.2), transparent 40%, rgba(5, 5, 5, 0.2));
}

.volume-toggle {
  position: absolute;
  top: clamp(78px, 8vh, 110px);
  right: clamp(18px, 3vw, 42px);
  z-index: 2;
  display: inline-flex;
  width: clamp(44px, 4.2vw, 58px);
  height: clamp(44px, 4.2vw, 58px);
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(244, 238, 227, 0.34);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(5, 5, 5, 0.52);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.volume-toggle:hover,
.volume-toggle:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(5, 5, 5, 0.74);
  transform: translateY(-1px);
}

.volume-toggle[aria-pressed="true"] {
  border-color: rgba(255, 104, 29, 0.95);
  color: var(--black);
  background: var(--orange);
  box-shadow:
    0 18px 42px rgba(255, 104, 29, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.volume-toggle-icon {
  width: 52%;
  height: 52%;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.volume-toggle-wave {
  fill: none;
  opacity: 0.42;
  transition: opacity 180ms ease;
}

.volume-toggle[aria-pressed="true"] .volume-toggle-wave {
  opacity: 1;
}

.official-hero {
  display: grid;
  min-height: clamp(540px, 70svh, 720px);
  align-items: center;
  padding: clamp(64px, 6vh, 84px) var(--gutter) clamp(40px, 6vh, 72px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.66) 55%, rgba(5, 5, 5, 0.92)),
    repeating-linear-gradient(135deg, rgba(244, 238, 227, 0.05) 0 12px, transparent 12px 30px),
    radial-gradient(circle at 74% 32%, rgba(255, 104, 29, 0.24), transparent 30rem),
    linear-gradient(120deg, rgba(18, 60, 48, 0.46), transparent 42rem),
    var(--black);
}

.hero-mark {
  position: absolute;
  top: 50%;
  right: max(var(--gutter), 38px);
  z-index: -1;
  width: min(34vw, 520px);
  opacity: 0.13;
  filter: grayscale(1) contrast(1.4);
  transform: translateY(-50%) rotate(-10deg);
}

.hero-mark img {
  width: 100%;
}

.hero-copy {
  width: min(1280px, 100%);
}

h1 {
  max-width: 13ch;
  margin-bottom: clamp(26px, 3vw, 38px);
  font-size: clamp(5.8rem, 10.2vw, 13.6rem);
}

.hero-title-action {
  display: flex;
  align-items: baseline;
  gap: 0.12em;
}

.hero-title-prefix,
.hero-rotator {
  display: inline-block;
}

.hero-rotator {
  min-width: 4.35em;
  color: var(--orange);
  text-shadow: 0 0.04em 0.2em rgba(255, 104, 29, 0.24);
  transform-origin: left center;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.hero-rotator.is-changing {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(0.12em);
}

.hero-copy p,
.simple-copy p {
  display: grid;
  gap: 12px;
  width: min(820px, 100%);
  color: var(--cream);
  font-family: var(--condensed);
  font-size: clamp(1.22rem, 2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.06;
  text-transform: uppercase;
}

.hero-copy .hero-season-lockup {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  width: auto;
  max-width: 100%;
  align-items: center;
  padding: 12px 18px 12px 20px;
  border-left: 3px solid var(--orange);
  border-top: 1px solid rgba(244, 238, 227, 0.12);
  border-bottom: 1px solid rgba(244, 238, 227, 0.12);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(255, 104, 29, 0.13), rgba(255, 104, 29, 0.02) 66%, transparent),
    rgba(5, 5, 5, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hero-season-lockup span {
  position: relative;
  white-space: nowrap;
}

.hero-season-lockup span + span {
  color: rgba(244, 238, 227, 0.74);
}

.hero-season-lockup span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 1px;
  height: 1.18em;
  background: rgba(255, 104, 29, 0.68);
  transform: translateY(-50%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 46px);
}

.cta {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: inline-flex;
  min-width: 148px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 28px;
  border: 1px solid rgba(244, 238, 227, 0.28);
  color: var(--cream);
  font-family: var(--condensed);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  isolation: isolate;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.cta::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.28), transparent 9rem);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cta::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--orange);
  transform: translateX(-102%) skewX(-16deg);
  transform-origin: left;
  transition: transform 260ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  border-color: var(--orange);
}

.cta:hover::before,
.cta:focus-visible::before {
  opacity: 1;
}

.cta:hover::after,
.cta:focus-visible::after {
  transform: translateX(0) skewX(-16deg);
}

.cta-primary {
  border-color: var(--orange);
  color: var(--black);
  background: var(--orange);
}

.cta-primary::after {
  background: var(--cream);
}

.hero-socials {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(48px, 7vh, 86px);
  display: flex;
  gap: 10px;
}

.icon-link {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(244, 238, 227, 0.22);
  color: var(--cream);
  background: rgba(5, 5, 5, 0.56);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.icon-link:hover,
.icon-link:focus-visible {
  border-color: var(--orange);
  color: var(--black);
  background: var(--orange);
}

.social-icon {
  display: block;
  width: 20px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-instagram {
  -webkit-mask-image: url("../assets/social/instagram.svg");
  mask-image: url("../assets/social/instagram.svg");
}

.icon-x {
  -webkit-mask-image: url("../assets/social/x.svg");
  mask-image: url("../assets/social/x.svg");
}

.icon-facebook {
  -webkit-mask-image: url("../assets/social/facebook.svg");
  mask-image: url("../assets/social/facebook.svg");
}

.icon-tiktok {
  -webkit-mask-image: url("../assets/social/tiktok.svg");
  mask-image: url("../assets/social/tiktok.svg");
}

.season-section,
.schedule-section,
.squad-section,
.commerce-strip,
.manada-section,
.simple-page {
  width: 100%;
  margin: 0;
  padding: clamp(84px, 11vw, 170px) var(--gutter);
  scroll-margin-top: 78px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.56fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 84px);
}

.section-heading h1,
.section-heading h2,
.simple-copy h1 {
  margin-bottom: 0;
  font-size: clamp(4.8rem, 8.6vw, 10.2rem);
}

.section-heading p,
.availability-panel p {
  color: var(--muted);
  font-family: var(--condensed);
  font-size: clamp(1.2rem, 1.9vw, 1.9rem);
  font-weight: 650;
  line-height: 1.14;
  text-transform: uppercase;
}

.season-heading {
  max-width: min(1280px, 100%);
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(18px, 2.4vw, 30px);
  margin-inline: auto;
  text-align: center;
}

.season-heading h2 {
  display: flex;
  max-width: 100%;
  justify-content: center;
  gap: 0.18em;
  white-space: nowrap;
  font-size: clamp(4.8rem, 7.7vw, 9rem);
}

.season-heading h2 span {
  display: inline;
}

.season-heading p {
  max-width: min(1120px, 100%);
  font-size: clamp(1.08rem, 1.55vw, 1.62rem);
  line-height: 1.22;
}

.stadium-pin {
  display: inline-grid;
  grid-template-columns: 38px minmax(0, auto);
  gap: 13px;
  align-items: center;
  max-width: min(520px, 100%);
  margin-top: clamp(8px, 1vw, 14px);
  padding: 12px 18px 12px 14px;
  border: 1px solid rgba(244, 238, 227, 0.18);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(255, 104, 29, 0.16), rgba(255, 104, 29, 0.03) 62%, transparent),
    rgba(5, 5, 5, 0.24);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.stadium-pin:hover,
.stadium-pin:focus-visible {
  border-color: rgba(255, 104, 29, 0.72);
  background:
    linear-gradient(90deg, rgba(255, 104, 29, 0.24), rgba(255, 104, 29, 0.05) 62%, transparent),
    rgba(5, 5, 5, 0.34);
  outline: none;
}

.stadium-pin svg {
  width: 38px;
  height: 38px;
  color: var(--orange);
  fill: currentColor;
  filter: drop-shadow(0 10px 18px rgba(255, 104, 29, 0.18));
}

.stadium-pin span {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

.stadium-pin strong,
.stadium-pin em {
  font-family: var(--condensed);
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
}

.stadium-pin strong {
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
}

.stadium-pin em {
  color: rgba(244, 238, 227, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.section-heading-centered {
  max-width: min(1120px, 100%);
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(22px, 3vw, 36px);
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered h1,
.section-heading-centered h2 {
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(2.85rem, 8.1vw, 9.4rem);
}

.section-heading-centered p {
  display: grid;
  max-width: 920px;
  gap: 14px;
  line-height: 1.22;
}

.section-heading-centered h1:only-child,
.section-heading-centered h2:only-child {
  margin-bottom: clamp(8px, 1.6vw, 18px);
}

.standalone-section {
  padding-top: clamp(116px, 12vw, 178px);
}

.season-section {
  background:
    linear-gradient(90deg, rgba(18, 60, 48, 0.24), transparent 58%),
    var(--black-2);
}

.season-lines {
  border-top: 1px solid rgba(255, 104, 29, 0.42);
}

.season-line-link {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) minmax(280px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 70px);
  align-items: baseline;
  padding: clamp(28px, 4vw, 54px) 0;
  border-bottom: 1px solid rgba(244, 238, 227, 0.14);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    padding-inline 180ms ease;
}

.season-line-link:hover,
.season-line-link:focus-visible {
  padding-inline: clamp(12px, 1.6vw, 24px);
  border-color: rgba(255, 104, 29, 0.52);
  background:
    linear-gradient(90deg, rgba(255, 104, 29, 0.12), transparent 42%),
    rgba(244, 238, 227, 0.025);
  outline: none;
}

.season-lines strong,
.commerce-link span,
.availability-panel strong {
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.season-lines h3 {
  margin-bottom: 0;
  color: var(--cream);
  font-size: clamp(2.8rem, 5vw, 5.7rem);
}

.season-lines p,
.commerce-link em,
.match-date,
.match-meta,
.player-position,
.squad-count,
.schedule-summary {
  color: var(--muted);
  font-family: var(--condensed);
  font-size: clamp(1.12rem, 1.8vw, 1.65rem);
  font-style: normal;
  font-weight: 650;
  line-height: 1.14;
  text-transform: uppercase;
}

.next-match-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(280px, 1fr) minmax(360px, 0.9fr) auto;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  width: min(1440px, 100%);
  margin: 0 auto clamp(36px, 5vw, 72px);
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(244, 238, 227, 0.13);
  background:
    linear-gradient(90deg, rgba(255, 104, 29, 0.16), transparent 34%),
    repeating-linear-gradient(135deg, rgba(244, 238, 227, 0.035) 0 12px, transparent 12px 30px),
    rgba(5, 5, 5, 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.next-match-label,
.next-match-card strong,
.next-match-card dt {
  font-family: var(--condensed);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.next-match-label {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
}

.next-match-card strong {
  color: var(--cream);
}

.next-match-card h3 {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.next-match-card dl,
.match-details dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.next-match-card dt,
.match-details dt {
  margin-bottom: 5px;
  color: var(--orange);
}

.next-match-card dd,
.match-details dd {
  margin: 0;
  color: var(--cream);
  font-family: var(--condensed);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.next-match-card .cta {
  min-width: 164px;
}

.schedule-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 104, 29, 0.18), transparent 28rem),
    repeating-linear-gradient(135deg, rgba(244, 238, 227, 0.025) 0 12px, transparent 12px 30px),
    var(--black);
}

.squad-section {
  background:
    linear-gradient(100deg, rgba(18, 60, 48, 0.34), transparent 44rem),
    radial-gradient(circle at 16% 18%, rgba(255, 104, 29, 0.16), transparent 24rem),
    var(--black-2);
}

.schedule-shell,
.squad-shell {
  width: min(1440px, 100%);
  margin-inline: auto;
}

.schedule-toolbar,
.squad-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: clamp(18px, 3vw, 34px);
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segmented-control button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(244, 238, 227, 0.18);
  color: var(--cream);
  background: rgba(244, 238, 227, 0.04);
  font-family: var(--condensed);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.segmented-control button:hover,
.segmented-control button:focus-visible,
.segmented-control button.is-active {
  border-color: var(--orange);
  color: var(--black);
  background: var(--orange);
  outline: none;
}

.segmented-control button:hover,
.segmented-control button:focus-visible {
  transform: translateY(-2px);
}

.schedule-summary,
.squad-count {
  color: var(--orange);
  font-size: 1rem;
}

.schedule-summary {
  margin-bottom: 12px;
}

.match-list {
  display: grid;
  gap: 10px;
}

.match-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(150px, 0.24fr) minmax(260px, 1fr) minmax(150px, 0.28fr);
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  min-height: 78px;
  padding: 16px 20px;
  overflow: hidden;
  border: 1px solid rgba(244, 238, 227, 0.09);
  background:
    linear-gradient(90deg, rgba(255, 104, 29, 0.08), transparent 34%),
    rgba(244, 238, 227, 0.045);
}

.match-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--orange);
}

.match-card[data-venue="VISITANTE"]::before {
  background: rgba(244, 238, 227, 0.42);
}

.match-card.is-rest {
  opacity: 0.72;
}

.match-round {
  display: inline-grid;
  width: 52px;
  height: 46px;
  place-items: center;
  color: var(--black);
  background: var(--orange);
  font-family: var(--condensed);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.match-card[data-venue="VISITANTE"] .match-round,
.match-card.is-rest .match-round {
  color: var(--cream);
  background: rgba(244, 238, 227, 0.16);
}

.match-date,
.match-meta {
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.18;
}

.match-pairing {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(1rem, 1.3vw, 1.34rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: none;
}

.match-meta {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: var(--cream);
}

.match-meta span:first-child {
  color: var(--orange);
}

.match-card[data-venue="VISITANTE"] .match-meta span:first-child,
.match-card.is-rest .match-meta span:first-child {
  color: var(--muted);
}

.match-details {
  grid-column: 1 / -1;
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(244, 238, 227, 0.1);
}

.match-details summary {
  width: max-content;
  margin-bottom: 0;
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.match-details summary::-webkit-details-marker {
  display: none;
}

.match-details summary::after {
  display: inline-block;
  margin-left: 8px;
  content: "+";
  transition: transform 180ms ease;
}

.match-details[open] summary {
  margin-bottom: 14px;
}

.match-details[open] summary::after {
  transform: rotate(45deg);
}

.match-details dl {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  padding: 16px;
  border: 1px solid rgba(244, 238, 227, 0.1);
  background: rgba(5, 5, 5, 0.28);
}

.match-details dd {
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
}

.data-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 104, 29, 0.2);
  color: var(--orange);
  background: rgba(255, 104, 29, 0.06);
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 238, 227, 0.11);
  background:
    linear-gradient(180deg, rgba(244, 238, 227, 0.06), rgba(244, 238, 227, 0.02)),
    var(--black);
  min-width: 0;
}

.player-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(5, 5, 5, 0.88));
}

.player-photo {
  aspect-ratio: 4 / 3;
  background: rgba(244, 238, 227, 0.1);
}

.player-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
  transition:
    filter 220ms ease,
    transform 260ms ease;
}

.player-card:hover .player-photo img,
.player-card:focus-within .player-photo img {
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.025);
}

.player-body {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 154px;
  padding: 18px 18px 22px;
}

.player-position {
  color: var(--orange);
  font-size: 0.9rem;
}

.player-body h3 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.86rem, 2.35vw, 2.76rem);
  line-height: 0.86;
  text-wrap: balance;
}

.player-body h3.player-name-medium {
  font-size: clamp(1.68rem, 2.12vw, 2.46rem);
}

.player-body h3.player-name-long {
  font-size: clamp(1.5rem, 1.9vw, 2.16rem);
}

.commerce-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: clamp(72px, 9vw, 138px) 0;
  border-top: 1px solid rgba(244, 238, 227, 0.1);
  border-bottom: 1px solid rgba(244, 238, 227, 0.1);
  background:
    radial-gradient(circle at 12% 12%, rgba(18, 60, 48, 0.28), transparent 32rem),
    radial-gradient(circle at 86% 76%, rgba(255, 104, 29, 0.16), transparent 28rem),
    repeating-linear-gradient(135deg, rgba(244, 238, 227, 0.035) 0 12px, transparent 12px 30px),
    var(--black);
}

.commerce-link {
  display: grid;
  min-height: clamp(250px, 27vw, 390px);
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 78px) var(--gutter);
  border-right: 1px solid rgba(255, 104, 29, 0.28);
  color: inherit;
  text-align: center;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 104, 29, 0), rgba(255, 104, 29, 0.08)),
    rgba(5, 5, 5, 0.22);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.commerce-link:last-child {
  border-right: 0;
}

.commerce-link:hover,
.commerce-link:focus-visible {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(255, 104, 29, 0.18), rgba(255, 104, 29, 0.08)),
    rgba(5, 5, 5, 0.38);
}

.commerce-link strong {
  max-width: 11ch;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.manada-section {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 104, 29, 0.16), transparent 30rem),
    radial-gradient(circle at 8% 72%, rgba(18, 60, 48, 0.28), transparent 28rem),
    repeating-linear-gradient(135deg, rgba(244, 238, 227, 0.025) 0 12px, transparent 12px 30px),
    var(--black);
}

.social-rail {
  display: grid;
  width: min(1120px, 100%);
  margin-inline: auto;
  gap: 12px;
}

.social-link {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(110px, 0.3fr) minmax(0, 1fr);
  column-gap: 18px;
  min-height: 92px;
  align-items: center;
  padding: 22px 24px;
  overflow: hidden;
  border-top: 1px solid rgba(244, 238, 227, 0.18);
  color: inherit;
  text-decoration: none;
  isolation: isolate;
}

.social-link:last-child {
  border-bottom: 1px solid rgba(244, 238, 227, 0.18);
}

.social-link::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--orange);
  transform: translateX(-102%);
  transition: transform 260ms ease;
}

.social-link:hover::before,
.social-link:focus-visible::before {
  transform: translateX(0);
}

.social-link .social-icon {
  width: 25px;
  color: var(--orange);
  transition: color 180ms ease;
}

.social-link span:not(.social-icon) {
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.social-link strong {
  color: var(--cream);
  font-family: var(--condensed);
  font-size: clamp(1.35rem, 2.6vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.social-link:hover span,
.social-link:hover strong,
.social-link:focus-visible span,
.social-link:focus-visible strong {
  color: var(--black);
}

.simple-page {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.48fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
  padding-top: clamp(118px, 12vw, 170px);
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 104, 29, 0.18), transparent 28rem),
    repeating-linear-gradient(135deg, rgba(244, 238, 227, 0.045) 0 12px, transparent 12px 30px),
    linear-gradient(120deg, rgba(18, 60, 48, 0.38), transparent 42rem),
    var(--black);
}

.simple-page::before {
  position: absolute;
  top: 50%;
  right: max(var(--gutter), 38px);
  z-index: -1;
  width: min(34vw, 520px);
  aspect-ratio: 1;
  content: "";
  background: url("../assets/logo-jaguares-fc.png") center / contain no-repeat;
  opacity: 0.11;
  filter: grayscale(1) contrast(1.35);
  transform: translateY(-50%) rotate(-10deg);
}

.simple-copy {
  min-width: 0;
}

.simple-copy h1 {
  max-width: 10ch;
}

.simple-copy h1 + p {
  margin-top: clamp(24px, 3vw, 40px);
}

.simple-copy p {
  gap: 16px;
  line-height: 1.16;
}

.simple-copy .hero-actions {
  margin-top: clamp(34px, 4.4vw, 56px);
}

.tickets-page {
  min-height: 100svh;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: clamp(86px, 7.2vw, 118px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.tickets-page .simple-copy {
  width: min(980px, 100%);
}

.store-page {
  min-height: 100svh;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: clamp(86px, 7.2vw, 118px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.store-page .simple-copy {
  width: min(980px, 100%);
}

.store-page .simple-copy h1 {
  max-width: none;
  font-size: clamp(4.8rem, 7.8vw, 9.4rem);
  white-space: nowrap;
}

.store-page .simple-copy h1 + p {
  margin-top: clamp(34px, 4.2vw, 58px);
}

.store-page .simple-copy p {
  gap: 18px;
  line-height: 1.2;
}

.store-page .simple-copy .hero-actions {
  margin-top: clamp(44px, 5vw, 66px);
}

.availability-panel {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 46px);
  border-top: 1px solid rgba(255, 104, 29, 0.48);
  border-bottom: 1px solid rgba(244, 238, 227, 0.16);
  background: rgba(5, 5, 5, 0.34);
}

.availability-panel h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 6rem);
}

.store-page {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 104, 29, 0.2), transparent 26rem),
    repeating-linear-gradient(90deg, rgba(244, 238, 227, 0.045) 0 1px, transparent 1px 86px),
    linear-gradient(120deg, rgba(18, 60, 48, 0.32), transparent 42rem),
    var(--black);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: clamp(22px, 4vw, 62px);
  padding: clamp(28px, 4vw, 52px) var(--gutter);
  border-top: 1px solid rgba(244, 238, 227, 0.12);
  color: rgba(244, 238, 227, 0.68);
  background: #050505;
  font-family: var(--condensed);
  font-weight: 700;
  text-transform: uppercase;
}

.footer-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  text-decoration: none;
}

.footer-brand img {
  width: 46px;
}

.footer-brand span,
.footer-contact a,
.footer-nav a {
  line-height: 1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-nav a,
.footer-contact a {
  color: rgba(244, 238, 227, 0.68);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--orange);
  outline: none;
}

.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials .icon-link {
  width: 44px;
  height: 44px;
}

.reveal,
.reveal-image {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-image {
  transform: translateY(40px) scale(0.98);
}

.reveal.is-visible,
.reveal-image.is-visible {
  opacity: 1;
  transform: none;
}

.magnetic {
  will-change: transform;
}

@media (min-width: 1800px) {
  h1 {
    font-size: 12.8rem;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 73px var(--gutter) auto;
    justify-self: stretch;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(244, 238, 227, 0.16);
    background: rgba(5, 5, 5, 0.95);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(20px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 58px;
    border-bottom: 1px solid rgba(244, 238, 227, 0.12);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .simple-page {
    grid-template-columns: 1fr;
  }

  .season-line-link {
    grid-template-columns: minmax(110px, 0.24fr) 1fr;
  }

  .season-lines p {
    grid-column: 2;
  }

  .schedule-toolbar,
  .squad-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .match-card {
    grid-template-columns: 64px minmax(128px, 0.34fr) minmax(0, 1fr);
  }

  .match-meta {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }

  .next-match-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .next-match-card dl,
  .match-details dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-socials {
    position: static;
    margin-top: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 16px;
  }

  .site-header {
    padding-top: 12px;
  }

  .brand-lockup span {
    max-width: 104px;
  }

  .brand-lockup img {
    width: 42px;
  }

  .official-hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 40px;
  }

  .simple-page {
    min-height: 96svh;
    padding-top: 96px;
    padding-bottom: 54px;
  }

  .tickets-page {
    min-height: 100svh;
    align-items: start;
    padding-top: 112px;
    padding-bottom: 72px;
  }

  .store-page {
    min-height: 100svh;
    align-items: start;
    padding-top: 112px;
    padding-bottom: 72px;
  }

  .store-page .simple-copy h1 {
    font-size: clamp(3.35rem, 15.2vw, 4.35rem);
  }

  .store-page .simple-copy h1 + p {
    margin-top: 26px;
  }

  .store-page .simple-copy p {
    gap: 14px;
    line-height: 1.16;
  }

  .store-page .simple-copy .hero-actions {
    margin-top: 36px;
  }

  .hero-mark {
    top: 48%;
    right: 24px;
    width: min(54vw, 210px);
  }

  .simple-page::before {
    top: 42%;
    right: 32px;
    width: min(54vw, 210px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(4.45rem, 18.4vw, 6rem);
  }

  .section-heading h1,
  .section-heading h2,
  .simple-copy h1 {
    font-size: clamp(4.1rem, 17vw, 5.8rem);
  }

  .season-heading h2 {
    flex-wrap: wrap;
    gap: 0 0.18em;
    white-space: normal;
    font-size: clamp(3.9rem, 16vw, 5.6rem);
  }

  .season-heading p {
    max-width: 22rem;
    font-size: clamp(1.06rem, 5vw, 1.32rem);
    line-height: 1.2;
  }

  .stadium-pin {
    grid-template-columns: 34px minmax(0, 1fr);
    width: 100%;
    max-width: 23rem;
    padding: 11px 13px;
  }

  .stadium-pin svg {
    width: 34px;
    height: 34px;
  }

  .section-heading-centered h1,
  .section-heading-centered h2 {
    font-size: clamp(2.85rem, 11.5vw, 4rem);
  }

  .section-heading-centered p {
    gap: 12px;
    max-width: 25rem;
    font-size: clamp(1.05rem, 5.2vw, 1.4rem);
    line-height: 1.18;
  }

  .hero-copy p,
  .simple-copy p {
    font-size: clamp(1.08rem, 5.8vw, 1.55rem);
    line-height: 1.08;
  }

  .next-match-card {
    gap: 18px;
    padding: 20px;
  }

  .next-match-card h3 {
    font-size: clamp(1.12rem, 6vw, 1.45rem);
  }

  .next-match-card dl,
  .match-details dl {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .next-match-card .cta {
    width: 100%;
  }

  .season-line-link {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 26px;
  }

  .season-lines p {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact {
    justify-items: start;
  }

  .simple-copy h1 + p {
    margin-top: 20px;
  }

  .simple-copy p {
    gap: 12px;
    line-height: 1.14;
  }

  .simple-copy .hero-actions {
    margin-top: 30px;
  }

  .hero-copy .hero-season-lockup {
    gap: 9px 16px;
    padding: 11px 14px 11px 16px;
  }

  .hero-actions,
  .cta {
    width: 100%;
  }

  .hero-socials {
    justify-content: space-between;
    width: 100%;
  }

  .video-hero {
    min-height: 92svh;
  }

  .volume-toggle {
    top: 72px;
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .icon-link {
    width: calc((100vw - 52px) / 3);
    max-width: 116px;
  }

  .hero-socials .icon-link {
    width: calc((100vw - 62px) / 4);
    max-width: 82px;
  }

  .footer-socials .icon-link {
    width: 44px;
    max-width: none;
  }

  .schedule-section,
  .squad-section {
    padding-block: 68px;
  }

  .standalone-section {
    padding-top: 112px;
  }

  .segmented-control {
    width: 100%;
  }

  .segmented-control button {
    flex: 1 1 calc(50% - 4px);
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .match-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px 14px;
    min-height: 0;
    padding: 14px;
  }

  .match-round {
    width: 46px;
    height: 42px;
    font-size: 1rem;
  }

  .match-date {
    align-self: center;
  }

  .match-pairing {
    grid-column: 1 / -1;
    font-size: 1rem;
  }

  .match-meta {
    grid-column: 1 / -1;
    justify-content: space-between;
    font-size: 0.96rem;
  }

  .player-grid {
    grid-template-columns: 1fr;
  }

  .player-body {
    min-height: 146px;
    padding: 16px;
  }

  .player-body h3 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .player-body h3.player-name-medium {
    font-size: clamp(1.58rem, 7.8vw, 2.48rem);
  }

  .player-body h3.player-name-long {
    font-size: clamp(1.34rem, 6.7vw, 2.08rem);
  }

  .commerce-strip {
    grid-template-columns: 1fr;
    padding-block: 0;
  }

  .commerce-link {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 104, 29, 0.24);
  }

  .social-link {
    grid-template-columns: 30px 1fr;
    row-gap: 6px;
  }

  .social-link strong {
    grid-column: 2;
  }

  .availability-panel {
    padding-inline: 0;
    background: transparent;
  }

  .site-footer {
    align-items: start;
  }
}

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

  .reveal,
  .reveal-image {
    opacity: 1;
    transform: none;
  }
}
