*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1f44;
  --navy-mid: #122554;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --red: #c0392b;
  --red-dark: #a93226;
  --red-light: #e74c3c;
  --crimson: #8b1a2f;
  --countdown-red: #c0294a;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #eceae4;
  --mid-gray: #8a8880;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --card-radius: 4px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  height: 36px;
}
.top-bar a:hover { color: var(--gold-light); }
.top-bar-menu { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.top-bar-menu a { color: rgba(255,255,255,0.7); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; transition: color 0.2s; }
.top-bar-menu a:hover { color: var(--gold-light); }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 68px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-badge {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.nav-logo-badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--gold);
}
.nav-logo-badge span {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  padding-bottom: 6px;
}
.nav-wordmark { display: flex; flex-direction: column; line-height: 1.15; }
.nav-wordmark .org { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid-gray); font-weight: 500; }
.nav-wordmark .name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--navy); letter-spacing: 0.04em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex: 1;
  justify-content: flex-end;
}
.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); background: var(--off-white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  font-weight: 700 !important;
  border-radius: 3px !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

.nav-custom-logo img { max-height: 46px; width: auto; }

/* Mobile nav */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  display: inline-block;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-left {
  padding: 5rem 4rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-meta {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Countdown */
.countdown-strip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  margin-top: 2.5rem;
  width: fit-content;
}
.countdown-unit { text-align: center; }
.countdown-unit .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--countdown-red);
  line-height: 1;
  display: block;
}
.countdown-unit .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 2px;
}
.countdown-divider {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  padding-bottom: 16px;
}

.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; opacity: 0.75; }
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 40%);
  z-index: 1;
}
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder svg { opacity: 0.12; width: 200px; height: 200px; }

/* ── EVENT BANNER (red ribbon) ── */
.event-banner {
  background: var(--red);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.event-banner-left { display: flex; align-items: center; gap: 1rem; }
.event-banner-tag {
  background: var(--white);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
}
.event-banner-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.event-banner-date { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; }
.event-banner a {
  background: var(--white);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.4rem;
  border-radius: 3px;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.event-banner a:hover { opacity: 0.85; }

/* ── SECTION UTILITIES ── */
section { padding: 4rem 2rem; }
.container { max-width: 1240px; margin: 0 auto; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--navy); letter-spacing: 0.04em; line-height: 1; }
.section-title span { color: var(--red); }
.view-all {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color var(--transition);
  text-decoration: none;
}
.view-all:hover { color: var(--red); }
.view-all-light { color: rgba(255,255,255,0.7); }
.view-all-light:hover { color: #fff; }

/* ── NEWS GRID ── */
.news-section { background: var(--off-white); }
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.25rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,31,68,0.1); }
.news-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--light-gray);
  flex-shrink: 0;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}
.img-placeholder-text { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: rgba(255,255,255,0.15); letter-spacing: 0.1em; }
.news-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
}
.news-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 11px; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.news-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: var(--navy); line-height: 1.15; letter-spacing: 0.02em; flex: 1; }
.news-card.featured .news-card-title { font-size: 1.85rem; }
.news-card-excerpt { font-size: 14px; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.6; }

/* ── EVENTS STRIP ── */
.events-section { background: var(--navy); padding: 3.5rem 2rem; }
.events-section .section-title { color: var(--white); }
.events-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.event-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.event-card:hover { background: rgba(255,255,255,0.09); border-color: var(--red); }
.event-date-badge { display: flex; align-items: center; gap: 10px; }
.event-date-block {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 6px 10px;
  border-radius: 3px;
  flex-shrink: 0;
  min-width: 52px;
}
.event-date-block .day { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; line-height: 1; display: block; }
.event-date-block .month { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; display: block; }
.event-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: var(--white); letter-spacing: 0.03em; line-height: 1.2; }
.event-location { font-size: 13px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 5px; }
.event-location::before { content: ''; display: inline-block; width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.event-card .btn-primary { margin-top: 0.5rem; align-self: flex-start; font-size: 11px; padding: 0.55rem 1.2rem; }

/* Past events */
.event-past { opacity: 0.6; }
.event-past-badge { background: var(--mid-gray); color: white; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 2px; width: fit-content; font-weight: 700; }

/* ── ATHLETES CTA ── */
.athletes-cta { background: var(--white); border-top: 4px solid var(--red); }
.athletes-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
.athletes-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--navy); letter-spacing: 0.04em; line-height: 1; margin-bottom: 1rem; }
.athletes-text p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 1.5rem; }
.athletes-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.stat-item { text-align: center; padding: 1.25rem; background: var(--off-white); border-radius: var(--card-radius); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--navy); line-height: 1; display: block; }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid-gray); margin-top: 4px; display: block; }
.athletes-visual { background: var(--navy); border-radius: 6px; min-height: 420px; position: relative; overflow: hidden; }
.athletes-visual::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--red); z-index: 2; }
.athletes-section-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.track-lines { position: absolute; inset: 0; background: repeating-linear-gradient(-15deg, transparent 0px, transparent 30px, rgba(255,255,255,0.025) 30px, rgba(255,255,255,0.025) 31px); }
.athletes-visual-text { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: rgba(255,255,255,0.08); letter-spacing: 0.1em; text-align: center; position: relative; z-index: 1; line-height: 1; }
.athletes-visual-text span { color: rgba(192,41,74,0.2); font-size: 2rem; display: block; letter-spacing: 0.2em; }

