/* ============================================================
   MapleNet Catchball League — Design System v3
   Warm, bold, community-first women's sports aesthetic
   Light-primary · Photography-forward · Energetic but human
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;0,900;1,800&family=Open+Sans:wght@400;500;600&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --white:      #FFFFFF;
  --off-white:  #F8F7F5;
  --light-gray: #F2F1EE;
  --mid-gray:   #E5E3DE;

  /* Brand */
  --navy:       #1B2A5C;
  --navy-dark:  #0f1a3d;
  --navy-light: #253578;
  --red:        #C8102E;
  --red-dark:   #a50d24;
  --red-light:  rgba(200,16,46,0.08);
  --red-mid:    rgba(200,16,46,0.18);

  /* Text */
  --text:       #1a1a2e;
  --text-mid:   #4a4a5a;
  --text-light: #7a7a8c;

  /* Borders */
  --border:     #E0DEDB;
  --border-dark:#C8C5BF;

  /* Effects */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.12);
  --shadow-red: 0 6px 24px rgba(200,16,46,0.22);

  /* Layout */
  --radius:    12px;
  --radius-sm: 8px;
  --container: 1140px;

  /* Fonts */
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; font-weight: 800; }
h4 { font-size: 1rem; font-weight: 700; }

p { color: var(--text-mid); line-height: 1.78; }
p + p { margin-top: 1rem; }

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

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad    { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.22s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,16,46,0.3);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 1.05rem 2.4rem; font-size: 0.92rem; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 50px;
  width: auto;
}
.navbar-logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.navbar-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.1rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active { color: var(--navy); background: var(--off-white); }
/* Contact Us button keeps its red style on all pages including active */
.nav-links a.btn-red,
.nav-links a.btn-red.active { background: var(--red); color: var(--white); border-color: var(--red); }
.nav-links a.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.nav-links .btn { padding: 0.55rem 1.2rem; font-size: 0.78rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/game-action.jpg');
  background-size: cover;
  background-position: center 42%;
}
/* Warm overlay — gradient keeps left side readable, players visible on right */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(11,22,56,0.78) 0%,
    rgba(11,22,56,0.52) 45%,
    rgba(11,22,56,0.12) 100%);
}

/* Subtle warm red accent in corner */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 40%;
  background: radial-gradient(ellipse at bottom right, rgba(200,16,46,0.18) 0%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-content {
  max-width: 780px;
  margin: 0;
  text-align: left;
}
.hero-buttons { justify-content: flex-start; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 440px;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
  font-family: var(--font-head);
  font-weight: 600;
}

@keyframes gentle-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ── MANIFESTO BAND ────────────────────────────────────────── */
.manifesto-band {
  background: var(--navy);
  padding: 5.5rem 0;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.85rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  max-width: 840px;
  margin: 0 auto 0.75rem;
  letter-spacing: -0.02em;
}
.manifesto-quote em {
  color: var(--red);
  font-style: italic;
}
.manifesto-sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 auto 3.5rem;
}
.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
.belief-card {
  border-top: 3px solid var(--red);
  padding-top: 1.75rem;
}
.belief-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.belief-card p {
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.75;
}

/* ── TOURNAMENT CALLOUT (slim) ────────────────────────────── */
.tournament-callout {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  border-left: 5px solid var(--red);
}
.tournament-callout .tc-date {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--navy);
  flex-shrink: 0;
  line-height: 1.1;
  text-align: center;
}
.tournament-callout .tc-date span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.2rem;
}
.tournament-callout .tc-content { flex: 1; }
.tournament-callout .tc-content h4 { margin-bottom: 0.3rem; }
.tournament-callout .tc-content p  { font-size: 0.9rem; margin: 0; }

/* ── TICKER STRIP ─────────────────────────────────────────── */
.ticker-strip {
  background: var(--red);
  padding: 0.8rem 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
}
.ticker-sep { color: rgba(255,255,255,0.4); }

/* ── MISSION CARDS ────────────────────────────────────────── */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.75rem;
}
.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.mission-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mid-gray);
}
.mission-card:hover::after { transform: scaleY(1); }

.mission-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}
.mission-card h3 { margin-bottom: 0.65rem; }
.mission-card p  { font-size: 0.95rem; margin: 0; }

/* ── CATCHBALL INTRO SPLIT ────────────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
/* ── DROPDOWN NAV ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.nav-arrow { font-size: 0.65rem; transition: transform 0.2s; display: inline-block; }
.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }
.nav-submenu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem 0;
  min-width: 190px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu li a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--navy) !important;
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 600;
  white-space: nowrap;
  border-radius: 0;
}
.nav-submenu li a:hover { background: var(--off-white); color: var(--red) !important; }
.nav-dropdown-active > .nav-dropdown-toggle { color: var(--red); }
@media (max-width: 768px) {
  .nav-submenu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--red);
    border-radius: 0;
    padding: 0;
    margin: 0.25rem 0 0.25rem 1rem;
    background: transparent;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .nav-dropdown.open .nav-submenu { display: block; }
  .nav-submenu li { border-bottom: 1px solid var(--border); }
  .nav-submenu li:last-child { border-bottom: none; }
  .nav-submenu li a { padding: 0.85rem 0.75rem; font-size: 1rem; color: var(--navy) !important; display: block; }
  .nav-submenu li a:hover { background: var(--red-light); color: var(--red) !important; }
}

/* Warm photo accent bar at bottom */
.split-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy), var(--red));
}

