:root {
  --navy: #050b3a;
  --navy-2: #0a1559;
  --navy-3: #122079;
  --sky: #38bdf8;
  --sky-ink: #0369a1;
  --sky-2: #7dd3fc;
  --sky-soft: #e0f2fe;
  --gold: #fbbf24;
  --ink: #0b1220;
  --muted: #5b6478;
  --line: #e6e9f2;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --white: #ffffff;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(5, 11, 58, .08);
  --shadow: 0 18px 50px rgba(5, 11, 58, .14);
  --shadow-lg: 0 30px 80px rgba(5, 11, 58, .22);
  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Sora", "Inter", sans-serif;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--navy);
}

p { margin: 0 0 1rem; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: "Sora", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sky-ink);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--sky-ink);
  border-radius: 2px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }

.section:nth-of-type(odd) {
  background-image:
    radial-gradient(760px 360px at 90% 0%, rgba(56, 189, 248, .08), transparent 65%);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.section-head { max-width: 640px; margin: 0 0 56px; }

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }

.section-head p { color: var(--muted); font-size: 1.08rem; }

/* Buttons */
.btn {
  --bgc: var(--sky);
  --fgc: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: .98rem;
  background: var(--bgc);
  color: var(--fgc);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  box-shadow: 0 12px 28px rgba(56, 189, 248, .35);
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(56, 189, 248, .45); }

.btn.primary { --bgc: var(--sky); --fgc: var(--navy); }

.btn.gold { --bgc: var(--gold); --fgc: #3a2c02; box-shadow: 0 12px 28px rgba(251, 191, 36, .4); }
.btn.gold:hover { box-shadow: 0 20px 40px rgba(251, 191, 36, .5); }

.btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  box-shadow: none;
}
.btn.ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .7); }

.btn.dark { --bgc: var(--navy); --fgc: #fff; box-shadow: 0 12px 28px rgba(5, 11, 58, .3); }

.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  padding: 12px 0;
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.brand .logo-badge {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-3), var(--navy));
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.brand .logo-badge img { width: 30px; height: auto; }

.brand .brand-text { line-height: 1.05; white-space: nowrap; }
.brand .brand-text strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--navy);
  letter-spacing: -.01em;
}
.brand .brand-text span { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

/* Light heroes everywhere: header keeps navy branding until scrolled. */

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }

.nav-links a {
  display: block;
  padding: 10px 16px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  border-radius: 100px;
  transition: color .25s, background .25s;
  white-space: nowrap;
}
.site-header.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--sky); }
.site-header.scrolled .nav-links a:hover { background: var(--sky-soft); color: var(--navy-3); }
.nav-links a[aria-current="page"],
.nav-links a[data-current="true"] {
  background: var(--sky-soft);
  color: var(--navy-3);
}
.site-header.scrolled .nav-links a[aria-current="page"],
.site-header.scrolled .nav-links a[data-current="true"] {
  background: var(--sky-soft);
  color: var(--navy-3);
}
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-parent::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
}
.has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  display: grid;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-submenu a {
  color: var(--navy);
  border-radius: 12px;
  padding: 10px 12px;
  white-space: nowrap;
}
.nav-submenu a:hover,
.nav-submenu a[aria-current="page"] {
  background: var(--sky-soft);
  color: var(--navy-3);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 20px; font-size: .9rem; white-space: nowrap; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: none; background: var(--bg-soft);
  border-radius: 12px; cursor: pointer;
  position: relative;
}
.site-header.scrolled .nav-toggle { background: var(--bg-soft); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; position: absolute; left: 13px; right: 13px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
}
.site-header.scrolled .nav-toggle span,
.site-header.scrolled .nav-toggle::before,
.site-header.scrolled .nav-toggle::after { background: var(--navy); }
.nav-toggle span { top: 22px; }
.nav-toggle::before { top: 16px; }
.nav-toggle::after { top: 28px; }

/* Hero */
.hero {
  position: relative;
  padding: 160px 0 36px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.22) 52%, transparent),
    radial-gradient(1100px 560px at 80% -10%, rgba(135, 206, 235, .55), transparent 60%),
    radial-gradient(800px 460px at 5% 110%, rgba(125, 211, 252, .35), transparent 55%),
    linear-gradient(165deg, #f2faff 0%, #dcf0fb 55%, #c7e8fa 100%);
  color: var(--navy);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 32, 121, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 121, .045) 1px, transparent 1px),
    radial-gradient(rgba(18, 32, 121, .06) 1px, transparent 1px);
  background-size: 88px 88px, 88px 88px, 26px 26px;
  mask-image: linear-gradient(to bottom, transparent, black 40%, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(18, 32, 121, .12);
  border-radius: 100px;
  font-size: .82rem; font-weight: 600;
  color: var(--navy-3);
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 4px rgba(22, 163, 74, .2); }