/* ── ATHLETES GRID (archive page) ── */
.athletes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.athlete-card { background: var(--white); border-radius: var(--card-radius); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition); }
.athlete-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,31,68,0.1); }
.athlete-card-img { aspect-ratio: 3/4; overflow: hidden; background: var(--navy); }
.athlete-card-img img { width: 100%; height: 100%; object-fit: cover; }
.athlete-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--navy); }
.athlete-img-placeholder span { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: rgba(255,255,255,0.15); }
.athlete-card-body { padding: 1rem; }
.athlete-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--navy); letter-spacing: 0.03em; margin-bottom: 4px; }
.athlete-discipline { display: block; font-size: 12px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.athlete-pb { display: block; font-size: 12px; color: var(--mid-gray); }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--navy); padding: 3rem 2rem; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.newsletter-text h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--white); letter-spacing: 0.04em; margin-bottom: 0.4rem; }
.newsletter-text p { color: rgba(255,255,255,0.6); font-size: 14px; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.newsletter-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  padding: 0.85rem 1.25rem;
  border-radius: 3px;
  outline: none;
  width: 280px;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--red); }

/* ── PARTNERS ── */
.partners-section { padding: 2.5rem 2rem; background: var(--off-white); border-top: 1px solid var(--light-gray); }
.partners-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mid-gray); font-weight: 600; text-align: center; margin-bottom: 1.5rem; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.partner-logo-wrap {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 60px;
  opacity: 0.7;
  transition: opacity var(--transition);
  text-decoration: none;
}
.partner-logo-wrap:hover { opacity: 1; }
.partner-logo-img { max-height: 36px; max-width: 140px; width: auto; object-fit: contain; display: block; }
.partner-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--navy); letter-spacing: 0.08em; white-space: nowrap; }

/* ── FOOTER ── */
footer { background: #060f22; color: rgba(255,255,255,0.55); padding: 3rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1240px; margin: 0 auto; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-wordmark .org { color: rgba(255,255,255,0.4); }
.footer-brand .nav-wordmark .name { color: var(--white); }
.footer-brand p { font-size: 13px; margin-top: 1rem; line-height: 1.7; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.1em; color: var(--red-light); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { max-width: 1240px; margin: 0 auto; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 12px; gap: 1rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-logo img { max-width: 180px; height: auto; filter: brightness(0) invert(1); opacity: 0.85; }

/* Social badges */
.social-row { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-badge { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: background var(--transition), color var(--transition); }
.social-badge:hover { background: var(--red); color: var(--white); }
.social-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── PAGE HEADER BAND ── */
.page-header-band { background: var(--navy); padding: 3rem 2rem 2.5rem; }
.page-title { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--white); letter-spacing: 0.04em; }

/* ── PAGE CONTENT ── */
.page-content { font-size: 16px; line-height: 1.8; color: var(--text-dark); }
.page-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--navy); margin: 2rem 0 0.75rem; letter-spacing: 0.04em; }
.page-content p { margin-bottom: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  /* Hide third card on homepage hero news section only — not on the news archive page */
  .news-section .news-card:last-child { display: none; }
  .events-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .hero-left { order: 2; padding: 2.5rem 2rem; }
  .hero-right {
    order: 1;
    display: block;
    min-height: 320px;
    max-height: 400px;
  }
  .hero-right::before {
    background: linear-gradient(to bottom, var(--navy) 0%, transparent 50%);
  }
}
@media (max-width: 768px) {
  .hero-left { padding: 2rem 1.5rem; }
  .hero-right { min-height: 240px; max-height: 300px; }
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open { display: flex !important; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--light-gray); padding: 1rem; z-index: 99; }
  section { padding: 3rem 1.25rem; }
  .news-grid { grid-template-columns: 1fr; }
  .events-strip { grid-template-columns: 1fr; }
  .athletes-inner { grid-template-columns: 1fr; }
  .athletes-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-form input { width: 100%; }
  .mc4wp-form { flex-direction: column; }
  .mc4wp-form input[type="email"] { width: 100%; }
  .countdown-strip { gap: 1rem; padding: 0.75rem 1rem; }
  .countdown-unit .num { font-size: 2rem; }
}

