/* ==========================================================================
   Law Park Educational Trust — design system
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&display=swap");

@layer tokens, base, layout, components, utilities;

/* --- Tokens (navy + gold — matches new-design / magazine) --- */
@layer tokens {
  :root {
    --color-navy: #1c1c2e;
    --color-navy-mid: #2d2d44;
    --color-gold: #c9903e;
    --color-gold-light: #e0b06a;
    --color-cream: #faf8f3;

    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-surface-alt: var(--color-cream);
    --color-text: #111827;
    --color-text-muted: #6b7280;
    --color-title: var(--color-navy);
    --color-primary: var(--color-navy-mid);
    --color-primary-hover: var(--color-navy);
    --color-accent: var(--color-gold);
    --color-border: #e5e7eb;
    --color-focus: var(--color-gold);

    --font-sans: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;

    --text-sm: clamp(0.875rem, 0.82rem + 0.2vw, 0.9375rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
    --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.5vw, 2.75rem);

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;

    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;

    --shadow-sm: 0 1px 2px rgba(26, 33, 28, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 33, 28, 0.08);
    --shadow-lg: 0 12px 32px rgba(26, 33, 28, 0.1);

    --container-max: 72rem;
    --content-max: 65ch;

    --header-height: 4rem;
    --section-rule: 1px solid var(--color-border);

    --nav-link: var(--color-navy);
    --nav-link-hover: var(--color-navy-mid);
    --nav-link-hover-bg: rgba(28, 28, 46, 0.06);
    --nav-link-current: var(--color-navy);
    --nav-link-current-bg: rgba(201, 144, 62, 0.14);
    --nav-link-current-shadow: inset 0 -2px 0 var(--color-gold);
    --nav-link-current-hover-color: var(--color-navy);
    --nav-link-current-hover-bg: rgba(201, 144, 62, 0.2);
    --nav-cta-bg: var(--color-navy-mid);
    --nav-cta-fg: #fff;
    --nav-cta-hover-bg: var(--color-navy);
    --nav-cta-current-bg: var(--color-navy);
    --nav-cta-current-ring: inset 0 0 0 2px var(--color-gold-light);

    /* Dark logo mark — always on a light plate (both themes) */
    --logo-plate-bg: #ffffff;
    --logo-plate-border: rgba(28, 28, 46, 0.12);
  }

  [data-theme="light"] {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-surface-alt: var(--color-cream);
    --color-text: #111827;
    --color-text-muted: #6b7280;
    --color-primary: var(--color-navy-mid);
    --color-primary-hover: var(--color-navy);
    --color-accent: var(--color-gold);
    --color-border: #e5e7eb;
    --color-focus: var(--color-gold);
  }

  [data-theme="dark"] {
    --color-bg: #0a0a12;
    --color-surface: #13131f;
    --color-surface-alt: #1c1c2e;
    --color-cream: #1c1c2e;
    --color-text: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-primary: var(--color-gold-light);
    --color-primary-hover: var(--color-gold);
    --color-accent: var(--color-gold);
    --color-border: #2d2d44;
    --color-focus: var(--color-gold);
    --color-title: #f9fafb;

    --nav-link: #f3f4f6;
    --nav-link-hover: var(--color-gold-light);
    --nav-link-hover-bg: rgba(255, 255, 255, 0.08);
    --nav-link-current: #fff;
    --nav-link-current-bg: rgba(201, 144, 62, 0.22);
    --nav-link-current-shadow: inset 0 -2px 0 var(--color-gold-light);
    --nav-link-current-hover-color: var(--color-gold-light);
    --nav-link-current-hover-bg: rgba(201, 144, 62, 0.32);
    --nav-cta-bg: var(--color-gold);
    --nav-cta-fg: var(--color-navy);
    --nav-cta-hover-bg: var(--color-gold-light);
    --nav-cta-current-bg: var(--color-gold);
    --nav-cta-current-ring: inset 0 0 0 2px var(--color-navy);
  }
}

/* --- Base --- */
@layer base {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    color-scheme: light dark;
  }

  body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
  }

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

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-heading);
    color: var(--color-title);
    line-height: 1.2;
    font-weight: 600;
    text-wrap: balance;
  }

  h1 {
    font-size: var(--text-3xl);
  }

  h2 {
    font-size: var(--text-2xl);
  }

  h3 {
    font-size: var(--text-xl);
  }

  p {
    margin: 0 0 var(--space-4);
    max-width: var(--content-max);
  }

  a {
    color: var(--color-primary);
    text-underline-offset: 0.15em;
  }

  a:hover {
    color: var(--color-primary-hover);
  }

  :focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 2px;
  }

  ::selection {
    background-color: var(--color-primary);
    color: var(--color-surface);
  }

  @media (prefers-reduced-motion: no-preference) {
    html {
      scroll-behavior: smooth;
    }
  }
}

