@font-face {
  font-family: "Russo One";
  src: url("../fonts/russo-one.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 950;
  font-display: swap;
}

:root {
  --ink: #071327;
  --ink-soft: #15233a;
  --blue: #1d5cff;
  --blue-deep: #103b9f;
  --coral: #ff5a3d;
  --gold: #f1c75b;
  --cream: #f5f1e8;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: rgba(7, 19, 39, 0.15);
  --display: "Russo One", "Arial Black", "Helvetica Neue", sans-serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.container { width: min(1320px, calc(100% - 80px)); margin-inline: auto; }
.section-space { padding: 128px 0; }
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow.light { color: #fff; }

.site-header {
  position: absolute; inset: 0 0 auto; z-index: 50; height: 112px; display: grid; grid-template-columns: 330px 1fr auto;
  align-items: center; padding: 0 44px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.2);
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 0; }
.brand img { width: 56px; height: 62px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--display); font-size: 20px; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.brand-copy small { margin-top: 7px; color: rgba(255,255,255,.72); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.desktop-nav { min-width: 0; }
.desktop-nav .desktop-menu { display: flex; align-items: center; justify-content: center; gap: clamp(17px, 1.7vw, 30px); margin: 0; padding: 0; list-style: none; white-space: nowrap; }
.desktop-nav .desktop-menu > li { position: relative; margin: 0; }
.desktop-nav a { position: relative; padding: 12px 0; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 6px; height: 2px; background: var(--gold); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.desktop-nav .sub-menu { position: absolute; z-index: 70; top: calc(100% + 8px); left: 50%; min-width: 230px; margin: 0; padding: 8px 0; color: #fff; background: rgba(5,14,29,.97); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 18px 45px rgba(0,0,0,.3); list-style: none; opacity: 0; pointer-events: none; transform: translate(-50%, 8px); transition: opacity .2s ease, transform .2s ease; }
.desktop-nav .sub-menu::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 10px; }
.desktop-nav li:hover > .sub-menu, .desktop-nav li:focus-within > .sub-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.desktop-nav .sub-menu li { margin: 0; }
.desktop-nav .sub-menu a { display: block; padding: 12px 18px; font-size: 9px; white-space: normal; }
.desktop-nav .sub-menu a:hover, .desktop-nav .sub-menu a:focus { color: var(--ink); background: var(--gold); }
.desktop-nav .sub-menu a::after { display: none; }
.header-contact { border: 1px solid rgba(255,255,255,.55); padding: 13px 19px; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transition: .2s ease; }
.header-contact:hover { color: var(--ink); background: #fff; }
.mobile-nav { display: none; }

.site-footer { color: #fff; background: #050e1d; }
.footer-main { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; padding: 96px max(40px, calc((100vw - 1320px)/2)); }
.footer-brand { display: flex; align-items: center; gap: 32px; }
.footer-brand img { width: 110px; height: 120px; object-fit: contain; }
.footer-brand .eyebrow { color: var(--gold); }
.footer-brand h2 { margin: 0; font-family: var(--display); font-size: clamp(34px, 3.2vw, 54px); font-weight: 900; letter-spacing: -.045em; line-height: .95; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-label { margin: 0 0 10px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px max(40px, calc((100vw - 1320px)/2)); color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.12); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.home-hero { position: relative; min-height: 900px; height: 100vh; color: #fff; background: var(--ink); overflow: hidden; }
.home-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.home-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,12,27,.94) 0%, rgba(4,12,27,.74) 38%, rgba(4,12,27,.09) 72%), linear-gradient(0deg, rgba(4,12,27,.55), transparent 44%); }
.home-hero-grain { position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(rgba(255,255,255,.55) .45px, transparent .65px); background-size: 4px 4px; mix-blend-mode: overlay; }
.home-hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; height: 100%; padding-top: 80px; }
.home-hero-content h1 { max-width: 870px; margin: 0; font-family: var(--display); font-size: clamp(82px, 9vw, 150px); font-weight: 950; letter-spacing: -.07em; line-height: .76; text-transform: uppercase; }
.home-hero-content h1 em { color: var(--gold); font-family: var(--serif); font-size: .6em; font-weight: 400; letter-spacing: -.03em; text-transform: none; }
.hero-lede { max-width: 620px; margin: 42px 0 0; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.35vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 52px; padding: 0 24px; border: 0; font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--blue); }
.button.primary:hover { background: #0048ed; }
.button.ghost { color: #fff; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.04); }
.button.cream { color: var(--ink); background: var(--cream); }
.dark-button { color: #fff !important; }
.icon-arrow { position: relative; display: inline-block; flex: 0 0 12px; width: 12px; height: 12px; vertical-align: -1px; }
.icon-arrow::before { content: ""; position: absolute; top: 0; right: 0; width: 7px; height: 7px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; }
.icon-arrow::after { content: ""; position: absolute; top: 6px; left: 1px; width: 12px; height: 2px; background: currentColor; transform: rotate(-45deg); transform-origin: center; }
.play-icon { display: inline-block; flex: 0 0 auto; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid currentColor; }
.icon-close { position: relative; display: block; width: 18px; height: 18px; margin: auto; }
.icon-close::before, .icon-close::after { content: ""; position: absolute; top: 0; left: 8px; width: 2px; height: 18px; background: currentColor; }
.icon-close::before { transform: rotate(45deg); }
.icon-close::after { transform: rotate(-45deg); }
.hero-edition { position: absolute; z-index: 2; right: 38px; bottom: 44px; display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; gap: 0 14px; padding: 19px 22px; border: 1px solid rgba(255,255,255,.5); background: rgba(3,10,22,.65); backdrop-filter: blur(12px); }
.hero-edition > span { grid-row: 1 / 3; color: var(--gold); font-family: var(--display); font-size: 38px; font-weight: 950; line-height: 1; writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-edition strong { font-family: var(--display); font-size: 17px; font-weight: 950; letter-spacing: -.02em; line-height: .95; text-transform: uppercase; }
.hero-edition small { margin-top: 8px; color: rgba(255,255,255,.7); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.scroll-cue { position: absolute; z-index: 2; bottom: 46px; left: 44px; display: flex; align-items: center; gap: 12px; font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue span { width: 42px; height: 1px; background: #fff; }
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); color: #fff; background: var(--blue); }
.stats-band > div { display: flex; align-items: center; gap: 18px; min-height: 128px; padding: 24px 4vw; border-right: 1px solid rgba(255,255,255,.24); }
.stats-band strong { font-family: var(--display); font-size: 40px; font-weight: 950; letter-spacing: -.04em; }
.stats-band span { max-width: 110px; color: rgba(255,255,255,.78); font-size: 9px; font-weight: 800; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.sponsor-strip { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 26px; min-height: 108px; padding: 20px max(40px, calc((100vw - 1320px)/2)); color: var(--ink); background: var(--gold); }
.sponsor-strip-copy { display: flex; flex-direction: column; }
.sponsor-strip small { margin-bottom: 4px; font-size: 8px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.sponsor-strip strong { font-family: var(--display); font-size: clamp(25px, 2.4vw, 38px); font-weight: 900; letter-spacing: -.025em; text-transform: uppercase; }
.sponsor-strip-link { display: flex; align-items: center; gap: 24px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.split-intro, .editorial-grid, .mission-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 11vw; align-items: start; }
.section-heading { max-width: 690px; }
.section-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(50px, 6vw, 92px); font-weight: 950; letter-spacing: -.065em; line-height: .91; text-transform: uppercase; }
.section-heading > p:last-child:not(.eyebrow) { max-width: 560px; margin: 26px 0 0; color: #5b6472; font-size: 16px; line-height: 1.65; }
.section-heading.is-light h2, .section-heading.is-light > p:last-child:not(.eyebrow) { color: #fff; }
.section-heading.is-light .eyebrow { color: var(--gold); }
.intro-copy, .story-copy { color: #4f5969; font-size: 16px; line-height: 1.82; }
.intro-copy p, .story-copy p { margin: 0 0 24px; }
.large-copy, .story-copy .large-copy { color: var(--ink); font-family: var(--serif); font-size: clamp(24px, 2.2vw, 35px); line-height: 1.28; }
.arrow-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 40px; min-width: 210px; margin-top: 12px; padding: 0 0 11px; color: var(--ink); border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.arrow-link span { transition: transform .2s ease; }
.arrow-link:hover span { transform: translate(3px, -3px); }
.photo-marquee { display: grid; grid-template-columns: .85fr 1.5fr .85fr; gap: 18px; align-items: center; width: min(1550px, calc(100% - 36px)); margin: 110px auto 0; }
.photo-marquee figure { margin: 0; overflow: hidden; }
.photo-marquee img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-marquee figure:hover img { transform: scale(1.03); }
.photo-tall { height: 480px; }
.photo-wide { height: 650px; }

.latest-performance { color: #fff; background: var(--ink); overflow: hidden; }
.latest-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 7vw; align-items: center; }
.latest-copy { position: relative; z-index: 2; }
.display-number { position: absolute; z-index: -1; top: -110px; left: -50px; margin: 0; color: rgba(255,255,255,.035); font-family: var(--display); font-size: 330px; font-weight: 950; line-height: 1; }
.latest-copy h2 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(64px, 7.2vw, 118px); font-weight: 950; letter-spacing: -.07em; line-height: .79; text-transform: uppercase; }
.latest-copy > p:not(.eyebrow):not(.display-number) { max-width: 430px; color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.7; }
.latest-copy .arrow-link { color: #fff; }
.performance-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 18px; }
.performance-actions .button { min-width: 170px; }
.latest-image-wrap { position: relative; }
.latest-image-wrap img { width: 100%; height: 620px; object-fit: cover; }
.latest-badge { position: absolute; right: -40px; bottom: -40px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 150px; aspect-ratio: 1; color: var(--ink); border-radius: 50%; background: var(--gold); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-align: center; text-transform: uppercase; transform: rotate(8deg); }
.latest-badge strong { max-width: 110px; font-family: var(--display); font-size: 23px; font-weight: 950; letter-spacing: -.025em; line-height: .95; }

.section-topline { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.event-filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; }
.event-filter-tabs button { min-height: 43px; padding: 0 18px; color: #626c79; border: 1px solid var(--line); background: transparent; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: .2s ease; }
.event-filter-tabs button:hover { color: var(--blue); border-color: var(--blue); }
.event-filter-tabs button.active { color: #fff; border-color: var(--blue); background: var(--blue); }
.event-list { margin-top: 72px; border-top: 1px solid var(--line); }
.event-row { display: grid; grid-template-columns: 120px 1fr 260px 44px; align-items: center; gap: 32px; min-height: 142px; padding: 22px 0; border-bottom: 1px solid var(--line); transition: padding .2s ease, background .2s ease; }
.event-row:hover { padding-inline: 18px; background: #fff; }
.event-date { display: flex; align-items: baseline; gap: 10px; }
.event-date span { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.event-date strong { font-family: var(--display); font-size: 44px; font-weight: 950; }
.event-row h3 { margin: 0; font-family: var(--display); font-size: clamp(24px, 2.4vw, 38px); font-weight: 900; letter-spacing: -.035em; text-transform: uppercase; }
.event-category { width: max-content; margin: 0 0 8px; color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.event-category.public { color: var(--coral); }
.event-category.member { color: #aa7a00; }
.event-row p { margin: 0; color: #717986; font-size: 13px; }
.event-row > a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); transition: .2s ease; }
.event-row:hover > a { color: #fff; border-color: var(--blue); background: var(--blue); }
.empty-events { margin: 0; padding: 55px 0; color: #737c88; border-bottom: 1px solid var(--line); }

.sponsorship-section { position: relative; color: #fff; background: linear-gradient(120deg, #0b255c 0%, var(--blue-deep) 48%, var(--blue) 100%); overflow: hidden; }
.sponsorship-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: center; }
.sponsorship-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(58px, 6.5vw, 102px); font-weight: 950; letter-spacing: -.065em; line-height: .84; text-transform: uppercase; }
.sponsorship-copy h2 em { color: var(--gold); font-family: var(--serif); font-size: .58em; font-weight: 400; letter-spacing: -.03em; text-transform: none; }
.sponsorship-copy > p:not(.eyebrow) { max-width: 590px; margin: 30px 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.75; }
.sponsor-opportunities { border-top: 1px solid rgba(255,255,255,.3); }
.sponsor-opportunities article { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.3); }
.sponsor-opportunities article > span { padding-top: 5px; color: var(--gold); font-size: 10px; font-weight: 900; }
.sponsor-opportunities h3 { margin: 0 0 9px; font-family: var(--display); font-size: clamp(25px, 2.4vw, 38px); font-weight: 900; letter-spacing: -.03em; text-transform: uppercase; }
.sponsor-opportunities p { max-width: 600px; margin: 0; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.65; }
.sponsor-logo-marquee { position: relative; width: 100%; margin-top: 90px; border: 0; background: #fff; overflow: hidden; }
.sponsor-logo-marquee::before, .sponsor-logo-marquee::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 90px; pointer-events: none; }
.sponsor-logo-marquee::before { left: 0; background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); }
.sponsor-logo-marquee::after { right: 0; background: linear-gradient(270deg, #fff, rgba(255,255,255,0)); }
.sponsor-logo-track { display: flex; width: max-content; animation: sponsor-scroll var(--sponsor-duration, 40s) linear infinite; will-change: transform; }
.sponsor-logo-slot { display: grid; grid-template-columns: 26px 1fr; grid-template-rows: auto auto; align-items: center; column-gap: 14px; flex: 0 0 250px; min-height: 118px; padding: 24px 30px; border-right: 1px solid rgba(255,255,255,.28); }
.sponsor-logo-slot > span { grid-row: 1 / 3; color: var(--gold); font-size: 8px; font-weight: 900; }
.sponsor-logo-slot strong { align-self: end; font-family: var(--display); font-size: 22px; line-height: 1; text-transform: uppercase; }
.sponsor-logo-slot small { align-self: start; margin-top: 7px; color: rgba(255,255,255,.52); font-size: 7px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
@keyframes sponsor-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.awards-feature { color: #fff; background: var(--blue); }
.awards-feature-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: center; }
.awards-feature-copy .eyebrow { color: var(--gold); }
.awards-feature-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(65px, 7vw, 110px); font-weight: 950; letter-spacing: -.07em; line-height: .79; text-transform: uppercase; }
.awards-feature-copy h2 em { color: var(--gold); font-family: var(--serif); font-size: .58em; font-weight: 400; letter-spacing: -.03em; text-transform: none; }
.awards-feature-copy > p:not(.eyebrow) { max-width: 500px; margin: 32px 0; color: rgba(255,255,255,.72); line-height: 1.75; }
.award-stack { border-top: 1px solid rgba(255,255,255,.35); }
.award-stack a { display: grid; grid-template-columns: 55px 1fr auto; align-items: center; gap: 20px; min-height: 144px; border-bottom: 1px solid rgba(255,255,255,.35); transition: padding .2s ease, background .2s ease; }
.award-stack a:hover { padding-inline: 18px; background: rgba(255,255,255,.1); }
.award-stack span { color: var(--gold); font-size: 10px; font-weight: 900; }
.award-stack strong { font-family: var(--display); font-size: clamp(28px, 3vw, 46px); font-weight: 900; letter-spacing: -.04em; text-transform: uppercase; }
.award-stack small { color: rgba(255,255,255,.7); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.news-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 26px; margin-top: 72px; }
.news-card img { width: 100%; height: 260px; object-fit: cover; filter: saturate(.85); transition: .4s ease; }
.news-card.featured img { height: 390px; }
.news-card:hover img { filter: saturate(1.1); transform: scale(1.01); }
.news-card .eyebrow { margin-top: 26px; margin-bottom: 12px; color: #727b88; font-size: 8px; }
.news-card h3 { margin: 0; font-family: var(--display); font-size: clamp(24px, 2.3vw, 36px); font-weight: 900; letter-spacing: -.04em; line-height: 1; text-transform: uppercase; }
.news-card > p:not(.eyebrow) { color: #626b78; font-size: 13px; line-height: 1.65; }
.news-card .arrow-link { min-width: 150px; }
.home-cta { position: relative; min-height: 680px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.home-cta > img, .home-cta-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-cta-overlay { background: linear-gradient(90deg, rgba(4,12,27,.94), rgba(4,12,27,.45)); }
.home-cta-content { position: relative; z-index: 1; }
.home-cta-content h2 { margin: 0 0 38px; font-family: var(--display); font-size: clamp(65px, 7.5vw, 120px); font-weight: 950; letter-spacing: -.07em; line-height: .84; text-transform: uppercase; }

.page-hero { position: relative; min-height: 670px; display: flex; align-items: end; padding: 190px 0 86px; color: #fff; background: var(--ink); overflow: hidden; }
.page-hero > img, .page-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-shade { background: linear-gradient(90deg, rgba(3,11,24,.93) 0%, rgba(3,11,24,.7) 48%, rgba(3,11,24,.15) 85%), linear-gradient(0deg, rgba(3,11,24,.75), transparent 65%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { max-width: 1120px; margin: 0; font-family: var(--display); font-size: clamp(74px, 9vw, 150px); font-weight: 950; letter-spacing: -.075em; line-height: .82; text-transform: uppercase; }
.page-hero-content > p:last-child { max-width: 700px; margin: 32px 0 0; color: rgba(255,255,255,.8); font-size: clamp(16px, 1.5vw, 21px); line-height: 1.55; }

.chapter-number { margin: -10px 0 20px; color: rgba(7,19,39,.09); font-family: var(--display); font-size: 100px; font-weight: 950; letter-spacing: -.06em; line-height: 1; }
.drop-cap::first-letter { float: left; margin: 7px 10px 0 0; color: var(--blue); font-family: var(--serif); font-size: 76px; line-height: .7; }
.history-photo-break { position: relative; min-height: 730px; }
.history-photo-break > img { width: 100%; height: 730px; object-fit: cover; }
.history-quote { position: absolute; right: 6vw; bottom: -70px; width: min(620px, 72vw); padding: 58px 64px; color: #fff; background: var(--blue); }
.history-quote span { color: var(--gold); font-family: var(--serif); font-size: 82px; line-height: .45; }
.history-quote blockquote { margin: 20px 0 0; font-family: var(--serif); font-size: clamp(25px, 2.6vw, 40px); line-height: 1.2; }
.history-story { padding-top: 190px; }
.history-gallery-section { background: #f0ece3; }
.history-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 70px; }
.history-gallery figure { position: relative; min-height: 360px; margin: 0; overflow: hidden; background: var(--ink); }
.history-gallery .gallery-feature { grid-row: span 2; min-height: 736px; }
.history-gallery .gallery-wide { grid-column: span 2; }
.history-gallery img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform .5s ease; }
.history-gallery figure:hover img { transform: scale(1.025); }
.history-gallery figcaption { position: absolute; right: 0; bottom: 0; padding: 13px 17px; color: #fff; background: rgba(5,14,29,.86); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.captains-section { color: #fff; background: var(--ink); }
.captain-timeline { margin-top: 72px; border-top: 1px solid rgba(255,255,255,.18); }
.captain-timeline article { display: grid; grid-template-columns: 80px 250px 1fr 1fr; align-items: center; gap: 30px; min-height: 126px; border-bottom: 1px solid rgba(255,255,255,.18); }
.timeline-index { color: var(--gold); font-size: 9px; font-weight: 900; }
.captain-timeline p { color: rgba(255,255,255,.6); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.captain-timeline h3 { margin: 0; font-family: var(--display); font-size: clamp(25px, 3vw, 44px); font-weight: 900; letter-spacing: -.04em; text-transform: uppercase; }
.captain-timeline small { color: rgba(255,255,255,.56); line-height: 1.5; }

.officer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 45px 20px; margin-top: 80px; }
.officer-card { border-top: 1px solid var(--line); }
.officer-photo { position: relative; aspect-ratio: .8; display: grid; place-items: center; margin-bottom: 22px; color: rgba(255,255,255,.75); background: linear-gradient(145deg, var(--blue-deep), var(--ink)); overflow: hidden; }
.officer-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: saturate(.84); }
.officer-photo > span { font-family: var(--display); font-size: 62px; font-weight: 950; }
.officer-card > p { margin: 0 0 9px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.officer-card > h2 { margin: 0; font-family: var(--display); font-size: 27px; font-weight: 900; letter-spacing: -.04em; text-transform: uppercase; }
.officer-feature { grid-column: span 1; }
.leadership-cta, .calendar-cta { padding: 110px 0; color: #fff; background: var(--blue); }
.leadership-cta h2, .calendar-cta h2 { margin: 0 0 32px; font-family: var(--display); font-size: clamp(55px, 6vw, 92px); font-weight: 950; letter-spacing: -.06em; line-height: .87; text-transform: uppercase; }

.archive-topline { align-items: center; }
.archive-summary { display: flex; flex-direction: column; gap: 12px; min-width: 260px; }
.archive-summary .button { width: 100%; }
.archive-stat { display: flex; align-items: center; gap: 18px; min-width: 260px; padding: 30px; color: #fff; background: var(--blue); }
.archive-stat strong { font-family: var(--display); font-size: 58px; font-weight: 950; line-height: 1; }
.archive-stat span { font-size: 9px; font-weight: 850; letter-spacing: .12em; line-height: 1.5; text-transform: uppercase; }
.theme-table-section { padding: 0 0 128px; }
.theme-table { border-top: 2px solid var(--ink); }
.theme-row { display: grid; grid-template-columns: 105px 1fr 105px 190px 118px; align-items: center; gap: 24px; min-height: 102px; padding-inline: 12px; border-bottom: 1px solid var(--line); }
.theme-head { min-height: 52px; color: #7b838e; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.theme-row > strong { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 27px; font-weight: 950; }
.theme-row > strong > span { color: #c38b00; font-size: 13px; }
.theme-title-cell { min-width: 0; }
.theme-row h2 { margin: 0; font-family: var(--display); font-size: clamp(20px, 2vw, 30px); font-weight: 850; letter-spacing: -.025em; text-transform: uppercase; }
.mobile-captain { display: none; }
.theme-row > span { font-size: 13px; font-weight: 800; }
.theme-row > p { color: #697280; font-size: 13px; }
.theme-row.winner { margin: 6px 0; border: 1px solid rgba(195,139,0,.45); border-left: 7px solid var(--gold); background: linear-gradient(90deg, rgba(241,199,91,.3), rgba(255,255,255,.5) 55%, rgba(241,199,91,.12)); box-shadow: 0 10px 26px rgba(7,19,39,.06); }
.theme-row.winner > strong { color: var(--blue-deep); font-size: 31px; }
.theme-row.winner h2 { color: var(--blue-deep); }
.theme-prize { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.theme-prize small { color: #966c00; font-size: 7px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.theme-video-cell { display: flex; justify-content: flex-start; }
.theme-video-cell > span { color: #a0a6ae; }
.watch-button.compact { display: inline-flex; align-items: center; gap: 7px; min-height: 38px; padding: 0 13px; color: #fff; border: 0; background: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; transition: .2s ease; }
.watch-button.compact:hover { background: var(--blue-deep); transform: translateY(-2px); }

body.video-open { overflow: hidden; }
.video-modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 30px; background: rgba(2,8,18,.91); backdrop-filter: blur(10px); }
.video-modal-panel { width: min(1100px, 100%); max-height: calc(100vh - 60px); padding: 26px; color: #fff; background: var(--ink); box-shadow: 0 30px 90px rgba(0,0,0,.5); overflow: auto; }
.video-modal-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; margin-bottom: 20px; }
.video-modal-topline .eyebrow { margin-bottom: 8px; color: var(--gold); }
.video-modal-topline h2 { margin: 0; font-family: var(--display); font-size: clamp(25px, 3vw, 44px); line-height: 1; text-transform: uppercase; }
.video-modal-topline button { display: grid; place-items: center; flex: 0 0 46px; width: 46px; height: 46px; color: #fff; border: 1px solid rgba(255,255,255,.35); background: transparent; font-size: 30px; cursor: pointer; }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-panel > a { display: block; width: max-content; margin: 20px 0 0 auto; color: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.award-index-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.award-index-list > a { display: grid; grid-template-columns: 100px minmax(0, 1fr) 70px; gap: 45px; align-items: center; width: 100%; min-height: 240px; padding: 35px 20px; border-bottom: 1px solid var(--line); transition: .25s ease; }
.award-index-list > a > div { min-width: 0; }
.award-index-list > a:hover { color: #fff; background: var(--blue); padding-inline: 45px; }
.award-index-list > a > span { color: var(--blue); font-size: 11px; font-weight: 900; }
.award-index-list > a:hover > span, .award-index-list > a:hover small { color: var(--gold); }
.award-index-list small { color: #7a828e; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.award-index-list h2 { margin: 10px 0; font-family: var(--display); font-size: clamp(44px, 5vw, 76px); font-weight: 950; letter-spacing: -.06em; line-height: .9; text-transform: uppercase; }
.award-index-list p { max-width: 690px; margin: 0; color: #6c7480; line-height: 1.6; }
.award-index-list > a:hover p { color: rgba(255,255,255,.72); }
.award-index-list > a > strong { display: grid; place-items: center; font-size: 28px; }
.award-quote { padding: 100px 0; color: #fff; background: var(--ink); }
.award-quote .container { display: flex; align-items: flex-start; gap: 34px; }
.award-quote span { color: var(--gold); font-size: 60px; }
.award-quote blockquote { max-width: 940px; margin: 0; font-family: var(--serif); font-size: clamp(32px, 4vw, 62px); line-height: 1.1; }
.awards-subnav { display: flex; align-items: center; justify-content: center; gap: 0; color: #fff; background: var(--blue); }
.awards-subnav a { padding: 24px 40px; border-right: 1px solid rgba(255,255,255,.3); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.awards-subnav a:first-child { border-left: 1px solid rgba(255,255,255,.3); }
.awards-subnav a:hover { color: var(--ink); background: var(--gold); }
.honor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; background: var(--line); border: 1px solid var(--line); }
.honor-card { min-height: 118px; display: flex; align-items: center; gap: 22px; padding: 28px; background: var(--paper); }
.honor-card span { color: var(--blue); font-family: var(--display); font-size: 22px; font-weight: 950; }
.honor-card strong { font-family: var(--display); font-size: 21px; font-weight: 850; letter-spacing: -.02em; text-transform: uppercase; }

.memorial-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; align-items: center; }
.memorial-portrait { position: relative; padding: 0 35px 35px 0; }
.memorial-portrait::before { content: ""; position: absolute; z-index: -1; inset: 50px 0 0 45px; background: var(--gold); }
.memorial-portrait img { width: 100%; aspect-ratio: .86; object-fit: cover; filter: sepia(.1); }
.memorial-portrait span { position: absolute; right: 0; bottom: 0; max-width: 230px; padding: 18px 22px; color: #fff; background: var(--blue); font-size: 9px; font-weight: 850; letter-spacing: .12em; line-height: 1.5; text-transform: uppercase; }
.donation-card { display: grid; margin-top: 36px; padding: 28px; color: #fff; background: var(--ink); }
.donation-card .eyebrow { color: var(--gold); }
.donation-card strong { margin-bottom: 10px; font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.donation-card span { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.6; }
.impact-section { color: #fff; background: var(--ink); }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; background: rgba(255,255,255,.16); }
.impact-grid article { min-height: 340px; padding: 40px; background: var(--ink); }
.impact-grid article > span { color: var(--gold); font-size: 10px; font-weight: 900; }
.impact-grid h3 { margin: 55px 0 18px; font-family: var(--display); font-size: 35px; font-weight: 950; text-transform: uppercase; }
.impact-grid p { color: rgba(255,255,255,.62); line-height: 1.65; }
.impact-grid .arrow-link { color: #fff; }

.events-page-grid { display: grid; grid-template-columns: 360px 1fr; gap: 9vw; align-items: start; }
.events-page-grid aside { position: sticky; top: 24px; align-self: start; }
.event-sidebar { padding: 36px; color: #fff; background: var(--ink); }
.event-sidebar .eyebrow { color: var(--gold); }
.event-sidebar > h2 { margin: 0; font-family: var(--display); font-size: clamp(45px, 5vw, 72px); font-weight: 950; letter-spacing: -.06em; line-height: .9; text-transform: uppercase; }
.event-sidebar > p:not(.eyebrow) { margin: 24px 0 0; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.7; }
.event-sidebar .event-filter-tabs { flex-direction: column; margin-top: 30px; }
.event-sidebar .event-filter-tabs button { width: 100%; color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.22); text-align: left; }
.event-sidebar .event-filter-tabs button:hover { color: #fff; border-color: var(--gold); }
.event-sidebar .event-filter-tabs button.active { color: var(--ink); border-color: var(--gold); background: var(--gold); }
.event-key { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; color: #6a7380; font-size: 11px; }
.event-sidebar .event-key { color: rgba(255,255,255,.6); }
.event-key span { display: flex; align-items: center; gap: 10px; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.dot.public { background: var(--coral); } .dot.member { background: var(--gold); } .dot.club { background: var(--blue); }
.event-cards { border-top: 2px solid var(--ink); }
.event-cards article { display: grid; grid-template-columns: 130px 1fr 50px; align-items: center; gap: 30px; min-height: 200px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.event-date-large { display: grid; grid-template-columns: auto auto; align-items: baseline; gap: 0 8px; }
.event-date-large span { color: var(--blue); font-size: 10px; font-weight: 900; }
.event-date-large strong { grid-row: 1 / 3; grid-column: 2; font-family: var(--display); font-size: 66px; font-weight: 950; line-height: 1; }
.event-date-large small { color: #7a828e; font-size: 9px; font-weight: 800; }
.event-cards h2 { margin: 0 0 8px; font-family: var(--display); font-size: clamp(28px, 3vw, 45px); font-weight: 950; letter-spacing: -.04em; line-height: .95; text-transform: uppercase; }
.event-cards p:not(.eyebrow) { margin: 0; color: #6d7580; font-size: 13px; }
.event-cards article > a { display: grid; place-items: center; width: 48px; aspect-ratio: 1; color: #fff; background: var(--blue); }
.event-type.public { color: var(--coral); }
.event-type.member { color: #aa7a00; }

.memorial-subnav { display: flex; align-items: stretch; justify-content: center; color: #fff; background: var(--blue); }
.memorial-subnav a { display: grid; place-items: center; min-height: 68px; padding: 15px 32px; border-right: 1px solid rgba(255,255,255,.28); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-align: center; text-transform: uppercase; transition: .2s ease; }
.memorial-subnav a:first-child { border-left: 1px solid rgba(255,255,255,.28); }
.memorial-subnav a:hover { color: var(--ink); background: var(--gold); }
.program-story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; align-items: start; }
.program-values { color: #fff; background: var(--ink); }
.program-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; background: rgba(255,255,255,.18); }
.program-value-grid article { min-height: 300px; padding: 38px; background: var(--ink); }
.program-value-grid span { color: var(--gold); font-size: 9px; font-weight: 900; }
.program-value-grid h3 { margin: 50px 0 16px; font-family: var(--display); font-size: 32px; text-transform: uppercase; }
.program-value-grid p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.7; }
.program-photo-feature { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 660px; color: #fff; background: var(--blue); }
.program-photo-feature > img { width: 100%; height: 100%; min-height: 660px; object-fit: cover; }
.program-photo-feature > div { display: flex; flex-direction: column; justify-content: center; padding: 70px; }
.program-photo-feature h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 5vw, 78px); line-height: .9; text-transform: uppercase; }
.program-photo-feature p:not(.eyebrow) { color: rgba(255,255,255,.72); line-height: 1.7; }
.program-photo-feature .arrow-link { color: #fff; }
.program-cta { padding: 110px 0; color: #fff; background: var(--blue); }
.program-cta h2 { margin: 0 0 32px; font-family: var(--display); font-size: clamp(55px, 6vw, 92px); font-weight: 950; letter-spacing: -.06em; line-height: .87; text-transform: uppercase; }

.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: center; }
.store-image { position: relative; min-height: 600px; display: grid; place-items: center; background: linear-gradient(145deg, var(--blue), var(--ink)); overflow: hidden; }
.store-image img { position: relative; z-index: 1; width: 220px; filter: drop-shadow(0 25px 30px rgba(0,0,0,.35)); }
.store-image span { position: absolute; right: 24px; bottom: 24px; color: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.store-copy > p:not(.large-copy) { color: #6c7480; line-height: 1.7; }
.store-copy .button { margin-top: 20px; }
.text-link { display: block; width: max-content; margin-top: 25px; padding-bottom: 5px; border-bottom: 1px solid; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.theme-store-card { display: grid; grid-template-columns: .65fr 1.35fr; align-items: center; gap: 8vw; padding: 80px; color: #fff; background: linear-gradient(120deg, var(--blue-deep), var(--ink)); }
.theme-store-card > img { width: 240px; margin: auto; }
.theme-store-card h2 { margin: 0 0 20px; font-family: var(--display); font-size: clamp(45px, 5vw, 75px); font-weight: 950; letter-spacing: -.06em; line-height: .9; text-transform: uppercase; }
.theme-store-card p:not(.eyebrow) { color: rgba(255,255,255,.7); line-height: 1.65; }

.news-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px 26px; margin-top: 70px; }
.news-page-grid article { display: grid; grid-template-columns: 1fr; gap: 28px; }
.news-page-grid .news-lead { grid-column: 1 / -1; grid-template-columns: 1.35fr 1fr; align-items: center; }
.news-image { overflow: hidden; }
.news-image img { width: 100%; height: 340px; object-fit: cover; transition: transform .4s ease; }
.news-lead .news-image img { height: 520px; }
.news-image:hover img { transform: scale(1.025); }
.news-page-grid h2 { margin: 0; font-family: var(--display); font-size: clamp(32px, 4vw, 62px); font-weight: 950; letter-spacing: -.055em; line-height: .9; text-transform: uppercase; }
.news-page-grid article:not(.news-lead) h2 { font-size: clamp(28px, 3vw, 44px); }
.news-page-grid article p:not(.eyebrow) { color: #626b78; line-height: 1.65; }
.news-archive { margin-top: 110px; border-top: 2px solid var(--ink); }
.news-archive > .eyebrow { padding-top: 28px; }
.news-archive > a { display: grid; grid-template-columns: 180px 1fr 50px; gap: 30px; align-items: center; min-height: 150px; border-bottom: 1px solid var(--line); }
.news-archive > a > span { color: #737b87; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.news-archive h3 { margin: 0; font-family: var(--display); font-size: 28px; font-weight: 900; text-transform: uppercase; }
.news-archive p { margin: 8px 0 0; color: #69717d; font-size: 13px; }

.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: clamp(50px, 7vw, 110px); align-items: start; }
.contact-info, .contact-form { min-width: 0; }
.contact-method { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-method > span { color: var(--blue); font-size: 9px; font-weight: 900; }
.contact-method div { display: flex; flex-direction: column; align-items: flex-start; width: 100%; min-width: 0; }
.contact-method small { margin-bottom: 7px; color: #707984; font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-method a, .contact-method p { max-width: 100%; margin: 0; font-family: var(--display); font-size: clamp(18px, 1.5vw, 21px); font-weight: 850; line-height: 1.35; overflow-wrap: anywhere; text-transform: uppercase; }
.contact-form { padding: 50px; color: #fff; background: var(--ink); }
.contact-form .eyebrow { color: var(--gold); }
.contact-form label { display: block; margin: 0 0 24px; }
.contact-form label > span { display: block; margin-bottom: 9px; color: rgba(255,255,255,.65); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: #fff; border: 0; border-bottom: 1px solid rgba(255,255,255,.26); border-radius: 0; outline: 0; background: transparent; }
.contact-form input, .contact-form select { height: 48px; }
.contact-form textarea { min-height: 160px; padding: 14px 0; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form option { color: var(--ink); }
.contact-form > small { display: block; margin-top: 15px; color: rgba(255,255,255,.43); }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 280px 1fr auto; padding-inline: 28px; }
  .brand-copy small { display: none; }
  .desktop-nav .desktop-menu { gap: 15px; }
  .desktop-nav a { font-size: 8px; }
  .officer-grid { grid-template-columns: repeat(3, 1fr); }
  .container { width: min(100% - 56px, 1180px); }
}

@media (max-width: 900px) {
  .container { width: min(100% - 40px, 820px); }
  .section-space { padding: 88px 0; }
  .site-header { height: 88px; grid-template-columns: 1fr auto; padding-inline: 20px; }
  .brand img { width: 42px; height: 48px; }
  .brand-copy strong { font-size: 17px; }
  .desktop-nav, .header-contact { display: none; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav summary { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 48px; height: 44px; padding: 0 9px; border: 2px solid rgba(255,255,255,.8); list-style: none; cursor: pointer; transform: skew(-8deg); }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { display: block; width: 27px; height: 3px; margin-left: auto; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.25); }
  .mobile-nav summary span:nth-child(2) { width: 21px; background: var(--gold); }
  .mobile-nav summary span:last-child { width: 27px; }
  body.menu-open { overflow: hidden; }
  .mobile-nav-panel { position: fixed; inset: 88px 0 0; display: block; max-height: calc(100vh - 88px); padding: 24px 26px calc(45px + env(safe-area-inset-bottom)); color: #fff; background: linear-gradient(160deg, #071327, #0c1d39); border-top: 1px solid rgba(255,255,255,.14); overflow-y: auto; overscroll-behavior: contain; }
  .mobile-nav-panel .mobile-menu { display: block; margin: 0; padding: 0; list-style: none; }
  .mobile-nav-panel .mobile-menu > li, .mobile-nav-panel .sub-menu li { display: block; margin: 0; list-style: none; }
  .mobile-nav-panel > a:not(.mobile-menu-brand), .mobile-nav-panel .mobile-menu > li > a { display: flex; align-items: center; min-height: 66px; padding: 0 10px; border-bottom: 1px solid rgba(255,255,255,.16); font-family: var(--display); font-size: clamp(23px, 6.5vw, 31px); font-weight: 950; letter-spacing: .025em; line-height: 1; text-transform: uppercase; }
  .mobile-menu-brand { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; padding: 4px 0 25px; border-bottom: 2px solid var(--gold); text-align: center; }
  .mobile-menu-brand img { width: 82px; height: 90px; object-fit: contain; }
  .mobile-menu-brand strong { font-family: var(--display); font-size: 17px; font-weight: 950; letter-spacing: .07em; text-transform: uppercase; }
  .mobile-nav-panel .sub-menu { display: block; margin: 0; padding: 7px 0 10px 19px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.04); list-style: none; }
  .mobile-nav-panel .sub-menu a { display: flex; align-items: center; min-height: 48px; padding: 0 12px; color: rgba(255,255,255,.72); border-bottom: 1px solid rgba(255,255,255,.08); font-family: var(--display); font-size: 13px; font-weight: 900; letter-spacing: .06em; line-height: 1.15; text-transform: uppercase; }
  .mobile-nav-panel .sub-menu li:last-child a { border-bottom: 0; }
  .home-hero { min-height: 740px; height: 92vh; }
  .home-hero-image { object-position: 62% center; }
  .home-hero-overlay { background: linear-gradient(90deg, rgba(4,12,27,.92), rgba(4,12,27,.28)), linear-gradient(0deg, rgba(4,12,27,.8), transparent 60%); }
  .home-hero-content h1 { font-size: clamp(63px, 15vw, 105px); }
  .hero-edition { display: none; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stats-band > div { min-height: 105px; border-bottom: 1px solid rgba(255,255,255,.22); }
  .split-intro, .editorial-grid, .mission-grid, .latest-grid, .awards-feature-grid, .sponsorship-grid, .memorial-grid, .store-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .section-heading h2 { font-size: clamp(46px, 10vw, 74px); }
  .photo-marquee { grid-template-columns: 1fr 1fr; }
  .photo-marquee figure:last-child { display: none; }
  .photo-tall, .photo-wide { height: 480px; }
  .latest-copy h2, .awards-feature-copy h2 { font-size: clamp(62px, 13vw, 95px); }
  .latest-image-wrap img { height: 520px; }
  .event-row { grid-template-columns: 95px 1fr 44px; }
  .event-row > p { display: none; }
  .award-stack a { min-height: 115px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: 1 / -1; }
  .news-card.featured img { height: 450px; }
  .footer-main { grid-template-columns: 1fr; padding: 72px 28px; }
  .page-hero { min-height: 590px; }
  .history-photo-break, .history-photo-break > img { min-height: 560px; height: 560px; }
  .history-gallery { grid-template-columns: 1fr 1fr; }
  .history-gallery .gallery-feature { grid-row: span 1; min-height: 360px; }
  .history-gallery .gallery-wide { grid-column: span 2; }
  .captain-timeline article { grid-template-columns: 55px 150px 1fr; }
  .captain-timeline small { display: none; }
  .officer-grid { grid-template-columns: repeat(2, 1fr); }
  .theme-row { grid-template-columns: 75px 1fr 80px 118px; }
  .theme-row > p, .theme-head span:nth-child(4) { display: none; }
  .award-index-list > a { grid-template-columns: 60px minmax(0, 1fr) 45px; }
  .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: 1fr; }
  .events-page-grid { grid-template-columns: 280px minmax(0, 1fr); gap: 40px; }
  .events-page-grid aside { position: sticky; top: 20px; }
  .event-sidebar { grid-row: auto; padding: 30px 24px; }
  .program-story-grid { grid-template-columns: 1fr; gap: 55px; }
  .program-value-grid { grid-template-columns: 1fr; }
  .program-photo-feature { grid-template-columns: 1fr; }
  .program-photo-feature > img { min-height: 480px; }
  .program-photo-feature > div { padding: 60px 35px; }
  .theme-store-card { grid-template-columns: 1fr; text-align: center; }
  .news-page-grid .news-lead { grid-template-columns: 1fr; }
  .news-lead .news-image img { height: 440px; }
}

@media (max-width: 620px) {
  body { overflow-x: hidden; }
  .container { width: calc(100% - 30px); }
  .section-space { padding: 70px 0; }
  .home-hero { min-height: 700px; }
  .home-hero-content { justify-content: flex-end; padding-bottom: 105px; }
  .home-hero-content h1 { font-size: clamp(57px, 18vw, 82px); line-height: .8; }
  .hero-lede { margin-top: 28px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 290px; }
  .scroll-cue { left: 18px; bottom: 30px; }
  .stats-band > div { padding: 20px; }
  .stats-band strong { font-size: 32px; }
  .stats-band span { font-size: 8px; }
  .sponsor-strip { grid-template-columns: 1fr; gap: 12px; padding: 19px 18px; }
  .sponsor-strip-link { grid-column: auto; width: max-content; }
  .sponsorship-section .container, .sponsorship-grid, .sponsorship-copy, .sponsor-opportunities, .sponsor-opportunities article > div { min-width: 0; max-width: 100%; }
  .sponsorship-grid { gap: 54px; }
  .sponsorship-copy h2 { max-width: 100%; font-size: clamp(42px, 12vw, 52px); letter-spacing: -.055em; line-height: .9; }
  .sponsorship-copy h2 em { font-size: .62em; line-height: 1.05; }
  .sponsorship-copy > p:not(.eyebrow) { max-width: 100%; font-size: 15px; line-height: 1.7; }
  .sponsorship-copy .button { width: 100%; max-width: 330px; }
  .sponsor-opportunities article { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; padding: 28px 0; }
  .sponsor-opportunities h3 { max-width: 100%; font-size: clamp(21px, 6vw, 27px); letter-spacing: -.025em; line-height: 1; }
  .sponsor-opportunities p { max-width: 100%; font-size: 13px; line-height: 1.6; }
  .sponsor-logo-marquee { margin-top: 60px; }
  .sponsor-logo-marquee::before, .sponsor-logo-marquee::after { width: 34px; }
  .sponsor-logo-slot { flex-basis: 220px; min-height: 104px; padding: 18px 20px; }
  .sponsor-logo-slot.has-logo { grid-template-columns: 60px minmax(0, 1fr); flex-basis: 265px; padding: 18px; }
  .sponsor-logo-slot.has-logo > img { width: 56px; height: 54px; }
  .sponsor-logo-slot.has-logo strong { font-size: 14px; }
  .section-heading h2 { font-size: clamp(43px, 13vw, 66px); }
  .photo-marquee { grid-template-columns: 1fr; margin-top: 70px; }
  .photo-marquee figure:first-child { display: none; }
  .photo-wide { height: 390px; }
  .latest-image-wrap img { height: 400px; }
  .latest-badge { right: 10px; bottom: -50px; width: 125px; }
  .performance-actions { align-items: stretch; flex-direction: column; max-width: 300px; }
  .section-topline { align-items: flex-start; flex-direction: column; }
  .event-filter-tabs { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .event-filter-tabs button { padding-inline: 10px; }
  .event-row { grid-template-columns: 76px 1fr 40px; gap: 14px; min-height: 120px; }
  .event-date { gap: 5px; }
  .event-date strong { font-size: 34px; }
  .event-row h3 { font-size: 22px; }
  .award-stack a { grid-template-columns: 38px 1fr; }
  .award-stack small { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: auto; }
  .news-card.featured img, .news-card img { height: 290px; }
  .home-cta { min-height: 560px; }
  .home-cta-content h2 { font-size: clamp(52px, 14vw, 78px); }
  .footer-main { gap: 55px; padding-inline: 20px; }
  .footer-brand { align-items: flex-start; gap: 20px; }
  .footer-brand img { width: 75px; height: 84px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; padding-inline: 20px; }
  .page-hero { min-height: 540px; padding: 150px 0 55px; }
  .page-hero-content h1 { font-size: clamp(54px, 17vw, 86px); }
  .chapter-number { font-size: 74px; }
  .history-photo-break, .history-photo-break > img { min-height: 470px; height: 470px; }
  .history-quote { right: 15px; bottom: -100px; width: calc(100% - 30px); padding: 35px; }
  .history-story { padding-top: 160px; }
  .history-gallery { grid-template-columns: 1fr; }
  .history-gallery figure, .history-gallery .gallery-feature { min-height: 390px; }
  .history-gallery .gallery-wide { grid-column: auto; }
  .captain-timeline article { grid-template-columns: 45px 1fr; gap: 10px; min-height: 110px; }
  .captain-timeline p { display: none; }
  .captain-timeline .timeline-index { grid-column: 1; grid-row: 1 / span 2; align-self: center; }
  .captain-timeline h3 { grid-column: 2; grid-row: 1; align-self: end; }
  .captain-timeline small { display: block; grid-column: 2; grid-row: 2; align-self: start; max-width: 260px; padding-bottom: 18px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.45; }
  .officer-grid { grid-template-columns: 1fr 1fr; gap: 36px 12px; }
  .officer-card > h2 { font-size: 20px; }
  .archive-stat { width: 100%; }
  .archive-summary { width: 100%; }
  .theme-head { display: none; }
  .theme-row:not(.theme-head) { grid-template-columns: 70px minmax(0, 1fr) 42px; grid-template-rows: auto auto; grid-template-areas: "year title video" "prize title video"; gap: 5px 12px; min-height: 116px; margin: 8px 0; padding: 18px 10px; border: 1px solid var(--line); background: #fff; }
  .theme-row > strong { grid-area: year; align-self: end; font-size: 24px; }
  .theme-title-cell { grid-area: title; align-self: center; }
  .theme-row h2 { font-size: 18px; line-height: 1.05; }
  .mobile-captain { display: block; margin-top: 9px; color: #747d89; font-family: var(--body); font-size: 8px; font-weight: 850; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
  .theme-prize { grid-area: prize; align-self: start; color: var(--blue); }
  .theme-video-cell { grid-area: video; align-self: center; justify-self: end; }
  .theme-row.winner > strong { font-size: 24px; }
  .theme-row > strong > span { display: none; }
  .theme-prize small { display: none; }
  .theme-row.winner:not(.theme-head) { border: 2px solid var(--gold); border-left: 8px solid var(--gold); background: linear-gradient(110deg, rgba(241,199,91,.58), #fff 78%); box-shadow: 0 12px 30px rgba(7,19,39,.11); }
  .theme-row.winner > strong { color: var(--blue-deep); }
  .theme-row.winner h2 { color: var(--blue-deep); }
  .theme-row.winner .theme-prize { display: inline-flex; width: max-content; padding: 5px 7px; color: var(--ink); border-radius: 2px; background: var(--gold); line-height: 1; }
  .theme-row.winner .theme-prize small { display: block; color: var(--ink); font-size: 6px; }
  .watch-button.compact { justify-content: center; width: 38px; min-height: 38px; padding: 0; font-size: 0; }
  .award-index-list > a { grid-template-columns: 36px minmax(0, 1fr) 25px; gap: 12px; min-height: 220px; padding-inline: 5px; }
  .award-index-list > a:hover { padding-inline: 12px; }
  .award-index-list h2 { font-size: 38px; }
  .awards-subnav { align-items: stretch; }
  .awards-subnav a { flex: 1; padding: 19px 10px; font-size: 7px; text-align: center; }
  .honor-grid { grid-template-columns: 1fr; }
  .memorial-portrait { padding-right: 20px; }
  .impact-grid article { min-height: 300px; }
  .event-cards article { grid-template-columns: 95px 1fr; gap: 12px; }
  .event-cards article > a { display: none; }
  .event-date-large strong { font-size: 50px; }
  .events-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .events-page-grid aside { position: static; }
  .event-sidebar { grid-row: 1; padding: 30px 22px; }
  .memorial-subnav { display: grid; grid-template-columns: 1fr 1fr; }
  .memorial-subnav a { min-height: 58px; padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,.28); }
  .program-value-grid article { min-height: 260px; }
  .program-photo-feature > img { min-height: 390px; }
  .program-photo-feature > div { padding: 48px 20px; }
  .video-modal { padding: 12px; }
  .video-modal-panel { max-height: calc(100vh - 24px); padding: 16px; }
  .video-modal-topline h2 { font-size: 23px; }
  .store-image { min-height: 420px; }
  .theme-store-card { padding: 45px 25px; }
  .news-page-grid { grid-template-columns: 1fr; }
  .news-page-grid .news-lead { grid-column: auto; }
  .news-lead .news-image img, .news-image img { height: 300px; }
  .news-archive > a { grid-template-columns: 1fr 30px; gap: 15px; padding: 22px 0; }
  .news-archive > a > span { grid-column: 1 / -1; }
  .contact-method a[href^="mailto:"] { font-size: clamp(14px, 4.2vw, 18px); }
  .contact-form { padding: 32px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .sponsor-logo-track { width: auto; flex-wrap: wrap; animation: none; }
}

/* WordPress integration */
[hidden] { display: none !important; }
.page-editor-content:empty { display: none; }
.page-editor-content > p,
.page-editor-content > h2,
.page-editor-content > h3,
.page-editor-content > ul,
.page-editor-content > ol,
.page-editor-content > .wp-block-group,
.page-editor-content > .wp-block-columns,
.page-editor-content > .wp-block-image,
.page-editor-content > .wp-block-gallery { width: min(820px, calc(100% - 40px)); margin-right: auto; margin-left: auto; }
.page-editor-content > p:first-child { margin-top: 90px; }
.page-editor-content > p:last-child { margin-bottom: 90px; }
.page-editor-content .wp-block-image img { width: 100%; }
.front-editor-section { background: var(--paper); }
.prose-content { color: #414b5b; font-size: 17px; line-height: 1.86; }
.prose-content > * { max-width: 820px; margin-right: auto; margin-left: auto; }
.prose-content > .alignwide { max-width: 1120px; }
.prose-content > .alignfull { max-width: none; }
.prose-content h2, .prose-content h3 { color: var(--ink); font-family: var(--display); font-weight: 950; letter-spacing: -.045em; line-height: .95; text-transform: uppercase; }
.prose-content h2 { margin-top: 70px; font-size: clamp(40px, 5vw, 68px); }
.prose-content h3 { margin-top: 48px; font-size: clamp(28px, 3vw, 42px); }
.prose-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose-content blockquote { margin-top: 50px; margin-bottom: 50px; padding: 30px 40px; color: var(--ink); border-left: 5px solid var(--gold); background: var(--cream); font-family: var(--serif); font-size: 28px; line-height: 1.35; }
.prose-content figcaption { color: #68717e; font-size: 11px; font-weight: 750; letter-spacing: .06em; text-align: center; text-transform: uppercase; }

.sponsor-logo-slot.has-logo { display: grid; grid-template-columns: 1fr; grid-template-rows: 1fr; place-items: center; flex-basis: 280px; min-height: 150px; padding: 22px 30px; color: var(--ink); border-right: 0; background: transparent; }
.sponsor-logo-slot.has-logo > img { width: auto; max-width: 200px; height: 104px; object-fit: contain; padding: 0; border: 0; border-radius: 0; outline: 0; background: transparent; box-shadow: none; }
.sponsor-logo-slot.has-logo > span { display: none; }

.ssnyb-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px 24px; }
.ssnyb-video-image { position: relative; height: 330px; overflow: hidden; background: var(--ink); }
.ssnyb-video-image img { width: 100%; height: 100%; object-fit: cover; }
.ssnyb-video-image .watch-button { position: absolute; right: 18px; bottom: 18px; color: #fff; border-color: #fff; background: var(--blue); }
.ssnyb-video-card > .eyebrow { margin: 24px 0 10px; }
.ssnyb-video-card h2 { margin: 0; font-family: var(--display); font-size: 33px; font-weight: 950; letter-spacing: -.04em; line-height: .95; text-transform: uppercase; }
.ssnyb-video-card > p:last-child { color: #66707d; line-height: 1.65; }

.single-post-layout { width: min(920px, calc(100% - 40px)); }
.single-post-content > p:first-child { color: var(--ink); font-family: var(--serif); font-size: clamp(25px, 2.5vw, 37px); line-height: 1.42; }
.single-post-content .wp-block-image,
.single-post-content .wp-block-gallery { max-width: 1120px; }
.single-post-content .wp-block-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 55px; margin-bottom: 55px; }
.single-post-content .wp-block-gallery .wp-block-image { width: auto !important; margin: 0 !important; }
.single-post-content .wp-block-gallery img { width: 100%; height: 380px; object-fit: cover; }
.single-post-video-action { margin: 0 0 42px; padding: 24px; border-left: 5px solid var(--gold); background: var(--cream); }
.post-auto-gallery { max-width: 1160px; margin: 100px auto 0; }
.post-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 55px; }
.post-gallery-grid a { min-height: 310px; overflow: hidden; background: var(--ink); }
.post-gallery-grid a:first-child:nth-last-child(2), .post-gallery-grid a:first-child:nth-last-child(2) ~ a { grid-column: span 1; }
.post-gallery-grid img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; transition: transform .4s ease; }
.post-gallery-grid a:hover img { transform: scale(1.03); }
.post-next { padding: 105px 0; color: #fff; background: var(--blue); }
.post-next h2 { margin: 0 0 35px; font-family: var(--display); font-size: clamp(50px, 6vw, 86px); font-weight: 950; letter-spacing: -.06em; line-height: .9; text-transform: uppercase; }
.gallery-lightbox { position: fixed; z-index: 1200; inset: 0; display: grid; place-items: center; padding: 65px; background: rgba(2,8,18,.94); backdrop-filter: blur(10px); }
.gallery-lightbox img { max-width: 100%; max-height: calc(100vh - 90px); object-fit: contain; }
.gallery-lightbox button { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; color: #fff; border: 1px solid rgba(255,255,255,.45); background: transparent; font-size: 31px; cursor: pointer; }
body.video-open, body.gallery-open { overflow: hidden; }
.form-status { margin: 0 0 20px; padding: 18px 22px; font-weight: 800; }
.form-status.success { color: #174b2b; background: #dff7e8; }
.form-status.error { color: #7b1d1d; background: #fde3e3; }
.news-empty { grid-column: 1 / -1; padding: 60px; background: var(--cream); }
.news-empty h2 { margin: 0; font-family: var(--display); font-size: 48px; text-transform: uppercase; }
.navigation.pagination { margin-top: 70px; }
.nav-links { display: flex; gap: 8px; }
.nav-links .page-numbers { display: grid; place-items: center; min-width: 45px; height: 45px; padding: 0 12px; border: 1px solid var(--line); }
.nav-links .current { color: #fff; border-color: var(--blue); background: var(--blue); }
body.admin-bar .site-header { top: 32px; }

@media (max-width: 900px) {
  .ssnyb-video-grid { grid-template-columns: 1fr 1fr; }
  .post-gallery-grid { grid-template-columns: 1fr 1fr; }
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 620px) {
  .mobile-nav-panel { max-height: calc(100vh - 88px); overflow-y: auto; }
  .ssnyb-video-grid { grid-template-columns: 1fr; }
  .ssnyb-video-image { height: 290px; }
  .single-post-layout { width: calc(100% - 30px); }
  .single-post-content .wp-block-gallery, .post-gallery-grid { grid-template-columns: 1fr; }
  .single-post-content .wp-block-gallery img { height: 300px; }
  .post-auto-gallery { margin-top: 70px; }
  .post-gallery-grid a, .post-gallery-grid img { min-height: 280px; }
  .gallery-lightbox { padding: 55px 12px 12px; }
  .news-empty { padding: 35px 22px; }
  .news-empty h2 { font-size: 36px; }
  .sponsor-logo-slot.has-logo { grid-template-columns: 1fr; flex: 0 0 230px; min-height: 118px; padding: 14px 18px; }
  .sponsor-logo-slot.has-logo > img { width: auto; max-width: 176px; height: 86px; padding: 0; }
}
