/* ==========================================================================
   Sizzle Arts Foundation — Design System v4
   Aesthetic: bold editorial / museum-poster. Borrowed structural language
   from thehiphopmuseum.org — a solid full-width bar nav, oversized heavy
   display type, sharp rectangular geometry (no pills, no rounded corners,
   no glass blur), flat high-contrast color blocks, full-bleed imagery with
   overlaid tags. Palette stays the project's established indigo / gold /
   wine — only the SHAPE language changes. Variable names kept as-is
   (--plum/--lime/--clay) since HTML across 143 pages already references
   them.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* the gallery rooms — deep, rich jewel tones (indigo + gold + wine). */
  --plum: #1E2A47;        /* deep indigo-navy — primary room */
  --plum-deep: #131C30;
  --denim: #2F4870;        /* mid denim blue — secondary room */
  --denim-deep: #1F314F;
  --lime: #E8467C;         /* hot pink — accent (was gold) */
  --lime-deep: #C22F63;
  --clay: #6B2338;         /* wine/burgundy — tertiary room */
  --sand: #EFE4CE;

  /* neutrals */
  --paper: #FFFFFF;
  --paper-2: #F4F4F4;
  --surface: #FFFFFF;
  --ink: #201526;
  --ink-soft: #5B4E5C;
  --ink-faint: #948A94;
  --rule: rgba(32, 21, 38, 0.12);
  --rule-strong: rgba(32, 21, 38, 0.26);

  /* "glass" tokens kept for compatibility — flattened to solid surfaces,
     no blur, in the v4 system. */
  --glass-bg: rgba(255, 255, 255, 0.96);
  --glass-bg-strong: #FFFFFF;
  --glass-border: rgba(32, 21, 38, 0.14);
  --on-glass: #201526;
  --on-glass-soft: rgba(32, 21, 38, 0.68);

  --on-room: #F5F0E6;
  --on-room-soft: rgba(255, 255, 255, 0.92);
  --on-room-faint: rgba(255, 255, 255, 0.72);

  /* compatibility aliases */
  --gold: var(--lime);
  --gold-bright: #F06B96;
  --gold-deep: var(--lime-deep);
  --gold-ink: var(--plum-deep);
  --void: var(--plum-deep);
  --void-2: var(--denim-deep);
  --on-dark: var(--on-room);
  --on-dark-soft: var(--on-room-soft);
  --on-dark-faint: var(--on-room-faint);
  --denim-soft: #4C5B7C;

  /* v4: sharp geometry — no pills, no soft rounding. */
  --radius: 3px;
  --radius-lg: 3px;

  --font-display: 'Bricolage Grotesque', -apple-system, "Helvetica Neue", sans-serif;
  --font-body: 'Instrument Sans', -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(.22,.9,.32,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "dlig" 0, "hlig" 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
::selection { background: var(--lime); color: var(--plum-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  text-wrap: balance;
  margin: 0;
  letter-spacing: -0.03em;
}
p { margin: 0; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
}

/* ---------- color-blocked "rooms" — flat, no painterly texture ---------- */
.room { position: relative; color: var(--on-room); }
.room-plum { background: var(--plum); }
.room-denim { background: var(--denim); }
.room-clay { background: var(--clay); }
.room-ink { background: var(--ink); }
.room .eyebrow { color: var(--lime); }
.room .eyebrow::before { background: var(--lime); }
.room > * { position: relative; z-index: 1; }

/* compatibility alias — flat solid, no blooms */
.aurora { position: relative; color: var(--on-room); background: var(--plum-deep); }
.aurora > * { position: relative; z-index: 1; }
.aurora .eyebrow { color: var(--lime); }
.aurora .eyebrow::before { background: var(--lime); }

/* ---------- "glass" — flattened to a solid card surface, no blur ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--on-glass);
}
.glass-strong {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--on-glass);
}

/* ---------- buttons — sharp, bold, flat ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; font-size: 13.5px;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 16px 30px; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.btn-lime, .btn-gold { background: var(--lime); color: var(--plum-deep); }
.btn-lime:hover, .btn-gold:hover { background: var(--plum-deep); color: var(--lime); }
.text-gold { color: var(--lime); }
.btn-glass { background: transparent; border-color: rgba(255,255,255,0.7); color: var(--on-room); }
.btn-glass:hover { background: var(--on-room); color: var(--plum-deep); border-color: var(--on-room); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--plum-deep); }
.btn-sm { padding: 12px 20px; font-size: 12px; }

/* ---------- nav — solid full-width bar, no floating pill ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0; background: var(--plum-deep); border-bottom: 1px solid rgba(255,255,255,0.12); transition: padding .3s var(--ease); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav.scrolled { padding: 0; }
.nav.scrolled .nav-inner { padding: 13px 28px; }
.nav .nav-inner, .nav.scrolled .nav-inner { color: var(--on-room); }
.nav-links > a, .nav-item > a { color: var(--on-room); }
.brand { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--on-room); text-transform: uppercase; letter-spacing: -0.01em; }
.nav.scrolled .brand { color: var(--on-room); }
.brand-mark {
  width: 48px; height: 48px; border-radius: var(--radius); flex-shrink: 0;
  background: var(--lime); border: none;
  display: grid; place-items: center;
}
.brand-mark span { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--plum-deep); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { position: relative; font-size: 12.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-room-soft); transition: color .25s; padding-bottom: 4px; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--lime); transition: right .28s var(--ease); }
.nav-links > a:hover, .nav-item > a:hover, .nav-links > a.active, .nav-item > a.active { color: var(--on-room); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ---------- nav dropdowns — sharp, solid, no blur ---------- */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-item > a .dd-arrow {
  content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .65; transition: transform .25s; display: inline-block;
}
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  margin-top: 18px;
  min-width: 230px; padding: 8px; display: flex; flex-direction: column; gap: 2px;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 50;
  box-shadow: 0 18px 40px -18px rgba(19,28,48,0.45);
}
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.dropdown.dropdown-wide { min-width: 300px; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown a { padding: 10px 14px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); white-space: normal; line-height: 1.4; border-radius: 2px; text-transform: none; letter-spacing: 0; }
.dropdown a::after { display: none; }
.dropdown a:hover { color: var(--ink); background: var(--paper-2); }
.dropdown-divider { height: 1px; background: var(--rule); margin: 6px 4px; }
.dropdown a.dropdown-view-all { color: var(--plum); font-weight: 800; text-transform: uppercase; font-size: 11px; letter-spacing: .05em; }

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: flex-start;
    background: var(--plum-deep); border-bottom: 1px solid rgba(255,255,255,0.14);
    padding: 24px 28px; gap: 4px;
    transform: translateY(-14px); opacity: 0; pointer-events: none; transition: all .3s var(--ease);
    max-height: 80vh; overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { color: var(--on-room-soft); }
  .nav-links a:hover, .nav-links a.active { color: var(--on-room); }
  .nav-toggle { display: block; background: none; border: none; color: var(--on-room); cursor: pointer; padding: 8px; }
  .nav.scrolled .nav-toggle { color: var(--on-room); }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark span { font-size: 14px; }
  .brand { font-size: 14.5px; gap: 10px; }
  .nav-inner { padding-left: 18px; padding-right: 18px; }
  .nav-cta { gap: 10px; }
  .nav .nav-donate-desktop { padding: 10px 14px; }
  .nav-item { width: 100%; }
  .nav-item > a .dd-arrow { display: none; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    background: transparent; border: none; box-shadow: none; padding: 4px 0 10px 14px;
    min-width: 0; display: none;
  }
  .dropdown::before { display: none; }
  .nav-item.mobile-open .dropdown { display: flex; }
  .nav-item.mobile-open > a .dd-arrow { display: none; }
  .dropdown a { padding: 8px 0; font-size: 13px; color: var(--on-room-soft); }
  .dropdown a:hover { background: transparent; color: var(--on-room); }
}