/* ── SINGLE ATHLETE PROFILE ── */
.ap-header { background: var(--navy); display: grid; grid-template-columns: 340px 1fr; min-height: 420px; }
.ap-photo { background: var(--navy-mid); position: relative; overflow: hidden; }
.ap-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.ap-photo::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.ap-photo-placeholder { width: 100%; min-height: 420px; display: flex; align-items: center; justify-content: center; background: var(--navy-mid); }
.ap-photo-initials { font-family: 'Bebas Neue', sans-serif; font-size: 7rem; color: rgba(255,255,255,0.08); letter-spacing: 0.05em; }
.ap-info { padding: 3rem; display: flex; flex-direction: column; justify-content: flex-end; }
.ap-discipline-badge { display: inline-block; background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 5px 14px; border-radius: 2px; margin-bottom: 1rem; width: fit-content; }
.ap-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 5vw, 4.5rem); color: var(--white); line-height: 0.9; letter-spacing: 0.02em; margin-bottom: 0.75rem; }
.ap-nationality { font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; gap: 8px; }
.ap-nationality::before { content: ''; display: inline-block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.ap-stats-bar { background: var(--white); border-bottom: 1px solid var(--light-gray); display: flex; flex-wrap: wrap; }
.ap-stat { flex: 1; min-width: 120px; padding: 1.25rem 1.5rem; border-right: 1px solid var(--light-gray); }
.ap-stat:last-child { border-right: none; }
.ap-stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid-gray); margin-bottom: 4px; }
.ap-stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--navy); letter-spacing: 0.03em; }
.ap-body { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; padding: 2.5rem; max-width: 1200px; margin: 0 auto; }
.ap-section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid-gray); margin-bottom: 0.75rem; font-weight: 600; }
.ap-bio { font-size: 15px; line-height: 1.8; color: var(--text-muted); }
.ap-bio p { margin-bottom: 1rem; }
.ap-sidebar-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--card-radius); padding: 1.25rem; margin-bottom: 1rem; }
.ap-sidebar-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--navy); letter-spacing: 0.08em; margin-bottom: 0.75rem; border-bottom: 2px solid var(--red); padding-bottom: 0.5rem; }
.ap-detail-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--off-white); font-size: 13px; gap: 1rem; }
.ap-detail-row:last-child { border-bottom: none; }
.ap-detail-label { color: var(--mid-gray); flex-shrink: 0; }
.ap-detail-value { font-weight: 500; color: var(--text-dark); text-align: right; }
.ap-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); padding: 1.5rem 2.5rem 0; background: var(--navy); transition: color var(--transition); }
.ap-back-link:hover { color: rgba(255,255,255,0.8); }
.ap-back-link::before { content: '←'; font-size: 14px; }

@media (max-width: 768px) {
  .ap-header { grid-template-columns: 1fr; }
  .ap-photo { min-height: 280px; }
  .ap-photo-placeholder { min-height: 280px; }
  .ap-body { grid-template-columns: 1fr; }
  .ap-back-link { padding: 1rem 1.5rem 0; }
  .ap-info { padding: 1.5rem; }
}

/* ── FOOTER MENU COLUMNS ── */
.footer-col .menu { list-style: none; }
.footer-col .menu li { margin-bottom: 0.5rem; }
.footer-col .menu li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col .menu li a:hover { color: var(--white); }

