/*
 * FJFC Custom Theme — Main Stylesheet
 * Mobile-first. Breakpoints: sm 640px | md 768px | lg 1024px | xl 1280px
 */

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700;900&family=Karla:wght@400;500;600&family=Barlow+Condensed:wght@400;600;700;800&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Brand colours */
  --red:         #db1d24;
  --red-light:   #ee8283;
  --red-dark:    #b01219;
  --dark:        #1f2933;
  --mid-dark:    #3e4c59;
  --mid:         #52606d;
  --light:       #7b8794;
  --border:      #e2e8f0;
  --bg:          #f9f9fb;
  --bg-alt:      #f3f4f7;
  --white:       #ffffff;
  --gradient:    linear-gradient(216deg, #db1d24 40%, #ee8283 100%);
  --success:     #22c55e;
  --warning:     #f59e0b;
  --danger:      #ef4444;

  /* Typography */
  --font-heading:   'Rubik', sans-serif;
  --font-body:      'Karla', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;

  /* Spacing */
  --section-pad-mobile: 48px 20px;
  --section-pad:        70px 24px;

  /* Radius */
  --radius:   6px;
  --radius-lg: 12px;

  /* Shadow */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow:    0 2px 12px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

  /* Nav height */
  --nav-h: 64px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY — MOBILE FIRST
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 8vw, 4rem); }
h2 { font-size: clamp(1.6rem, 5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--mid);
}

.divider {
  width: 48px;
  height: 4px;
  background: var(--red);
  border: none;
  display: block;
  margin: 12px 0 24px;
}

.divider--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container { padding: 0 28px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}

.section {
  padding: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .section { padding: var(--section-pad); }
}

.section--dark   { background: var(--dark); }
.section--alt    { background: var(--bg-alt); }
.section--white  { background: var(--white); }
.section--grey   { background: #f5f5f5; }
.section--red    { background: var(--gradient); }

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p { color: var(--white); }
.section--dark .lead { color: var(--light); }
.section--dark .eyebrow { color: var(--red-light); }
.section--dark .divider { background: var(--red); }

.section--red h1,
.section--red h2,
.section--red h3,
.section--red p { color: var(--white); }

/* Grid utilities */
.grid-2 { display: grid; gap: 24px; }
.grid-3 { display: grid; gap: 24px; }
.grid-4 { display: grid; gap: 24px; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  min-height: 48px; /* Touch target */
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(219,29,36,.35);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--red);
}

