:root {
  --navy: #073246;
  --navy-2: #0a4057;
  --blue: #07a9e0;
  --blue-2: #078cbf;
  --sky: #eaf8fd;
  --ink: #102a36;
  --muted: #58717d;
  --line: #d9e8ee;
  --paper: #ffffff;
  --warm: #f6f4ed;
  --success: #24956b;
  --gold: #f4b740;
  --coral: #ef6b5b;
  --shadow: 0 24px 70px rgba(7, 50, 70, .13);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(7, 169, 224, .45); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 200; padding: 12px 18px; background: #fff; color: var(--navy); border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 18px; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 100; color: #fff; }
.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 196px; height: auto; }
.nav-wrap { display: flex; align-items: center; gap: 24px; }
.site-nav { display: flex; align-items: center; gap: clamp(15px, 2vw, 29px); font-size: 14px; font-weight: 650; }
.site-nav a { position: relative; padding: 12px 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: var(--blue); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; border: 0; color: #fff; background: transparent; padding: 9px; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: currentColor; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 20px; border: 1px solid transparent; border-radius: 999px; background: var(--blue); color: #fff; font-weight: 750; font-size: 14px; line-height: 1; transition: transform .18s ease, background .18s ease, border-color .18s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); background: var(--blue-2); }
.button-secondary { background: transparent; border-color: rgba(255,255,255,.4); }
.button-secondary:hover { background: #fff; color: var(--navy); }
.button-dark { background: var(--navy); }
.button-dark:hover { background: var(--navy-2); }
.button-small { min-height: 42px; padding: 10px 17px; }
.button-arrow::after { content: "\2192"; font-size: 18px; }

.hero { position: relative; overflow: hidden; min-height: 760px; color: #fff; background: var(--navy); }
.hero-media { position: absolute; inset: 0 0 0 49%; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 0%, rgba(7,50,70,.78) 14%, rgba(7,50,70,.14) 62%, rgba(7,50,70,.32) 100%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.hero::before { content: ""; position: absolute; width: 480px; height: 480px; left: -230px; bottom: -220px; border: 88px solid rgba(7,169,224,.12); border-radius: 50%; }
.hero-inner { position: relative; z-index: 2; min-height: 760px; display: flex; align-items: center; padding-top: 108px; }
.hero-copy { width: min(680px, 60%); padding: 60px 0 42px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-size: 12px; line-height: 1.3; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.hero h1 { margin: 18px 0 24px; max-width: 730px; font-size: clamp(50px, 6.5vw, 88px); line-height: .98; letter-spacing: -.055em; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 590px; margin: 0 0 34px; color: rgba(255,255,255,.83); font-size: clamp(17px, 1.5vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { position: absolute; z-index: 3; right: max(20px, calc((100vw - var(--max))/2)); bottom: 33px; display: flex; gap: 38px; padding: 18px 22px; border-left: 3px solid var(--blue); background: rgba(7,50,70,.83); backdrop-filter: blur(12px); }
.hero-proof strong { display: block; font-size: 24px; line-height: 1; }
.hero-proof span { display: block; margin-top: 6px; color: rgba(255,255,255,.65); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: 105px 0; }
.section-compact { padding: 78px 0; }
.section-sky { background: var(--sky); }
.section-navy { color: #fff; background: var(--navy); }
.section-warm { background: var(--warm); }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 50px; margin-bottom: 54px; }
.section-head h2, .story-copy h2, .cta h2 { margin: 13px 0 0; font-size: clamp(36px, 4.2vw, 60px); line-height: 1.08; letter-spacing: -.045em; }
.section-head p { max-width: 590px; margin: 0; color: var(--muted); font-size: 18px; }
.section-navy .section-head p { color: rgba(255,255,255,.68); }

.stats { position: relative; z-index: 5; margin-top: -1px; background: var(--blue); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 38px 30px; border-right: 1px solid rgba(255,255,255,.27); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: clamp(31px, 4vw, 49px); line-height: 1; letter-spacing: -.04em; }
.stat span { display: block; margin-top: 9px; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.4; }

.story-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(48px, 7vw, 90px); }
.story-media { position: relative; }
.story-media img { width: 100%; min-height: 470px; object-fit: cover; border-radius: 2px var(--radius) var(--radius) var(--radius); box-shadow: var(--shadow); }
.story-media::after { content: ""; position: absolute; right: -22px; bottom: -22px; z-index: -1; width: 48%; height: 48%; background: var(--blue); border-radius: 0 0 var(--radius) 0; }
.story-copy p { color: var(--muted); font-size: 17px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 35px; }
.value { padding: 20px; border: 1px solid var(--line); border-radius: 14px; }
.value b { display: block; color: var(--navy); }
.value span { color: var(--muted); font-size: 13px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.program-card { position: relative; min-height: 490px; overflow: hidden; border-radius: var(--radius); background: var(--navy); box-shadow: 0 14px 40px rgba(7,50,70,.13); }
.program-card img { width: 100%; height: 100%; min-height: 490px; object-fit: cover; transition: transform .5s ease; }
.program-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,50,70,.04) 20%, rgba(7,50,70,.93) 84%); }
.program-card:hover img { transform: scale(1.035); }
.program-card-content { position: absolute; z-index: 2; inset: auto 27px 27px; color: #fff; }
.program-number { color: var(--blue); font-weight: 850; letter-spacing: .12em; font-size: 12px; }
.program-card h3 { margin: 8px 0 7px; font-size: 27px; line-height: 1.12; }
.program-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.program-card-link { position: absolute; z-index: 3; inset: 0; }

.focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.focus-item { min-height: 170px; padding: 27px 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.045); }
.focus-icon { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 28px; border-radius: 50%; background: var(--blue); font-weight: 900; }
.focus-item h3 { margin: 0; font-size: 17px; }
.focus-item p { margin: 7px 0 0; color: rgba(255,255,255,.6); font-size: 13px; }

.evidence-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.evidence-list { display: grid; gap: 12px; }
.evidence-item { display: flex; align-items: flex-start; gap: 16px; padding: 19px 21px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.check { display: grid; flex: 0 0 27px; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: #dff4ec; color: var(--success); font-weight: 900; }
.evidence-item strong { display: block; line-height: 1.3; }
.evidence-item span { color: var(--muted); font-size: 13px; }
.evidence-copy h2 { margin: 13px 0 22px; font-size: clamp(36px, 4vw, 57px); line-height: 1.08; letter-spacing: -.045em; }
.evidence-copy p { color: var(--muted); }
.award { margin-top: 26px; padding: 22px 24px; border-left: 3px solid var(--blue); background: var(--sky); }
.award strong { display: block; color: var(--navy); }
.award span { color: var(--muted); font-size: 14px; }

.cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.city { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: #fff; font-weight: 720; font-size: 13px; }
.cta { position: relative; overflow: hidden; padding: 70px; border-radius: 26px; background: var(--blue); color: #fff; }
.cta::after { content: ""; position: absolute; width: 320px; height: 320px; right: -85px; top: -125px; border: 60px solid rgba(255,255,255,.13); border-radius: 50%; }
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.cta p { max-width: 650px; margin: 17px 0 0; color: rgba(255,255,255,.8); font-size: 18px; }

.page-hero { padding: 190px 0 92px; background: var(--navy); color: #fff; }
.page-hero h1 { max-width: 850px; margin: 17px 0; font-size: clamp(46px, 7vw, 78px); line-height: 1; letter-spacing: -.05em; }
.page-hero p { max-width: 690px; margin: 0; color: rgba(255,255,255,.72); font-size: 19px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 70px; }
.prose { color: var(--muted); }
.prose h2, .prose h3 { color: var(--ink); line-height: 1.2; }
.prose h2 { margin-top: 42px; font-size: 34px; }
.prose h3 { margin-top: 30px; font-size: 22px; }
.prose a { color: var(--blue-2); text-decoration: underline; }
.prose img { border-radius: var(--radius); }
.sidebar-card { position: sticky; top: 25px; padding: 28px; border-radius: var(--radius); background: var(--sky); }
.sidebar-card h3 { margin-top: 0; }
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.listing-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.listing-card img { width: 100%; height: 240px; object-fit: cover; }
.listing-card-body { padding: 25px; }
.listing-card h2, .listing-card h3 { margin: 7px 0 9px; font-size: 23px; line-height: 1.2; }
.listing-card p { margin: 0; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; gap: 8px; margin-top: 18px; color: var(--blue-2); font-weight: 750; font-size: 14px; }
.document-list { display: grid; gap: 13px; margin-top: 32px; }
.document { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 25px; padding: 21px 23px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.document h3 { margin: 0; font-size: 17px; }
.document p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
.badge { display: inline-flex; width: max-content; padding: 5px 9px; border-radius: 999px; background: var(--sky); color: var(--blue-2); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.badge-planned { color: #8a5b00; background: #fff0bf; }
.source-truth { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; margin-bottom: 54px; padding: 24px 26px; border: 1px solid #b8dbe8; border-left: 4px solid var(--blue); border-radius: 14px; background: #fff; }
.source-truth-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-family: Georgia,serif; font-size: 22px; font-weight: 800; }
.source-truth strong { color: var(--navy); }
.source-truth p { margin: 4px 0; color: var(--muted); font-size: 14px; }
.source-truth small { color: #718791; }
.edition-timeline { position: relative; display: grid; gap: 30px; }
.edition-timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 48px; width: 2px; background: #b9dbe7; }
.edition-card { position: relative; display: grid; grid-template-columns: 96px minmax(260px,.8fr) minmax(0,1.2fr); gap: 28px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 16px 44px rgba(7,50,70,.07); }
.edition-marker { position: relative; z-index: 2; display: grid; align-content: center; width: 74px; height: 74px; margin-top: 8px; border: 7px solid var(--sky); border-radius: 50%; color: #fff; background: var(--navy); text-align: center; box-shadow: 0 0 0 2px var(--blue); }
.edition-marker strong { font-size: 22px; line-height: 1; }
.edition-marker span { color: #9edff4; font-size: 11px; font-weight: 800; }
.edition-media { margin: 0; }
.edition-media img { width: 100%; height: 400px; object-fit: cover; object-position: center top; border-radius: 14px; background: var(--navy); }
.edition-media figcaption { margin-top: 8px; color: var(--muted); font-size: 11px; }
.edition-copy { align-self: center; }
.edition-copy h3 { margin: 13px 0 5px; font-size: clamp(26px,3vw,38px); line-height: 1.1; letter-spacing: -.035em; }
.edition-copy > p { color: var(--muted); }
.edition-date { margin: 0; color: var(--blue-2) !important; font-weight: 800; }
.edition-facts { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0; }
.edition-facts span { padding: 10px 12px; border-radius: 9px; color: var(--navy); background: var(--sky); font-size: 13px; }
.edition-facts b { display: block; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.source-note { padding: 13px 15px; border-left: 3px solid #dfb33b; background: #fff9e9; font-size: 12px; }
.partner-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px; }
.partner-group { padding: 24px; border-radius: 14px; background: var(--sky); }
.partner-group h3 { margin-top: 0; color: var(--navy); }
.partner-group p { margin: 0; color: var(--muted); }
.empty-state { padding: 48px; border: 1px dashed #bcd5df; border-radius: var(--radius); text-align: center; background: var(--sky); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { color: var(--navy); font-weight: 720; font-size: 14px; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; border: 1px solid #cbdde4; border-radius: 10px; color: var(--ink); background: #fff; }
.field textarea { min-height: 150px; resize: vertical; }
.notice { margin-bottom: 20px; padding: 14px 17px; border-radius: 10px; background: #dff4ec; color: #176348; }
.notice-error { background: #fde9e8; color: #8b2d2a; }

.site-footer { padding: 74px 0 28px; color: rgba(255,255,255,.72); background: #052737; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1.1fr; gap: 48px; }
.footer-brand img { width: 190px; }
.footer-brand p { max-width: 350px; font-size: 14px; }
.footer-title { margin: 4px 0 17px; color: #fff; font-size: 14px; }
.footer-links { display: grid; gap: 9px; font-size: 14px; }
.footer-links a:hover { color: var(--blue); }
.newsletter { display: flex; }
.newsletter input { min-width: 0; width: 100%; padding: 12px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 9px 0 0 9px; color: #fff; background: rgba(255,255,255,.07); }
.newsletter button { border-radius: 0 9px 9px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }

.program-hero { position: relative; min-height: 720px; overflow: hidden; color: #fff; background: var(--navy); }
.program-hero::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, rgba(5,39,55,.98) 0%, rgba(5,39,55,.88) 42%, rgba(5,39,55,.2) 78%, rgba(5,39,55,.45) 100%); }
.program-hero::after { content: ""; position: absolute; z-index: 2; width: 520px; height: 520px; left: -220px; bottom: -290px; border: 95px solid rgba(7,169,224,.14); border-radius: 50%; }
.program-hero-media { position: absolute; inset: 0 0 0 38%; }
.program-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.program-hero-inner { position: relative; z-index: 3; min-height: 720px; display: flex; align-items: center; justify-content: space-between; gap: 70px; padding-top: 110px; padding-bottom: 70px; }
.program-hero-copy { max-width: 710px; }
.program-hero h1 { margin: 18px 0 24px; font-size: clamp(56px,7.5vw,96px); line-height: .93; letter-spacing: -.06em; }
.program-hero-copy > p { max-width: 650px; color: rgba(255,255,255,.82); font-size: clamp(18px,1.7vw,22px); }
.program-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.program-hero-stat { align-self: flex-end; width: 230px; padding: 25px; border: 1px solid rgba(255,255,255,.2); border-top: 4px solid var(--blue); background: rgba(5,39,55,.72); backdrop-filter: blur(16px); }
.program-hero-stat strong { display: block; font-size: 34px; line-height: 1; }
.program-hero-stat span { display: block; margin-top: 10px; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.45; text-transform: uppercase; letter-spacing: .06em; }
.gratitude-program-hero::before { background: linear-gradient(90deg, rgba(39,24,39,.98), rgba(7,50,70,.88) 46%, rgba(7,50,70,.18) 78%, rgba(7,50,70,.38)); }
.gratitude-program-hero .eyebrow { color: var(--gold); }
.gratitude-program-hero .program-hero-stat { border-top-color: var(--gold); }

.program-story-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: start; gap: clamp(50px,7vw,90px); }
.program-story-media { position: sticky; top: 25px; margin: 0; }
.program-story-media img { width: 100%; max-height: 760px; object-fit: contain; border-radius: 24px; background: var(--warm); box-shadow: var(--shadow); }
.program-story-copy .eyebrow { margin-bottom: 18px; }
.program-story-copy h2:first-of-type { margin-top: 20px; }
.program-photo-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.program-photo-grid figure { grid-column: span 6; margin: 0; overflow: hidden; border-radius: 18px; background: #fff; box-shadow: 0 15px 45px rgba(7,50,70,.09); }
.program-photo-grid figure:nth-child(3), .program-photo-grid figure:nth-child(4) { grid-column: span 6; }
.program-photo-grid img { width: 100%; height: 390px; object-fit: cover; }
.program-photo-grid figcaption { display: grid; gap: 4px; padding: 18px 20px 20px; }
.program-photo-grid figcaption strong { color: var(--navy); }
.program-photo-grid figcaption span { color: var(--muted); font-size: 13px; }
.program-moments .text-link { margin-top: 28px; }

.gratitude-intro-section { background: linear-gradient(135deg,#fff 0%,#fff9ea 100%); }
.gratitude-intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(55px,8vw,110px); }
.gratitude-intro-grid > div > h2 { margin: 14px 0 25px; font-size: clamp(44px,5.7vw,75px); line-height: .98; letter-spacing: -.055em; }
.gratitude-prose h2 { font-size: 27px; }
.gratitude-date-card { position: relative; overflow: hidden; padding: 52px; border-radius: 30px; color: #fff; background: linear-gradient(145deg,#ef6b5b,#c9455e 55%,#073246); box-shadow: 0 35px 80px rgba(93,36,57,.25); }
.gratitude-date-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -100px; top: -100px; border: 48px solid rgba(255,255,255,.12); border-radius: 50%; }
.gratitude-date-card > span { text-transform: uppercase; letter-spacing: .15em; font-size: 11px; font-weight: 850; }
.gratitude-date-card > strong { display: block; margin: 18px 0 12px; color: #fff3c7; font-size: clamp(62px,8vw,100px); line-height: .85; letter-spacing: -.06em; }
.gratitude-date-card > p { max-width: 360px; color: rgba(255,255,255,.82); }
.gratitude-mini-stats { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
.gratitude-mini-stats div { padding: 17px; border: 1px solid rgba(255,255,255,.17); border-radius: 14px; background: rgba(255,255,255,.08); }
.gratitude-mini-stats b, .gratitude-mini-stats span { display: block; }
.gratitude-mini-stats b { font-size: 22px; }
.gratitude-mini-stats span { color: rgba(255,255,255,.68); font-size: 11px; }
.gratitude-seasons { background: #062b3d; color: #fff; }
.gratitude-season-head p { color: rgba(255,255,255,.67); }
.gratitude-season-head .eyebrow { color: var(--gold); }
.season-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.season-card { overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 24px; color: var(--ink); background: #fff; box-shadow: 0 22px 55px rgba(0,0,0,.18); }
.season-card-latest { grid-column: 1 / -1; display: grid; grid-template-columns: 1.08fr .92fr; border-color: rgba(244,183,64,.65); }
.season-card-media { position: relative; min-height: 390px; overflow: hidden; background: #153f50; }
.season-card-media img { width: 100%; height: 440px; object-fit: cover; object-position: center top; transition: transform .45s ease; }
.season-card:hover .season-card-media img { transform: scale(1.025); }
.season-number, .season-latest { position: absolute; top: 18px; padding: 8px 12px; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.season-number { left: 18px; color: #fff; background: rgba(5,39,55,.84); backdrop-filter: blur(10px); }
.season-latest { right: 18px; color: #32220a; background: var(--gold); }
.season-card-copy { padding: 30px; }
.season-card-copy h3 { margin: 9px 0 12px; font-size: clamp(27px,3vw,40px); line-height: 1.05; letter-spacing: -.04em; }
.season-card-copy > p { color: var(--muted); }
.season-year { color: var(--coral); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.season-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.season-facts span { min-width: 120px; padding: 11px 13px; border-radius: 11px; background: var(--sky); color: var(--navy); font-size: 12px; }
.season-facts b { display: block; color: var(--muted); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.season-placeholder { min-height: 100%; display: grid; place-content: center; padding: 70px 30px; color: #fff; text-align: center; background: radial-gradient(circle at 80% 20%,rgba(244,183,64,.35),transparent 30%),linear-gradient(145deg,#ef6b5b,#713c5b 52%,#073246); }
.season-placeholder span { color: #ffe4a7; font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.season-placeholder strong { margin: 13px 0 3px; font-size: clamp(43px,7vw,80px); line-height: 1; letter-spacing: -.055em; }
.season-placeholder small { font-size: 20px; }

.about-layout { display: grid; grid-template-columns: 1fr minmax(320px,.75fr); gap: clamp(55px,8vw,100px); align-items: start; }
.about-prose h2:first-child { margin-top: 0; }
.registration-card { position: sticky; top: 25px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: var(--sky); box-shadow: var(--shadow); }
.registration-card img { width: 100%; margin: 18px 0; border-radius: 14px; box-shadow: 0 10px 30px rgba(7,50,70,.12); }
.registration-facts { display: grid; gap: 8px; }
.registration-facts div { padding: 14px 16px; border-radius: 11px; background: #fff; }
.registration-facts b, .registration-facts span { display: block; }
.registration-facts b { color: var(--navy); }
.registration-facts span { color: var(--muted); font-size: 11px; }
.registration-card > p { color: var(--muted); font-size: 13px; }

.news-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.news-card { display: grid; grid-template-columns: minmax(180px,.8fr) 1.2fr; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 14px 45px rgba(7,50,70,.07); transition: transform .2s ease,box-shadow .2s ease; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card-featured { grid-column: 1 / -1; grid-template-columns: 1.1fr .9fr; }
.news-card > img { width: 100%; height: 100%; min-height: 290px; object-fit: cover; }
.news-placeholder { min-height: 290px; display: grid; place-content: center; padding: 30px; color: #fff; text-align: center; background: radial-gradient(circle at 75% 20%,rgba(244,183,64,.45),transparent 30%),linear-gradient(145deg,#ef6b5b,#743b5a 50%,#073246); }
.news-placeholder span { font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.news-placeholder strong { font-size: 74px; line-height: 1; letter-spacing: -.06em; }
.news-card-body { align-self: center; padding: 32px; }
.news-card-body h2, .news-card-body h3 { margin: 12px 0; font-size: clamp(26px,3vw,40px); line-height: 1.08; letter-spacing: -.035em; }
.news-card-body p { color: var(--muted); }
.news-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--blue-2); font-size: 10px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.news-meta time { color: var(--muted); }
.section-link { margin-top: 28px; }

.gallery-preview { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 190px; gap: 12px; margin-bottom: 32px; }
.gallery-preview a { position: relative; grid-column: span 3; overflow: hidden; border-radius: 15px; }
.gallery-preview a:first-child, .gallery-preview a:nth-child(4) { grid-column: span 6; grid-row: span 2; }
.gallery-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-preview a:hover img { transform: scale(1.04); }
.gallery-preview span { position: absolute; inset: auto 0 0; padding: 30px 16px 14px; color: #fff; background: linear-gradient(transparent,rgba(5,39,55,.9)); font-size: 12px; font-weight: 750; }
.gallery-toolbar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.gallery-toolbar button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: #fff; cursor: pointer; font-weight: 750; font-size: 13px; }
.gallery-toolbar button.active, .gallery-toolbar button:hover { color: #fff; border-color: var(--blue); background: var(--blue); }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-flow: dense; gap: 16px; }
.gallery-item { grid-column: span 4; margin: 0; }
.gallery-item:nth-child(5n+1), .gallery-item:nth-child(5n+4) { grid-column: span 6; }
.gallery-item[hidden] { display: none; }
.gallery-item button { position: relative; width: 100%; height: 100%; min-height: 340px; overflow: hidden; padding: 0; border: 0; border-radius: 18px; background: var(--navy); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: 70px 22px 20px; color: #fff; text-align: left; background: linear-gradient(transparent 35%,rgba(5,39,55,.94)); opacity: .92; }
.gallery-overlay b { font-size: 18px; }
.gallery-overlay small { margin-top: 4px; color: rgba(255,255,255,.73); }
.gallery-dialog { width: min(920px,calc(100% - 30px)); max-height: 90vh; padding: 0; border: 0; border-radius: 20px; color: var(--ink); background: #fff; box-shadow: 0 35px 110px rgba(0,0,0,.42); }
.gallery-dialog::backdrop { background: rgba(3,25,35,.84); backdrop-filter: blur(5px); }
.gallery-dialog img { width: 100%; max-height: 68vh; object-fit: contain; background: #061f2b; }
.gallery-dialog > div { padding: 22px 26px 26px; }
.gallery-dialog h2 { margin: 0; }
.gallery-dialog p { margin-bottom: 0; color: var(--muted); }
.gallery-dialog-close { position: absolute; z-index: 2; right: 13px; top: 13px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: rgba(5,39,55,.82); font-size: 27px; cursor: pointer; }

.news-article-hero { padding: 190px 0 90px; color: #fff; background: radial-gradient(circle at 85% 15%,rgba(244,183,64,.22),transparent 28%),linear-gradient(135deg,#073246,#0a4057 60%,#633a56); }
.news-article-hero h1 { max-width: 930px; margin: 15px 0 20px; font-size: clamp(50px,7vw,88px); line-height: .98; letter-spacing: -.055em; }
.news-article-hero p { max-width: 720px; color: rgba(255,255,255,.75); font-size: 19px; }
.news-article-meta { display: flex; gap: 14px; color: #ffd67d; font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.news-article-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 70px; align-items: start; }
.news-article-image { width: 100%; max-height: 680px; object-fit: cover; border-radius: 22px; }
.news-article-graphic { min-height: 500px; display: grid; align-content: end; padding: 55px; border-radius: 22px; color: #fff; background: radial-gradient(circle at 80% 20%,rgba(244,183,64,.42),transparent 28%),linear-gradient(145deg,#ef6b5b,#733b59 48%,#073246); }
.news-article-graphic span { color: #ffe0a0; font-size: 11px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.news-article-graphic strong { margin-top: 15px; font-size: clamp(44px,6vw,72px); line-height: .94; letter-spacing: -.05em; }
.news-byline { color: var(--muted); font-size: 12px; }
.news-body { font-size: 18px; }
.news-about { margin-top: 18px; }
.share-links { display: grid; gap: 8px; margin-top: 18px; }
.share-links a { padding: 11px 13px; border-radius: 9px; color: var(--navy); background: #fff; font-weight: 750; font-size: 13px; }
.share-links a:hover { color: #fff; background: var(--blue); }

.social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.social-links a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.72); font-size: 11px; }
.social-links a span { display: grid; width: 25px; height: 25px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); font-weight: 850; }
.social-links a:hover { color: var(--blue); }

@media (max-width: 1100px) {
  .header-inner { min-height: 80px; }
  .brand img { width: 160px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 0 0 0 22%; z-index: -1; display: flex; flex-direction: column; align-items: flex-start; padding: 110px 34px 40px; background: var(--navy); transform: translateX(100%); transition: transform .25s ease; }
  .site-nav.open { transform: translateX(0); box-shadow: -40px 0 100px rgba(0,0,0,.28); }
  .site-nav a { font-size: 18px; }
  .nav-wrap > .button { display: none; }
  .hero-media { inset-left: 35%; opacity: .65; }
  .hero-copy { width: 80%; }
  .hero-proof { display: none; }
  .section-head, .story-grid, .evidence-grid, .cta-inner, .content-grid, .program-story-grid, .gratitude-intro-grid, .about-layout, .news-article-layout { grid-template-columns: 1fr; }
  .section-head { gap: 18px; }
  .stats-grid, .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .listing-grid { grid-template-columns: 1fr 1fr; }
  .source-truth { grid-template-columns: auto 1fr; }
  .source-truth .button { grid-column: 2; width: max-content; }
  .edition-card { grid-template-columns: 80px minmax(230px,.8fr) minmax(0,1fr); gap: 18px; }
  .program-card:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .program-hero-media { left: 20%; opacity: .7; }
  .program-hero-copy { max-width: 670px; }
  .program-hero-stat { display: none; }
  .program-story-media, .registration-card { position: static; }
  .program-story-media img { max-height: 620px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card, .news-card-featured { grid-column: auto; grid-template-columns: minmax(220px,.8fr) 1.2fr; }
  .gallery-item { grid-column: span 6; }
  .gallery-item:nth-child(5n+1), .gallery-item:nth-child(5n+4) { grid-column: span 6; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero, .hero-inner { min-height: 720px; }
  .hero-media { inset: 0; opacity: .44; }
  .hero-media::after { background: linear-gradient(180deg, rgba(7,50,70,.35), var(--navy) 78%); }
  .hero-inner { align-items: flex-end; padding-bottom: 60px; }
  .hero-copy { width: 100%; padding-bottom: 0; }
  .hero h1 { font-size: clamp(47px, 15vw, 66px); }
  .section { padding: 76px 0; }
  .stats-grid, .card-grid, .listing-grid, .focus-grid, .values, .form-grid, .footer-grid, .partner-groups, .season-grid { grid-template-columns: 1fr; }
  .source-truth { grid-template-columns: 1fr; }
  .source-truth .button { grid-column: auto; }
  .edition-timeline::before { left: 26px; }
  .edition-card { grid-template-columns: 1fr; padding: 20px; }
  .edition-marker { width: 58px; height: 58px; margin-left: 0; border-width: 5px; }
  .edition-marker strong { font-size: 18px; }
  .edition-media img { height: auto; max-height: 560px; object-fit: contain; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .program-card:last-child { grid-column: auto; }
  .program-card, .program-card img { min-height: 410px; }
  .cta { padding: 42px 28px; }
  .cta-inner { gap: 28px; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding-top: 150px; }
  .program-hero, .program-hero-inner { min-height: 700px; }
  .program-hero-media { inset: 0; opacity: .45; }
  .program-hero::before { background: linear-gradient(180deg,rgba(5,39,55,.38),#052737 78%); }
  .program-hero-inner { align-items: flex-end; padding-top: 130px; }
  .program-hero h1 { font-size: clamp(50px,16vw,72px); }
  .gratitude-date-card { padding: 38px 28px; }
  .season-card-latest { grid-column: auto; display: block; }
  .season-card-media, .season-card-media img { min-height: 0; height: auto; }
  .season-card-media img { max-height: 560px; object-fit: contain; background: #153f50; }
  .season-placeholder { min-height: 390px; }
  .program-photo-grid { grid-template-columns: 1fr; }
  .program-photo-grid figure, .program-photo-grid figure:nth-child(3), .program-photo-grid figure:nth-child(4) { grid-column: auto; }
  .program-photo-grid img { height: auto; max-height: 520px; object-fit: contain; }
  .news-card, .news-card-featured { grid-template-columns: 1fr; }
  .news-card > img { min-height: 0; max-height: 360px; }
  .gallery-preview { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .gallery-preview a, .gallery-preview a:first-child, .gallery-preview a:nth-child(4) { grid-column: auto; grid-row: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(5n+1), .gallery-item:nth-child(5n+4) { grid-column: auto; }
  .gallery-item button, .gallery-item img { min-height: 300px; }
  .news-article-graphic { min-height: 420px; padding: 34px; }
}

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