.hero h1 {
  color: var(--navy);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #0ea5e9, #1e3a8a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero p.lead { font-size: 1.18rem; color: #3a4763; max-width: 520px; margin-bottom: 34px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tags span {
  font-size: .82rem; font-weight: 600;
  padding: 7px 14px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(18, 32, 121, .14);
  border-radius: 100px;
  color: var(--navy-3);
}

.hero .btn.ghost { color: var(--navy-3); border-color: rgba(18, 32, 121, .25); }
.hero .btn.ghost:hover { background: rgba(18, 32, 121, .06); border-color: rgba(18, 32, 121, .45); }

/* Hero visual card */
.hero-visual { position: relative; }

.hero-collage {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}
.hero-collage::before {
  content: "";
  position: absolute;
  inset: 48px 36px 38px 46px;
  border-radius: 42px;
  background:
    radial-gradient(420px 260px at 75% 16%, rgba(251, 191, 36, .26), transparent 65%),
    linear-gradient(145deg, rgba(5, 11, 58, .12), rgba(56, 189, 248, .22));
  transform: rotate(-4deg);
  z-index: -1;
}
.hero-shot {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 7px solid rgba(255,255,255,.92);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shot-main {
  inset: 30px 54px 112px 16px;
  transform: rotate(-2deg);
}
.hero-shot-mini {
  right: 0;
  top: 0;
  width: 42%;
  height: 190px;
  transform: rotate(5deg);
}
.hero-shot-club {
  right: 18px;
  bottom: 36px;
  width: 46%;
  height: 210px;
  transform: rotate(3deg);
}
.hero-combo-card {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: minmax(220px, auto) 1px 1fr;
  align-items: center;
  gap: 20px 24px;
  border: 1px solid rgba(18, 32, 121, .12);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-combo-top {
  display: grid;
  gap: 6px;
}
.mini-kicker {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--sky-ink);
  font-family: "Sora", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-combo-top strong {
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}
.hero-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.hero-action-links a {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: .82rem;
  font-weight: 700;
}
.hero-action-links a:nth-child(2) { background: var(--bg-soft); color: var(--navy-3); }

.hero-combo-divider {
  align-self: stretch;
  width: 1px;
  background: rgba(18, 32, 121, .1);
}
.hero-combo-sponsors {
  display: grid;
  gap: 8px;
}
.hero-sponsor-label {
  color: var(--muted);
  font-family: "Sora", sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-sponsor-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}
.hero-sponsor-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 8px;
  border: 1px solid rgba(18, 32, 121, .08);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s;
}
.hero-sponsor-logos a:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, .45);
}
.hero-sponsor-logos picture { display: contents; }
.hero-sponsor-logos img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: 34px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}
.hero-card .crest {
  width: 110px; height: 110px; margin: 0 auto 18px;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 35%, var(--navy-3), var(--navy) 72%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  box-shadow: inset 0 0 30px rgba(56,189,248,.35);
}
.hero-card .crest img { width: 92px; }
.hero-card h3 { color: #fff; text-align: center; font-size: 1.3rem; margin-bottom: 4px; }
.hero-card .sub { text-align: center; color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 24px; }

.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.countdown .unit {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  padding: 14px 6px;
  text-align: center;
}
.countdown .num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.7rem; color: #fff; display: block; }
.countdown .lbl { font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }

.floating-pill {
  position: absolute;
  background: #fff;
  color: var(--navy);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  font-family: "Sora", sans-serif; font-weight: 700; font-size: .9rem;
  animation: float 5s ease-in-out infinite;
}
.floating-pill .ic { font-size: 1.3rem; }
.floating-pill.one { top: -22px; left: -26px; }
.floating-pill.two { bottom: -22px; right: -20px; animation-delay: 1.2s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Marquee */
.marquee {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
}
.marquee-track { display: flex; gap: 48px; width: max-content; animation: scroll 26s linear infinite; }
.marquee-track span { font-family: "Sora", sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after { content: "●"; color: var(--sky); font-size: .6rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* Stats */
.stats {
  background:
    radial-gradient(800px 380px at 14% 18%, rgba(56, 189, 248, .18), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.season-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) 1.25fr;
  gap: 28px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(3, 105, 161, .15);
  border-radius: 34px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(56, 189, 248, .5), rgba(251, 191, 36, .32)) border-box;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.season-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,.2), transparent 68%);
  pointer-events: none;
}
.season-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(12px, 2vw, 22px);
}
.season-intro h2 { font-size: clamp(1.75rem, 3.2vw, 2.55rem); }
.season-intro p { color: var(--muted); margin-bottom: 24px; }
.season-intro .btn { width: fit-content; }
.season-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat .num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--navy); line-height: 1; }
.stat .num .plus { color: var(--sky); }
.stat .label { color: var(--muted); font-weight: 600; margin-top: 6px; }
.season-facts .stat {
  display: grid;
  align-content: center;
  min-height: 132px;
  padding: 22px 18px;
}
.season-facts .stat .num { font-size: clamp(2rem, 3vw, 2.55rem); }
.season-essentials {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.season-essentials a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.season-essentials a:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, .45);
  box-shadow: var(--shadow);
}
.season-essentials .icon {
  width: 24px;
  height: 24px;
  padding: 10px;
  box-sizing: content-box;
  border-radius: 14px;
  background: var(--sky-soft);
  color: var(--sky-ink);
}
.season-essentials strong {
  display: block;
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: .96rem;
  margin-bottom: 3px;
}
.season-essentials span {
  color: var(--muted);
  font-size: .9rem;
}