.btn--lg {
  font-size: 1rem;
  padding: 16px 36px;
  min-height: 54px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ============================================================
   SITE HEADER & NAV — MOBILE FIRST
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

/* WordPress admin bar pushes sticky header down */
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* Anchor link offset — keeps section headings clear of the sticky header */
h2[id] {
  scroll-margin-top: calc(var(--nav-h) + 32px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.site-logo__badge {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo__name {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-logo__tagline {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  color: var(--red-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hamburger button */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}

.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 24px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

/* Mobile nav drawer */
.nav-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
  overflow-y: auto;
  z-index: 99;
}

.nav-menu.is-open { display: flex; }

.nav-menu a {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: block;
  transition: color .2s, padding-left .2s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  color: var(--red-light);
  padding-left: 8px;
}

.nav-menu__footer {
  margin-top: auto;
  padding-top: 24px;
}

.nav-shop-link {
  font-weight: 700 !important;
  color: var(--red) !important;
}

.nav-menu__footer .btn { width: 100%; display: flex; justify-content: center; text-align: center; }

/* Mobile sub-menu */
.nav-menu .sub-menu {
  display: none;
  padding-left: 16px;
  margin: 0;
  list-style: none;
}
.nav-menu .sub-menu.is-open { display: block; }
.nav-menu .sub-menu a {
  font-size: 1rem;
  padding: 10px 0;
  color: rgba(255,255,255,.7);
}
.nav-menu .menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-menu .menu-item-has-children > a::after {
  content: '›';
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .2s;
}
.nav-menu .menu-item-has-children.is-open > a::after {
  transform: rotate(90deg);
}

/* Desktop nav */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    gap: 4px;
    overflow: visible;
    align-items: center;
  }

  .nav-menu a {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding: 8px 12px;
    border: none;
    color: rgba(255,255,255,.85);
  }

  .nav-menu a:hover,
  .nav-menu .current-menu-item > a {
    color: var(--white);
    padding-left: 12px;
  }

  .nav-menu__footer { display: none; }

  /* Desktop dropdown */
  .nav-menu li { position: relative; }

  .nav-menu .sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 240px;
    background: var(--dark);
    border-top: 3px solid var(--red);
    border-radius: 0 0 6px 6px;
    padding: 8px 0;
    z-index: 200;
    transition: opacity .2s, visibility .2s;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }

  .nav-menu li:hover > .sub-menu,
  .nav-menu li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu .sub-menu a {
    font-size: 0.75rem;
    padding: 10px 20px;
    border: none;
    display: block;
    color: rgba(255,255,255,.8);
    white-space: nowrap;
  }

  .nav-menu .sub-menu a:hover {
    color: var(--white);
    padding-left: 26px;
    background: rgba(255,255,255,.05);
  }

  .nav-menu .menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 0.7rem;
  }

  .nav-menu .menu-item-has-children.is-open > a::after {
    transform: none;
  }
}

/* ============================================================
   HERO — MOBILE FIRST
   ============================================================ */
.hero {
  background: var(--gradient);
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 20px 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(0,0,0,.15) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative football pattern */
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,.04);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__eyebrow span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__eyebrow .dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.2rem, 9vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.hero h1 em {
  font-style: normal;
  color: var(--white);
  opacity: 0.88;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

/* Mobile: shift hero focus left to show kids in red, not the sideline adult */
@media (max-width: 639px) {
  .hero { background-position: 35% center !important; }
}

@media (min-width: 640px) {
  .hero { padding: 80px 40px 60px; }
  .hero h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
  .hero__sub { font-size: 1.15rem; }
}

@media (min-width: 1024px) {
  .hero {
    min-height: calc(92vh - var(--nav-h));
    padding: 100px 80px;
  }
}

/* ============================================================
   INFO BAR
   ============================================================ */
.info-bar {
  background: var(--mid-dark);
  padding: 14px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.info-bar__inner {
  display: flex;
  gap: 28px;
  align-items: center;
  min-width: max-content;
  justify-content: center;
}

.info-bar__item {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.info-bar__item .icon { font-size: 0.9rem; }

/* ============================================================
   FEATURE CARDS (Why FJFC)
   ============================================================ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(219,29,36,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-card {
  background: var(--mid-dark);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background .2s, transform .2s;
  cursor: pointer;
}

.team-card:hover {
  background: var(--mid);
  transform: translateX(4px);
}

.team-card__badge {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.team-card__info { flex: 1; min-width: 0; }

.team-card__name {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.03em;
}

.team-card__ages {
  font-size: 0.8rem;
  color: var(--red-light);
  margin-top: 2px;
}

.team-card__desc {
  font-size: 0.85rem;
  color: var(--light);
  margin-top: 4px;
}

.team-card__arrow {
  color: var(--light);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg-alt);
}

.news-card__img--placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__meta {
  font-size: 0.75rem;
  color: var(--light);
  font-family: var(--font-condensed);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.news-card__title a {
  color: inherit;
}
.news-card__title a:hover { color: var(--red); }

.news-card__excerpt {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

.news-card__link {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.news-card__link:hover { color: var(--red-dark); gap: 8px; }
.news-card__link::after { content: '→'; transition: margin .2s; }

/* ============================================================
   FIELD STATUS WIDGET
   ============================================================ */
.field-status {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.field-status__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.field-status__label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
}

.status-badge {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.status-badge--open   { background: #dcfce7; color: #15803d; }
.status-badge--closed { background: #fee2e2; color: #b91c1c; }
.status-badge--query  { background: #fef9c3; color: #854d0e; }

.field-status__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.field-status__note {
  font-size: 0.875rem;
  color: var(--mid);
}

.field-status__updated {
  font-size: 0.75rem;
  color: var(--light);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* Field Status Bar - Compact Material Design */
.field-status-bar {
  background-color: #1f2933;
  border-bottom: 3px solid var(--red);
  padding: 0;
  margin-bottom: 48px;
}

.field-status-bar .container {
  padding: 10px 24px;
}

.field-status-bar__content {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  gap: 0;
  color: white;
  font-size: 0.875rem;
  width: 100%;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}

.field-status-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 1;
  min-width: 0;
}

.field-status-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.field-status-bar__icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.field-status-bar__section-status {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 16px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.field-status-bar__status-text {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 6px;
}

.field-status-bar__status-label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field-status-bar__status-dash {
  opacity: 0.5;
  margin: 0 2px;
}

.field-status-bar__status-value {
  font-weight: 700;
  font-size: 1rem;
}

.field-status-bar__section-location {
  flex: 1;
  -webkit-flex: 1;
  min-width: 0;
  text-decoration: none;
  color: white;
  transition: opacity 0.2s;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.field-status-bar__section-location:hover {
  opacity: 0.8;
}

.field-status-bar__location-label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}

.field-status-bar__location-content {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.field-status-bar__location-icon {
  color: var(--red);
  flex-shrink: 0;
}

.field-status-bar__time {
  gap: 6px;
  font-size: 0.8rem;
  opacity: 0.9;
}

.field-status-bar__time svg {
  color: var(--red);
  flex-shrink: 0;
}

.field-status-bar__live {
  background-color: #10b981;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-left: 4px;
}

.field-status-bar__pipe {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 12px;
  flex-shrink: 0;
  font-weight: 300;
}

.field-status-bar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0;
  border: none;
  background: none;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.field-status-bar__link:hover {
  opacity: 0.8;
}

.field-status-bar__link svg {
  flex-shrink: 0;
  color: var(--red);
}

/* Mobile responsive - field status bar */
@media (max-width: 767px) {
  .field-status-bar {
    margin-bottom: 32px;
  }

  .field-status-bar .container {
    padding: 12px 16px;
  }

  .field-status-bar__content {
    display: grid;
    display: -webkit-grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Row 1: Status */
  .field-status-bar__section-status {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    gap: 10px;
    grid-column: 1;
    text-align: center;
  }

  .field-status-bar__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }

  .field-status-bar__status-label {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.75;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .field-status-bar__status-text {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 4px;
  }

  .field-status-bar__status-dash {
    opacity: 0.5;
    margin: 0 2px;
  }

  .field-status-bar__status-value {
    font-size: 0.95rem;
  }

  /* Hide all pipes */
  .field-status-bar__pipe {
    display: none;
  }

  /* Row 2: Location */
  .field-status-bar__section-location {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    gap: 6px;
    padding: 0;
    grid-column: 1;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s;
    text-align: center;
    margin-bottom: 8px;
  }

  .field-status-bar__section-location:hover {
    opacity: 0.8;
  }

  .field-status-bar__location-label {
    display: none;
  }

  .field-status-bar__location-content {
    display: flex;
    display: -webkit-flex;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    gap: 6px;
    font-size: 0.85rem;
    max-width: 280px;
    text-align: center;
  }

  .field-status-bar__location-content span {
    line-height: 1.3;
  }

  .field-status-bar__location-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }

  /* Row 3: Time + Link on same line */
  .field-status-bar__time {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    grid-column: 1;
  }

  .field-status-bar__time svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }

  .field-status-bar__live {
    padding: 3px 6px;
    font-size: 0.65rem;
    margin-left: 0;
  }

  /* Create wrapper for time + link row */
  .field-status-bar__time,
  .field-status-bar__link {
    grid-column: 1;
    grid-row: 3;
  }

  .field-status-bar__time {
    justify-self: start;
    -webkit-justify-self: start;
  }

  .field-status-bar__link {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    padding: 0;
    border: none;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s;
    justify-self: end;
    -webkit-justify-self: end;
  }

  .field-status-bar__link:hover {
    opacity: 0.8;
  }

  .field-status-bar__link svg {
    width: 13px;
    height: 13px;
  }
}

/* ============================================================
   SPONSORS
   ============================================================ */
.sponsor-major-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.sponsor-major-label {
  font-family: var(--font-condensed);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.sponsor-major-row .sponsor-item {
  padding: 20px 48px;
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}
.sponsor-major-row .sponsor-item img {
  max-height: 72px;
  filter: none;
  opacity: 1;
}
.sponsor-major-row .sponsor-name-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.sponsor-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  transition: border-color .2s, box-shadow .2s;
}

.sponsor-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.sponsor-item img {
  max-height: 48px;
  width: auto;
  filter: grayscale(1);
  opacity: 1;
  transition: filter .3s, opacity .3s;
}

@media (max-width: 767px) {
  .sponsor-item img { filter: none; }
}
.sponsor-item:hover img {
  filter: none;
  opacity: 1;
}

.sponsor-placeholder {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sponsor-name-link {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
a.sponsor-name-link:hover { color: var(--red); }

.sponsor-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-dark);
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  transition: border-color .2s;
  min-height: 48px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--red);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

/* Contact form 7 overrides */
.wpcf7-form .form-input,
.wpcf7-form .form-textarea {
  width: 100%;
}

/* ============================================================
   POSTS — SINGLE & ARCHIVE
   ============================================================ */
.post-header {
  background: var(--gradient);
  padding: 48px 20px 40px;
  color: var(--white);
}

@media (min-width: 768px) {
  .post-header { padding: 64px 40px 56px; }
}

.post-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.post-meta {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px;
}

@media (min-width: 768px) {
  .post-content { padding: 56px 40px; }
}

.post-content h2, .post-content h3 { margin: 2rem 0 1rem; }
.post-content p { margin-bottom: 1.25rem; color: var(--mid-dark); }
.post-content ul, .post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--mid-dark);
}
.post-content li { margin-bottom: .4rem; }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-content blockquote {
  border-left: 4px solid var(--red);
  padding: 12px 20px;
  margin: 1.5rem 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--mid);
}

/* Archive */
.archive-header {
  padding: var(--section-pad-mobile);
  background: var(--gradient);
}
.archive-header h1, .archive-header p { color: var(--white); }

@media (min-width: 768px) {
  .archive-header { padding: var(--section-pad); }
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px 0;
}

.pagination a,
.pagination span {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  color: var(--mid-dark);
  transition: all .2s;
}

.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination .current { background: var(--red); border-color: var(--red); color: var(--white); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 48px 20px 24px;
}

@media (min-width: 768px) {
  .site-footer { padding: 64px 40px 32px; }
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 48px; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand {}

.footer-brand .site-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.9rem;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--mid-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: background .2s, transform .2s;
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--light);
  transition: color .2s, padding-left .2s;
  display: block;
}

.footer-col ul a:hover {
  color: var(--red-light);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--light);
  margin: 0;
}

.footer-bottom a { color: var(--red-light); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.not-found__number {
  font-family: var(--font-condensed);
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-red    { color: var(--red); }
.text-white  { color: var(--white); }
.text-light  { color: var(--light); }
.text-mid    { color: var(--mid); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-sm { margin-top: 16px; }
.mb-sm { margin-bottom: 16px; }
.mt-md { margin-top: 32px; }
.mb-md { margin-bottom: 32px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  z-index: 200;
}

.skip-link:focus { top: 0; }

/* ============================================================
   SECTION HEADINGS HELPER
   ============================================================ */
.section-heading { margin-bottom: 40px; }
.section-heading--center { text-align: center; }
.section-heading--center .divider { margin-left: auto; margin-right: auto; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
.hide-mobile  { display: none; }

@media (min-width: 768px) {
  .hide-mobile  { display: initial; }
  .hide-desktop { display: none; }
}

/* ============================================================
   HOMEPAGE RESPONSIVE LAYOUTS
   ============================================================ */

/* Teams section: stack on mobile, 2-col on desktop */
.teams-layout {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .teams-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 64px;
  }
}

/* Cards stack inside teams layout */
.team-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* News + field status: stack on mobile, 2/3 + 1/3 on desktop */
.news-status-layout {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .news-status-layout {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

/* Field status — home page row layout */
.field-status-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.field-status-row__intro h2 { margin-top: 8px; }
.field-status-row__intro p  { color: var(--mid); margin-top: 12px; font-size: 0.9rem; }
.text-link { color: var(--red); text-decoration: none; font-weight: 600; }
.text-link:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .field-status-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Field status — clickable link wrapper */
.field-status-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  transition: opacity 0.2s;
}
.field-status-link:hover { opacity: 0.85; }

/* Smooth scroll behaviour */
html {
  scroll-behavior: smooth;
}

/* ============================================================
   PREMIUM INTERACTIONS
   ============================================================ */

/* — Keyframes — */
@keyframes fjfcFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fjfcFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* — Hero load sequence (home page) — */
.hero__eyebrow {
  animation: fjfcFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.hero h1 {
  animation: fjfcFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.hero__sub {
  animation: fjfcFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}
.hero .btn-group {
  animation: fjfcFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

/* Inner page heroes are shorter — quicker stagger */
.hero--short .hero__eyebrow { animation-delay: 0.05s; }
.hero--short h1              { animation-delay: 0.15s; }
.hero--short .hero__sub      { animation-delay: 0.25s; }

/* — Info bar stagger on load — */
.info-bar__item {
  animation: fjfcFadeIn 0.5s ease calc(var(--i, 0) * 80ms + 0.65s) both;
}

/* — Desktop nav: underline sweep — */
@media (min-width: 1024px) {
  .nav-menu a:not(.btn):not(.nav-shop-link) {
    position: relative;
  }
  .nav-menu a:not(.btn):not(.nav-shop-link)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 1px;
  }
  .nav-menu a:not(.btn):not(.nav-shop-link):hover::after,
  .nav-menu .current-menu-item > a::after {
    transform: scaleX(1);
  }
  /* Remove old hover padding shift — underline does the job */
  .nav-menu a:hover,
  .nav-menu .current-menu-item > a {
    padding-left: 12px;
  }
}

/* — Button micro-interactions — */
.btn {
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              box-shadow 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn--primary:hover    { transform: translateY(-2px); }
.btn--outline:hover    { transform: translateY(-2px); }
.btn--white:hover      { transform: translateY(-2px); }
.btn--outline-white:hover { transform: translateY(-2px); }

/* — Stat card hover lift — */
.stat-card {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* — Team card arrow slides on hover — */
.team-card__arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover .team-card__arrow {
  transform: translateX(6px);
}

/* — Enhanced card scroll entrance (scale + translate) — */
.js-ready .feature-card:not(.in-view),
.js-ready .stat-card:not(.in-view),
.js-ready .team-full-card:not(.in-view),
.js-ready .sponsor-package:not(.in-view) {
  transform: translateY(24px) scale(0.97);
}

/* — Section heading slides from slight left — */
.js-ready .section-heading:not(.in-view) {
  transform: translateY(16px);
  opacity: 0;
}

/* ============================================================
   TEAMS PAGE — GRID LAYOUT
   ============================================================ */
.teams-page-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .teams-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .teams-page-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-full-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
  transition: transform .2s, box-shadow .2s;
}

.team-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-full-card__header {
  background: var(--gradient);
  padding: 28px 24px;
  color: var(--white);
}

.team-full-card__age {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 4px;
}

.team-full-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.team-full-card__body {
  padding: 20px 24px;
}

.team-full-card__coach {
  font-size: 0.85rem;
  color: var(--mid);
  margin-bottom: 12px;
}

.team-full-card__coach strong {
  color: var(--dark);
}

.team-full-card__desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ============================================================
   PHOTO BREAK — full-width photo strip between sections
   ============================================================ */
.photo-break {
  height: 240px;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}

@media (min-width: 768px) {
  .photo-break { height: 320px; }
}

/* ============================================================
   PHOTO GALLERY — managed grid of club action photos
   ============================================================ */
.photo-gallery {
  overflow: hidden;
}

.photo-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.photo-gallery__item {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
  overflow: hidden;
}

.photo-gallery__item:hover {
  transform: scale(1.03);
  z-index: 1;
  position: relative;
}

@media (min-width: 640px) {
  .photo-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .photo-gallery__grid { grid-template-columns: repeat(6, 1fr); }
  .photo-gallery__item { aspect-ratio: 3 / 2; }
}

/* If only 2 photos: keep 2 cols on all sizes, wider items */
.photo-gallery__grid--count-2 { grid-template-columns: repeat(2, 1fr); }
.photo-gallery__grid--count-2 .photo-gallery__item { aspect-ratio: 16 / 9; }

/* If only 3-4 photos */
@media (min-width: 640px) {
  .photo-gallery__grid--count-3,
  .photo-gallery__grid--count-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .photo-gallery__grid--count-3 { grid-template-columns: repeat(3, 1fr); }
  .photo-gallery__grid--count-4 { grid-template-columns: repeat(4, 1fr); }
  .photo-gallery__grid--count-3 .photo-gallery__item,
  .photo-gallery__grid--count-4 .photo-gallery__item { aspect-ratio: 4 / 3; }
}

/* ============================================================
   HERO — SHORT VARIANT (inner pages)
   ============================================================ */
.hero--short {
  min-height: 0;
  padding: 56px 20px 48px;
}

@media (min-width: 640px) {
  .hero--short { padding: 64px 40px 56px; }
}

@media (min-width: 1024px) {
  .hero--short { padding: 80px 80px 72px; }
}

/* ============================================================
   ABOUT PAGE — LAYOUTS & COMPONENTS
   ============================================================ */
.about-layout {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 64px;
  }
}

.about-stat-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
  text-align: center;
}

.section--dark .stat-card {
  background: var(--mid-dark);
}

.stat-card__number {
  font-family: var(--font-condensed);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

/* Value cards (About page values grid) */
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(219,29,36,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}

/* Committee grid */
.committee-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .committee-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .committee-grid { grid-template-columns: repeat(3, 1fr); }
}

.committee-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px 24px;
  border-left: 4px solid var(--red);
}

.committee-card__role {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.committee-card__name {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.committee-card--vacant {
  border-left-color: #e07b00;
  background: #fff8f0;
}

.committee-card__name--vacant {
  color: #e07b00;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Info panel (key/value rows) */
.info-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section--dark .info-panel {
  background: var(--mid-dark);
}

.info-panel__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.section--dark .info-panel__row {
  border-bottom-color: rgba(255,255,255,.08);
}

.info-panel__row:last-child { border-bottom: none; }

.info-panel__label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  white-space: nowrap;
}

.info-panel__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-align: right;
}

.section--dark .info-panel__value {
  color: var(--white);
}

/* Program cards (Beyond the Game) */
.program-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 3px solid var(--red);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.program-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.program-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.program-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 1024px) {
  .program-commitment-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Checklist */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--mid-dark);
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ============================================================
   FIXTURES PAGE — ACTION CARDS
   ============================================================ */
.fixtures-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .fixtures-actions { gap: 12px; }
}

.fixtures-action-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.fixtures-action-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
  color: var(--dark);
}

.fixtures-action-card__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(219,29,36,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.fixtures-action-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.fixtures-action-card__desc {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.5;
}

.fixtures-action-card__arrow {
  margin-left: auto;
  color: var(--light);
  flex-shrink: 0;
  transition: color .2s, transform .2s;
}

.fixtures-action-card:hover .fixtures-action-card__arrow {
  color: var(--red);
  transform: translateX(4px);
}

/* ============================================================
   SPONSORS PAGE — PACKAGES & ENHANCED GRID
   ============================================================ */
.sponsors-grid--lg .sponsor-item {
  min-height: 100px;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  padding: 24px;
}

.sponsor-item--placeholder {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
}

.sponsor-level {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

/* Sponsor packages */
.sponsor-packages {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .sponsor-packages { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.sponsor-package {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
  cursor: default;
}

.sponsor-package:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.sponsor-package--principal {
  background: var(--dark);
  border-top-color: var(--red);
  position: relative;
}

.sponsor-package--principal .sponsor-package__level { color: var(--red-light); }
.sponsor-package--principal .sponsor-package__title { color: var(--white); }
.sponsor-package--principal .sponsor-package__list li { color: var(--light); }
.sponsor-package--principal .sponsor-package__list li::before { border-color: var(--red-light); }

.sponsor-package__level {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}

.sponsor-package__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.sponsor-package__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  margin-bottom: 28px;
}

.sponsor-package__list li {
  font-size: 0.9rem;
  color: var(--mid-dark);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.sponsor-package__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--red);
}

/* ============================================================
   CONTACT PAGE — LAYOUT & COMPONENTS
   ============================================================ */
.contact-layout {
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 64px;
  }
}

.contact-form { margin-top: 28px; }

/* Two-column form row (name + email side by side on tablet+) */
.form-row {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* Form notice (success / error) */
.form-notice {
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.form-notice--success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}

.form-notice--error {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

/* Contact info cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(219,29,36,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-top: 2px;
}

.contact-info-card__label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 4px;
}

.contact-info-card__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 6px;
}

.contact-info-card__link {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-block;
}

.contact-info-card__link:hover { color: var(--red-dark); }

/* Map embed */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Quick link cards */
.quick-link-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
  text-decoration: none;
  color: var(--dark);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.quick-link-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--dark);
}

.quick-link-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.quick-link-card__desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ============================================================
   SCROLL ANIMATIONS — enter-on-scroll via IntersectionObserver
   Only active when JS has loaded (.js-ready on <html>)
   ============================================================ */

/* Base hidden state — only applied when JS is present */
.js-ready .section-heading,
.js-ready .feature-card,
.js-ready .stat-card,
.js-ready .team-card,
.js-ready .team-cards-stack,
.js-ready .info-panel,
.js-ready .field-status,
.js-ready .news-card,
.js-ready .team-full-card,
.js-ready .about-stat,
.js-ready .checklist,
.js-ready .quick-link-card,
.js-ready .sponsor-item,
.js-ready .sponsor-package,
.js-ready .value-card,
.js-ready .contact-info-card,
.js-ready .program-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 75ms);
}

/* Section headings always lead — no stagger delay */
.js-ready .section-heading {
  transition-delay: 0ms;
}

/* Visible state — added by JS when element enters viewport */
.js-ready .section-heading.in-view,
.js-ready .feature-card.in-view,
.js-ready .stat-card.in-view,
.js-ready .team-card.in-view,
.js-ready .team-cards-stack.in-view,
.js-ready .info-panel.in-view,
.js-ready .field-status.in-view,
.js-ready .news-card.in-view,
.js-ready .team-full-card.in-view,
.js-ready .about-stat.in-view,
.js-ready .checklist.in-view,
.js-ready .quick-link-card.in-view,
.js-ready .sponsor-item.in-view,
.js-ready .sponsor-package.in-view,
.js-ready .value-card.in-view,
.js-ready .contact-info-card.in-view,
.js-ready .program-card.in-view {
  opacity: 1;
  transform: none;
}

/* Respect reduced-motion system preference */
@media (prefers-reduced-motion: reduce) {
  .js-ready .section-heading,
  .js-ready .feature-card,
  .js-ready .stat-card,
  .js-ready .team-card,
  .js-ready .team-cards-stack,
  .js-ready .info-panel,
  .js-ready .field-status,
  .js-ready .news-card,
  .js-ready .team-full-card,
  .js-ready .about-stat,
  .js-ready .checklist,
  .js-ready .quick-link-card,
  .js-ready .sponsor-item,
  .js-ready .sponsor-package,
  .js-ready .value-card,
  .js-ready .contact-info-card,
  .js-ready .program-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   TEAM CARD — MOBILE IMPROVEMENTS
   ============================================================ */
@media (max-width: 639px) {
  .team-card {
    padding: 20px 16px;
    gap: 14px;
  }
  .team-card__badge {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }
  .team-card__name {
    font-size: 1.05rem;
  }
  .team-card__ages {
    font-size: 0.85rem;
  }
  .team-card__desc {
    display: none;
  }
}
