/* Friends of Welaka — single site stylesheet. ALL styling lives here (no
   inline styles ever). Design tokens first. One breakpoint collapses the
   nav and grids; keep the 900px value in sync with main.js.

   Design rule for this site: text never sits on top of a photograph.
   Photos are shown whole, on their own, against solid backgrounds — no
   scrims, no gradient overlays, no washed-out faces. */

:root {
  /* Brand palette (supplied by the client, 2026-08-29). */
  --teal-light: #26d3cd;
  --teal: #20afad;
  --green-dark: #007777;
  --green: #25cc51;
  --green-light: #73e491;
  --gray: #666666;
  /* one page-specific accent, used only for the gala's evening treatment */
  --gold: #e39f48;

  /* Roles. Neutrals (#0d0d0d, #f3f3f3, #e5e5e5) are the source site's own. */
  --color-primary: var(--green-dark);
  --color-primary-hover: var(--teal);
  --color-accent: var(--teal);
  --color-ink: #0d0d0d;
  --color-text: var(--gray);
  --color-muted: var(--gray);
  --color-line: #e5e5e5;
  --color-light: #f3f3f3;
  --color-paper: #ffffff;

  --font-body: Manrope, Helvetica, Arial, sans-serif;
  --font-heading: var(--font-body);

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(13, 13, 13, .04), 0 8px 24px rgba(13, 13, 13, .07);
  --shadow-lift: 0 2px 4px rgba(13, 13, 13, .05), 0 18px 40px rgba(13, 13, 13, .12);
  --space-section: clamp(56px, 8vw, 104px);
}

/* Manrope ligates "(c)" into ©, which mangles "501(c)(3)" wherever the
   nonprofit status is stated. No Latin text here needs ligatures. */
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-text);
  background: var(--color-paper);
  line-height: 1.65;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0, "calt" 0, "dlig" 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 5.2vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 700; }
h4, h5 { font-size: 1.075rem; font-weight: 700; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-underline-offset: 3px; }
a:hover { color: var(--teal); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 720px; }
.center { text-align: center; }
.flow > * + * { margin-top: 1.1em; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--color-muted); line-height: 1.55; }
.eyebrow {
  margin: 0 0 14px; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--color-accent);
}

/* buttons ------------------------------------------------------------ */
.btn {
  display: inline-block; background: var(--color-primary); color: #fff;
  padding: 15px 30px; border: 2px solid var(--color-primary); border-radius: 7px;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover {
  background: var(--color-primary-hover); border-color: var(--color-primary-hover);
  color: #fff; transform: translateY(-1px);
}
.btn--outline { background: transparent; color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: #fff; }
/* for use on dark grounds (the gala hero) */
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.center .btn-row { justify-content: center; }

/* header / nav ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.site-header__logo { display: flex; align-items: center; text-decoration: none; }
.site-header__logo img { width: 178px; height: 73px; }
.nav-toggle {
  display: none; background: none; border: 0; font-size: 1.6rem;
  color: var(--color-ink); cursor: pointer; padding: 4px 8px;
}
.site-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-top {
  display: block; padding: 10px 13px; color: var(--color-ink);
  text-decoration: none; font-weight: 600; font-size: .95rem; border-radius: 8px;
}
.nav-top:hover { background: var(--color-light); color: var(--color-primary); }
.nav-top.is-active { color: var(--color-primary); }
.caret { font-size: .7em; opacity: .55; }
/* Dropdowns: no gap between the parent item and the panel (a gap is a dead
   zone that closes the menu mid-travel), and a short grace period on close
   so a slightly off-line diagonal doesn't lose it. */
.subnav {
  position: absolute; top: 100%; left: 0; min-width: 262px;
  margin: 0; padding: 8px; list-style: none; background: #fff;
  box-shadow: var(--shadow-lift); border: 1px solid var(--color-line);
  border-radius: var(--radius);
  visibility: hidden; opacity: 0; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear .25s;
}
.has-sub:hover > .subnav,
.has-sub:focus-within > .subnav,
.has-sub.is-open > .subnav {
  visibility: visible; opacity: 1; transform: none;
  transition: opacity .16s ease, transform .16s ease, visibility 0s;
}
.subnav a {
  display: block; padding: 11px 14px; text-decoration: none; white-space: nowrap;
  color: var(--color-ink); font-size: .95rem; font-weight: 500; border-radius: 6px;
}
.subnav a:hover, .subnav a:focus-visible { background: var(--color-light); color: var(--color-primary); }
.site-header__cta { margin-left: 6px; }
.site-header__cta .btn { padding: 12px 24px; font-size: .92rem; }

/* sections ----------------------------------------------------------- */
.section { padding: var(--space-section) 0; }
.section--light { background: var(--color-light); }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section__head { max-width: 660px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section__head p:last-child { margin-bottom: 0; }

/* split hero — copy on a solid panel, photograph beside it, never behind */
.hero { padding: clamp(44px, 6vw, 80px) 0 var(--space-section); }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__copy { max-width: 560px; }
.hero__copy h1 { margin-bottom: .35em; }
.hero__lead { margin-bottom: 1.8em; }
.hero__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); object-fit: cover; aspect-ratio: 4 / 3;
}
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--color-line);
  font-size: .88rem; color: var(--color-muted);
}
.hero__trust strong { color: var(--color-ink); font-weight: 700; }