/* Programs */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.program-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px 28px 30px;
  overflow: hidden;
  color: #fff;
  min-height: 400px;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  box-shadow: var(--shadow);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-card .pc-photo {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.program-card picture.pc-photo { display: block; }
.program-card .pc-photo img { width: 100%; height: 100%; object-fit: cover; }
.program-card:hover .pc-photo { transform: scale(1.06); }
.program-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(5,11,58,.94) 8%, rgba(5,11,58,.6) 42%, rgba(5,11,58,.08) 100%);
}
.program-card .pc-body { position: relative; }
.program-card .pc-age {
  font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sky-2); margin-bottom: 8px;
}
.program-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.program-card p { color: rgba(255,255,255,.85); font-size: .96rem; }
.program-card .pc-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: "Sora", sans-serif; font-weight: 700; font-size: .92rem;
  color: #fff; margin-top: 16px;
}
.program-card .pc-link .arrow { transition: transform .35s var(--ease); }
.program-card:hover .pc-link .arrow { transform: translateX(5px); }

/* New to football */
.new-football { background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.new-football-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.new-football-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.new-football-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.new-football-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.new-football-card p { color: var(--muted); margin: 0; font-size: .94rem; }
.new-football-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Values */
.values { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.values::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 90% 0, rgba(56,189,248,.18), transparent 60%);
}
.values .section-head h2 { color: #fff; }
.values .section-head p { color: rgba(255,255,255,.72); }
.values-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: background .35s, transform .35s var(--ease), border-color .35s;
}
.value:hover { background: rgba(255,255,255,.09); transform: translateY(-5px); border-color: rgba(56,189,248,.5); }
.value .v-ic {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: linear-gradient(150deg, var(--sky), var(--navy-3));
  margin-bottom: 16px;
}
.value h4 { color: #fff; font-size: 1.12rem; margin-bottom: 6px; }
.value p { color: rgba(255,255,255,.7); font-size: .92rem; margin: 0; }

/* Volunteer */
.volunteer {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: clamp(48px, 6vw, 80px) 0;
}
.volunteer-card {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.2fr;
  gap: 24px;
  align-items: center;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(3, 105, 161, .14);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.volunteer-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.volunteer-copy h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 6px; line-height: 1.15; }
.volunteer-copy p { color: var(--muted); margin-bottom: 14px; font-size: .95rem; }
.volunteer-copy .hero-cta { margin: 0; }
.volunteer-roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: start;
  align-content: center;
}
.volunteer-roles article {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.volunteer-roles strong {
  display: block;
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: .98rem;
  margin-bottom: 6px;
}
.volunteer-roles span { color: var(--muted); font-size: .9rem; }

/* About / split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy), var(--navy-3));
  aspect-ratio: 4/3.4;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.about-media .frame::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.about-media .frame img { width: 58%; position: relative; }
.about-media .frame.photo { aspect-ratio: 4/3.4; }
.about-media .frame.photo::before { display: none; }
.about-media .frame.photo picture,
.about-media .frame.photo img { width: 100%; height: 100%; object-fit: cover; }
.about-media .badge-est {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--gold); color: #3a2c02;
  border-radius: 20px; padding: 18px 24px;
  box-shadow: var(--shadow);
  font-family: "Sora", sans-serif; text-align: center;
}
.about-media .badge-est strong { display: block; font-size: 1.8rem; line-height: 1; }
.about-media .badge-est span { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.about-list { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; }
.about-list .check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px;
  background: var(--sky-soft); color: var(--navy-3);
  display: grid; place-items: center; font-weight: 800; font-size: .9rem;
}
.about-list li span.txt { color: var(--ink); font-weight: 500; }
.about-highlights {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
}
.about-highlights div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
}
.about-highlights strong {
  display: block;
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: .95rem;
  margin-bottom: 2px;
}
.about-highlights span { color: var(--muted); font-size: .92rem; }

/* CTA banner */
.cta-band { padding: 0 0 clamp(64px,9vw,120px); }
.cta-inner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  background:
    radial-gradient(700px 400px at 85% 20%, rgba(56,189,248,.4), transparent 60%),
    linear-gradient(150deg, var(--navy-3), var(--navy));
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
}
.cta-inner h2 { position: relative; color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); }
.cta-inner p { position: relative; color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-inner .hero-cta { position: relative; justify-content: center; margin: 0; }

/* Site-wide sponsor strip */
.page-sponsor-strip {
  padding: 30px 0;
  background:
    radial-gradient(520px 220px at 90% 0%, rgba(56, 189, 248, .16), transparent 65%),
    linear-gradient(180deg, #f8fcff 0%, #eef8fe 100%);
  border-top: 1px solid rgba(18, 32, 121, .08);
}
.page-sponsor-strip .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.page-sponsor-kicker {
  color: var(--muted);
  font-family: "Sora", sans-serif;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.page-sponsor-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.page-sponsor-logos a {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid rgba(18, 32, 121, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.page-sponsor-logos a:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, .45);
  box-shadow: 0 14px 30px rgba(18, 32, 121, .1);
}
.page-sponsor-logos picture { display: grid; place-items: center; }
.page-sponsor-logos img {
  max-width: 150px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Footer */
.site-footer { background: #03061f; color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand .brand-text strong { color: #fff; }
.footer-brand .brand .brand-text span { color: rgba(255,255,255,.55); }
.footer-brand p { font-size: .92rem; max-width: 300px; }
.footer-col h5 {
  color: #fff; font-family: "Sora", sans-serif; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { font-size: .94rem; transition: color .25s; }
.footer-col a:hover { color: var(--sky); }
.social { display: flex; gap: 12px; margin-top: 6px; }
.social a {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #fff;
  transition: background .3s, transform .3s;
}
.social a:hover { background: var(--sky); color: var(--navy); transform: translateY(-3px); }
.social .icon { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: 50px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .84rem;
}

/* Page hero (subpages) */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background:
    radial-gradient(1100px 560px at 80% -10%, rgba(135, 206, 235, .55), transparent 60%),
    radial-gradient(800px 460px at 5% 110%, rgba(125, 211, 252, .35), transparent 55%),
    linear-gradient(165deg, #f2faff 0%, #dcf0fb 55%, #c7e8fa 100%);
  color: var(--navy);
  text-align: center;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(18, 32, 121, .06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, transparent, black 40%, transparent);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .eyebrow { justify-content: center; color: var(--sky-ink); }
.page-hero .eyebrow::before { background: var(--sky-ink); }
.page-hero h1 { color: var(--navy); font-size: clamp(2.4rem, 5.5vw, 3.8rem); margin: 14px 0 16px; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.12rem; }

/* Content blocks (subpages) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.35rem; color: var(--navy-3); margin-top: 1.4em; }
.prose p { color: #2c3344; font-size: 1.06rem; }
.prose strong { color: var(--navy); }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.gear-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm);
}
.info-card .ic { font-size: 1.6rem; margin-bottom: 10px; }
.info-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p { font-size: .92rem; color: var(--muted); margin: 0; }

.quote-card {
  background: var(--bg-soft);
  border-left: 4px solid var(--sky);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 30px 34px;
  margin: 36px 0;
}
.quote-card p { font-style: italic; color: #2c3344; font-size: 1.08rem; }
.quote-card .who { font-family: "Sora", sans-serif; font-weight: 700; color: var(--navy); font-style: normal; }
.quote-card .who span { display: block; font-weight: 500; font-size: .85rem; color: var(--muted); }

/* Register form */
.reg-intro { padding-bottom: 42px; }
.reg-contact { padding-top: 42px; }
.reg-pathways,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.reg-pathway,
.faq-card,
.reg-help {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.reg-pathway {
  display: grid;
  gap: 8px;
}
.reg-pathway strong {
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}
.reg-pathway span,
.faq-card p,
.reg-help p {
  color: var(--muted);
  margin: 0;
}
.reg-help {
  margin-top: 24px;
  background: var(--bg-soft);
}
.reg-help h3,
.faq-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.reg-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: start; }
.reg-aside .step {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.reg-aside .step:last-child { border-bottom: none; }
.reg-aside .step .n {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 12px;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; font-family: "Sora", sans-serif; font-weight: 800;
}
.reg-aside .step h4 { margin: 0 0 2px; font-size: 1.05rem; }
.reg-aside .step p { margin: 0; color: var(--muted); font-size: .92rem; }

.reg-form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-family: "Sora", sans-serif; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: var(--bg-soft);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sky); background: #fff;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.reg-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: .82rem; color: var(--muted); text-align: center; margin: 14px 0 0; }
.form-success {
  display: none; text-align: center; padding: 20px;
  background: var(--sky-soft); border-radius: 14px; color: var(--navy-3);
  font-weight: 600; margin-top: 16px;
}
.form-success.show { display: block; }

@media (max-width: 860px) {
  .reg-layout,
  .reg-pathways,
  .faq-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

/* Reveal animation */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* Icons */
.icon {
  width: 1.15em; height: 1.15em;
  display: inline-block; vertical-align: -0.18em;
  fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* Hero photo redesign */
.hero-photo { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.16);
  aspect-ratio: 4 / 3.5;
}
.hero-frame picture,
.hero-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,11,58,.55));
}
.crest-badge {
  position: absolute; top: -22px; right: -18px;
  width: 86px; height: 86px; z-index: 3;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-3), var(--navy));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.crest-badge img { width: 60px; }
.hero-stat {
  position: absolute; left: -26px; bottom: -24px; z-index: 3;
  background: #fff; color: var(--navy);
  border-radius: 18px; padding: 16px 22px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
  animation: float 5.5s ease-in-out infinite;
}
.hero-stat .hs-ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, var(--sky), var(--navy-3));
}
.hero-stat .hs-ic .icon { width: 24px; height: 24px; }
.hero-stat strong { display: block; font-family: "Sora", sans-serif; font-size: 1.35rem; line-height: 1; }
.hero-stat span { font-size: .8rem; color: var(--muted); }

.floating-pill .icon { width: 20px; height: 20px; color: var(--sky); }

.hero-tags span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-tags .icon { width: 18px; height: 18px; }

/* Section icons (programs / values / cards) */
.pc-icon .icon { width: 28px; height: 28px; }
.value .v-ic .icon { width: 24px; height: 24px; color: #fff; }
.info-card .ic .icon { width: 30px; height: 30px; color: var(--navy-3); }
.about-list .check .icon { width: 16px; height: 16px; stroke-width: 2.6; }

/* Gallery */
#gallery {
  background:
    radial-gradient(900px 460px at 0% 10%, rgba(125, 211, 252, .18), transparent 60%),
    #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-grid figure {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: var(--navy);
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,11,58,.08), rgba(5,11,58,.72));
  opacity: .72; transition: opacity .4s;
}
.gallery-grid figure:hover::after { opacity: .92; }
.gallery-grid figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  color: #fff; font-family: "Sora", sans-serif; font-weight: 600; font-size: .9rem;
  opacity: 1; transform: none;
  transition: opacity .4s, transform .4s;
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: none; }
.gallery-chip {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--navy-3);
  font-family: "Sora", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(5,11,58,.16);
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* News */
.news {
  background:
    radial-gradient(700px 360px at 85% 0%, rgba(56, 189, 248, .16), transparent 60%),
    var(--bg-soft);
}
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.news-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.news-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.news-thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.news-meta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: "Sora", sans-serif; font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--sky-ink);
  margin-bottom: 12px;
}
.news-meta .tag {
  background: var(--sky-soft); color: var(--navy-3);
  padding: 3px 10px; border-radius: 100px; letter-spacing: .04em;
}
.news-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.news-card p { color: var(--muted); font-size: .95rem; flex-grow: 1; }
.news-link {
  display: inline-flex; align-items: center; gap: .45rem; margin-top: 14px;
  font-family: "Sora", sans-serif; font-weight: 700; font-size: .9rem; color: var(--navy-3);
}
.news-link .icon { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.news-card:hover .news-link .icon { transform: translateX(4px); }
.news-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 100%;
}
.news-featured .news-thumb { aspect-ratio: auto; min-height: 100%; }
.news-featured .news-body {
  padding: clamp(28px, 4vw, 40px);
  justify-content: center;
}
.news-featured h3 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
.news-featured p { font-size: 1.02rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,11,58,.88);
  display: none; align-items: center; justify-content: center;
  padding: 30px; backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close {
  position: absolute; top: 22px; right: 26px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none; color: #fff;
  font-size: 1.6rem; cursor: pointer;
}
.lightbox .lb-close:hover { background: rgba(255,255,255,.24); }