/* --- Layout --- */
@layer layout {
  .container {
    width: min(100% - var(--space-6), var(--container-max));
    margin-inline: auto;
  }

  .stack > * + * {
    margin-top: var(--space-4);
  }

  .stack--lg > * + * {
    margin-top: var(--space-6);
  }

  .cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3) var(--space-4);
  }

  .grid {
    display: grid;
    gap: var(--space-5);
  }

  @media (min-width: 40rem) {
    .grid--2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .grid--4 {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 56rem) {
    .grid--4 {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .section {
    padding-block: var(--space-8);
    border-top: var(--section-rule);
  }

  .section:first-of-type {
    border-top: none;
  }

  .section__header {
    margin-bottom: var(--space-6);
  }

  .section__lead {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: var(--content-max);
  }
}

/* --- Components --- */
@layer components {
  .skip-link {
    position: absolute;
    top: var(--space-2);
    left: var(--space-2);
    z-index: 100;
    padding: var(--space-2) var(--space-4);
    background: var(--color-primary);
    color: var(--color-surface);
    border-radius: var(--radius-md);
    text-decoration: none;
    transform: translateY(-200%);
    transition: transform 0.15s ease;
  }

  .skip-link:focus {
    transform: translateY(0);
    color: var(--color-surface);
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--color-surface);
    box-shadow: 0 1px 2px rgba(28, 28, 46, 0.06);
    border-bottom: 1px solid var(--color-border);
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: var(--space-4);
  }

  .site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--color-text);
    text-decoration: none;
    line-height: 1.3;
  }

  .site-logo:hover {
    color: var(--color-primary-hover);
  }

  .site-logo__img {
    width: 3rem;
    height: auto;
    flex-shrink: 0;
    padding: var(--space-1);
    background: var(--logo-plate-bg);
    border: 1px solid var(--logo-plate-border);
    border-radius: var(--radius-md);
    box-sizing: border-box;
    object-fit: contain;
    box-shadow: 0 1px 2px rgba(28, 28, 46, 0.06);
  }

  [data-theme="dark"] .site-logo__img {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  }

  .site-logo span {
    display: block;
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--color-text-muted);
  }

  .primary-nav__link {
    display: block;
    padding: var(--space-2) var(--space-3);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: 1.25;
    color: var(--nav-link);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: color 0.15s ease, background-color 0.15s ease,
      box-shadow 0.15s ease;
  }

  .primary-nav__link:not(.primary-nav__link--cta):hover {
    color: var(--nav-link-hover);
    background: var(--nav-link-hover-bg);
  }

  .primary-nav__link:not(.primary-nav__link--cta):focus-visible {
    color: var(--nav-link-hover);
    background: var(--nav-link-hover-bg);
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
  }

  .primary-nav__link[aria-current="page"]:not(.primary-nav__link--cta) {
    color: var(--nav-link-current);
    font-weight: 600;
    background: var(--nav-link-current-bg);
    box-shadow: var(--nav-link-current-shadow);
  }

  .primary-nav__link[aria-current="page"]:not(.primary-nav__link--cta):hover,
  .primary-nav__link[aria-current="page"]:not(.primary-nav__link--cta):focus-visible {
    color: var(--nav-link-current-hover-color);
    background: var(--nav-link-current-hover-bg);
  }

  .primary-nav__link--cta {
    background: var(--nav-cta-bg);
    color: var(--nav-cta-fg);
    font-weight: 600;
    padding: var(--space-2) var(--space-4);
  }

  .primary-nav__link--cta:hover,
  .primary-nav__link--cta:focus-visible {
    background: var(--nav-cta-hover-bg);
    color: var(--nav-cta-fg);
  }

  .primary-nav__link--cta:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
  }

  .primary-nav__link--cta[aria-current="page"] {
    background: var(--nav-cta-current-bg);
    color: var(--nav-cta-fg);
    box-shadow: var(--nav-cta-current-ring);
  }

  .primary-nav__link--cta[aria-current="page"]:hover,
  .primary-nav__link--cta[aria-current="page"]:focus-visible {
    background: var(--nav-cta-hover-bg);
    color: var(--nav-cta-fg);
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
  }

  .nav-toggle__icon {
    width: 1.25rem;
    height: 2px;
    background: currentColor;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  }

  @media (min-width: 48rem) {
    .nav-toggle {
      display: none;
    }
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: var(--space-4);
    background: var(--color-surface);
    border-bottom: var(--section-rule);
    box-shadow: var(--shadow-md);
  }

  .primary-nav:not([hidden]) {
    display: block;
  }

  @media (min-width: 48rem) {
    .primary-nav {
      display: flex;
      position: static;
      padding: 0;
      background: transparent;
      border: none;
      box-shadow: none;
      align-items: center;
      gap: var(--space-2);
    }

    .primary-nav[hidden] {
      display: flex;
    }
  }

  .primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
  }

  @media (min-width: 48rem) {
    .primary-nav__list {
      flex-direction: row;
      align-items: center;
      gap: var(--space-2);
    }
  }

  @media (max-width: 47.99rem) {
    .primary-nav__link--cta {
      margin-top: var(--space-2);
      text-align: center;
    }
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }

  .theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
  }

  .theme-toggle__icon::before {
    content: "☀";
  }

  [data-theme="dark"] .theme-toggle__icon::before {
    content: "☾";
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-base);
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease,
      border-color 0.15s ease;
  }

  @media (prefers-reduced-motion: reduce) {
    .btn {
      transition: none;
    }
  }

  .btn-primary {
    background: var(--color-navy-mid);
    color: #fff;
    border-color: var(--color-navy-mid);
  }

  .btn-primary:hover,
  .btn-primary:focus-visible {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: #fff;
  }

  .btn-gold {
    background: var(--color-gold);
    color: var(--color-navy);
    border-color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .btn-gold:hover,
  .btn-gold:focus-visible {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-navy);
  }

  .btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
  }

  .btn-secondary:hover,
  .btn-secondary:focus-visible {
    background: var(--color-surface-alt);
    color: var(--color-primary-hover);
  }

  .btn-ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
  }

  .btn-ghost:hover,
  .btn-ghost:focus-visible {
    background: var(--color-surface-alt);
    color: var(--color-primary);
  }

  .hero {
    padding-block: var(--space-8) var(--space-7);
  }

  .hero__grid {
    display: grid;
    gap: var(--space-6);
    align-items: center;
  }

  @media (min-width: 56rem) {
    .hero__grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .hero__tagline {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 42ch;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
  }

  .hero__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-surface-alt);
  }

  .hero__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .stat-banner {
    padding: var(--space-6);
    background: var(--color-surface);
    border: var(--section-rule);
    border-radius: var(--radius-lg);
    text-align: center;
  }

  .stat-banner__figure {
    margin: 0;
  }

  .stat-banner__value {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1.2;
  }

  .stat-banner__label {
    display: block;
    margin-top: var(--space-3);
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 50ch;
    margin-inline: auto;
  }

  .pull-quote {
    margin: var(--space-6) 0;
    padding: var(--space-5) var(--space-6);
    border-left: 4px solid var(--color-gold);
    background: var(--color-surface-alt);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }

  .pull-quote p {
    margin: 0;
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--color-text);
    max-width: none;
  }

  .card {
    padding: var(--space-5);
    background: var(--color-surface);
    border: var(--section-rule);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
  }

  .card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold-light);
    background: var(--color-navy);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
  }

  .card h3 {
    margin: 0 0 var(--space-3);
    font-size: var(--text-lg);
  }

  .card p:last-child {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
  }

  .section--navy {
    background: var(--color-navy);
    border-top: none;
    color: #fff;
  }

  .section--navy h2,
  .section--navy h3 {
    color: #fff;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin: 0 0 var(--space-3);
    max-width: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-navy-mid);
  }

  .section-label::before {
    content: "";
    width: 2rem;
    height: 2px;
    background: var(--color-gold);
    border-radius: 1px;
    flex-shrink: 0;
  }

  .section-label--light {
    color: var(--color-gold-light);
  }

  .section-label--light::before {
    background: var(--color-gold-light);
  }

  .section-label--center {
    justify-content: center;
    margin-inline: auto;
  }

  .section-label--center::after {
    content: "";
    width: 2rem;
    height: 2px;
    background: var(--color-gold);
    border-radius: 1px;
    flex-shrink: 0;
  }

  .section-label--center.section-label--light::after {
    background: var(--color-gold-light);
  }

  .stat-tile {
    padding: var(--space-6) var(--space-4);
    text-align: center;
    border-radius: 0;
    border: none;
    background: transparent;
  }

  .stat-tile h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-gold-light);
    line-height: 1.1;
  }

  .stat-tile p,
  .stat-tile__label {
    margin: var(--space-2) 0 0;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
  }

  .stat-tile--purple,
  .stat-tile--orange {
    background: transparent;
  }

  .about-stats {
    border-top: 2px solid rgba(201, 144, 62, 0.25);
  }

  @media (min-width: 40rem) {
    .about-stats .stat-tile + .stat-tile {
      border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
  }

  .stat-tile--todo {
    opacity: 0.85;
    border-style: dashed;
  }

  .trustee-card {
    padding: var(--space-5);
    background: var(--color-surface);
    border: var(--section-rule);
    border-radius: var(--radius-lg);
  }

  .trustee-card__role {
    margin: 0 0 var(--space-1);
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .trustee-card__name {
    margin: 0 0 var(--space-3);
    font-size: var(--text-xl);
  }

  .trustee-card p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
  }

  .support-card h3 {
    margin-top: 0;
  }

  .support-card dl {
    margin: var(--space-4) 0 0;
  }

  .support-card dt {
    font-weight: 600;
    font-size: var(--text-sm);
    margin-top: var(--space-3);
  }

  .support-card dt:first-child {
    margin-top: 0;
  }

  .support-card dd {
    margin: var(--space-1) 0 0;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
  }

  .contact-list {
    list-style: none;
    margin: var(--space-5) 0 0;
    padding: 0;
  }

  .contact-list li + li {
    margin-top: var(--space-4);
  }

  .contact-list strong {
    display: block;
    margin-bottom: var(--space-1);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .site-footer {
    padding-block: var(--space-7);
    background: var(--color-navy);
    border-top: none;
    color: #9ca3af;
  }

  .site-footer a {
    color: var(--color-gold-light);
  }

  .site-footer a:hover {
    color: #fff;
  }

  .site-footer__grid {
    display: grid;
    gap: var(--space-6);
  }

  @media (min-width: 48rem) {
    .site-footer__grid {
      grid-template-columns: 2fr 1fr;
    }
  }

  .site-footer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3) var(--space-4);
  }

  .site-footer__nav a {
    text-decoration: none;
    color: var(--color-gold-light);
  }

  .site-footer__nav a:hover {
    color: #fff;
  }

  .site-footer__meta {
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: var(--text-sm);
    color: #9ca3af;
    text-align: center;
  }

  .lines-motif {
    width: 3.5rem;
    height: 3px;
    margin-bottom: var(--space-5);
    background: var(--color-gold);
    border-radius: 2px;
  }

  .page-hero {
    position: relative;
    min-height: min(70vh, 32rem);
    display: flex;
    align-items: center;
    padding-block: var(--space-8);
    color: #fff;
    overflow: hidden;
  }

  .page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(28, 28, 46, 0.93) 0%,
        rgba(28, 28, 46, 0.73) 40%,
        rgba(28, 28, 46, 0.33) 70%,
        transparent 100%
      ),
      linear-gradient(to top, rgba(28, 28, 46, 0.8) 0%, transparent 50%);
  }

  .page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 40rem;
  }

  .page-hero__content h1 {
    color: inherit;
    margin: 0 0 var(--space-4);
  }

  .page-hero__tagline {
    font-size: var(--text-xl);
    margin: 0 0 var(--space-5);
    opacity: 0.95;
    font-family: var(--font-heading);
    font-weight: 600;
  }

  .page-hero__tagline em {
    font-style: italic;
    color: #fff;
  }

  .page-hero--short {
    min-height: min(50vh, 22rem);
  }

  .page-hero--quote {
    min-height: 100vh;
    text-align: center;
  }

  .page-hero--quote .page-hero__content {
    max-width: none;
    margin-inline: auto;
  }

  .page-hero--quote .page-hero__overlay {
    background: linear-gradient(
      135deg,
      rgba(28, 28, 46, 0.88) 0%,
      rgba(45, 45, 68, 0.75) 50%,
      rgba(28, 28, 46, 0.9) 100%
    );
  }

  .page-title {
    padding-block: var(--space-7) var(--space-4);
    text-align: center;
  }

  .page-title h1 {
    margin: 0;
  }

  .band {
    padding: var(--space-6);
    background: var(--color-accent);
    color: #fff;
    text-align: center;
  }

  .band p {
    margin: 0 auto;
    max-width: 50ch;
    font-size: var(--text-xl);
    font-weight: 500;
    color: inherit;
  }

  .band--primary {
    background: var(--color-navy);
    border-top: 2px solid rgba(201, 144, 62, 0.35);
  }

  .media-block {
    padding-block: var(--space-7);
  }

  .media-block__grid {
    display: grid;
    gap: var(--space-6);
    align-items: center;
  }

  @media (min-width: 48rem) {
    .media-block__grid {
      grid-template-columns: 1fr 1fr;
    }

    .media-block__grid--reverse .media-block__media {
      order: 2;
    }
  }

  .media-block__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }

  .media-block__content h2 {
    color: var(--color-title);
    margin-top: 0;
  }

  .media-block__content ul {
    padding-left: var(--space-5);
  }

  .media-block--surface {
    background: var(--color-surface-alt);
  }

  .media-block--trustee,
  .media-block--trustee-accent {
    background: var(--color-surface-alt);
    color: var(--color-text);
  }

  .media-block--trustee .media-block__grid,
  .media-block--trustee-accent .media-block__grid {
    padding: var(--space-6);
    background: var(--color-surface);
    border-top: 3px solid var(--color-gold);
    box-shadow: var(--shadow-sm);
  }

  .media-block--trustee .media-block__content h2,
  .media-block--trustee-accent .media-block__content h2 {
    color: var(--color-title);
    margin-top: 0;
  }

  .media-block--trustee .media-block__content h2 em,
  .media-block--trustee-accent .media-block__content h2 em {
    display: block;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9a6b28;
    margin-bottom: var(--space-2);
  }

  .media-block--trustee .trustee-name,
  .media-block--trustee-accent .trustee-name {
    font-size: var(--text-xl);
    font-style: normal;
    font-weight: 700;
    color: var(--color-title);
  }

  .media-block--trustee .media-block__content p,
  .media-block--trustee-accent .media-block__content p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
  }

  .media-block--trustee .media-block__media img,
  .media-block--trustee-accent .media-block__media img {
    border-radius: 2px;
    max-width: 20rem;
  }

  .journey-promo {
    padding-block: var(--space-8);
    border-top: 2px solid rgba(201, 144, 62, 0.35);
  }

  .journey-promo__grid {
    display: grid;
    gap: var(--space-6);
    align-items: center;
  }

  @media (min-width: 48rem) {
    .journey-promo__grid {
      grid-template-columns: 1fr 1.1fr;
    }
  }

  .journey-promo__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .journey-promo h2 {
    margin: 0 0 var(--space-4);
    color: #fff;
  }

  .journey-promo__accent {
    color: var(--color-gold-light);
  }

  .journey-promo__content p {
    color: rgba(255, 255, 255, 0.85);
    max-width: none;
  }

  .journey-promo__lead {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--text-sm);
  }

  .journey-promo__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    list-style: none;
    margin: var(--space-5) 0;
    padding: var(--space-5) 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  @media (min-width: 40rem) {
    .journey-promo__stats {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .journey-promo__stats strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-gold-light);
    line-height: 1.1;
  }

  .journey-promo__stats span {
    display: block;
    margin-top: var(--space-1);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
  }

  .mission-section {
    padding-block: var(--space-6) var(--space-3);
    border-top: none;
  }

  .mission-section.section--cream {
    background: var(--color-cream);
  }

  .mission-section .container.text-center {
    margin-inline: auto;
    max-width: 44rem;
    text-align: center;
  }

  .mission-section .section-heading {
    margin: 0;
    text-align: center;
    color: var(--color-title);
  }

  .mission-pillar {
    padding: var(--space-6);
    background: var(--color-surface);
    border-top: 3px solid var(--color-gold);
    box-shadow: var(--shadow-sm);
    height: 100%;
    text-align: center;
  }

  .mission-pillar h2 {
    margin: 0 0 var(--space-4);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-title);
  }

  .mission-pillar h2 em {
    font-style: normal;
  }

  .mission-pillar p {
    margin: 0;
    max-width: none;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    line-height: 1.65;
  }

  .mission-pillar__step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto var(--space-4);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-gold-light);
    background: var(--color-navy);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    position: relative;
    z-index: 1;
  }

  .section--stats {
    padding-block: var(--space-6);
  }

  .section--cream {
    background: var(--color-cream);
    border-top: none;
  }

  .about-stats {
    gap: 0;
  }

  .section--tight {
    padding-bottom: var(--space-4);
  }

  .circle-row {
    display: grid;
    gap: var(--space-5);
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    padding-block: var(--space-6);
  }

  .circle-row img {
    width: 100%;
    max-width: 14rem;
    margin-inline: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
  }

  .gallery-grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .gallery-grid__trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
  }

  .gallery-grid__trigger::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(28, 28, 46, 0.45),
      transparent 55%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }

  .gallery-grid__trigger:hover::after,
  .gallery-grid__trigger:focus-visible::after {
    opacity: 1;
  }

  .gallery-grid__trigger:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 2px;
  }

  .gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.35s ease;
    display: block;
  }

  .gallery-grid__trigger:hover img,
  .gallery-grid__trigger:focus-visible img {
    transform: scale(1.06);
  }

  /* Gallery lightbox carousel */
  .gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    padding-bottom: max(var(--space-6), env(safe-area-inset-bottom));
    background: rgba(10, 10, 18, 0.92);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
  }

  .gallery-lightbox__close {
    position: absolute;
    top: max(var(--space-3), env(safe-area-inset-top));
    right: max(var(--space-3), env(safe-area-inset-right));
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .gallery-lightbox__close:hover,
  .gallery-lightbox__close:focus-visible {
    background: rgba(255, 255, 255, 0.22);
  }

  .gallery-lightbox__close:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 2px;
  }

  .gallery-lightbox__close svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease;
  }

  .gallery-lightbox__nav:hover,
  .gallery-lightbox__nav:focus-visible {
    background: rgba(255, 255, 255, 0.22);
  }

  .gallery-lightbox__nav:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 2px;
  }

  .gallery-lightbox__nav svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .gallery-lightbox__nav--prev {
    left: max(var(--space-3), env(safe-area-inset-left));
  }

  .gallery-lightbox__nav--next {
    right: max(var(--space-3), env(safe-area-inset-right));
  }

  @media (min-width: 40rem) {
    .gallery-lightbox__nav {
      display: flex;
    }
  }

  .gallery-lightbox__viewport {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: min(56rem, 100%);
    min-height: 0;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
  }

  .gallery-lightbox__viewport.is-zoomed {
    overflow: auto;
    align-items: flex-start;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y pinch-zoom;
  }

  @media (min-width: 40rem) {
    .gallery-lightbox__viewport.is-zoomed {
      align-items: center;
      justify-content: center;
    }
  }

  .gallery-lightbox__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .gallery-lightbox__slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2);
    min-height: 0;
  }

  .gallery-lightbox__zoom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: min(70vh, calc(100dvh - 12rem));
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    border-radius: var(--radius-md);
  }

  .gallery-lightbox__zoom-btn:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 4px;
  }

  .gallery-lightbox__slide.is-zoomed .gallery-lightbox__zoom-btn {
    cursor: zoom-out;
  }

  .gallery-lightbox__slide img {
    max-width: 100%;
    max-height: min(70vh, calc(100dvh - 12rem));
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: scale(0.78);
    opacity: 0.45;
    transition:
      transform 0.55s cubic-bezier(0.34, 1.25, 0.64, 1),
      opacity 0.45s ease,
      box-shadow 0.35s ease;
    transform-origin: center center;
    will-change: transform;
  }

  .gallery-lightbox__slide.is-active img {
    transform: scale(1);
    opacity: 1;
  }

  .gallery-lightbox__slide.is-active.is-entering img {
    animation: gallery-image-zoom-in 0.6s cubic-bezier(0.34, 1.25, 0.64, 1) forwards;
  }

  .gallery-lightbox__slide.is-active.is-zoomed img {
    transform: scale(1.85);
    cursor: zoom-out;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  }

  .gallery-lightbox.is-autoplay
    .gallery-lightbox__slide.is-active:not(.is-zoomed)
    img {
    animation: gallery-ken-burns var(--gallery-autoplay-ms, 5s) ease-out forwards;
  }

  .gallery-lightbox.is-autoplay
    .gallery-lightbox__slide.is-active.is-entering
    img {
    animation: gallery-image-zoom-in 0.6s cubic-bezier(0.34, 1.25, 0.64, 1) forwards,
      gallery-ken-burns var(--gallery-autoplay-ms, 5s) ease-out 0.6s forwards;
  }

  @keyframes gallery-image-zoom-in {
    from {
      transform: scale(0.78);
      opacity: 0.45;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes gallery-ken-burns {
    from {
      transform: scale(1);
    }

    to {
      transform: scale(1.1);
    }
  }

  .gallery-lightbox__footer {
    flex-shrink: 0;
    width: 100%;
    max-width: 42rem;
    margin-top: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .gallery-lightbox__timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    width: 100%;
    padding: var(--space-3) var(--space-4);
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
  }

  .gallery-lightbox__play-toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .gallery-lightbox__play-toggle:hover:not(:disabled),
  .gallery-lightbox__play-toggle:focus-visible:not(:disabled) {
    background: rgba(255, 255, 255, 0.22);
  }

  .gallery-lightbox__play-toggle:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 2px;
  }

  .gallery-lightbox__play-toggle:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .gallery-lightbox__play-toggle svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .gallery-lightbox__timer-label {
    display: flex;
    flex: 1;
    align-items: center;
    gap: var(--space-3);
    min-width: 0;
    cursor: pointer;
  }

  .gallery-lightbox__timer-label-text {
    flex-shrink: 0;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
  }

  .gallery-lightbox__timer-slider {
    flex: 1;
    min-width: 5rem;
    height: 0.35rem;
    accent-color: var(--color-gold);
    cursor: pointer;
  }

  .gallery-lightbox__timer-slider:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .gallery-lightbox__timer-value {
    flex-shrink: 0;
    min-width: 2.25rem;
    font-size: var(--text-sm);
    font-weight: 600;
    text-align: right;
    color: var(--color-gold-light);
  }

  .gallery-lightbox__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
  }

  @media (min-width: 40rem) {
    .gallery-lightbox__controls--mobile {
      display: none;
    }
  }

  .gallery-lightbox__controls--mobile .gallery-lightbox__nav {
    position: static;
    display: flex;
    transform: none;
    flex-shrink: 0;
  }

  .gallery-lightbox__meta {
    flex: 1;
    min-width: 0;
    padding: var(--space-3) var(--space-4);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
  }

  .gallery-lightbox__caption {
    margin: 0;
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.4;
  }

  .gallery-lightbox__counter {
    margin: var(--space-1) 0 0;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.75);
  }

  .gallery-lightbox__meta--desktop {
    display: none;
  }

  @media (min-width: 40rem) {
    .gallery-lightbox__meta--desktop {
      display: block;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .gallery-grid img,
    .gallery-grid__trigger::after,
    .gallery-lightbox,
    .gallery-lightbox__track,
    .gallery-lightbox__slide img {
      transition: none;
    }

    .gallery-lightbox__slide.is-active.is-entering img,
    .gallery-lightbox.is-autoplay .gallery-lightbox__slide.is-active img {
      animation: none;
    }

    .gallery-lightbox__slide.is-active img {
      transform: scale(1);
      opacity: 1;
    }

    .gallery-lightbox__slide.is-active.is-zoomed img {
      transform: scale(1.5);
    }

    .gallery-grid__trigger:hover img,
    .gallery-grid__trigger:focus-visible img {
      transform: none;
    }
  }

  .testimonial-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
  }

  .testimonial {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-surface);
    border: var(--section-rule);
    border-radius: var(--radius-lg);
  }

  @media (min-width: 40rem) {
    .testimonial {
      grid-template-columns: 7rem 1fr;
      align-items: start;
    }
  }

  .testimonial__photo {
    width: 7rem;
    height: 7rem;
    object-fit: cover;
    border-radius: 50%;
    margin-inline: auto;
  }

  .testimonial__body {
    font-size: var(--text-base);
  }

  .prose {
    max-width: var(--content-max);
  }

  .prose p {
    margin-bottom: var(--space-4);
  }

  .prose h2 {
    margin-top: var(--space-6);
  }

  .prose--wide {
    max-width: none;
  }

  /* Centered intro copy: text-center alone does not center max-width blocks */
  .prose.prose--wide.text-center {
    width: 100%;
    text-align: center;
  }

  .prose.prose--wide.text-center > :first-child {
    margin-top: 0;
  }

  .prose.prose--wide.text-center > :where(h1, h2, h3, h4, p) {
    margin-inline: auto;
    text-align: center;
  }

  .prose.prose--wide.text-center > h2 {
    max-width: 40rem;
  }

  .prose.prose--wide.text-center > p {
    max-width: 42rem;
    color: var(--color-text-muted);
  }

  .prose.prose--wide.text-center .donation-methods {
    text-align: start;
    max-width: 52rem;
    margin-inline: auto;
    margin-block: var(--space-6);
  }

  .prose.prose--wide.text-center .donation-qr {
    display: block;
    margin-inline: auto;
  }

  .blog-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
  }

  .blog-card {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-surface);
    border: var(--section-rule);
    border-radius: var(--radius-lg);
  }

  @media (min-width: 40rem) {
    .blog-card {
      grid-template-columns: auto 1fr;
    }
  }

  .blog-card__date {
    text-align: center;
    min-width: 4rem;
  }

  .blog-card__date-month {
    display: block;
    font-size: var(--text-sm);
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
  }

  .blog-card__date-day {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1;
  }

  .blog-card h2 {
    margin: 0 0 var(--space-2);
    font-size: var(--text-xl);
  }

  .blog-card h2 a {
    text-decoration: none;
    color: var(--color-text);
  }

  .blog-card h2 a:hover {
    color: var(--color-primary);
  }

  .donation-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }

  .donation-methods__grid {
    align-items: stretch;
  }

  .donation-method {
    padding: var(--space-5);
    background: var(--color-surface-alt);
    border-radius: var(--radius-lg);
    border: var(--section-rule);
  }

  .donation-method--featured {
    background: var(--color-surface);
    border-color: var(--color-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .donation-method--featured > :where(
      .section-label,
      .donation-method__title,
      .donation-method__desc,
      .donation-method__meta
    ) {
    width: 100%;
    max-width: 32rem;
    margin-inline: auto;
    text-align: center;
  }

  .donation-method--featured .section-label {
    width: fit-content;
    max-width: 100%;
  }

  .donation-method--featured .btn {
    flex-shrink: 0;
  }

  .donation-method__title {
    margin: 0 0 var(--space-2);
    font-size: var(--text-xl);
  }

  .donation-method__desc {
    margin: 0 0 var(--space-4);
    color: var(--color-text-muted);
    font-size: var(--text-base);
  }

  .donation-method__desc:last-child {
    margin-bottom: 0;
  }

  .donation-method__meta {
    margin: var(--space-4) 0 0;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
  }

  .donation-method__meta a {
    word-break: break-all;
  }

  .donation-bank {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: var(--section-rule);
  }

  .donation-bank:first-of-type {
    margin-top: var(--space-3);
    padding-top: 0;
    border-top: none;
  }

  .donation-bank__label {
    margin: 0 0 var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
  }

  .donation-method dl,
  .donation-details dl {
    margin: 0;
  }

  .donation-method dt,
  .donation-details dt {
    font-weight: 600;
    font-size: var(--text-sm);
    margin-top: var(--space-3);
  }

  .donation-method dt:first-child,
  .donation-details dt:first-child {
    margin-top: 0;
  }

  .donation-method dd,
  .donation-details dd {
    margin: var(--space-1) 0 0;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
  }

  .donation-details {
    padding: var(--space-5);
    background: var(--color-surface-alt);
    border-radius: var(--radius-lg);
    border: var(--section-rule);
    margin-block: var(--space-5);
  }

  .donation-qr {
    width: 100%;
    height: auto;
    margin-block: var(--space-2) 0;
    border-radius: var(--radius-md);
  }

  .map-embed {
    margin-top: var(--space-6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--section-rule);
  }

  .map-embed iframe {
    display: block;
    width: 100%;
    min-height: 20rem;
    border: 0;
  }

  .site-footer__cta {
    text-align: center;
    margin-bottom: var(--space-6);
    margin-inline: auto;
    max-width: 40rem;
  }

  .site-footer__cta strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-gold-light);
    margin-bottom: var(--space-3);
  }

  .site-footer__cta p {
    margin: 0;
    max-width: none;
    color: #9ca3af;
    line-height: 1.6;
  }

  .site-footer__meta p {
    margin: 0 auto;
    max-width: none;
    color: #9ca3af;
  }

  .whatsapp-fab {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .whatsapp-fab:hover {
    background: #20ba5a;
    color: #fff;
    transform: scale(1.08);
  }

  .whatsapp-fab svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .faq details {
    padding: var(--space-4);
    border: var(--section-rule);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    background: var(--color-surface);
  }

  .faq summary {
    font-weight: 600;
    cursor: pointer;
  }

  /* Theme-aware contrast: cream/navy sections and footer (always navy) */
  [data-theme="dark"] .section--cream,
  [data-theme="dark"] .mission-section.section--cream {
    background: var(--color-surface-alt);
  }

  [data-theme="dark"] .mission-pillar {
    background: var(--color-surface);
  }

  [data-theme="dark"] .media-block--trustee .media-block__grid,
  [data-theme="dark"] .media-block--trustee-accent .media-block__grid {
    background: var(--color-surface);
  }

  [data-theme="dark"] .pull-quote {
    background: var(--color-surface);
  }

  [data-theme="dark"] .section-label:not(.section-label--light) {
    color: var(--color-gold-light);
  }

  [data-theme="dark"] .media-block--trustee .media-block__content h2 em,
  [data-theme="dark"] .media-block--trustee-accent .media-block__content h2 em {
    color: var(--color-gold-light);
  }
}

/* --- Utilities --- */
@layer utilities {
  .text-muted {
    color: var(--color-text-muted);
  }

  .text-center {
    text-align: center;
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* --- Print --- */
@media print {
  .site-header,
  .theme-toggle,
  .nav-toggle,
  .skip-link,
  .whatsapp-fab,
  .hero__actions {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
  }

  .section {
    break-inside: avoid;
  }
}