/* ── MAILCHIMP FORM STYLING ── */
.newsletter-form-wrap { display: flex; align-items: center; }
.mc4wp-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.mc4wp-form input[type="email"] {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  padding: 0.85rem 1.25rem;
  border-radius: 3px;
  outline: none;
  width: 280px;
  transition: border-color var(--transition);
}
.mc4wp-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.mc4wp-form input[type="email"]:focus { border-color: var(--red); }
.mc4wp-form input[type="submit"] {
  background: var(--red);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.mc4wp-form input[type="submit"]:hover { background: var(--red-dark); }
.mc4wp-alert { font-size: 13px; margin-top: 0.5rem; color: rgba(255,255,255,0.7); }
.mc4wp-success .mc4wp-alert { color: #7dcea0; }
.mc4wp-error .mc4wp-alert { color: #f1948a; }
.nl-admin-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 0.5rem; max-width: 320px; }

/* ── NAV DROPDOWN ── */
.nav-links li { position: relative; list-style: none; }
.nav-links li a[href="#"] { cursor: default; }
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 2px solid var(--red);
  border-radius: 0 0 4px 4px;
  min-width: 180px;
  z-index: 200;
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(10,31,68,0.1);
}
.nav-links li:hover > .sub-menu { display: block; }
.nav-links .sub-menu li a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 0;
  white-space: nowrap;
}
.nav-links .sub-menu li a:hover { background: var(--off-white); color: var(--red); }
/* Dropdown arrow indicator */
.nav-links li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.5;
}

/* ── MEET RESULTS PAGE ── */
.results-year-group { margin-bottom: 2.5rem; }
.results-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--navy);
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.result-row {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--card-radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.6rem;
  transition: border-color var(--transition);
}
.result-row:hover { border-color: var(--red); }
.result-info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.result-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; color: var(--navy); letter-spacing: 0.03em; }
.result-date { font-size: 12px; color: var(--mid-gray); }
.result-location { font-size: 12px; color: var(--mid-gray); }
.result-actions { display: flex; gap: 0.5rem; flex-shrink: 0; flex-wrap: wrap; }
.result-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  transition: background var(--transition), color var(--transition);
}
.result-btn-pdf { background: var(--red); color: var(--white); }
.result-btn-pdf:hover { background: var(--red-dark); color: var(--white); }
.result-btn-ext { background: var(--off-white); color: var(--navy); border: 1px solid var(--light-gray); }
.result-btn-ext:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.results-empty { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--card-radius); padding: 2rem; text-align: center; color: var(--text-muted); }
@media (max-width: 600px) {
  .result-row { flex-direction: column; align-items: flex-start; }
  .result-actions { width: 100%; }
  .result-btn { flex: 1; justify-content: center; }
}