.mobile-action-bar {
  display: none;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 540px; width: 100%; margin-inline: auto; }
  .hero-collage { min-height: 520px; }
  .hero-combo-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero-combo-divider { width: auto; height: 1px; }
  .season-panel { grid-template-columns: 1fr; }
  .season-facts { grid-template-columns: repeat(2, 1fr); }
  .season-essentials { grid-column: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .new-football-grid { grid-template-columns: repeat(2, 1fr); }
  .volunteer-card { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .about-media { max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .info-cards { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .news-featured { grid-column: auto; grid-template-columns: 1fr; }
  .news-featured .news-thumb { aspect-ratio: 16 / 10; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .g-wide { grid-column: span 2; }
  .hero-photo { max-width: 460px; }
}

@media (max-width: 1400px) and (min-width: 1025px) {
  .nav-links { gap: 2px; }
  .nav-links a { padding-inline: 10px; font-size: .86rem; }
  .nav-cta .btn { padding-inline: 16px; }
  .nav { gap: 14px; }
}

@media (max-width: 1120px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: calc(100% + 10px); left: 16px; right: 16px;
    background: #fff; padding: 14px; border-radius: 18px;
    box-shadow: var(--shadow); gap: 4px;
  }
  .nav-links.open a { color: var(--navy); }
  .nav-links.open .nav-item { position: static; }
  .nav-links.open .has-submenu::after { display: none; }
  .nav-links.open .nav-submenu {
    position: static;
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    margin: 2px 0 6px 12px;
    padding: 4px 0 4px 12px;
    border: 0;
    border-left: 2px solid var(--sky-soft);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-links.open .nav-submenu a {
    padding: 9px 12px;
    font-size: .9rem;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  body { padding-bottom: 76px; }
  .hero { padding-bottom: 32px; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 3.45rem); }
  .hero-cta { margin-bottom: 26px; }
  .hero-collage { min-height: 430px; }
  .hero-collage::before { inset: 42px 20px 50px; border-radius: 30px; }
  .hero-shot { border-width: 5px; border-radius: 22px; }
  .hero-shot-main { inset: 28px 28px 108px 0; }
  .hero-shot-mini { width: 43%; height: 140px; }
  .hero-shot-club { right: 0; width: 48%; height: 150px; bottom: 48px; }
  .hero-combo-card { padding: 16px; }
  .hero-sponsor-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .crest-badge { width: 70px; height: 70px; border-radius: 20px; right: -6px; top: 10px; }
  .crest-badge img { width: 50px; }
  .season-panel { border-radius: 24px; padding: 20px; }
  .season-facts,
  .season-essentials { grid-template-columns: 1fr; }
  .new-football-grid { grid-template-columns: 1fr; }
  .volunteer-roles { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .page-sponsor-strip .container { grid-template-columns: 1fr; gap: 14px; }
  .page-sponsor-kicker { text-align: center; }
  .page-sponsor-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-pill { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .g-tall { grid-row: span 2; }
  .hero-stat { left: 50%; transform: translateX(-50%); right: auto; animation: none; }
  .mobile-action-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
  }
  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 16px;
    background: var(--navy);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: .88rem;
  }
  .mobile-action-bar a:first-child {
    background: var(--sky);
    color: var(--navy);
  }
  .mobile-action-bar .icon {
    width: 18px;
    height: 18px;
  }
}

/* Accessibility: visible keyboard focus */
a:focus-visible,
button:focus-visible,
.program-card:focus-visible,
.btn:focus-visible,
.news-link:focus-visible,
.social a:focus-visible,
.gallery-grid button:focus-visible,
.lb-close:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 6px;
}
.site-header.scrolled a:focus-visible,
.site-header.scrolled .nav-toggle:focus-visible { outline-color: var(--navy-3); }

/* Gallery items are buttons for keyboard access */
.gallery-grid button.g-item {
  appearance: none; border: 0; padding: 0; margin: 0;
  background: none; cursor: pointer; font: inherit; color: inherit;
  display: block; width: 100%; height: 100%;
}
.gallery-grid picture,
.news-thumb picture { display: block; width: 100%; height: 100%; }
.gallery-grid picture img,
.news-thumb picture img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox dialog */

/* Season essentials */
.essentials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.ess-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ess-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.ess-ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--sky-soft); color: var(--sky-ink);
}
.ess-ic .icon { width: 24px; height: 24px; }
.ess-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.ess-card p { color: var(--muted); font-size: .92rem; }
.ess-card a { color: var(--sky-ink); font-weight: 600; }
.ess-card.highlight {
  background: linear-gradient(155deg, var(--navy-3), var(--navy));
  border-color: transparent;
}
.ess-card.highlight h3 { color: #fff; }
.ess-card.highlight p { color: rgba(255,255,255,.82); }
.ess-card.highlight a { color: var(--sky-2); }
.ess-card.highlight .ess-ic { background: rgba(255,255,255,.12); color: var(--sky-2); }

/* Homepage fixtures preview */
.home-fixtures {
  background:
    radial-gradient(700px 380px at 20% 0%, rgba(56, 189, 248, .18), transparent 60%),
    var(--bg-soft);
}
.home-fixtures-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow-sm);
}
.home-fixtures-list {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}
.home-fixture-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.home-fixture-chip {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--sky-ink);
  font-family: "Sora", sans-serif;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.home-fixture-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.home-fixture-card h3 span { color: var(--muted); font-weight: 600; }