/* ---------- floating donate pill (kept name; now a sharp tag) ---------- */
.float-donate { position: fixed; right: 24px; bottom: 24px; z-index: 90; transform: translateY(120%); transition: transform .5s var(--ease); }
.float-donate.show { transform: translateY(0); }

/* ---------- split hero: solid color block + full-bleed video ---------- */
.hero-split { display: flex; min-height: 100vh; align-items: stretch; }
.hero-split-panel {
  position: relative; background: var(--lime); color: var(--plum-deep);
  padding: 148px 48px 48px; display: flex; flex-direction: column; justify-content: space-between;
  flex: 1 1 50%; min-width: 0;
}
.hero-split-tag { font-family: var(--font-body); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.hero-split-headline {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(46px, 6.6vw, 104px); line-height: 0.9; letter-spacing: -0.02em; margin: 24px 0;
}
.hero-split-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.hero-split-foot a { border-bottom: 2px solid var(--plum-deep); padding-bottom: 2px; }

/* ---------- hero intro motion: staggered reveal on load ---------- */
.hero-split-tag, .hero-split-foot { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.hero-split.in .hero-split-tag { opacity: 1; transform: translateY(0); transition-delay: .1s; }
.hero-split.in .hero-split-foot { opacity: 1; transform: translateY(0); transition-delay: .65s; }
.hero-split-headline .line-mask { display: block; overflow: hidden; }
.hero-split-headline .line-inner { display: block; transform: translateY(115%); transition: transform .8s var(--ease); }
.hero-split.in .hero-split-headline .line-mask:nth-child(1) .line-inner { transition-delay: .18s; }
.hero-split.in .hero-split-headline .line-mask:nth-child(2) .line-inner { transition-delay: .28s; }
.hero-split.in .hero-split-headline .line-mask:nth-child(3) .line-inner { transition-delay: .38s; }
.hero-split.in .hero-split-headline .line-inner { transform: translateY(0); }
.hero-video-panel { clip-path: inset(0 0 0 100%); transition: clip-path 1s .1s var(--ease); }
.hero-split.in .hero-video-panel { clip-path: inset(0 0 0 0%); }
.hero-video-panel { position: relative; overflow: hidden; background: var(--plum-deep); flex: 1 1 50%; min-width: 0; }
.hero-video-panel iframe {
  position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
  transform: translate(-50%, -50%) scale(1.8); pointer-events: none; border: 0;
}
@media (max-width: 900px) {
  .hero-split { flex-direction: column; min-height: 0; }
  .hero-split-panel { padding: 128px 24px 40px; order: 0; flex: none; }
  .hero-split-headline { font-size: clamp(38px, 11vw, 64px); }
  .hero-video-panel { min-height: 340px; order: 1; flex: none; }
}

/* ---------- hero stats strip (below hero) ---------- */
.hero-stats { display: flex; flex-wrap: wrap; }
.hero-stat { padding: 0 30px; border-left: 1px solid rgba(255,255,255,0.18); }
.hero-stat:first-child { padding-left: 0; border-left: none; }
.hero-stat .n { font-family: var(--font-display); font-size: 30px; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--lime); line-height: 1; }
.hero-stat .l { font-size: 11px; color: var(--on-room-faint); margin-top: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .hero-stat { padding: 0 18px; }
  .hero-stat .l { white-space: normal; }
}

/* legacy hook (some pages import this class name but section is no longer used) */
.room-wave-bottom { position: relative; }

/* ---------- sections ---------- */
section.pad { padding: 108px 0; }
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 58px); margin-top: 14px; text-transform: uppercase; }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 16.5px; }
.section-head.on-room p { color: var(--on-room-soft); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- editorial index list ---------- */
.index-list { display: flex; flex-direction: column; }
.index-row { display: grid; grid-template-columns: 90px 160px 1fr; gap: 28px; align-items: center; padding: 32px 0; border-top: 1px solid var(--rule); transition: background .3s; }
.index-list .index-row:last-child { border-bottom: 1px solid var(--rule); }
.index-num { font-family: var(--font-display); font-size: 13px; color: var(--plum); font-weight: 800; padding-top: 4px; text-transform: uppercase; letter-spacing: .04em; }
.index-thumb { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); }
.index-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s var(--ease); }
.index-row:hover .index-thumb img { transform: scale(1.05); }
.index-row h3 { font-size: 22px; margin-bottom: 10px; text-transform: none; }
.index-row p { color: var(--ink-soft); font-size: 15px; max-width: 62ch; }
.index-row a.tag { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 800; color: var(--plum); text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 860px) { .index-row { grid-template-columns: 70px 120px 1fr; gap: 20px; } .index-row h3 { font-size: 19px; } }
@media (max-width: 640px) {
  .index-row { grid-template-columns: 100px 1fr; gap: 16px; }
  .index-num { grid-column: 1 / -1; padding-top: 0; }
  .index-row h3 { font-size: 17px; }
  .index-row p { display: none; }
}