/* Placeholder when no photo */
.split-photo-placeholder {
  height: 480px;
  background: linear-gradient(135deg, var(--off-white), var(--light-gray));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  border: 1px solid var(--border);
}

.quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.75rem 0;
}
.fact-item {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
}
.fact-item .label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.2rem;
}
.fact-item .value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.5rem 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-mid);
  font-size: 0.97rem;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--red-light);
  border: 1.5px solid rgba(200,16,46,0.25);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23C8102E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}

/* ── TOURNAMENT HIGHLIGHT (navy section) ──────────────────── */
.navy-section {
  background: var(--navy);
  color: var(--white);
}
.navy-section h2 { color: var(--white); }
.navy-section p  { color: rgba(255,255,255,0.75); }
.navy-section .eyebrow { color: rgba(255,255,255,0.55); }

.t-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  overflow: hidden;
}
.t-card-header {
  background: var(--red);
  padding: 2rem;
  text-align: center;
}
.t-card-header .date-main {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.t-card-header .date-sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.t-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.t-row:last-child { border-bottom: none; }
.t-row:hover { background: rgba(255,255,255,0.04); }

.t-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.t-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.12rem;
}
.t-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

/* ── SPONSOR TIER PREVIEW ─────────────────────────────────── */
.tier-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}

.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.tier-card.platinum::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.tier-card.gold::before     { background: linear-gradient(90deg, #b45309, #fcd34d); }
.tier-card.silver::before   { background: linear-gradient(90deg, #475569, #cbd5e1); }
.tier-card.inkind::before   { background: linear-gradient(90deg, #065f46, #6ee7b7); }

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-dark);
}

.tier-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.tier-name  {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.tier-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.1rem;
}
.tier-price sub { font-size: 0.8rem; color: var(--text-light); font-weight: 400; }

.tier-perks {
  list-style: none;
  margin-top: 1.1rem;
  text-align: left;
}
.tier-perks li {
  font-size: 0.83rem;
  color: var(--text-mid);
  padding: 0.32rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}
.tier-perks li:last-child { border-bottom: none; }
.tier-perks li::before { content: '—'; color: var(--red); flex-shrink: 0; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 6rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-band .eyebrow { color: rgba(255,255,255,0.45); }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Red CTA variant */
.cta-band-red {
  background: linear-gradient(135deg, var(--red) 0%, #8b0a1e 100%);
  padding: 6rem 0;
  text-align: center;
}
.cta-band-red h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band-red p  { color: rgba(255,255,255,0.82); max-width: 540px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-band-red .eyebrow { color: rgba(255,255,255,0.5); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand img {
  height: 70px;
  margin-bottom: 1.25rem;
  background: white;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.6);
  max-width: 270px;
  margin-bottom: 1.5rem;
}
.social-row { display: flex; gap: 0.65rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(200,16,46,0.8); }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 0.75rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { max-width: 580px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; }

/* ── RULES GRID ───────────────────────────────────────────── */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.rule-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.28s ease;
  text-align: center;
}
.rule-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}
.rule-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.rule-card h3 { margin-bottom: 0.65rem; font-size: 1.1rem; }
.rule-card p  { font-size: 0.9rem; margin: 0; }

/* ── GLOBE / COUNTRY GRID ─────────────────────────────────── */
.globe-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}
.globe-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.28s ease;
}
.globe-card.canada {
  border-color: rgba(200,16,46,0.3);
  background: var(--red-light);
}
.globe-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.globe-card .flag { font-size: 2.5rem; margin-bottom: 0.75rem; }
.globe-card h4 { margin-bottom: 0.35rem; }
.globe-card p  { font-size: 0.83rem; margin: 0; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3.5rem;
}
.about-logo-wrap img { max-width: 280px; height: auto; }

.objectives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.obj-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.obj-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.obj-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--mid-gray);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.obj-card h4 { margin-bottom: 0.3rem; }
.obj-card p  { font-size: 0.85rem; margin: 0; }

/* ── TOURNAMENT PAGE ──────────────────────────────────────── */
.halloween-hero-section {
  background: var(--navy);
  padding: 7rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.halloween-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,16,46,0.2) 0%, transparent 60%);
}
.halloween-hero-section .bats {
  position: absolute;
  top: 2rem; left: 0; right: 0;
  font-size: 1.3rem;
  letter-spacing: 3rem;
  text-align: center;
  opacity: 0.12;
  pointer-events: none;
}
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,165,0,0.12);
  border: 1px solid rgba(255,165,0,0.28);
  color: #ffb347;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.timeline {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--mid-gray);
}
.timeline-item {
  position: relative;
  padding: 0 0 2.75rem 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -0.45rem; top: 0.3rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}