/* ── RESULT LEVEL BADGES ── */
.result-level { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 2px; flex-shrink: 0; }
.result-level-senior  { background: #e8f0fe; color: #1a3a6b; }
.result-level-junior  { background: #fef3e2; color: #7a4500; }
.result-level-primary { background: #e8f5e9; color: #1b5e20; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 360px 1fr; gap: 0; min-height: 600px; }
.contact-details { background: var(--navy); padding: 3rem 2.5rem; display: flex; flex-direction: column; gap: 0; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-card:last-child { border-bottom: none; }
.contact-card-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.contact-card-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); font-weight: 600; margin-bottom: 4px; }
.contact-card-value { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.contact-link { color: var(--gold-light) !important; transition: color var(--transition); }
.contact-link:hover { color: var(--white) !important; }
.contact-social { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.contact-social-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.contact-social-btn:hover { color: var(--gold-light); }
.contact-right { background: var(--white); display: flex; flex-direction: column; }
.contact-map { flex-shrink: 0; }
.contact-map iframe { display: block; width: 100%; height: 280px; border: none; }
.contact-map-label { background: var(--off-white); border-top: 1px solid var(--light-gray); padding: 0.6rem 1.25rem; font-size: 12px; color: var(--mid-gray); display: flex; align-items: center; gap: 6px; }
.contact-form-wrap { padding: 2rem 2.5rem; flex: 1; }
.contact-form-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 1.25rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid-gray); }
.form-group input, .form-group textarea, .form-group select {
  border: 1px solid var(--light-gray);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; }

/* Partners note */
.partners-note { text-align: center; font-size: 12px; color: var(--mid-gray); margin-top: 0.75rem; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-details { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}

.badge-local { background: #e8f0fe; color: #1a3a6b; }

/* ── NATIONAL RECORD BADGE (athlete profile stats bar) ── */
.ap-nr-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 6px;
}

/* ── NATIONAL RECORDS PAGE ── */
.records-wrap { background: var(--off-white); padding: 3rem 2rem; }
.records-inner { max-width: 1100px; margin: 0 auto; }
.records-tabs { display: flex; gap: 0; margin-bottom: 2rem; border-bottom: 2px solid var(--light-gray); flex-wrap: wrap; }
.records-tab { background: none; border: none; padding: 0.75rem 1.5rem; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid-gray); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all var(--transition); }
.records-tab.active { color: var(--navy); border-bottom-color: var(--red); }
.records-tab:hover { color: var(--navy); }
.records-panel { display: none; }
.records-panel.active { display: block; }
.records-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.records-section-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--navy); letter-spacing: 0.06em; margin-bottom: 1rem; border-bottom: 2px solid var(--red); padding-bottom: 0.5rem; }
.records-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--card-radius); overflow: hidden; }
.records-table th { background: var(--navy); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.75rem 1rem; text-align: left; }
.records-table th:last-child { text-align: right; }
.records-table td { padding: 0.75rem 1rem; font-size: 14px; color: var(--text-dark); border-bottom: 1px solid var(--light-gray); }
.records-table tr:last-child td { border-bottom: none; }
.records-table tr:hover td { background: var(--off-white); }
.records-table td:nth-child(2) { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--red); letter-spacing: 0.03em; }
.records-table td.event-name { font-weight: 600; color: var(--navy); }
.records-table td:last-child { text-align: right; color: var(--mid-gray); font-size: 12px; }
.records-updated { font-size: 12px; color: var(--mid-gray); margin-bottom: 1.5rem; }
@media (max-width: 768px) { .records-grid { grid-template-columns: 1fr; } }

/* ── EVENT BANNER MOBILE FIX ── */
@media (max-width: 768px) {
  .event-banner { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 0.85rem 1.25rem; }
  .event-banner-left { flex-wrap: wrap; gap: 0.5rem; }
  .event-banner-text { font-size: 1.1rem; }
  .event-banner-date { font-size: 12px; }
  .event-banner a { align-self: flex-start; width: auto; display: inline-flex; font-size: 11px; padding: 0.45rem 1rem; margin-top: 0.25rem; }
}

/* ── EVENTS ARCHIVE GRID (archive-tcaaa_event.php) ── */
.events-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.event-archive-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-archive-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,31,68,0.12); }
.event-archive-card.is-past { opacity: 0.7; }

/* Thumbnail */
.eac-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--navy); flex-shrink: 0; }
.eac-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.event-archive-card:hover .eac-img { transform: scale(1.03); }
.eac-thumb-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; background: var(--navy);
}
.eac-thumb-placeholder .day {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--white);
  line-height: 1; letter-spacing: 0.02em;
}
.eac-thumb-placeholder .mon {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold); margin-top: 2px;
}
.eac-type-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 10px; border-radius: 2px;
}
.eac-past-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.8);
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 10px; border-radius: 2px;
}

/* Card body */
.eac-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.eac-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--navy);
  letter-spacing: 0.03em; line-height: 1.15; margin-bottom: 0.25rem;
}
.eac-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--mid-gray);
}
.eac-meta svg { flex-shrink: 0; color: var(--red); }
.eac-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: auto; padding-top: 0.75rem; }
.eac-btn { font-size: 12px !important; padding: 0.5rem 1rem !important; }

/* Type badge colours */
.badge-local        { background: #e8f0fe; color: #1a3a6b; }
.badge-regional     { background: #fef3e2; color: #7a4500; }
.badge-international{ background: #fce4ec; color: #880e4f; }
.badge-road         { background: #e8f5e9; color: #1b5e20; }

/* ── NEWS ARCHIVE PAGE ── */
.news-archive-section {
  background: var(--off-white);
  padding: 3rem 2rem;
}
/* On the archive page, always show all cards in a clean grid */
.news-archive-section .news-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.news-archive-section .news-card { display: flex !important; }
@media (max-width: 768px) {
  .news-archive-section { padding: 2rem 1.25rem; }
  .news-archive-section .news-grid { grid-template-columns: 1fr; }
}