/* ---------- cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ---------- horizontal scroll-snap carousel (related posts, etc.) ---------- */
.scroll-carousel { position: relative; }
.scroll-row {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px; scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row > .card { flex: 0 0 300px; scroll-snap-align: start; }
@media (max-width: 640px) { .scroll-row > .card { flex-basis: 82vw; } }
.scroll-arrows { display: flex; gap: 10px; justify-content: flex-end; margin-bottom: 18px; }
.scroll-arrow {
  width: 42px; height: 42px; border-radius: var(--radius); border: 1.5px solid var(--rule-strong);
  background: var(--surface); display: grid; place-items: center; cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
  color: var(--ink);
}
.scroll-arrow:hover { background: var(--plum); border-color: var(--plum); color: var(--on-room); transform: translateY(-2px); }
.scroll-arrow:disabled { opacity: .35; cursor: default; pointer-events: none; }
.scroll-arrow svg { width: 18px; height: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--surface); border-radius: var(--radius); padding: 30px; border: 1.5px solid var(--rule); transition: transform .3s var(--ease), border-color .3s var(--ease); }
.card:hover { transform: translateY(-4px); border-color: var(--plum); }
.card .icon { width: 46px; height: 46px; border-radius: var(--radius); display: grid; place-items: center; background: var(--sand); margin-bottom: 20px; color: var(--plum); font-size: 20px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 14.5px; }
.card .tag { display: inline-block; margin-top: 16px; font-size: 11.5px; font-weight: 800; color: var(--plum); text-transform: uppercase; letter-spacing: .06em; }