.home-fixture-card p,
.fixture-loading {
  color: var(--muted);
  margin: 0;
  font-size: .94rem;
}
.fixture-loading a { color: var(--sky-ink); font-weight: 700; }
.home-fixture-card time {
  display: grid;
  gap: 2px;
  text-align: right;
  color: var(--muted);
  font-size: .85rem;
  white-space: nowrap;
}
.home-fixture-card time strong {
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
}
.home-fixtures-cta { width: fit-content; }

/* Practical club info */
.club-practical { background: #fff; }
.practical-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.practical-card,
.resource-grid a {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.practical-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.practical-card p { color: var(--muted); margin-bottom: 14px; }
.practical-card a,
.resource-grid a span {
  color: var(--sky-ink);
  font-weight: 700;
}
.resource-grid { margin-top: 22px; grid-template-columns: repeat(2, 1fr); }
.resource-grid a {
  display: grid;
  gap: 4px;
  background: #fff;
}
.resource-grid strong { color: var(--navy); font-family: "Sora", sans-serif; }
.resource-grid span { font-size: .9rem; overflow-wrap: anywhere; }

/* Ground status */
.ground-status { padding-top: 0; }
.ground-status-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(3, 105, 161, .18);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  background:
    radial-gradient(520px 280px at 95% 10%, rgba(56, 189, 248, .22), transparent 65%),
    #fff;
  box-shadow: var(--shadow-sm);
}
.ground-status-card h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-top: 8px; }
.ground-status-card p { max-width: 720px; color: var(--muted); margin: 0; }
.ground-status-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* Find us */
.findus-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: stretch;
}
.findus-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
  border: 1px solid var(--line);
}
.findus-map { position: relative; background: var(--sky-soft); }
.findus-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; opacity: 0; transition: opacity .35s var(--ease); }
.findus-map.map-ready iframe { opacity: 1; }
.map-skeleton {
  position: absolute; inset: 0;
  background-color: var(--sky-soft);
  background-image:
    linear-gradient(rgba(18, 32, 121, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 121, .05) 1px, transparent 1px);
  background-size: 38px 38px, 38px 38px;
}
.map-skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  animation: mapShimmer 1.6s linear infinite;
}
@keyframes mapShimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.contact-list { list-style: none; display: grid; gap: 18px; margin-bottom: 28px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ci {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--sky-soft); color: var(--sky-ink);
}
.contact-list .ci .icon { width: 22px; height: 22px; }
.contact-list strong { display: block; font-family: "Sora", sans-serif; font-size: 1rem; margin-bottom: 2px; }
.contact-list span, .contact-list a { color: var(--muted); font-size: .95rem; }
.contact-list a:hover { color: var(--sky-ink); }
.findus-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Sponsors */
.sponsors { background: var(--bg-soft); }
.sponsor-row {
  display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center;
  gap: 24px;
}
.sponsor {
  margin: 0;
  flex: 1 1 200px; max-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.sponsor a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.sponsor img {
  max-width: 180px; max-height: 64px; width: auto; height: auto;
  object-fit: contain;
  opacity: .96;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.sponsor:hover img { opacity: 1; transform: scale(1.04); }
.sponsor picture { display: grid; place-items: center; width: 100%; height: 100%; }
.sponsor-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 30px auto 0;
  max-width: 860px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(3, 105, 161, .18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(520px 280px at 95% 0%, rgba(56, 189, 248, .2), transparent 65%),
    #fff;
  box-shadow: var(--shadow-sm);
}
.sponsor-cta h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  margin: 8px 0 8px;
}
.sponsor-cta p {
  color: var(--muted);
  margin: 0;
  max-width: 560px;
}
.sponsor-cta .btn {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .essentials-grid { grid-template-columns: repeat(2, 1fr); }
  .practical-grid { grid-template-columns: 1fr; }
  .findus-grid { grid-template-columns: 1fr; }
  .ground-status-card { grid-template-columns: 1fr; }
  .ground-status-actions { justify-content: flex-start; }
  .sponsor-cta { grid-template-columns: 1fr; }
  .sponsor-cta .btn { width: fit-content; }
}
@media (max-width: 560px) {
  .essentials-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .home-fixture-card { grid-template-columns: 1fr; }
  .home-fixture-card time { text-align: left; }
  .sponsor { padding: 18px 22px; }
  .sponsor img { max-width: 160px; }
  .sponsor-cta .btn { width: 100%; justify-content: center; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Fixtures & Results page
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.fx-toolbar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 28px;
}
.fx-tabs { display: inline-flex; flex: 0 0 auto; min-width: 0; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px; padding: 5px; }
.fx-tab {
  appearance: none; border: 0; cursor: pointer;
  font-family: "Sora", sans-serif; font-weight: 700; font-size: .92rem;
  padding: 9px 22px; border-radius: 100px; color: var(--navy-3); background: transparent;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.fx-tab:hover { color: var(--navy); background: rgba(3, 105, 161, .08); }
.fx-tab.is-active { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }

.fx-controls {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}
.fx-controls .fx-updated { margin-left: auto; }
.fx-quick {
  display: inline-flex;
  flex: 0 0 auto;
  width: max-content;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.fx-quick[hidden] { display: none; }
.fx-quick-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 13px;
  white-space: nowrap;
}
.fx-quick-btn:hover { background: var(--sky-soft); color: var(--navy-3); }
.fx-quick-btn.is-active { background: var(--navy); color: #fff; }
.fx-filter { flex: 0 1 160px; min-width: 0; }
.fx-filter select {
  width: 100%;
  min-width: 140px;
  font-family: "Inter", sans-serif; font-size: .92rem; font-weight: 600; color: var(--navy);
  padding: 11px 38px 11px 16px; border: 1px solid var(--line); border-radius: 100px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23122079' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  -webkit-appearance: none; appearance: none; cursor: pointer; max-width: none;
}
.fx-filter select:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.fx-updated {
  display: inline-flex; align-items: center; gap: .45rem;
  justify-content: flex-start;
  font-size: .84rem; color: var(--muted); font-weight: 600;
  background: none; border: none; padding: 6px 10px; border-radius: 100px;
  cursor: pointer; font-family: inherit;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.fx-updated:hover { background: var(--sky-soft); color: var(--navy-3); }
.fx-updated:focus-visible { outline: 2px solid var(--sky-ink); outline-offset: 2px; }
.fx-updated[disabled] { cursor: progress; opacity: .8; }
.fx-updated .icon { width: 16px; height: 16px; color: var(--sky-ink); transition: transform .2s; }
.fx-updated.is-spinning .icon { animation: fx-spin .9s linear infinite; }
@keyframes fx-spin { to { transform: rotate(360deg); } }

.fx-daygroup {
  font-family: "Sora", sans-serif; font-size: 1.02rem; color: var(--navy-3);
  margin: 30px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.fx-daygroup:first-child { margin-top: 0; }

.fx-list { display: block; }
.fx-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fx-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.fx-card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 12px; }
.fx-chip {
  font-family: "Sora", sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .03em;
  text-transform: uppercase; color: var(--sky-ink); background: var(--sky-soft);
  padding: 4px 10px; border-radius: 100px;
}
.fx-comp { font-size: .8rem; color: var(--muted); font-weight: 600; }

.fx-body { display: flex; align-items: center; gap: 18px; }
.fx-teams { flex: 1; min-width: 0; display: grid; gap: 8px; }
.fx-team { display: flex; align-items: center; gap: 12px; min-width: 0; }
.fx-team-name { font-weight: 600; color: var(--ink); font-size: .98rem; flex: 1; min-width: 0; }
.fx-team.is-hills .fx-team-name { color: var(--navy-3); font-weight: 800; }
.fx-logo { width: 30px; height: 30px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.fx-logo--ph { display: grid; place-items: center; background: var(--bg-soft); border: 1px solid var(--line); color: var(--sky-ink); }
.fx-logo--ph .icon { width: 18px; height: 18px; }
.fx-score {
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--navy);
  width: 28px; text-align: center; flex-shrink: 0;
}

.fx-aside { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; text-align: right; }
.fx-when { display: inline-flex; align-items: center; gap: .4rem; font-family: "Sora", sans-serif; font-weight: 700; font-size: .9rem; color: var(--navy); white-space: nowrap; }
.fx-when .icon { width: 16px; height: 16px; color: var(--sky-ink); }
.fx-oc { font-family: "Sora", sans-serif; font-weight: 800; font-size: .78rem; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; }
.fx-oc--W { background: #16a34a; }
.fx-oc--L { background: #dc2626; }
.fx-oc--D { background: #94a3b8; }

.fx-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.fx-ground { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--muted); }
.fx-ground .icon { width: 15px; height: 15px; color: var(--sky-ink); }
.fx-cal {
  color: var(--sky-ink);
  font-size: .82rem;
  font-weight: 800;
}
.fx-cal:hover { color: var(--navy-3); text-decoration: underline; text-underline-offset: 3px; }
.fx-card:not(.is-result) .fx-foot:empty,
.fx-foot:empty { display: none; }

.fx-empty, .fx-status { color: var(--muted); padding: 12px 0; }
.fx-error {
  background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
  border-radius: var(--radius); padding: 18px 20px; font-size: .95rem;
}
.fx-error-detail { color: #b91c1c; opacity: .7; font-size: .82rem; }

@media (max-width: 1240px) {
  .fx-toolbar { gap: 16px; }
  .fx-tab { padding-inline: 16px; }
  .fx-quick-btn { padding-inline: 10px; }
  .fx-filter { flex-basis: 150px; }
  .fx-filter select { padding-left: 14px; padding-right: 34px; }
  .fx-updated { font-size: .8rem; padding-inline: 6px; }
}

@media (max-width: 940px) {
  .fx-toolbar { flex-wrap: wrap; justify-content: flex-start; }
  .fx-toolbar { align-items: stretch; }
  .fx-controls { flex-wrap: wrap; flex: 1 1 100%; justify-content: flex-start; gap: 12px; }
  .fx-filter { flex: 1 1 200px; }
  .fx-updated { margin-left: auto; }
}

@media (max-width: 880px) {
  .fx-quick { flex: 0 0 100%; justify-content: flex-start; }
  .fx-filter { flex: 1 1 calc(50% - 6px); }
  .fx-updated { flex: 0 0 100%; margin-left: 0; justify-content: flex-end; }
}

@media (max-width: 560px) {
  .fx-toolbar { align-items: stretch; }
  .fx-controls { flex-direction: column; flex-wrap: nowrap; align-items: stretch; }
  .fx-quick, .fx-filter, .fx-updated { flex: 0 0 auto; width: 100%; }
  .fx-quick { justify-content: center; }
  .fx-quick-btn { flex: 1; padding-inline: 8px; }
  .fx-filter select { max-width: none; }
  .fx-updated { margin-left: 0; justify-content: center; }
  .fx-body { flex-direction: column; align-items: stretch; gap: 12px; }
  .fx-aside { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; }
}
