/* ==========================================================================
   CultureQuest — site styles
   Brand: ink + gold (from the logo), Cormorant Garamond + Montserrat
   ========================================================================== */

:root {
  --ink: #15120E;
  --ink-soft: #211C16;
  --ink-line: rgba(255, 255, 255, 0.12);

  --paper: #FFFFFF;
  --cream: #FAF6EE;
  --sand: #F1E8D6;
  --line: #E7DECC;

  --text: #2A251F;
  --muted: #5E564B;

  --gold: #D4A23A;
  --gold-light: #F0C75A;
  --gold-deep: #8A6414;
  --gold-tint: #FBF2DD;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(21, 18, 14, 0.06);
  --shadow: 0 1px 2px rgba(21, 18, 14, 0.05), 0 10px 30px rgba(21, 18, 14, 0.07);
  --max: 1160px;
  --header-h: 84px;
  --ease: 0.2s ease;
}

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--gold-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--ease); }
a:hover { color: var(--ink); }
a[href^="tel:"] { white-space: nowrap; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.3rem; }

p + p { margin-top: 1rem; }

[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

ul[class], ol[class] { list-style: none; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 1.5rem; }
.container--narrow { max-width: 780px; }

.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: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--ink); color: #fff; padding: 0.75rem 1.25rem; border-radius: var(--radius);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 1rem; color: #fff; }

.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.8rem 1.6rem;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  line-height: 1.2; text-decoration: none; text-align: center;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn .icon { width: 1.1em; height: 1.1em; }

.btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }

.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-soft); color: var(--gold-light); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-sm { min-height: 40px; padding: 0.55rem 1.1rem; font-size: 0.82rem; }
.btn-block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-group--center { justify-content: center; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; font-size: 0.9rem; text-decoration: none; color: var(--gold-deep);
}
.text-link:hover { color: var(--ink); }
.text-link .icon { width: 1em; height: 1em; transition: transform var(--ease); }
.text-link:hover .icon { transform: translateX(3px); }

/* ── Top bar ──────────────────────────────────────────────── */
.topbar { background: var(--ink); color: rgba(255, 255, 255, 0.78); font-size: 0.78rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.topbar p { letter-spacing: 0.02em; }
.topbar strong { color: var(--gold-light); font-weight: 600; }
.topbar-links { display: flex; gap: 1.5rem; }
.topbar-links a { color: rgba(255, 255, 255, 0.78); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-links a:hover { color: var(--gold-light); }
.topbar-links .icon { width: 0.95rem; height: 0.95rem; }

/* ── Header / navigation ──────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand img { width: 56px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-sans); font-weight: 500; font-size: 1.35rem; letter-spacing: 0.01em; }
.brand-tag { font-family: var(--font-serif); font-style: italic; font-size: 0.98rem; color: var(--gold-deep); margin-top: 0.15rem; }

.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav ul { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.site-nav ul a {
  display: block; padding: 0.5rem 0.85rem;
  font-size: 0.9rem; font-weight: 500; color: var(--text); text-decoration: none;
  border-radius: var(--radius); position: relative;
}
.site-nav ul a::after {
  content: ''; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.2rem;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.site-nav ul a:hover { color: var(--ink); }
.site-nav ul a:hover::after, .site-nav ul a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav ul a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; color: var(--ink);
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ''; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: rgba(255, 255, 255, 0.82); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

.eyebrow {
  display: inline-block; margin-bottom: 0.9rem;
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-deep);
}
.section--ink .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--gold-light); }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 + p { margin-top: 1.1rem; }
.lede { font-size: 1.1rem; color: var(--muted); line-height: 1.8; }
.section--ink .lede { color: rgba(255, 255, 255, 0.75); }

.rule { width: 56px; height: 3px; background: var(--gold); border: 0; margin: 1.5rem 0; }
.section-head--center .rule { margin-inline: auto; }

.prose { color: var(--muted); font-size: 1.02rem; }
.prose p + p { margin-top: 1.1rem; }
.prose strong { color: var(--text); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.grid-2--center { align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }

/* ── Hero (home) ──────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 78% 45%, rgba(212, 162, 58, 0.22), transparent 65%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(212, 162, 58, 0.08), transparent 70%),
    var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { color: #fff; margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--gold-light); }
.hero-sub { font-size: 1.12rem; line-height: 1.8; max-width: 560px; margin-bottom: 2.25rem; color: rgba(255, 255, 255, 0.8); }
.hero-media { display: flex; justify-content: center; }
.hero-media img { width: min(100%, 440px); filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.45)); }
.hero-note { margin-top: 2rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); display: flex; align-items: center; gap: 0.5rem; }
.hero-note .icon { color: var(--gold-light); }

/* ── Page hero (interior) ─────────────────────────────────── */
.page-hero {
  background:
    radial-gradient(ellipse 50% 90% at 90% 20%, rgba(212, 162, 58, 0.18), transparent 70%),
    var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero--fill { min-height: calc(100vh - var(--header-h) - 100px); display: flex; align-items: center; }
.page-hero p.lede { color: rgba(255, 255, 255, 0.78); max-width: 640px; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; margin-bottom: 1.5rem; color: rgba(255, 255, 255, 0.6); }
.breadcrumb a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; color: rgba(255, 255, 255, 0.35); }

/* ── Mission statement ────────────────────────────────────── */
.mission-statement { text-align: center; max-width: 900px; margin-inline: auto; }
.mission-statement blockquote {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3.2vw, 2.35rem); line-height: 1.35;
  color: var(--ink); font-weight: 500;
}
.mission-statement blockquote em { color: var(--gold-deep); }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.card--hover:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #D9CBAE; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .text-link { margin-top: 1.1rem; }
.card--flush { padding: 0; overflow: hidden; }
.card--tint { background: var(--gold-tint); border-color: #EBD9AE; }

.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-tint); color: var(--gold-deep); margin-bottom: 1.25rem;
  border: 1px solid #EFDDB2;
}
.icon-badge .icon { width: 26px; height: 26px; }
.icon-badge--sm { width: 44px; height: 44px; margin-bottom: 0; }
.icon-badge--sm .icon { width: 20px; height: 20px; }

