:root {
  --paper: #ffffff;
  --cream: #f2f2f2;
  --sage: #242424;
  --blush: #e6e6e6;
  --ink: #111111;
  --red: #cf2130;
  --red-dark: #a91422;
  --olive: #303030;
  --muted: #666666;
  --line: #d1d1d1;
  --content-max: 1320px;
  --content-gutters: clamp(48px, 10vw, 164px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header { height: 82px; background: #181818; color: white; box-shadow: 0 1px 0 rgba(255,255,255,.08); position: relative; z-index: 20; }
.header-inner { width: min(calc(100% - var(--content-gutters)), var(--content-max)); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.landing-frame { background: #111; }
.brand { display: flex; align-items: center; gap: 13px; white-space: nowrap; }
.brand img { width: 48px; height: 60px; object-fit: contain; }
.wordmark { color: white; font: 700 22px/1 Georgia, 'Times New Roman', serif; letter-spacing: -.025em; }
nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .045em; }
nav > a { position: relative; padding: 12px 0; color: #f3f3f3; transition: color .18s ease; }
nav > a::after { content: ''; position: absolute; bottom: 5px; left: 50%; width: 0; height: 2px; background: var(--red); transform: translateX(-50%); transition: width .18s ease; }
nav > a:hover, nav > a:focus-visible { color: white; }
nav > a:hover::after, nav > a:focus-visible::after, nav > a[aria-current='page']::after { width: 100%; }
nav > a:focus-visible { outline: 2px solid rgba(255,255,255,.9); outline-offset: 4px; }
.menu-toggle, .mobile-nav { display: none; }
.menu-toggle { width: 44px; height: 44px; padding: 0; border: 0; background: transparent; color: white; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle > span { width: 25px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.is-open > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open > span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle:focus-visible { outline: 2px solid white; outline-offset: 2px; }

.hero { padding: clamp(64px, 8vw, 118px) 0; background: #111; border-bottom: 4px solid var(--red); overflow: hidden; position: relative; isolation: isolate; }
.hero-background-image { position: absolute; z-index: -3; inset: 0; }
.hero-background-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 58%; opacity: 0; filter: saturate(.98) contrast(1.08) brightness(.88); transform: scale(1.14) translateX(14%); transition: opacity 1.1s ease; }
.hero-background-image img.is-active { opacity: 1; }
.hero::after { content: ''; position: absolute; z-index: -2; inset: 0; background: radial-gradient(circle at 22% 46%, rgba(58,58,58,.34) 0%, transparent 38%), linear-gradient(90deg, rgba(5,5,5,.99) 0%, rgba(14,14,14,.95) 34%, rgba(20,20,20,.72) 54%, rgba(16,16,16,.36) 73%, rgba(5,5,5,.08) 100%); }
.hero-content { width: min(calc(100% - var(--content-gutters)), var(--content-max)); margin: 0 auto; }
.hero-copy { width: calc(50% - (var(--content-gutters) / 2)); max-width: none; margin-left: 0; color: white; }
.hero-copy .eyebrow { margin: 0 0 18px; color: #f04a57; text-shadow: none; }
.hero-copy h1 { max-width: none; margin: 0; font: 700 clamp(44px, 4.3vw, 66px)/1 Georgia, 'Times New Roman', serif; letter-spacing: -.045em; }
.hero-copy h1 em { display: inline; width: auto; margin: 0; font-style: normal; }
.hero-copy .hero-lede { max-width: none; margin: 34px 0 0; color: rgba(255,255,255,.95); font-size: 18px; font-weight: 400; line-height: 1.7; letter-spacing: .005em; }
.hero-background-caption { position: absolute; z-index: 1; right: max(calc((100vw - var(--content-max)) / 2), calc(var(--content-gutters) / 2)); bottom: 18px; max-width: min(420px, calc(100% - 48px)); margin: 0; padding: 10px 14px; border-top: 1px solid var(--red); background: rgba(17,17,17,.86); color: rgba(255,255,255,.94); font-size: 11px; font-weight: 700; line-height: 1.35; letter-spacing: .025em; text-align: center; }
.eyebrow, .kicker { color: var(--red); text-transform: uppercase; font-weight: 800; font-size: 12px; letter-spacing: .2em; }
.eyebrow { display: flex; align-items: center; gap: 16px; }
.eyebrow span { width: 52px; height: 4px; background: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; letter-spacing: -.045em; }
h1 { font-size: clamp(64px, 7vw, 118px); line-height: .9; margin: 40px 0 38px; max-width: 820px; }
h1 em { width: fit-content; color: white; display: block; margin-top: .08em; font-weight: 700; }
.button { min-height: 58px; padding: 0 28px; display: inline-flex; align-items: center; justify-content: center; gap: 42px; text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .08em; transition: .2s ease; }
.button-dark { background: var(--ink); color: white; border: 2px solid var(--ink); }
.button-dark:hover { background: var(--red); border-color: var(--red); }
.button-outline { border: 2px solid var(--ink); }
.button-outline:hover { background: white; }
.hero .button-outline { border-color: white; color: white; }
.hero .button-outline:hover { background: white; color: var(--ink); }
.hero-visual { position: relative; min-height: 720px; padding: 0; margin-left: 0; }
.photo-wrap { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; overflow: hidden; z-index: 2; display: grid; grid-template-rows: minmax(0, 1fr) 44px; clip-path: none; -webkit-mask-image: none; mask-image: none; }
.photo-wrap:after { content: ''; position: absolute; inset: 0 0 44px; background: linear-gradient(90deg, rgba(143,10,27,.16) 0%, transparent 9%); pointer-events: none; }
.photo-wrap.no-caption { grid-template-rows: minmax(0, 1fr); }
.photo-wrap.no-caption:after { inset: 0; }
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 54%; filter: saturate(1.22) contrast(1.12) brightness(1.02); transform: scale(1.008); }
.hero-mashup-grid { width: 100%; height: 100%; min-height: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 2px; background: #111; }
.hero-mashup-grid img { min-width: 0; min-height: 0; object-position: 50% 50%; }
.hero-mashup-grid img:nth-child(3) { object-position: 50% 42%; }
.team-caption { position: static; z-index: 2; width: 100%; max-width: none; height: 44px; padding: 10px 14px; border-top: 1px solid var(--red); background: rgba(17,17,17,.96); color: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; line-height: 1.35; letter-spacing: .025em; text-align: center; transform: none; }

.section { padding: clamp(84px, 9vw, 144px) 0; }
.section-shell { width: min(calc(100% - var(--content-gutters)), var(--content-max)); margin: 0 auto; }
.section-intro { display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 50px; align-items: end; margin-bottom: 60px; }
.section-intro .kicker { grid-column: 1 / -1; margin-bottom: -20px; }
.section-intro h2, .story-copy h2 { font-size: clamp(44px, 5vw, 76px); line-height: 1; margin: 0; }
.section-intro p:last-child { font-size: 19px; line-height: 1.65; color: var(--muted); }
.pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.path-card { min-height: 390px; padding: 38px; border: 1px solid #cfcfcf; background: rgba(255,255,255,.96); color: var(--ink); display: flex; flex-direction: column; box-shadow: 0 14px 38px rgba(0,0,0,.16); backdrop-filter: blur(5px); }
.path-card + .path-card { border-left: 0; }
.path-card.featured { background: var(--red); color: white; border-color: var(--red); }
.path-card.select-card { background: linear-gradient(180deg, #2b2b2b 0%, #202020 100%); color: white; border-color: #5a5a5a; box-shadow: 0 14px 38px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.08); }
.card-label { text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 800; margin-bottom: 12px; }
.path-card h3 { font: 700 42px Georgia, serif; margin-bottom: 16px; }
.path-card > p:last-of-type { line-height: 1.6; color: var(--muted); }
.featured > p:last-of-type { color: rgba(255,255,255,.8); }
.select-card > p:last-of-type { color: rgba(255,255,255,.78); }
.text-link { margin-top: 26px; display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid currentColor; text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.pathway { background: var(--ink); border-top: 1px solid #303030; position: relative; overflow: hidden; isolation: isolate; }
.pathway::before { content: ''; position: absolute; z-index: -2; inset: 0; background: url('./pathway-field-v2.jpg') center 50% / cover no-repeat; opacity: .95; }
.pathway::after { content: ''; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(17,17,17,.68) 0%, rgba(17,17,17,.48) 42%, rgba(17,17,17,.24) 100%); }
.pathway > * { position: relative; z-index: 1; }
.pathway .section-intro { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.pathway .section-intro .kicker { margin-bottom: 30px; }
.pathway .section-intro h2 { grid-column: 1 / -1; padding: 0; color: white; white-space: nowrap; }
.pathway .section-intro > p:last-child { grid-column: 1 / -1; max-width: 900px; margin: 24px 0 0; padding: 0; color: #e0e0e0; }
.path-card-photo { position: relative; height: 234px; margin: 30px 0 0; overflow: hidden; background: #171717; flex: 0 0 auto; display: grid; grid-template-rows: minmax(0, 1fr) 44px; }
.path-card-photo img { width: 100%; height: 100%; min-height: 0; object-fit: cover; filter: saturate(1.08) contrast(1.04); }
.path-card-photo img.club-path-photo { object-position: 50% 60%; }
.path-card-photo img.travel-path-photo { object-position: 50% 60%; }
.path-card-photo img.select-path-photo { object-position: 50% 54%; }
.age-groups { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 7vw, 110px); align-items: end; }
.age-groups-intro h2 { font: 700 clamp(40px, 4.3vw, 68px)/1.02 Georgia, serif; letter-spacing: -.04em; margin: 18px 0 22px; max-width: 620px; }
.age-groups-intro > p:last-child { color: var(--muted); line-height: 1.65; max-width: 590px; }
.age-groups ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #b9b9b9; border-left: 1px solid #b9b9b9; }
.age-groups li { min-height: 126px; padding: 20px; border-right: 1px solid #b9b9b9; border-bottom: 1px solid #b9b9b9; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 13px; background: var(--cream); text-align: center; }
.age-groups li span { color: #3f3f3f; font-size: 11px; font-weight: 800; line-height: 1.4; letter-spacing: .025em; }
.age-groups li strong { color: var(--ink); font: 700 clamp(20px, 2vw, 30px) Georgia, serif; letter-spacing: -.02em; }
.age-groups li .birthdate-ranges { display: grid; gap: 4px; }
.age-groups li .birthdate-ranges span { display: block; }

.club-story { background: linear-gradient(90deg, var(--cream) 0 50%, var(--paper) 50% 100%); color: var(--ink); border-top: 1px solid #d5d5d5; }
.legacy-split { width: min(calc(100% - var(--content-gutters)), var(--content-max)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.story-copy { width: 100%; padding: clamp(76px, 8vw, 126px) clamp(32px, 5vw, 82px) clamp(76px, 8vw, 126px) 0; background: var(--cream); display: flex; flex-direction: column; }
.legacy-age-panel { padding: clamp(76px, 8vw, 126px) 0 clamp(76px, 8vw, 126px) clamp(32px, 5vw, 82px); background: var(--paper); display: flex; flex-direction: column; }
.legacy-age-panel .age-groups { display: block; }
.story-copy h2, .legacy-age-panel .age-groups-intro h2 { font: 700 clamp(44px, 4.3vw, 66px)/1 Georgia, 'Times New Roman', serif; letter-spacing: -.045em; margin: 0; }
.story-copy .kicker, .legacy-age-panel .kicker { margin-bottom: 18px; }
.legacy-age-panel .age-groups-intro > p:last-child { margin: 34px 0; font-size: 18px; line-height: 1.7; color: var(--muted); }
.legacy-age-panel .age-groups ul { grid-template-columns: repeat(2, 1fr); margin-top: 34px; }
.legacy-age-panel .age-groups li { min-height: 128px; }
.panel-photo-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: auto 0 0; padding-top: clamp(54px, 6vw, 82px); }
.story-photo { position: relative; width: 100%; min-height: 0; margin: 0; overflow: hidden; background: #dddddd; display: grid; grid-template-rows: auto 44px; }
.story-photo img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(1.04) contrast(1.03); }
.panel-photo-row .story-photo img { aspect-ratio: 16 / 9; }
.story-photo img.capital-cup-photo { object-position: 50% 72%; }
.story-photo img.u10-capital-photo { object-position: 50% 40%; }
.story-photo img.appalachian-photo { object-position: 50% 66%; }
.story-photo img.jefferson-cup-photo { object-position: 50% 56%; }
.story-photo img.presidents-cup-photo { object-position: 50% 55%; }
.story-caption { position: static; width: 100%; max-width: none; height: 44px; padding: 10px 14px; border-top: 1px solid var(--red); background: rgba(17,17,17,.96); color: rgba(255,255,255,.94); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; line-height: 1.35; letter-spacing: .025em; text-align: center; transform: none; }
.panel-photo-row .story-caption { background: rgba(17,17,17,.96); font-weight: 800; }
.story-copy > p:not(.kicker) { font-size: 18px; line-height: 1.7; color: var(--muted); margin: 34px 0; }
.values p { display: grid; grid-template-columns: 52px 1fr; gap: 20px; border-top: 1px solid #c7c7c7; padding: 18px 0; margin: 0; }
.values b { font: italic 20px Georgia, serif; color: var(--red); }
.values span { color: #555555; line-height: 1.45; }
.values strong { display: block; color: var(--ink); margin-bottom: 4px; }

footer { background: var(--ink); color: white; }
.footer-inner { width: min(calc(100% - var(--content-gutters)), var(--content-max)); margin: 0 auto; padding: 70px 0 28px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.footer-brand { display: flex; gap: 22px; align-items: center; }
.footer-brand img { width: 70px; }
.footer-brand p { line-height: 1.65; color: #a9a9a9; }
.footer-brand strong { color: white; }
.footer-title { margin: 0 0 0 auto; color: white; font: 700 clamp(38px, 4vw, 58px)/1 Georgia, 'Times New Roman', serif; letter-spacing: -.04em; text-align: right; white-space: nowrap; }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; margin: 54px 0; padding: 28px 0; border-block: 1px solid #3b3b3b; text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.footer-links a:hover { color: #f06b76; }
.footer-bottom { display: flex; justify-content: space-between; color: #777; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 980px) {
  .site-header { height: 74px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { position: absolute; top: 100%; right: 0; left: 0; display: grid; gap: 0; padding: 10px calc(var(--content-gutters) / 2) 18px; background: #181818; border-top: 1px solid #303030; box-shadow: 0 18px 34px rgba(0,0,0,.28); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .mobile-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .mobile-nav > a { width: 100%; padding: 16px 0; border-bottom: 1px solid #343434; color: white; font-size: 13px; }
  .mobile-nav > a:last-child { border-bottom: 0; }
  .mobile-nav > a::after { display: none; }
  .hero-copy { width: 100%; max-width: 720px; margin-left: 0; }
  .hero-visual { min-height: 520px; padding: 0; margin-left: 0; }
  .photo-wrap { height: 100%; clip-path: none; -webkit-mask-image: none; mask-image: none; }
  .section-intro { grid-template-columns: 1fr 1fr; }
  .section-intro h2 { grid-column: 1; }
  .pathway .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .pathway .section-intro .kicker, .pathway .section-intro h2 { grid-column: 1; padding-left: 0; padding-right: 0; }
  .pathway-grid { grid-template-columns: 1fr; }
  .path-card + .path-card { border-left: 1px solid var(--line); border-top: 0; }
  .age-groups { grid-template-columns: 1fr; }
  .club-story { background: var(--paper); }
  .legacy-split { width: 100%; grid-template-columns: 1fr; }
  .story-copy, .legacy-age-panel { padding-inline: calc(var(--content-gutters) / 2); }
  .story-photo { width: 100%; min-height: 0; }
}

@media (max-width: 620px) {
  .brand img { width: 42px; height: 52px; }
  .wordmark { font-size: 17px; }
  h1 { font-size: 60px; }
  .hero { padding-block: 56px; }
  .hero-visual { min-height: 420px; padding: 0; }
  .photo-wrap { height: 100%; }
  .photo-wrap p { left: 24px; }
  .section-intro { display: block; }
  .section-intro .kicker { margin-bottom: 20px; }
  .section-intro h2 { margin-bottom: 24px; }
  .pathway .section-intro h2 { white-space: normal; }
  .path-card { min-height: 360px; padding: 28px; }
  .age-groups ul { grid-template-columns: repeat(2, 1fr); }
  .panel-photo-row { grid-template-columns: 1fr; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-title { margin-left: 0; text-align: left; white-space: normal; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