.card-glass {
  color: var(--on-room); padding: 28px;
  display: flex; flex-direction: column; height: 100%;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.18); border-radius: var(--radius);
}
.card-glass h3 { font-size: 18px; margin-bottom: 8px; color: var(--on-room); }
.card-glass p { color: var(--on-room-soft); font-size: 14px; }
.card-glass .btn { margin-top: auto; align-self: flex-start; }

/* ---------- stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.16); }
.stat-cell { padding: 32px 24px; text-align: center; border-left: 1px solid rgba(255,255,255,0.2); }
.stat-cell:first-child { border-left: none; }
.stat-cell .n { font-family: var(--font-display); font-size: 34px; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--lime); }
.stat-cell .l { margin-top: 8px; font-size: 12px; color: var(--on-room-soft); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
@media (max-width: 780px) { .stat-strip { grid-template-columns: repeat(2,1fr); } .stat-cell:nth-child(3) { border-left: none; } }

/* ---------- timeline ---------- */
.timeline { display: flex; flex-direction: column; border-left: 2px solid var(--rule-strong); margin-left: 4px; }
.timeline-item { position: relative; padding: 0 0 44px 32px; }
.timeline-item::before { content: ""; position: absolute; left: -7px; top: 3px; width: 12px; height: 12px; background: var(--lime); box-shadow: 0 0 0 4px var(--paper); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item h4 { font-size: 16px; margin-bottom: 6px; font-family: var(--font-display); }
.timeline-item p { color: var(--ink-soft); font-size: 14.5px; max-width: 60ch; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.marquee-track { display: flex; gap: 54px; width: max-content; animation: scroll 32s linear infinite; align-items: center; }
.marquee-track span { font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; color: var(--on-room-faint); white-space: nowrap; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- events ---------- */
.event-row { display: grid; grid-template-columns: 96px 1fr auto; gap: 24px; align-items: center; padding: 28px 8px; border-bottom: 1px solid var(--rule); }
.event-row:first-child { border-top: 1px solid var(--rule); }
.event-date { text-align: left; font-family: var(--font-display); }
.event-date .d { font-size: 15px; font-weight: 800; color: var(--plum); letter-spacing: .03em; }
.event-date .m { font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }
.event-info h3 { font-size: 18px; margin-bottom: 6px; text-transform: none; }
.event-info p { font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 640px) { .event-row { grid-template-columns: 60px 1fr; } .event-row .btn { grid-column: 1 / -1; margin-top: 12px; } }

/* ---------- archive rows with a thumbnail (news/archive listings) ---------- */
.event-row-thumb { grid-template-columns: 70px 84px 1fr; }
.event-thumb { display: block; width: 84px; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); }
.event-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s var(--ease); }
.event-row-thumb:hover .event-thumb img { transform: scale(1.05); }
@media (max-width: 640px) {
  .event-row-thumb { grid-template-columns: 52px 64px 1fr; gap: 14px; }
  .event-thumb { width: 64px; }
}

/* ---------- donate tiers ---------- */
.tier { padding: 34px 28px; text-align: left; position: relative; border-radius: var(--radius); border: 1.5px solid var(--rule); background: var(--surface); }
.tier.featured { border-color: var(--plum); border-width: 2px; }
.tier .amount { font-family: var(--font-display); font-size: 32px; font-weight: 800; margin: 14px 0 8px; }
.tier .impact { font-size: 13.5px; color: var(--ink-soft); min-height: 40px; }
.tier .badge { display: inline-block; background: var(--lime); color: var(--plum-deep); font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius); }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-weight: 800; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .03em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; padding: 13px 18px;
  border: 1.5px solid var(--rule-strong); border-radius: var(--radius); background: var(--surface); color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--plum); box-shadow: 0 0 0 3px rgba(30,42,71,0.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-status { transition: opacity .3s ease; }
.form-status.show { opacity: 1 !important; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
footer.site-footer { padding: 88px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(5, 0.85fr); gap: 32px; }
@media (max-width: 1080px) { .footer-grid { grid-template-columns: 1.5fr repeat(3, 0.85fr); } }
.footer-grid h5 { font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer-grid a, .footer-grid p { font-size: 13.5px; color: var(--on-room-soft); display: block; margin-bottom: 11px; }
.footer-grid a:hover { color: var(--on-room); }
.footer-bottom { margin-top: 60px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.2); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--on-room-faint); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius); background: transparent; border: 1.5px solid rgba(255,255,255,0.3); transition: background .2s ease, border-color .2s ease; margin-bottom: 0; }
.footer-social a:hover { background: var(--lime); border-color: var(--lime); }
.footer-social a svg { width: 17px; height: 17px; fill: var(--on-room); }
.footer-social a:hover svg { fill: var(--plum-deep); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }

/* ---------- misc ---------- */
.pill-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--radius); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.text-lime { color: var(--lime); }
.breadcrumb { font-size: 13px; color: var(--on-room-faint); display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--on-room); }

.page-hero { padding: 176px 0 90px; }
.page-hero h1 { font-size: clamp(38px, 6vw, 76px); margin-top: 18px; max-width: 18ch; text-transform: uppercase; line-height: 0.96; }
.page-hero p.lede { max-width: 56ch; color: var(--on-room-soft); margin-top: 20px; font-size: 16.5px; }

.subnav { display: flex; gap: 26px; flex-wrap: wrap; padding: 34px 0 0; border-top: 1px solid rgba(255,255,255,0.25); margin-top: 34px; }
.subnav a { font-size: 12.5px; font-weight: 700; letter-spacing: .03em; color: var(--on-room-soft); text-transform: uppercase; }
.subnav a:hover { color: var(--lime); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- full-bleed feature image with overlay text ---------- */
.media-feature { position: relative; overflow: hidden; min-height: 460px; display: flex; align-items: flex-end; }
.media-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.media-feature::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(0deg, rgba(19,28,48,0.92) 0%, rgba(19,28,48,0.5) 45%, rgba(19,28,48,0.08) 100%);
}
.media-feature-content { position: relative; z-index: 1; padding: 56px 0; width: 100%; }
.media-feature-content h2 { font-size: clamp(30px, 4.4vw, 58px); text-transform: uppercase; color: var(--on-room); }
.media-feature-content p { margin-top: 16px; color: var(--on-room-soft); max-width: 56ch; font-size: 16px; }
@media (max-width: 640px) { .media-feature { min-height: 380px; } }

