/* ===========================================================
   Coaches Connection — brand stylesheet (matched to Figma export)
   Fonts:  Archivo (display / headings, italic) · Urbanist (body)
   Brand:  navy #16228C · red #ED1C24 · light gray footer
   =========================================================== */

:root {
  --navy: #16228C;
  --navy-deep: #0C1566;
  --red: #ED1C24;
  --red-dark: #C8151C;
  --bg: #F7F7F8;
  --white: #FFFFFF;
  --gray-50: #F4F4F6;
  --gray-100: #ECECEF;
  --gray-200: #E4E4E9;
  --gray-300: #D4D6DC;
  --footer-bg: #C9CDD6;
  --text: #1B1B2A;
  --muted: #5A5A6C;
  --ring: rgba(22, 34, 140, 0.14);
  --shadow-sm: 0 1px 3px rgba(16, 16, 40, 0.06), 0 1px 2px rgba(16, 16, 40, 0.04);
  --shadow: 0 10px 30px rgba(16, 16, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(16, 22, 90, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Urbanist", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: "Archivo", "Urbanist", sans-serif;
  line-height: 1.08; margin: 0 0 .5em; letter-spacing: -0.01em; font-weight: 800;
}
.display-italic, .italic { font-style: italic; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: #fff; }
.section--navy { background: var(--navy-deep); color: #fff; }

.eyebrow {
  font-family: "Archivo", sans-serif; font-style: italic; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; margin: 0 0 .75rem;
}
.section--navy .eyebrow { color: #ff6b70; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-style: italic; color: var(--navy); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.section--navy .section-head h2 { color: #fff; }
.section--navy .section-head p { color: rgba(255,255,255,.8); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: "Urbanist", sans-serif; font-weight: 800; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(237,28,36,.28); }
.btn-primary:hover { background: var(--red-dark); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 8px 22px rgba(22,34,140,.24); }
.btn-navy:hover { background: var(--navy-deep); }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border-color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--navy); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Brand / logo ---------- */
.brand { display: flex; align-items: center; }
.brand-logo { height: 44px; width: auto; display: block; }
.footer-brand .brand-logo { height: 56px; }
@media (max-width: 460px) { .brand-logo { height: 36px; } }

/* ---------- Header (white) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: #fff; color: var(--navy);
  height: var(--header-h); display: flex; align-items: center;
  box-shadow: 0 1px 0 var(--gray-200), 0 6px 20px rgba(16,16,40,.05);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { font-weight: 700; font-size: 1.05rem; color: var(--navy); position: relative; padding: 6px 0; }
.main-nav a:hover { color: var(--red); }
.main-nav a.active { color: var(--navy); }
.main-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2.5px; background: var(--red); border-radius: 2px; }
.main-nav .nav-donate { display: none; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; transition: .25s; border-radius: 2px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero (full-bleed photo) ---------- */
.hero {
  position: relative;
  background: linear-gradient(rgba(255,255,255,.42), rgba(255,255,255,.5)), url("../img/coach-smiling.jpg");
  background-size: cover; background-position: center right;
  text-align: center; padding: 120px 0 128px;
}
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); font-style: italic; letter-spacing: -.02em; margin-bottom: 14px; color: var(--navy); }
.hero h1 .c2 { color: var(--red); }
.hero-tagline { font-size: clamp(1.2rem, 2.4vw, 1.7rem); font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.hero-sub { color: rgba(27,27,42,.55); font-weight: 600; letter-spacing: .02em; margin: 0 0 32px; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* interior page hero */
.page-hero {
  background: radial-gradient(120% 160% at 80% -20%, #2233b0 0%, var(--navy) 50%, var(--navy-deep) 100%);
  color: #fff; text-align: center; padding: 96px 0 84px; position: relative; overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-style: italic; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.2rem; max-width: 620px; margin: 10px auto 0; }

/* ---------- Partners ---------- */
.partners { background: #fff; }
.partners .container { padding-top: 30px; padding-bottom: 44px; }
.partners-head { text-align: center; margin-bottom: 30px; }
.partners-head h2 { font-size: 1.9rem; font-style: italic; color: var(--navy); margin: 0; }
.partners-carousel { display: flex; align-items: center; gap: 8px; }
.partners-arrow { flex: none; width: 46px; height: 46px; border: 0; background: none; color: var(--red); cursor: pointer; font-size: 2.4rem; line-height: 1; display: grid; place-items: center; transition: color .15s, transform .15s; }
.partners-arrow:hover { color: var(--red-dark); transform: scale(1.1); }
.partners-viewport { flex: 1 1 auto; overflow: hidden; }
.partners-marquee { display: flex; gap: 44px; width: max-content; animation: pmarquee 32s linear infinite; }
.partners-carousel:hover .partners-marquee { animation-play-state: paused; }
.partners-marquee.reverse { animation-direction: reverse; }
@keyframes pmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner { flex: 0 0 auto; width: 190px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.partner img { height: 90px; width: auto; max-width: 100%; object-fit: contain; transition: transform .2s ease; }
.partner:hover img { transform: translateY(-3px); }
.partner .pname { color: #3a3d4a; font-weight: 600; font-size: 1.05rem; text-align: center; }
@media (max-width: 480px) { .partner { width: 150px; } .partners-marquee { gap: 32px; } }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 34px 32px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--ring); }
.card h3 { font-size: 1.35rem; font-family: "Archivo"; font-style: italic; font-weight: 800; color: var(--navy); }
.card p { color: var(--muted); margin: 0; }

/* red outline feature icon (What We Do) */
.ficon { width: 42px; height: 42px; color: var(--red); margin-bottom: 18px; }
.ficon svg { width: 100%; height: 100%; }

/* filled icon badge (used on other pages) */
.icon-badge { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--navy); color: #fff; margin-bottom: 18px; }
.icon-badge.red { background: var(--red); }
.icon-badge svg { width: 26px; height: 26px; }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: 20px; box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/3; width: 100%; }
.split h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-style: italic; color: var(--navy); }
.split p { color: var(--muted); font-size: 1.06rem; }
.mv-card { border-top: 4px solid var(--navy); }
.mv-card.red-top { border-top-color: var(--red); }

/* mission bullet list (red icon + navy label) */
.mission-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 16px; }
.mission-list li { display: flex; align-items: center; gap: 14px; font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.mission-list li svg { width: 26px; height: 26px; color: var(--red); flex: none; }

/* ---------- Sports grid (red duotone) ---------- */
.sports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sport { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/2; box-shadow: var(--shadow-sm); }
.sport img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sport:hover img { transform: scale(1.05); }
.sport::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(237,28,36,.55) 0%, rgba(200,40,50,.5) 45%, rgba(22,34,140,.45) 100%);
  mix-blend-mode: multiply;
}
.sport::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,10,30,.45), rgba(20,10,30,0) 55%);
}
.sport-cap { position: absolute; left: 22px; bottom: 20px; z-index: 2; color: #fff; }
.sport-cap .s-name { display: block; font-family: "Archivo"; font-weight: 800; font-style: italic; font-size: 1.5rem; line-height: 1.1; }
.sport-cap .s-year { display: block; font-weight: 600; font-size: .95rem; opacity: .92; margin-top: 2px; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stat b { font-family: "Archivo"; font-style: italic; font-weight: 900; font-size: clamp(2.6rem,5vw,3.6rem); display: block; color: var(--red); line-height: 1; }
.stat span { color: #fff; font-weight: 600; letter-spacing: .02em; font-size: 1.05rem; }

/* ---------- Light CTA (Ready to Make a Difference) ---------- */
.cta-light { text-align: center; }
.cta-light h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-style: italic; color: var(--navy); }
.cta-light p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* navy CTA band (used on interior pages) */
.cta-band { background: radial-gradient(120% 140% at 20% 0%, #2233b0, var(--navy) 55%, var(--navy-deep)); color: #fff; text-align: center; border-radius: 26px; padding: 56px 28px; box-shadow: var(--shadow-lg); }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-style: italic; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 26px; }

/* ---------- Roadmap / timeline ---------- */
.roadmap { position: relative; display: grid; gap: 26px; }
.roadmap::before { content:""; position:absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: var(--gray-300); }
.milestone { display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start; position: relative; }
.milestone .node { width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 2px solid var(--gray-300); display: grid; place-items: center; font-family: "Archivo"; font-style: italic; font-weight: 900; color: var(--navy); z-index: 2; box-shadow: var(--shadow-sm); }
.milestone.done .node { background: var(--red); border-color: var(--red); color: #fff; }
.milestone .m-body { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-sm); }
.milestone .m-body h4 { font-family: "Urbanist"; font-weight: 800; font-size: 1.15rem; margin-bottom: 4px; }
.milestone .m-body p { margin: 0; color: var(--muted); }
.milestone .phase { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }

/* checklist */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-weight: 600; }
.check-list li svg { flex: none; width: 22px; height: 22px; color: var(--red); margin-top: 2px; }

/* people */
.person { text-align: center; }
.person img { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 4px solid #fff; box-shadow: var(--shadow); }
.person h4 { font-family: "Urbanist"; font-weight: 800; margin-bottom: 2px; }
.person .role { color: var(--red); font-weight: 700; font-size: .9rem; margin-bottom: 10px; }
.person p { color: var(--muted); font-size: .96rem; margin: 0; }

/* forms */
.form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; background: var(--gray-50); color: var(--text); transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px var(--ring); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .85rem; color: var(--muted); margin: 6px 0 0; }
.form-success { display: none; background: #e9fbef; border: 1px solid #b7e9c6; color: #17632f; padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 700; margin-bottom: 16px; }
.form-success.show { display: block; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ci-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff; display: grid; place-items: center; flex: none; }
.contact-list .ci-icon svg { width: 22px; height: 22px; }
.contact-list b { display: block; font-family: "Urbanist"; }
.contact-list span { color: var(--muted); }

/* social row (headers/contact) */
.socials { display: flex; gap: 12px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: var(--gray-100); color: var(--navy); display: grid; place-items: center; transition: .15s; }
.socials a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-family: "Urbanist"; font-weight: 800; font-size: 1.05rem; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; transition: transform .25s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

/* donation */
.impact-tier { text-align: center; }
.impact-tier .amt { font-family: "Archivo"; font-style: italic; font-weight: 900; font-size: 2.2rem; color: var(--navy); }
.impact-tier .icon-badge { margin: 0 auto 14px; }
.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.amount-opt { padding: 16px 8px; border: 2px solid var(--gray-300); border-radius: var(--radius-sm); background: var(--gray-50); font-weight: 800; font-family: "Archivo"; font-style: italic; font-size: 1.15rem; color: var(--navy); cursor: pointer; transition: .15s; text-align: center; }
.amount-opt:hover { border-color: var(--navy); }
.amount-opt.selected { background: var(--navy); color: #fff; border-color: var(--navy); }
.toggle-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.toggle-opt { padding: 18px; border: 2px solid var(--gray-300); border-radius: var(--radius-sm); text-align: center; cursor: pointer; background: var(--gray-50); transition: .15s; }
.toggle-opt.selected { background: var(--navy); border-color: var(--navy); }
.toggle-opt b { display: block; font-family: "Archivo"; font-style: italic; font-weight: 800; font-size: 1.2rem; color: var(--navy); }
.toggle-opt span { color: var(--muted); font-size: .92rem; font-weight: 600; }
.toggle-opt.selected b, .toggle-opt.selected span { color: #fff; }
.amount-grid.six { grid-template-columns: repeat(3, 1fr); }
.donate-form { max-width: 780px; margin: 0 auto; }
.donate-label { color: var(--red); font-family: "Archivo"; font-style: italic; font-weight: 800; font-size: 1.2rem; display: block; margin-bottom: 14px; }
.check-2col { grid-template-columns: 1fr 1fr; gap: 22px 44px; max-width: 980px; margin: 0 auto; }
.check-2col li { font-size: 1.05rem; }
@media (max-width: 720px) { .check-2col { grid-template-columns: 1fr; } .amount-grid.six { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Footer (light gray) ---------- */
.site-footer { background: var(--footer-bg); color: #2B2E3A; padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 44px; }
.footer-brand { margin-bottom: 22px; }
.footer-about { max-width: 360px; margin: 0 0 16px; font-size: 1rem; color: #33364a; }
.footer-501 { color: #565a6e; font-size: .95rem; margin: 0; }
.footer-col h4 { color: var(--red); font-family: "Archivo"; font-style: italic; font-weight: 800; font-size: 1.25rem; margin-bottom: 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-links a { color: #26293a; text-decoration: underline; font-size: 1.05rem; }
.footer-links a:hover { color: var(--red); }
.footer-social { display: flex; gap: 18px; align-items: center; margin-bottom: 22px; }
.footer-social a { color: var(--navy); transition: .15s; }
.footer-social a:hover { color: var(--red); transform: translateY(-2px); }
.footer-social svg { width: 24px; height: 24px; display: block; }
.footer-email { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 600; }
.footer-email svg { width: 22px; height: 22px; }
.footer-email span { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,.12); margin-top: 46px; padding-top: 24px; text-align: center; font-size: .9rem; color: #4a4d5e; }
.footer-bottom a { text-decoration: underline; }
.footer-bottom a:hover { color: var(--red); }

/* ---------- Photo hero (interior pages) ---------- */
.photo-hero { position: relative; background-size: cover; background-position: center; color: #fff; text-align: center; padding: 118px 0 112px; }
.photo-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(10,12,60,.5), rgba(10,12,60,.58)); }
.photo-hero .container { position: relative; z-index: 2; }
.photo-hero h1 { font-size: clamp(2.3rem, 6vw, 4.4rem); font-style: italic; color: #fff; text-transform: uppercase; letter-spacing: -.01em; }
.photo-hero p { color: rgba(255,255,255,.92); font-size: clamp(1.1rem, 2.2vw, 1.4rem); margin: 8px auto 0; max-width: 720px; }

/* gray band */
.section--gray { background: #E7E7EB; }

/* centered prose (Our Story) */
.prose-center { max-width: 900px; margin: 0 auto; text-align: center; }
.prose-center h2 { font-style: italic; color: var(--navy); font-size: clamp(2rem,3.8vw,2.9rem); margin-bottom: 26px; }
.prose-center p { color: var(--muted); font-size: 1.1rem; text-align: left; }

/* roadmap horizontal cards */
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 46px; }
.rm-card { position: relative; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 48px 24px 28px; text-align: center; box-shadow: var(--shadow-sm); margin-top: 28px; }
.rm-circle { position: absolute; top: -28px; left: 50%; transform: translateX(-50%); width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: "Archivo"; font-style: italic; font-weight: 900; font-size: 1.05rem; box-shadow: var(--shadow-sm); }
.rm-card h4 { font-family: "Archivo"; font-style: italic; font-weight: 800; color: var(--navy); font-size: 1.2rem; margin-bottom: 8px; }
.rm-card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* contact info (red labels, plain navy icons) */
.contact-info { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.contact-info li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info .ci-ic { color: var(--navy); flex: none; }
.contact-info .ci-ic svg { width: 28px; height: 28px; }
.contact-info .ci-label { display: block; font-family: "Archivo"; font-style: italic; font-weight: 800; color: var(--red); font-size: 1.2rem; margin-bottom: 2px; }
.contact-info a { color: var(--text); text-decoration: underline; }
.contact-info span { color: var(--text); }
.socials-red { display: flex; gap: 18px; align-items: center; }
.socials-red a { color: var(--red); transition: .15s; }
.socials-red a:hover { color: var(--red-dark); transform: translateY(-2px); }
.socials-red svg { width: 26px; height: 26px; display: block; }
.faq-icon { width: 48px; height: 48px; color: var(--red); margin: 0 auto 16px; }
.faq-icon svg { width: 100%; height: 100%; }

/* eligibility / application process box */
.eligibility-card { max-width: 900px; margin: 0 auto; }
.app-process { background: #FCEBEB; border-radius: var(--radius); padding: 26px 30px; margin-top: 24px; }
.app-process h4 { font-family: "Archivo"; font-style: italic; font-weight: 800; color: var(--navy); font-size: 1.25rem; margin-bottom: 12px; }
.app-process p { color: var(--muted); margin: 0 0 12px; }
.app-process p:last-child { margin-bottom: 0; }

/* team layout */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.team-card h3 { font-family: "Archivo"; font-style: italic; font-weight: 800; color: var(--navy); font-size: 1.4rem; }
.team-card .rob { font-weight: 800; color: var(--text); display: block; margin-bottom: 4px; }
.team-card .board-note { font-style: italic; color: var(--muted); font-size: .92rem; margin-top: 14px; }
.team-wide { margin-top: 26px; }

/* what makes us different (navy text columns) */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.diff h3 { font-family: "Archivo"; font-style: italic; color: #ff5a60; font-size: 1.5rem; margin-bottom: 10px; }
.diff p { color: rgba(255,255,255,.85); margin: 0; }

@media (max-width: 900px) {
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; gap: 26px; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) { .roadmap-grid { grid-template-columns: 1fr; } }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { max-width: none; }
}
@media (max-width: 820px) {
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px 22px 22px;
    transform: translateY(-140%); transition: transform .3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,.14); max-height: calc(100vh - var(--header-h)); overflow: auto;
  }
  .nav-open .main-nav { transform: translateY(0); }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid var(--gray-200); font-size: 1.08rem; }
  .main-nav a.active::after { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn:not(.nav-toggle) { display: none; }
  .main-nav .nav-donate { display: block; color: var(--red); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; gap: 26px; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 96px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 460px) {
  .sports-grid { grid-template-columns: 1fr; }
  .brand-text { font-size: 1.05rem; white-space: normal; }
}