/* interior page header — solid, no photo behind the words */
.page-head { padding: clamp(44px, 6vw, 76px) 0 clamp(28px, 4vw, 44px); }
.page-head h1 { margin: 0; }
.page-head__lead { margin-top: .8em; max-width: 62ch; }
/* The accent rule sits UNDER every h1 and h2, sitewide, as a pseudo-element
   so no template has to carry a divider element. */
h1::after, h2::after {
  content: ""; display: block; width: 64px; height: 4px;
  margin-top: .55em; background: var(--green); border-radius: 2px;
}
/* centred contexts need the block centred too */
.center h1::after, .center h2::after,
.section__head h1::after, .section__head h2::after,
.hero--centered h1::after { margin-left: auto; margin-right: auto; }
/* on the teal pillars band the green rule disappears — go white */
.pillars h2::after { background: #fff; }

/* full-bleed photo band, shown whole, nothing on top of it */
.photo-band { max-width: 1340px; margin: 0 auto; padding: 0 24px; }
.photo-band img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  object-fit: cover; aspect-ratio: 21 / 9;
}

/* impact numbers ----------------------------------------------------- */
.stat-band { background: var(--green-dark); color: #fff; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.stat__value {
  font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 800; line-height: 1;
  letter-spacing: -.03em; color: var(--teal-light); margin: 0;
}
.stat__label {
  margin: .55em 0 0; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.72);
}

/* alternating photo + copy rows -------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.feature + .feature { margin-top: clamp(48px, 7vw, 88px); }
.feature__media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  object-fit: cover; aspect-ratio: 4 / 3;
}
.feature--flip .feature__media { order: 2; }

/* tiles / cards ------------------------------------------------------ */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--color-line); border-radius: var(--radius);
  padding: 30px 26px; text-decoration: none; color: var(--color-text);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); border-color: transparent; }
.card h3 { color: var(--color-ink); }
.card p { color: var(--color-muted); font-size: .98rem; }
.card .btn { margin-top: auto; align-self: flex-start; }
.card--icon img { width: 60px; height: 60px; margin-bottom: 18px; }

/* photo tile: image on top, caption underneath — text never over it */
.tile {
  display: block; text-decoration: none; color: inherit;
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--color-line);
  transition: box-shadow .2s ease, transform .2s ease;
}
.tile:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.tile img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.tile__body { padding: 20px 22px 24px; }
.tile__body h3 { margin-bottom: .3em; font-size: 1.15rem; }
.tile__body p { margin: 0; color: var(--color-muted); font-size: .95rem; }

/* galleries — whole photographs, generous, uncropped by text */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin: 2.4em 0; }
.photo-grid img { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }
.photo-grid--wide img { aspect-ratio: 4 / 3; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 3 / 4; }
.gallery img:nth-child(5n + 1) { grid-column: span 2; aspect-ratio: 8 / 5; }

/* prose -------------------------------------------------------------- */
.prose { font-size: 1.075rem; }
.prose h2 { margin-top: 1.8em; }
.prose h3, .prose h4 { margin-top: 1.5em; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose img { border-radius: var(--radius); margin: 2em 0; }
blockquote {
  border-left: 4px solid var(--color-accent); margin: 1.6em 0;
  padding: .1em 0 .1em 1.2em; color: var(--color-muted); font-size: 1.1rem;
}

/* program cards (hub) — 14 programs read as a scannable grid rather than
   one very long stacked list. Full copy is kept; nothing is truncated. */
.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
.program-card {
  background: #fff; border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: clamp(26px, 3vw, 34px);
  transition: box-shadow .2s ease, transform .2s ease;
}
.program-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.program-card h2 { font-size: 1.3rem; color: var(--color-primary); margin-bottom: .45em; }
.program-card h2::after { margin-top: .5em; }
.program-card p { font-size: .98rem; }

/* minutes list */
.minutes__mark { width: 96px; height: 96px; margin: 0 auto 2em; }
.minutes { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; list-style: none; padding: 0; margin: 0; }
.minutes a {
  display: block; padding: 22px 16px; text-align: center; font-weight: 700;
  text-decoration: none; color: var(--color-ink); background: #fff;
  border: 1px solid var(--color-line); border-radius: var(--radius);
  transition: box-shadow .2s ease, transform .2s ease, color .2s ease;
}
.minutes a:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); color: var(--teal); }

