/* ═══════════════════════════════════════════════════════════════════════════
   Angel Blessings — page styles.

   This sheet sits on top of the Classical design system
   (_ds/classical-15585ace-3efa-4d5b-ba58-9f0edfbffec1/styles.css), which must
   be linked first. Take every color, face, space and radius from that sheet's
   tokens; the handful of values added below are site-level decisions the
   system does not carry.
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  /* The deep warm ground the quote band and footer sit on — the DS calls for
     "a shade below --color-neutral-900" for these colophon surfaces. */
  --color-band: #17150f;
  --color-band-text: #efe9df;

  /* Two text tones, so body copy and meta text don't each carry their own
     color-mix() at the call site. */
  --tone-soft: color-mix(in srgb, var(--color-text) 80%, transparent);
  --tone-meta: color-mix(in srgb, var(--color-text) 58%, transparent);

  --measure: 1160px;
  --gutter: clamp(18px, 4.5vw, 32px);
}

a:hover { color: var(--color-accent-700); }

/* Every control on the site clears a 44px touch target. */
.btn { min-height: 44px; }

/* Photographs are always matted; the mat takes the small radius. */
.plate { border-radius: var(--radius-sm); }
.plate-img { width: 100%; object-fit: cover; }
.plate-img--hero { height: clamp(240px, 44vw, 420px); }
.plate-img--program { height: clamp(190px, 26vw, 250px); }
.plate-img--portrait { height: clamp(150px, 21vw, 190px); }
.plate-img--band { height: clamp(220px, 30vw, 330px); }

/* — page frame — */
.page {
  min-height: 100vh; display: flex; flex-direction: column;
  font-family: var(--font-body); color: var(--color-text);
}
.page > main { flex: 1; }
.wrap { max-width: var(--measure); margin: 0 auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 60;
  padding: 10px 16px; background: var(--color-surface); color: var(--color-text);
  border: 1px solid var(--color-accent); border-radius: var(--radius-md);
  text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; }

/* — header — */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--color-bg) 94%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-divider);
}
.site-header__inner {
  max-width: var(--measure); margin: 0 auto;
  padding: 10px clamp(16px, 4vw, 32px);
  display: flex; align-items: center; gap: 6px 22px; flex-wrap: wrap;
}
.brand {
  display: flex; align-items: center; gap: 11px; padding: 2px 0;
  text-decoration: none; color: inherit; margin-right: auto; order: 1;
}
.brand:hover { color: inherit; }
.brand__mark {
  width: 34px; height: 34px; flex: none;
  border: 1px solid var(--color-accent); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-heading); font-size: 17px;
  color: var(--color-accent); font-feature-settings: 'tnum';
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-heading); font-size: 19px; letter-spacing: -0.01em; }
.brand__place {
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 52%, transparent); margin-top: 3px;
}
.site-header .btn { flex: none; order: 2; }
.site-nav {
  border: 0; padding: 0; gap: 20px; order: 3;
  flex: 1 1 320px; min-width: 0; align-items: center;
  flex-wrap: nowrap; white-space: nowrap;
  overflow-x: auto; scrollbar-width: none; line-height: 2.9;
}
.site-nav::-webkit-scrollbar { display: none; }

/* — the mobile menu —
   The toggle ships hidden and the nav ships open. Only once site.js confirms it
   can run does it reveal the button and mark the header collapsible, so a
   visitor without scripting gets a plain, visible menu rather than a button
   that does nothing. */
.nav-toggle { width: 44px; flex: none; order: 3; }
/* These need two classes to outrank the design system's `.btn svg`, which sets
   display: block on every icon inside a button. */
.nav-toggle .nav-toggle__icon--close { display: none; }
.nav-toggle[aria-expanded='true'] .nav-toggle__icon--open { display: none; }
.nav-toggle[aria-expanded='true'] .nav-toggle__icon--close { display: block; }