/* ---------- feature photo (fixed-crop image for split sections) ---------- */
.feature-photo { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ---------- image gallery strip ---------- */
.gallery-strip { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 4px; }
.gallery-strip a { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; }
.gallery-strip a:first-child { aspect-ratio: auto; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s var(--ease); }
.gallery-strip a:hover img { transform: scale(1.04); }
@media (max-width: 780px) { .gallery-strip { grid-template-columns: 1fr 1fr; } .gallery-strip a:first-child { grid-column: 1 / -1; aspect-ratio: 16/10; } }

/* ---------- creative discipline grid — 4 big images across ---------- */
.creative-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.creative-grid a { display: block; color: inherit; }
.creative-grid .img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.creative-grid .img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s var(--ease); }
.creative-grid a:hover .img-wrap img { transform: scale(1.05); }
.creative-grid .cap { margin-top: 16px; font-family: var(--font-display); font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--on-room); }
.creative-grid-light .cap { color: var(--ink); }
@media (max-width: 900px) { .creative-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 4px; } }

.list-check { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.list-check li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.list-check li::before { content: ""; flex-shrink: 0; width: 8px; height: 8px; margin-top: 7px; background: var(--lime); }
.list-check.on-room li { color: var(--on-room-soft); }
.list-check.on-room li::before { background: var(--lime); }

details.faq { border-bottom: 1px solid var(--rule); padding: 22px 0; }
details.faq summary { cursor: pointer; font-weight: 700; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-size: 20px; color: var(--plum); transition: transform .3s; font-weight: 400; }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .a { padding-top: 14px; color: var(--ink-soft); font-size: 14.5px; max-width: 68ch; }

.avatar-stack { display: flex; }
.avatar-stack .av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--paper); margin-left: -10px; background-size: cover; background-position: center; }
.avatar-stack .av:first-child { margin-left: 0; }

/* ---------- article body (post/info pages) ---------- */
.article-body { max-width: 680px; margin: 0 auto; }
.article-body p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 22px; }
.article-body h2, .article-body h3, .article-body h4 { margin: 40px 0 16px; font-size: 22px; font-family: var(--font-display); text-transform: none; }
.article-list { margin: 0 0 26px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.article-list li { padding-left: 24px; position: relative; color: var(--ink-soft); font-size: 15.5px; }
.article-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--lime); }
