/*
  site.css — the single stylesheet for this site (CLAUDE.md Section 4:
  page styling lives here, never inline, never a second stylesheet).

  Replaced 2026-07-11 with the organization's real brand design, adapted
  from a client-supplied Next.js/React prototype into plain CSS (no
  build step, no framework — this project's static architecture).
  Faithful translation of that prototype's design tokens and layout;
  Tailwind's reset import was dropped in favor of the plain reset below,
  since nothing else here depends on Tailwind utility classes.
*/

:root {
  --ink: #11110f;
  --charcoal: #191915;
  --gold: #d7a928;
  --gold-soft: #f0cd67;
  --ivory: #f6f2e8;
  --paper: #fcfbf7;
  --muted: #68675f;
  --line: rgba(17, 17, 15, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 4px; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 150px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 100; padding: 12px 18px; background: var(--gold); color: var(--ink); font-weight: 700; }
.skip-link:focus { top: 18px; }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; color: white; transition: background .25s ease, color .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: rgba(252,251,247,.97); color: var(--ink); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(12px); }
/* Pages with no dark hero image behind the header (e.g. events.html) need
   the solid/readable header style unconditionally, not just once scrolled
   past the hero — otherwise white nav text sits on a near-white page
   background and is unreadable at the top of the page. */
body.no-hero .site-header { background: rgba(252,251,247,.97); color: var(--ink); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(12px); }
body.no-hero { padding-top: 88px; }
@media (max-width: 980px) { body.no-hero { padding-top: 76px; } }
.nav-shell { width: min(1320px, calc(100% - 44px)); height: 88px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 250px; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand span { display: grid; line-height: 1.12; }
.brand strong { font-family: var(--serif); font-size: 17px; letter-spacing: .01em; }
.brand small { margin-top: 4px; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; opacity: .72; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 34px); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.nav-links > a:not(.nav-cta) { position: relative; padding: 12px 0; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 6px; height: 1px; background: currentColor; transition: right .2s ease; }
.nav-links > a:hover::after { right: 0; }
.nav-cta { border: 1px solid currentColor; padding: 12px 17px; }
.site-header:not(.is-scrolled) .nav-cta { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.menu-button { display: none; width: 48px; height: 48px; border: 0; background: transparent; color: inherit; cursor: pointer; }
.menu-button i { display: block; width: 24px; height: 2px; margin: 6px auto; background: currentColor; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 820px; height: min(930px, 100svh); display: flex; align-items: flex-end; overflow: hidden; background: #20211e; color: white; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transform: scale(1.01); }
.hero-wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(7,8,6,.92) 0%, rgba(7,8,6,.72) 42%, rgba(7,8,6,.12) 76%), linear-gradient(0deg, rgba(7,8,6,.72) 0%, transparent 35%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(240px, .55fr); align-items: end; gap: 80px; padding-bottom: 108px; }
.hero-copy { max-width: 790px; }
.eyebrow { margin: 0 0 24px; color: #8a6a12; font-size: 11px; line-height: 1.2; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-soft); }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
h1 { max-width: 860px; font-size: clamp(58px, 7.2vw, 108px); }
h2 { font-size: clamp(45px, 5.2vw, 76px); }
h3 { font-size: clamp(27px, 2.3vw, 36px); }
.hero-intro { max-width: 655px; margin: 28px 0 34px; color: rgba(255,255,255,.82); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.55; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 54px; padding: 14px 22px; font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-dark { background: var(--ink); color: white; }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding: 8px 0; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.light-link { color: white; }
.hero-note { max-width: 280px; padding: 22px 0 4px 24px; border-left: 1px solid rgba(255,255,255,.4); }
.hero-note span { color: var(--gold-soft); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.hero-note p { margin: 13px 0 0; font-family: var(--serif); font-size: 22px; line-height: 1.35; }
.hero-footer { position: absolute; z-index: 2; bottom: 24px; left: 50%; transform: translateX(-50%); width: min(1180px, calc(100% - 48px)); display: flex; justify-content: space-between; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

/* ---------- Statement ---------- */
.statement { padding: 90px 0; background: var(--gold); }
.statement-grid { display: grid; grid-template-columns: .5fr 1.5fr; gap: 60px; }
.statement .eyebrow { color: var(--ink); }
.statement-copy { max-width: 920px; margin: 0; font-family: var(--serif); font-size: clamp(34px, 4.2vw, 61px); line-height: 1.08; letter-spacing: -.025em; }
.statement-copy em { font-weight: 400; color: #624b0d; }

/* ---------- Mission / About ---------- */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(55px, 8vw, 120px); }
.image-frame { position: relative; min-height: 650px; overflow: hidden; background: #ddd; }
.image-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-index { position: absolute; left: 0; bottom: 0; padding: 14px 18px; background: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.mission-copy h2 { max-width: 650px; }
.mission-copy .lead { margin: 35px 0 20px; color: var(--ink); font-family: var(--serif); font-size: 23px; line-height: 1.55; }
.mission-copy > p:not(.eyebrow):not(.lead) { max-width: 620px; color: var(--muted); font-size: 17px; }
.mission-copy .text-link { margin-top: 24px; }

/* ---------- Board / leadership ---------- */
.board-list { list-style: none; margin: 40px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.board-list li { font-family: var(--serif); font-size: 18px; }
.board-list .role { display: block; margin-top: 2px; color: var(--muted); font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Programs ---------- */
.dark-section { background: var(--charcoal); color: white; }
.split-heading { display: grid; grid-template-columns: 1.25fr .55fr; align-items: end; gap: 80px; margin-bottom: 72px; }
.split-heading h2 { max-width: 760px; }
.split-heading > p { max-width: 420px; margin: 0; color: rgba(255,255,255,.62); }
.program-list { border-top: 1px solid rgba(255,255,255,.25); }
.program-row { display: grid; grid-template-columns: 70px .8fr 1fr .7fr; align-items: center; gap: 34px; min-height: 150px; border-bottom: 1px solid rgba(255,255,255,.2); transition: color .2s ease, padding .2s ease; }
.program-row:hover { color: var(--gold-soft); padding-inline: 8px; }
.program-number { color: var(--gold-soft); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.program-row p { color: rgba(255,255,255,.62); line-height: 1.55; margin: 0; }
.program-outcome { font-size: 11px; font-weight: 700; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }

/* ---------- Scholarship ---------- */
.scholarship { display: grid; grid-template-columns: 1fr 1fr; min-height: 780px; background: var(--ivory); }
.scholarship-image { position: relative; min-height: 620px; background: #333; }
.scholarship-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.scholarship-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 130px); }
.scholarship-copy > p:not(.eyebrow) { max-width: 620px; margin: 32px 0; color: var(--muted); font-size: 17px; }
.details-list { margin: 0 0 34px; border-top: 1px solid var(--line); }
.details-list div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.details-list dt { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.details-list dd { margin: 0; color: var(--muted); }

/* ---------- Impact ---------- */
.impact { overflow: hidden; }
.impact-top { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 70px; margin-bottom: 85px; }
.impact-top h2 { max-width: 650px; }
.impact-top blockquote { margin: 0; padding-left: 32px; border-left: 3px solid var(--gold); font-family: var(--serif); font-size: 26px; line-height: 1.45; }
.impact-layout { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 100px; }
.impact-list { border-top: 1px solid var(--line); }
.impact-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 22px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.impact-list span { color: #8a6a12; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.impact-list p { margin: 0; font-family: var(--serif); font-size: 23px; line-height: 1.25; }
.impact-collage { position: relative; min-height: 620px; }
.collage-main { position: absolute; inset: 0 18% 15% 0; overflow: hidden; }
.collage-main img, .collage-small img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collage-small { position: absolute; width: 43%; height: 42%; right: 0; bottom: 0; border: 12px solid var(--paper); overflow: hidden; }
.collage-caption { position: absolute; top: 12%; right: -7%; width: 220px; padding: 18px 20px; background: var(--gold); font-family: var(--serif); font-size: 19px; line-height: 1.35; }

/* ---------- Get involved ---------- */
.partnership { background: #8e6b12; color: white; }
.partnership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.partnership h2 { max-width: 650px; }
.pathways { border-top: 1px solid rgba(255,255,255,.4); }
.pathways a { display: grid; grid-template-columns: 40px 1fr 30px; align-items: center; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.4); transition: padding .2s ease, color .2s ease; }
.pathways a:hover { padding-inline: 10px; color: var(--gold-soft); }
.pathways span { font-size: 10px; letter-spacing: .15em; }
.pathways strong { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 34px); font-weight: 400; }

/* ---------- Contact ---------- */
.contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 90px; align-items: center; }
.contact-mark { display: grid; place-items: center; padding: 55px; background: var(--ink); }
.contact-mark img { width: min(100%, 240px); height: auto; }
.contact h2 { max-width: 850px; }
.contact > .container > div:last-child > p:not(.eyebrow) { max-width: 680px; margin: 30px 0; color: var(--muted); font-size: 17px; }

/* ---------- Legal pages (pages/privacy.html, pages/accessibility.html) ---------- */
.legal-copy { max-width: 760px; }
.legal-updated { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin: 12px 0 40px; }
.legal-copy h2 { font-size: clamp(24px, 2.6vw, 32px); margin: 48px 0 16px; }
.legal-copy h2:first-of-type { margin-top: 16px; }
.legal-copy p { color: var(--muted); font-size: 17px; line-height: 1.65; margin: 0 0 16px; }
.legal-copy ul { margin: 0 0 16px; padding-left: 22px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.legal-copy li { margin-bottom: 10px; }
.legal-copy strong { color: var(--ink); }

/* ---------- Events (pages/events.html) ---------- */
.events-hero { padding-top: clamp(40px, 6vw, 80px); }
.events-list { display: grid; gap: 40px; margin-top: 40px; }
.event-card { display: grid; grid-template-columns: 180px 1fr; gap: 40px; padding: 40px; background: var(--ivory); border-left: 3px solid var(--gold); }
.event-card__when { display: flex; flex-direction: column; gap: 6px; }
.event-card__date { font-family: var(--serif); font-size: 22px; }
.event-card__time { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.event-card__body h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 16px; }
.event-card__body > p { max-width: 640px; color: var(--muted); font-size: 17px; margin: 0 0 28px; }
.event-card__body .details-list { max-width: 640px; }

@media (max-width: 760px) {
  .event-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
}

/* ---------- Footer ---------- */
.footer { padding: 58px 0 28px; background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr .8fr .6fr; align-items: center; gap: 60px; padding-bottom: 42px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 62px; height: 62px; object-fit: contain; }
.footer-brand div { display: grid; line-height: 1.25; }
.footer-brand strong { font-family: var(--serif); font-size: 20px; }
.footer-brand span { color: rgba(255,255,255,.55); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid > p { color: rgba(255,255,255,.62); font-family: var(--serif); font-size: 18px; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-base { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-shell { height: 76px; }
  .menu-button { display: block; }
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; display: none; align-items: stretch; padding: 18px 24px 28px; background: var(--paper); color: var(--ink); box-shadow: 0 14px 30px rgba(0,0,0,.15); }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 13px 0; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero { min-height: 760px; }
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 105px; }
  .hero-note { display: none; }
  .program-row { grid-template-columns: 50px .8fr 1.2fr; }
  .program-outcome { display: none; }
  .scholarship-copy { padding: 70px 48px; }
  .impact-layout { gap: 55px; }
  .collage-caption { right: 0; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 34px, 1180px); }
  .brand { min-width: auto; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 15px; }
  .brand small { display: none; }
  .hero { height: 850px; min-height: 100svh; }
  .hero-wash { background: linear-gradient(90deg, rgba(7,8,6,.87), rgba(7,8,6,.33)), linear-gradient(0deg, rgba(7,8,6,.82), transparent 55%); }
  .hero-grid { padding-bottom: 105px; }
  h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero-intro { margin-top: 22px; }
  .hero-footer span:last-child { display: none; }
  .statement { padding: 64px 0; }
  .statement-grid, .mission-grid, .split-heading, .scholarship, .impact-top, .impact-layout, .partnership-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .statement-grid, .mission-grid, .split-heading, .impact-top, .impact-layout, .partnership-grid, .contact-grid { gap: 40px; }
  .image-frame { min-height: 480px; }
  .mission-copy .lead { font-size: 21px; }
  .split-heading { margin-bottom: 48px; }
  .program-row { grid-template-columns: 42px 1fr; gap: 12px 16px; padding: 25px 0; }
  .program-row p { grid-column: 2; margin: 0; }
  .scholarship-image { min-height: 520px; }
  .scholarship-copy { padding: 76px 24px; }
  .details-list div { grid-template-columns: 1fr; gap: 5px; }
  .impact-top { margin-bottom: 45px; }
  .impact-top blockquote { font-size: 22px; }
  .impact-collage { min-height: 500px; }
  .collage-caption { top: auto; right: 0; bottom: 3%; width: 210px; }
  .contact-mark { width: 230px; padding: 38px; }
  .footer-grid { gap: 28px; }
  .footer-links { justify-content: flex-start; }
  .footer-base { flex-direction: column; }
}

@media (max-width: 420px) {
  .button-row { align-items: stretch; }
  .button { width: 100%; }
  .hero .text-link { width: fit-content; }
  .impact-collage { min-height: 430px; }
  .collage-main { right: 10%; }
  .collage-small { width: 47%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