@media (max-width: 767px) {
  /* Brand, donate button and toggle have to share one row. Tighten the gap and
     the button so they still fit at 360px rather than wrapping the toggle onto
     a line of its own. */
  .site-header__inner { gap: 6px 10px; }
  .site-header .btn-primary { padding-inline: 10px; font-size: 13px; }

  .site-header[data-nav='collapsible'] .site-nav {
    order: 4; flex: 1 0 100%;
    display: none; flex-direction: column; align-items: stretch;
    gap: 0; margin-top: 6px; padding-bottom: 4px;
    white-space: normal; overflow: visible; line-height: 1.3;
    border-top: 1px solid var(--color-divider);
  }
  .site-header[data-nav='collapsible'] .site-nav[data-open] { display: flex; }
  .site-header[data-nav='collapsible'] .site-nav a {
    display: flex; align-items: center; min-height: 46px; padding: 4px 2px;
    font-size: 15px; border-bottom: 1px solid var(--color-divider);
  }
  .site-header[data-nav='collapsible'] .site-nav a:last-child { border-bottom: 0; }
}

/* Above the breakpoint the bar is wide enough for the links themselves. */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

/* — shared page furniture — */
.kicker {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-accent-700); margin-bottom: 18px;
  font-feature-settings: 'tnum';
}
.page-title {
  font-size: clamp(31px, 6.4vw, 52px); font-weight: 400;
  margin: 0 0 16px; line-height: 1.05;
}
.page-head { padding-block: clamp(42px, 6vw, 72px) 40px; }
/* Hairlines carry the structure, so they get their own cadences: one that
   leads straight into a block, one that breaks a long page in two, one that
   opens a second band on the same page. */
.hr--lead { margin: 0 0 40px; }
.hr--wide { margin: 52px 0; }
.hr--band { margin: 0 0 44px; }

.block-title { font-size: clamp(24px, 3.6vw, 30px); font-weight: 400; margin: 0 0 24px; }

/* The DS gives kickers and figures tabular numerals; do it once, here. */
.card-kicker { font-feature-settings: 'tnum'; }
.card-title { margin: 0; }

.section-head {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 34px;
}
.section-head h2 { font-size: clamp(26px, 4.4vw, 34px); font-weight: 400; margin: 0; }
.section-head__rule { flex: 1; height: 1px; background: var(--color-divider); }

.lede {
  font-size: 17px; line-height: 1.7; text-align: justify; hyphens: auto;
  max-width: 46ch; margin: 0; color: var(--tone-soft);
}
.prose { text-align: justify; hyphens: auto; line-height: 1.7; color: var(--tone-soft); }
.prose--airy { line-height: 1.8; font-size: 15.5px; }
.intro { max-width: 56ch; line-height: 1.75; margin: 0; color: var(--tone-soft); }
.note { font-size: 12.5px; margin-top: 14px; color: var(--tone-meta); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.actions--spaced { margin-top: 26px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.measure-18 { max-width: 18ch; }
.measure-19 { max-width: 19ch; }
.measure-20 { max-width: 20ch; }
.measure-52 { max-width: 52ch; }
.measure-58 { max-width: 58ch; }

/* A heading parted from its body by a hairline in the accent's light step. */
.hair-head {
  font-size: 20px; font-weight: 400; margin: 0 0 10px;
  padding-bottom: 10px; border-bottom: 1px solid var(--color-accent-300);
}

.table-scroll { overflow-x: auto; }

/* ─────────────────────────── home ─────────────────────────── */

.hero {
  padding-block: clamp(42px, 6vw, 72px) 56px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.hero .kicker { margin-bottom: 20px; }
.hero__title {
  font-size: clamp(34px, 7.4vw, 60px); font-weight: 400; line-height: 1.04;
  margin: 0 0 22px; letter-spacing: -0.02em; text-wrap: pretty;
}
.hero .actions { margin-top: 28px; }

.stats { padding-bottom: 64px; }
.stats > .hr:first-child { margin: 0 0 36px; }
.stats > .hr:last-child { margin: 36px 0 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 185px), 1fr)); gap: 0;
}
.stat { padding: 0 28px; border-left: 1px solid var(--color-divider); }
.stat__n {
  font-family: var(--font-heading); font-size: clamp(34px, 5vw, 44px);
  font-weight: 400; line-height: 1; font-feature-settings: 'tnum';
}
.stat__label {
  font-size: 12.5px; margin-top: 10px; line-height: 1.45;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
}