/* ── Stats ────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.stat { text-align: center; padding: 0.5rem 1.5rem; }
.stat + .stat { border-left: 1px solid var(--ink-line); }
.stat-num { font-family: var(--font-serif); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 600; color: var(--gold-light); line-height: 1; }
.stat-label { margin-top: 0.7rem; font-size: 0.88rem; color: rgba(255, 255, 255, 0.75); line-height: 1.5; }

/* ── Events ───────────────────────────────────────────────── */
.event-feature { display: grid; grid-template-columns: 220px 1fr; }
.event-date {
  background: var(--ink); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem 1rem; gap: 0.2rem;
  background-image: radial-gradient(circle at 50% 30%, rgba(212, 162, 58, 0.25), transparent 70%);
}
.event-date-month { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.event-date-day { font-family: var(--font-serif); font-size: 3.4rem; font-weight: 600; line-height: 1; }
.event-date-year { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }
.event-body { padding: 2rem 2.25rem; }
.event-body h3 { font-size: 1.9rem; margin-bottom: 0.75rem; }
.event-body > p { color: var(--muted); }

.tag {
  display: inline-block; padding: 0.3rem 0.7rem; margin-bottom: 0.9rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-deep); background: var(--gold-tint); border-radius: 999px;
}
.tag--muted { color: var(--muted); background: var(--cream); }

.meta-list { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin: 1rem 0 1.25rem; }
.meta-list li { display: flex; align-items: center; gap: 0.45rem; font-size: 0.88rem; color: var(--text); }
.meta-list .icon { width: 1rem; height: 1rem; color: var(--gold-deep); }

.timeline { border-left: 2px solid var(--line); margin-left: 0.5rem; }
.timeline-item { position: relative; padding: 0 0 2.25rem 2rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -8px; top: 0.45rem;
  width: 14px; height: 14px; border-radius: 50%; background: var(--paper); border: 3px solid var(--gold);
}
.timeline-date { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); }
.timeline-item h3 { font-size: 1.45rem; margin: 0.2rem 0 0.4rem; }
.timeline-item p { color: var(--muted); font-size: 0.95rem; }
.timeline-item .meta-list { margin: 0.5rem 0 0; }

/* ── Beneficiaries / impact list ──────────────────────────── */
.impact-list { display: grid; gap: 1.25rem; }
.impact-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.impact-item h3, .impact-item h4 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.impact-item p { color: var(--muted); font-size: 0.93rem; }