.t-date {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.timeline-item h3 { margin-bottom: 0.3rem; font-size: 1.15rem; }
.timeline-item p  { font-size: 0.92rem; margin: 0; }

.register-box {
  background: var(--off-white);
  border: 2px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 3.5rem;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}
.register-box h2 { margin-bottom: 0.75rem; }
.register-box p  { margin-bottom: 0; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── SPONSORSHIP PAGE ─────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.28s ease;
  text-align: center;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-dark); }
.why-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.why-card h3 { margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.9rem; margin: 0; }

.tier-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.28s ease;
}
.tier-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tier-band {
  padding: 2rem;
  text-align: center;
}
.tier-band.platinum { background: linear-gradient(135deg,#2d1f7a,#4c1d95); }
.tier-band.gold     { background: linear-gradient(135deg,#78350f,#b45309); }
.tier-band.silver   { background: linear-gradient(135deg,#334155,#475569); }
.tier-band.bronze   { background: linear-gradient(135deg,#431407,#7c2d12); }
.tier-band.inkind   { background: linear-gradient(135deg,#064e3b,#065f46); }

.tier-band h3    { color: var(--white); font-size: 1.2rem; margin-bottom: 0.25rem; }
.tier-band .amt  { font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: var(--white); }
.tier-band .tag  { font-size: 0.72rem; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; }

.perk-list { padding: 1.75rem; list-style: none; }
.perk-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.perk-list li:last-child { border-bottom: none; }
.perk-list li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }

.tiers-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.tiers-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}
.impact-item {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.impact-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.impact-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.impact-item h4 { margin-bottom: 0.35rem; }
.impact-item p  { font-size: 0.82rem; margin: 0; }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.c-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.c-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--red-light);
  border: 1px solid rgba(200,16,46,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.c-row h4 { margin-bottom: 0.2rem; }
.c-row p  { font-size: 0.92rem; margin: 0; }
.c-row a  { color: var(--red); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 3rem;
}
.contact-form-box h3 { margin-bottom: 0.25rem; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,92,0.08);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── INFO BOX ─────────────────────────────────────────────── */
.info-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.info-box h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mid);
  margin-bottom: 1.1rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-sub { margin: 0 auto 2.25rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .split-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .belief-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .tournament-callout { flex-direction: column; gap: 1rem; text-align: center; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .rules-grid   { grid-template-columns: 1fr 1fr; }
  .globe-grid   { grid-template-columns: 1fr 1fr; }
  .tier-row     { grid-template-columns: 1fr 1fr; }
  .tiers-grid-3 { grid-template-columns: 1fr 1fr; }
  .tiers-grid-2 { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr 1fr; }
  .impact-grid  { grid-template-columns: 1fr 1fr; }
  .objectives-grid { grid-template-columns: 1fr; }
  .split-grid > div:first-child { order: 2; }
}

@media (max-width: 640px) {
  .section-pad { padding: 4rem 0; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.1rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .mission-grid, .rules-grid, .globe-grid { grid-template-columns: 1fr; }
  .tier-row { grid-template-columns: 1fr; }
  .tiers-grid-3, .tiers-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  .contact-form-box { padding: 2rem 1.5rem; }
  .register-box { padding: 2.5rem 1.5rem; }
}

/* ── MOBILE HERO OVERRIDES (must come after all hero declarations) ── */
@media (max-width: 768px) {
  .hero-bg { background-position: 15% 42%; }
  .hero-bg::before {
    background: linear-gradient(to bottom,
      rgba(11,22,56,0.72) 0%,
      rgba(11,22,56,0.58) 45%,
      rgba(11,22,56,0.28) 70%,
      rgba(11,22,56,0.08) 100%);
  }
  .hero-pill { display: none; }
  .hero-sub-extra { display: none; }
  .hero .container { padding-top: 3rem; padding-bottom: 4rem; }
  .hero h1 { margin-bottom: 1.75rem; }
  .hero-sub { margin-bottom: 1.75rem; }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-buttons a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }
  .hero-buttons a.btn-outline-white { display: flex; }
}

/* ── SCROLL OFFSET for sticky nav ────────────────────────────── */
html { scroll-padding-top: 90px; }

/* ── FOCUS STATES (keyboard accessibility) ───────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--navy);
}

/* ── REDUCED MOTION ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ticker-inner       { animation: none; }
  .hero-pill .dot     { animation: none; }
  *                   { animation-duration: 0.01ms !important;
                        transition-duration: 0.01ms !important; }
}