.programs { padding-block: clamp(16px, 3vw, 24px) 72px; }
.programs__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(30px, 4vw, 44px);
}
.program__meta { display: flex; align-items: center; gap: 10px; margin: 20px 0 0; }
.program__title { font-size: clamp(23px, 3vw, 27px); font-weight: 400; margin: 14px 0 10px; }

.quote-band {
  background: var(--color-band); color: var(--color-band-text);
  padding: clamp(48px, 7vw, 76px) var(--gutter);
}
.quote-band__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-band__mark {
  font-family: var(--font-heading); font-size: clamp(44px, 7vw, 64px);
  line-height: 0.6; margin: 0; color: var(--color-accent-400);
}
.quote {
  font-family: var(--font-heading); font-size: clamp(22px, 4.6vw, 31px);
  font-weight: 400; line-height: 1.4; margin: 18px 0 26px; text-wrap: pretty;
}
.quote__attrib {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 0; color: color-mix(in srgb, var(--color-band-text) 60%, transparent);
}

.ways { padding-block: clamp(42px, 6vw, 72px); }
.ways__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 24px;
}
.card--roomy { padding: 26px; }
.card--roomy .card-title { font-size: 21px; }
.card--roomy .card-body { font-size: 14px; line-height: 1.65; }
.card--roomy > .btn:not(.btn-block) { align-self: flex-start; margin-top: 6px; }

/* ─────────────────────────── about ─────────────────────────── */

.prose-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 28px; column-gap: clamp(28px, 4vw, 56px);
}
.values {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(26px, 3vw, 40px);
}
.values p { font-size: 14px; line-height: 1.7; color: var(--tone-soft); margin: 0; }
.people {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr)); gap: 22px;
}
.about-figure { margin-top: 34px; }
.person__name { font-family: var(--font-heading); font-size: 18px; margin-top: 12px; }
.person__role { font-size: 12px; color: var(--tone-meta); }

/* ─────────────────────────── events ─────────────────────────── */

.event-title { font-size: clamp(25px, 4.2vw, 32px); font-weight: 400; margin: 0 0 6px; }
.event-when {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tone-meta); margin: 0 0 30px;
}
.section--school { padding-block: clamp(30px, 4vw, 44px) 72px; }
.timeline {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 178px), 1fr)); gap: 0;
}
.step {
  padding: 22px 22px 26px;
  border-top: 2px solid var(--color-accent-300);
  border-left: 1px solid var(--color-divider);
}
.step__when {
  font-family: var(--font-heading); font-size: 13px; letter-spacing: 0.1em;
  color: var(--color-accent-700); font-feature-settings: 'tnum';
}
.step__title { font-family: var(--font-heading); font-size: 20px; margin: 10px 0 8px; }
.step p { font-size: 13.5px; line-height: 1.65; margin: 0; color: var(--tone-soft); }

.event-split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 4vw, 48px); align-items: start;
}
.buys__amt {
  font-feature-settings: 'tnum'; white-space: nowrap; color: var(--color-accent-700);
}

/* ─────────────────── the giving tree (marketing) ─────────────────── */

.tree-intro { padding-block: clamp(42px, 6vw, 72px) 28px; }
.tree-head {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.steps-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); gap: 0;
}
.rules { margin: 0; padding-left: 18px; line-height: 1.8; color: var(--tone-soft); }
.rules li + li { margin-top: 6px; }

/* ─────────────────────────── forms ─────────────────────────── */

/* A card holds either its form or its thank-you, so the form inherits the
   card's own column rhythm. */
.card > form { display: flex; flex-direction: column; gap: var(--space-2); }
.card > form[hidden] { display: none; }

.form-stack { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.form-stack--tight { margin-top: 6px; }
.field__error { font-size: 11.5px; color: var(--color-accent-700); margin: 4px 0 0; }
.field__error:empty { display: none; }
.choice-stack { display: flex; flex-direction: column; gap: 9px; margin-top: 6px; }
.choice-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 6px; }
.form-done { padding: 12px 0; }
.form-done__title { font-family: var(--font-heading); font-size: 26px; margin-bottom: 10px; }
.form-done p { font-size: 14px; line-height: 1.7; color: var(--tone-soft); }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend {
  display: block; font-size: 12px; margin-bottom: 5px; padding: 0;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}