/* forms -------------------------------------------------------------- */
.form {
  display: grid; gap: 20px; background: #fff; padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form label { display: block; font-weight: 700; font-size: .92rem; color: var(--color-ink); margin-bottom: 7px; }
.form input, .form textarea {
  width: 100%; padding: 13px 14px; font: inherit; font-size: 1rem; color: var(--color-ink);
  border: 1px solid #cfd6d5; border-radius: 10px; background: var(--color-paper);
  transition: border-color .15s ease, background .15s ease;
}
.form input:focus, .form textarea:focus {
  outline: 2px solid var(--color-accent); outline-offset: 1px;
  border-color: transparent; background: #fff;
}
.form textarea { min-height: 170px; resize: vertical; }
.form__fieldset { border: 1px solid var(--color-line); border-radius: var(--radius); padding: 20px 22px; margin: 0; }
.form__fieldset legend { font-weight: 700; font-size: .92rem; color: var(--color-ink); padding: 0 8px; }
.form__check { display: block; font-weight: 500; font-size: 1rem; margin-bottom: 10px; color: var(--color-text); }
.form__check:last-child { margin-bottom: 0; }
.form__check input { width: auto; margin-right: 10px; }
.form__count { margin: 6px 0 0; font-size: .85rem; color: var(--color-muted); text-align: right; }
.form__hint { margin: 8px 0 0; font-size: .9rem; color: var(--color-muted); }
.form__status { margin: 0; font-weight: 700; }
.form__status--error { color: #b3261e; }
.form__status--ok { color: var(--color-primary); }
.form__status:empty { display: none; }

/* PayPal hosted donation button */
.donate-box {
  padding: clamp(24px, 4vw, 36px); background: #fff;
  border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.donate-box__loading { color: var(--color-muted); text-align: center; margin: 0; }
.donate-box__loading--error { color: #b3261e; font-weight: 700; }
.donate-box__fallback {
  margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--color-line);
  font-size: .93rem; color: var(--color-muted); text-align: center;
}

/* pending third-party embed (donations) */
.embed-pending {
  padding: clamp(28px, 4vw, 40px); border: 1px dashed #bcbcbc;
  border-radius: var(--radius-lg); background: var(--color-light); text-align: center;
}
.embed-pending p:first-child { font-size: 1.15rem; color: var(--color-ink); }

/* embeds */
.video-wrap { position: relative; padding-top: 56.25%; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.form-wrap iframe { width: 100%; min-height: 600px; border: 0; border-radius: var(--radius); }
.table-wrap { overflow-x: auto; }

/* supporter strip ---------------------------------------------------- */
.supporter { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px; text-align: center; }
.supporter img { width: 240px; height: 55px; object-fit: contain; }
.supporter p { max-width: 640px; margin: 0; font-size: .95rem; color: var(--color-muted); }

/* footer ------------------------------------------------------------- */
.site-footer { background: #0d0d0d; color: rgba(255,255,255,.78); margin-top: 0; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.1em; }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__main {
  max-width: var(--container); margin: 0 auto; padding: clamp(48px, 7vw, 76px) 24px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: clamp(32px, 5vw, 56px);
}
.site-footer__logo img { width: 190px; height: 78px; margin-bottom: 22px; }
.site-footer__grant { font-size: .88rem; line-height: 1.6; color: rgba(255,255,255,.62); }
.site-footer__main ul { list-style: none; margin: 0; padding: 0; }
.site-footer__main li { margin-bottom: .7em; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 20px 24px;
  text-align: center; font-size: .85rem; color: rgba(255,255,255,.55);
}

/* analytics ---------------------------------------------------------- */
.tag-ns { display: none; visibility: hidden; }

/* responsive --------------------------------------------------------- */
@media (max-width: 900px) {
  .program-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px; border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-lift);
  }
  .site-nav.is-open { display: flex; }
  .subnav {
    display: none; position: static; box-shadow: none; border: 0;
    padding: 0 0 6px 12px; margin: 0; min-width: 0;
    visibility: visible; opacity: 1; transform: none; transition: none;
  }
  .has-sub.is-open > .subnav { display: block; }
  .subnav a { padding: 13px 14px; white-space: normal; }
  .nav-top { padding: 13px 14px; }
  .site-header__cta { margin: 8px 0 4px; }
  .site-header__cta .btn { display: block; text-align: center; }
  .site-header__logo img { width: 150px; height: 61px; }

  .hero__grid, .feature { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .feature--flip .feature__media { order: 0; }
  .stats { grid-template-columns: 1fr; gap: 36px; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img:nth-child(5n + 1) { grid-column: span 2; }
  .form__row { grid-template-columns: 1fr; }
  .site-footer__main { grid-template-columns: 1fr; }
  .photo-band img { aspect-ratio: 16 / 10; }
}

/* The 5 Pillars band (/about-us/) — white mark on brand teal, as on the
   source site (#20afad section background). */
.pillars {
  display: grid; grid-template-columns: 150px 1fr; gap: clamp(24px, 4vw, 48px);
  align-items: center; margin: 2.6em 0;
  padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-lg);
  background: var(--teal); color: #fff;
}
.pillars__mark { width: 100%; height: auto; }
.pillars__body h2 { color: #fff; margin-top: 0; }
.pillars__body h3 {
  color: #fff; font-size: 1.15rem; font-weight: 600;
  margin: 0 0 .45em; padding-bottom: .45em;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.pillars__body h3:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }

@media (max-width: 700px) {
  .pillars { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .pillars__mark { width: 110px; }
  .pillars h2::after { margin-left: auto; margin-right: auto; }
}

/* ---- Gala (/gala/) -----------------------------------------------------
   An evening event gets its own darker treatment. Same rule as everywhere
   else: type sits on solid colour, photographs are shown whole beside it. */
.gala-hero {
  background: var(--color-ink); color: rgba(255,255,255,.82);
  padding: clamp(48px, 7vw, 92px) 0;
}
.gala-hero h1 { color: #fff; }
.gala-hero h1::after { background: var(--gold); }
.gala-hero .eyebrow { color: var(--teal-light); }
.gala-hero .hero__media img {
  border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(0,0,0,.45);
  aspect-ratio: 4 / 5;
}

/* date lockup */
.gala-date {
  display: inline-flex; align-items: baseline; gap: 10px;
  margin: 0 0 .35em; color: #fff;
}
.gala-date__month, .gala-date__year {
  font-size: 1.05rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--teal-light);
}
.gala-date__day { font-size: clamp(3rem, 7vw, 4.5rem); font-weight: 800; line-height: .9; letter-spacing: -.03em; }
.gala-hero__venue { margin: 0 0 1em; font-size: 1.1rem; color: rgba(255,255,255,.78); }
.gala-countdown {
  display: inline-block; margin: 0 0 1.8em; padding: 7px 16px;
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
  font-size: .88rem; font-weight: 700; letter-spacing: .04em; color: #fff;
}
.gala-countdown:empty { display: none; }

.btn--gold { background: var(--gold); border-color: var(--gold); color: #221a00; }
.btn--gold:hover { background: #f0c14b; border-color: #f0c14b; color: #221a00; }

/* fact strip */
.gala-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gala-fact {
  padding: 24px 26px; background: #fff; border: 1px solid var(--color-line);
  border-radius: var(--radius); border-top: 3px solid var(--teal);
}
.gala-fact__label {
  margin: 0 0 .35em; font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--color-muted);
}
.gala-fact__value { margin: 0; font-size: 1.12rem; font-weight: 700; color: var(--color-ink); }

/* what the evening includes */
.gala-list { list-style: none; margin: 1.4em 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; }
.gala-list li { position: relative; padding-left: 26px; font-weight: 600; color: var(--color-ink); }
.gala-list li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green-light); box-shadow: inset 0 0 0 3px var(--green-dark);
}

/* tickets */
.gala-tickets { background: var(--color-ink); color: rgba(255,255,255,.82); padding: var(--space-section) 0; }
.gala-tickets h2 { color: #fff; }
.gala-tickets h2::after { background: var(--gold); margin-left: auto; margin-right: auto; }
.gala-tickets .eyebrow { color: var(--teal-light); }
.gala-tickets__lead { color: rgba(255,255,255,.78); margin-bottom: 2em; }
.gala-tickets .donate-box { text-align: left; }

@media (max-width: 900px) {
  .gala-facts { grid-template-columns: 1fr; }
  .gala-list { grid-template-columns: 1fr; }
}