/* ── Facts (definition lists) ─────────────────────────────── */
.facts { display: grid; }
.facts > div { display: grid; grid-template-columns: 150px 1fr; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.facts > div:first-child { padding-top: 0; }
.facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
.facts dt { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-top: 0.2rem; }
.facts dd { color: var(--ink); font-weight: 500; }
.facts dd.ein { font-weight: 700; letter-spacing: 0.04em; color: var(--gold-deep); }

.card-title-sm { font-size: 1.4rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 2px solid var(--gold); display: flex; align-items: center; gap: 0.6rem; }
.card-title-sm .icon { color: var(--gold-deep); }

/* ── Board ────────────────────────────────────────────────── */
.board { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem; }
.member { text-align: center; padding: 2rem 1.25rem; }
.monogram {
  width: 88px; height: 88px; margin: 0 auto 1.1rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.9rem; font-weight: 600; color: var(--gold-light);
  background: var(--ink); box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px #E3D3AF;
}
.member h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.member p { font-size: 0.84rem; color: var(--gold-deep); font-weight: 600; letter-spacing: 0.02em; }

/* ── Giving ───────────────────────────────────────────────── */
.give-methods { display: grid; gap: 1.25rem; }
.give-method { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; }
.give-method h3 { font-size: 1.45rem; margin-bottom: 0.35rem; }
.give-method p { color: var(--muted); font-size: 0.95rem; }
.give-detail {
  margin-top: 0.85rem; padding: 0.85rem 1rem; border-radius: var(--radius);
  background: var(--cream); border: 1px dashed #DCCBA6; font-size: 0.92rem; color: var(--text);
}
.give-detail strong { color: var(--ink); }
.give-detail span { display: block; }

.sticky { position: sticky; top: calc(var(--header-h) + 1.5rem); }

.notice {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 1.1rem 1.25rem; border-radius: var(--radius); font-size: 0.9rem;
  background: var(--gold-tint); border-left: 4px solid var(--gold); color: var(--text);
}
.notice .icon { color: var(--gold-deep); margin-top: 0.15rem; }

.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.45rem 0; color: var(--text); }
.checklist .icon { color: var(--gold-deep); margin-top: 0.25rem; width: 1.1rem; height: 1.1rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem 0; font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-sans); font-size: 1.5rem; font-weight: 400; color: var(--gold-deep); transition: transform var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.4rem; color: var(--muted); max-width: 720px; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-methods { display: grid; gap: 1rem; }
.contact-method { display: flex; gap: 1rem; align-items: center; padding: 1.25rem 1.5rem; }
.contact-label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact-value { font-size: 1.02rem; font-weight: 500; color: var(--ink); overflow-wrap: anywhere; line-height: 1.5; margin-top: 0.1rem; }
.contact-value a { color: var(--ink); text-decoration: none; }
.contact-value a:hover { color: var(--gold-deep); text-decoration: underline; }
.contact-value small { display: block; color: var(--muted); font-size: 0.84rem; font-weight: 400; }
.follow-heading { font-size: 1.35rem; margin: 2rem 0 0.9rem; }

.social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social a {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  color: var(--ink); text-decoration: none; font-size: 0.88rem; font-weight: 500;
}
.social a:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  background:
    radial-gradient(ellipse 60% 120% at 100% 0%, rgba(255, 255, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #D9AA45, #C8922B);
  color: var(--ink); padding-block: clamp(3.5rem, 7vw, 5rem);
}
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--ink); max-width: 640px; }
.cta-band p { margin-top: 0.75rem; max-width: 600px; color: #2E2412; }
.cta-band .eyebrow { color: #3D2E0C; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; padding-top: 4.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer-brand img { width: 150px; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 340px; line-height: 1.7; }
.site-footer h2 {
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.1rem;
}
.footer-links li + li { margin-top: 0.6rem; }
.site-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact li + li { margin-top: 0.75rem; }
.footer-contact .icon { width: 1rem; height: 1rem; margin-top: 0.3rem; color: var(--gold-light); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--ink-line);
}
.footer-social a:hover { border-color: var(--gold-light); }
.footer-social .icon { width: 18px; height: 18px; }

.footer-legal { border-top: 1px solid var(--ink-line); padding-block: 1.75rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }
.footer-legal-inner { display: flex; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; }
.footer-disclosure { max-width: 720px; line-height: 1.65; }

/* ── Utilities ────────────────────────────────────────────── */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small-print { font-size: 0.88rem; color: var(--muted); }
.h2-sm { font-size: 2rem; }
.mission-statement .rule { margin-inline: auto; }
.stack > * + * { margin-top: 1.5rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-tag { display: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }

  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 1rem;
    padding: 1rem 1.5rem 1.5rem; background: var(--paper);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .js .site-nav:not(.is-open) { display: none; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav ul a { padding: 0.85rem 0.25rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .site-nav ul a::after { display: none; }
  .site-nav ul a[aria-current="page"] { color: var(--gold-deep); }

  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { width: min(70%, 280px); }
  .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 2.5rem; }
  .stat:nth-child(3) { border-left: 0; }
  .event-feature { grid-template-columns: 1fr; }
  .event-date { flex-direction: row; gap: 0.75rem; padding: 1.25rem; }
  .event-date-day { font-size: 2.2rem; }
  .sticky { position: static; }
}

@media (max-width: 600px) {
  .topbar-links { display: none; }
  .topbar-inner { justify-content: center; text-align: center; }
  .brand img { width: 46px; }
  .brand-name { font-size: 1.2rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .facts > div { grid-template-columns: 1fr; gap: 0.2rem; }
  .card { padding: 1.5rem; }
  .card.card--flush { padding: 0; }
  .event-body { padding: 1.5rem; }
  .give-method { grid-template-columns: 1fr; }
  .btn-group > .btn { flex: 1 1 100%; }
  .stat { padding-inline: 0.75rem; }
}