/* ─────────────────────────── donate ─────────────────────────── */

/* The PayPal button is a plain submit inside a form that posts to PayPal, so
   it takes the system's own button styling rather than a pasted-in image. */
.donate { gap: var(--space-3); }
.donate__amounts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 96px), 1fr));
  gap: 10px; margin: 0;
}
.donate__amount {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 10px; text-align: center;
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.donate__figure {
  font-family: var(--font-heading); font-size: 21px; line-height: 1;
  color: var(--color-accent-700); font-feature-settings: 'tnum';
}
.donate__buys { font-size: 11.5px; line-height: 1.4; color: var(--tone-meta); }
.donate__form { margin: 0; }
.donate__note { font-size: 12px; line-height: 1.6; margin: 0; color: var(--tone-meta); }

/* ─────────────────────── give & contact ─────────────────────── */

.col-title { font-size: clamp(23px, 3.4vw, 28px); font-weight: 400; margin: 0 0 18px; }
.sub-title { font-size: 22px; font-weight: 400; margin: 36px 0 12px; }
.sub-title--tight { font-size: 18px; margin: 0 0 10px; }
.section--rule-top { padding-bottom: 40px; }
.section--tall { padding-bottom: 72px; }
.page-title--spaced { margin-bottom: 34px; }
.sub-title--lead { margin-top: 0; }
.dropoffs { min-width: 430px; }
/* The location is the row's header, but it reads as a name, not a column label. */
.dropoffs th[scope='row'] {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 16px; letter-spacing: normal; text-transform: none;
  color: var(--color-text);
}
.dropoffs td { color: color-mix(in srgb, var(--color-text) 70%, transparent); }
.dropoffs__hours { white-space: nowrap; font-feature-settings: 'tnum'; }
.small-prose { font-size: 13.5px; line-height: 1.7; color: var(--tone-soft); }
.mail-prose { font-size: 14px; line-height: 1.7; color: var(--tone-soft); }

.roles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); gap: 26px;
}
.role .hair-head { margin-bottom: 8px; }
.role__when {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0 0 8px; color: color-mix(in srgb, var(--color-text) 52%, transparent);
}
.role p { font-size: 13.5px; line-height: 1.7; margin: 0; color: var(--tone-soft); }

.aside-note { margin-top: 26px; padding: 22px; border-left: 2px solid var(--color-accent-300); }
.aside-note__title { font-family: var(--font-heading); font-size: 19px; margin-bottom: 8px; }
.aside-note p { font-size: 13.5px; line-height: 1.7; margin: 0; color: var(--tone-soft); }
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(32px, 4vw, 48px);
}
.split--wide-gap { gap: clamp(32px, 4vw, 56px); align-items: start; }
.contact-lines { font-size: 14.5px; line-height: 1.9; color: var(--tone-soft); }

/* ─────────────────────────── footer ─────────────────────────── */

.site-footer {
  background: var(--color-band); color: var(--color-band-text);
  padding: clamp(40px, 6vw, 56px) var(--gutter) 34px; margin-top: auto;
}
.site-footer__inner { max-width: var(--measure); margin: 0 auto; }
.site-footer__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr));
  gap: clamp(26px, 3vw, 40px);
}
.site-footer__brand { font-family: var(--font-heading); font-size: 22px; margin-bottom: 10px; }
.site-footer__blurb {
  font-size: 13.5px; line-height: 1.75; max-width: 34ch; margin: 0;
  color: color-mix(in srgb, var(--color-band-text) 66%, transparent);
}
.footer-col__title {
  font-family: var(--font-body); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.55;
  color: var(--color-accent-400); margin: 0 0 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; }
.footer-links a { color: var(--color-band-text); text-decoration: none; }
.footer-links a:hover { color: var(--color-accent-300); }
.site-footer__reach {
  font-size: 13.5px; line-height: 1.8;
  color: color-mix(in srgb, var(--color-band-text) 72%, transparent);
}
.site-footer__legal {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--color-band-text) 18%, transparent);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 11.5px; color: color-mix(in srgb, var(--color-band-text) 52%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
