  /* =========================================================================
     PALETTE — Ministry.com Brand System
     Per Ministry.com brand one-sheet
     ========================================================================= */
  :root {
    /* Primary brand */
    --navy:          #02304A;
    --navy-deep:     #011E2F;
    --navy-light:    #0A4A6F;
    --orange:        #F84503;
    --orange-deep:   #C93500;
    --white:         #FFFFFF;

    /* Support colors */
    --sky:           #3AAED8;
    --soft-ice:      #EAF4F8;
    --charcoal:      #1D252C;

    /* Human / warm extension */
    --sand:          #F3E8D7;
    --sage:          #8BA888;
    --clay:          #B85C38;

    /* Semantic aliases */
    --paper:         #FFFFFF;
    --paper-warm:    var(--sand);
    --paper-cool:    var(--soft-ice);
    --paper-deep:    var(--soft-ice);   /* alias, used for image placeholders */
    --ink:           var(--charcoal);
    --soft:          #5D6773;
    --rule:          rgba(2, 48, 74, 0.14);
    --rule-warm:     rgba(184, 92, 56, 0.20);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: "area-normal", "area", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
  .container-narrow { max-width: 820px; margin: 0 auto; padding: 0 48px; }
  .container-wide { max-width: 1360px; margin: 0 auto; padding: 0 48px; }

  /* Utility */
  .display { font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif; font-weight: 400; letter-spacing: -0.015em; }
  .script  { font-family: "area-normal", "area", sans-serif; }

  .eyebrow {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--orange);
  }
  .eyebrow-navy   { color: var(--navy); }
  .eyebrow-clay   { color: var(--clay); }
  .eyebrow-sky    { color: var(--sky); }
  .eyebrow-cream  { color: var(--sand); }
  .eyebrow-white  { color: var(--white); }
  .eyebrow-gold   { color: var(--orange); }   /* legacy alias — kept for markup compat */

  .gold-rule {
    width: 60px; height: 2px;
    background: var(--orange);
    margin: 24px 0;
  }
  .gold-rule.center { margin-left: auto; margin-right: auto; }
  .gold-rule.sky    { background: var(--sky); }
  .gold-rule.clay   { background: var(--clay); }
  .gold-rule.orange { background: var(--orange); }

  .rule-thin { height: 1px; background: var(--rule); margin: 32px 0; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 32px;
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--navy);
    background: var(--navy);
    color: var(--paper);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .btn:hover { background: var(--navy-deep); transform: translateY(-1px); }
  .btn-orange { background: var(--orange); border-color: var(--orange); }
  .btn-orange:hover { background: var(--orange-deep); border-color: var(--orange-deep); }
  .btn-outline { background: transparent; color: var(--navy); }
  .btn-outline:hover { background: var(--navy); color: var(--paper); }
  .btn-outline-light { background: transparent; color: var(--paper); border-color: var(--paper); }
  .btn-outline-light:hover { background: var(--paper); color: var(--navy); }
  .btn .arrow { margin-left: 10px; font-size: 1rem; }

  /* =========================================================================
     TOP NAV
     ========================================================================= */
  .topnav {
    background: var(--paper);
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .topnav .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
  .topnav-logo {
    width: 168px;
    display: block;
  }
  .topnav-logo svg { width: 100%; height: auto; display: block; }
  .topnav-links { display: flex; align-items: center; gap: 36px; }
  .topnav-links a {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
  }
  .topnav-links a:hover { color: var(--orange); }
  .topnav-cta {
    padding: 12px 22px;
    background: var(--orange);
    color: var(--paper) !important;
    font-weight: 600;
  }
  .topnav-cta:hover { background: var(--orange-deep); color: var(--paper) !important; }

  /* =========================================================================
     HERO
     ========================================================================= */
  .hero {
    background: var(--navy);
    color: var(--white);
    padding: 130px 0 140px;
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
  }
  .hero::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: var(--orange);
    z-index: 3;
  }
  .hero-video {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.32;
  }
  .hero-video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg,
      rgba(2, 48, 74, 0.75) 0%,
      rgba(2, 48, 74, 0.85) 60%,
      rgba(2, 48, 74, 0.95) 100%);
    z-index: 1;
  }
  .hero > .container {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .hero-inner { max-width: 900px; }
  .hero-eyebrow {
    color: var(--orange);
    margin-bottom: 32px;
  }
  .hero h1 {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: clamp(3rem, 6.5vw, 5.8rem);
    line-height: 1.0;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
  }
  .hero h1 .line { display: block; }
  .hero h1 em { font-style: italic; color: var(--sky); font-weight: 400; }
  .hero h1 .orange { color: var(--orange); }
  .hero .lede {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: clamp(1.3rem, 1.9vw, 1.6rem);
    line-height: 1.5;
    font-style: italic;
    color: var(--paper);
    opacity: 0.92;
    font-weight: 400;
    max-width: 720px;
    margin-bottom: 48px;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
  .hero-tags {
    display: flex; gap: 32px; flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    max-width: 780px;
  }
  .hero-tag {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--paper);
    opacity: 0.75;
    font-weight: 500;
  }
  .hero-tag::before {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--orange);
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 50%;
  }

  /* =========================================================================
     STAT SECTIONS (Moment, Movement)
     ========================================================================= */
  section {
    padding: 120px 0;
    position: relative;
  }
  section.tight { padding: 96px 0; }
  section.deep  { padding: 160px 0; }

  section.paper-warm { background: var(--paper-warm); }
  section.paper-cool { background: var(--paper-cool); }
  section.paper-deep { background: var(--paper-deep); }
  section.navy       { background: var(--navy); color: var(--paper); }
  section.navy-deep  { background: var(--navy-deep); color: var(--paper); }

  .section-eyebrow {
    display: block;
    margin-bottom: 24px;
  }

  .section-h {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.015em;
    margin-bottom: 32px;
  }
  .section-h em { font-style: italic; color: var(--navy); }
  .section-h .orange { color: var(--orange); font-style: normal; }
  section.navy .section-h em, section.navy-deep .section-h em { color: var(--sky); }
  section.navy .section-h .orange, section.navy-deep .section-h .orange { color: var(--orange); }

  .section-lede {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: clamp(1.15rem, 1.5vw, 1.35rem);
    line-height: 1.55;
    font-style: italic;
    color: var(--charcoal);
    max-width: 780px;
    margin-bottom: 64px;
  }
  section.navy .section-lede, section.navy-deep .section-lede {
    color: var(--paper); opacity: 0.88;
  }

  /* Full-width image band inside a section */
  .image-band {
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
    margin: 0 0 72px;
    position: relative;
  }
  .image-band picture, .image-band img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .image-band::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 4px;
    background: var(--orange);
  }

  /* Stats grid */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
  }
  .stat-card {
    padding: 48px 36px;
    background: var(--paper);
    border-top: 3px solid var(--orange);
  }
  section.navy .stat-card, section.navy-deep .stat-card {
    background: rgba(255,255,255,0.05);
    border-top-color: var(--sky);
  }
  .stat-number {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: clamp(3.6rem, 5.5vw, 4.6rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  section.navy .stat-number, section.navy-deep .stat-number {
    color: var(--sky);
  }
  .stat-label {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.98rem;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 14px;
  }
  section.navy .stat-label, section.navy-deep .stat-label {
    color: var(--paper); opacity: 0.9;
  }
  .stat-source {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--soft);
    font-weight: 500;
  }
  section.navy .stat-source, section.navy-deep .stat-source {
    color: var(--paper); opacity: 0.55;
  }

  .stats-closer {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--charcoal);
    max-width: 780px;
    padding-top: 40px;
    border-top: 1px solid var(--rule);
  }
  section.navy .stats-closer, section.navy-deep .stats-closer {
    color: var(--paper); opacity: 0.9;
    border-top-color: rgba(255,255,255,0.15);
  }
  .stats-closer strong { color: var(--orange); font-weight: 500; font-style: normal; }

  /* =========================================================================
     WHY WE EXIST — split layout
     ========================================================================= */
  .split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 96px;
    align-items: start;
  }
  .split-grid.reverse { grid-template-columns: 1.2fr 1fr; }
  .split-body p {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--charcoal);
    margin-bottom: 20px;
  }
  .split-body p:last-child { margin-bottom: 0; }
  .split-body p em {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-style: italic;
    color: var(--clay);
    font-weight: 500;
    font-size: 1.15em;
  }
  .split-body p strong { color: var(--navy); font-weight: 600; }

  /* Mission/vision cards */
  .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
  }
  .mv-card {
    background: var(--paper);
    padding: 44px 40px;
    border-left: 3px solid var(--orange);
  }
  .mv-card h3 {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.005em;
  }
  .mv-card h3 em { font-style: italic; color: var(--clay); }
  .mv-card p {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
  }

  /* =========================================================================
     FOUR INITIATIVES
     ========================================================================= */
  .initiatives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  .initiative {
    background: var(--paper);
    padding: 48px 44px;
    position: relative;
    border-top: 3px solid var(--orange);
  }
  section.navy .initiative, section.navy-deep .initiative {
    background: rgba(255,255,255,0.05);
    border-top-color: var(--sky);
  }
  .initiative-num {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 2.4rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 400;
  }
  section.navy .initiative-num, section.navy-deep .initiative-num { color: var(--sky); }
  .initiative-label {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--soft);
    font-weight: 600;
    margin-bottom: 24px;
  }
  section.navy .initiative-label, section.navy-deep .initiative-label {
    color: var(--paper); opacity: 0.6;
  }
  .initiative h3 {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 1.85rem;
    line-height: 1.15;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.005em;
  }
  .initiative h3 em { font-style: italic; color: var(--clay); }
  section.navy .initiative h3, section.navy-deep .initiative h3 { color: var(--paper); }
  section.navy .initiative h3 em, section.navy-deep .initiative h3 em { color: var(--sky); }
  .initiative p {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--charcoal);
  }
  section.navy .initiative p, section.navy-deep .initiative p {
    color: var(--paper); opacity: 0.85;
  }

  /* =========================================================================
     PULLQUOTE
     ========================================================================= */
  .pullquote-block {
    background: var(--paper-warm);
    padding: 120px 0;
    border-top: 1px solid var(--rule-warm);
    border-bottom: 1px solid var(--rule-warm);
  }
  .pullquote-block .container-narrow {
    text-align: center;
  }
  .pullquote {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.3;
    font-style: italic;
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 32px;
  }
  .pullquote-attr {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 600;
  }
  .pullquote-attr::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--sage);
    margin: 0 auto 20px;
  }
  .pullquote em {
    font-style: italic;
    color: var(--sage);
  }

  /* =========================================================================
     E.X.C.E.L. FRAMEWORK
     ========================================================================= */
  .excel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 64px;
  }
  .excel-item {
    background: rgba(255,255,255,0.04);
    padding: 40px 28px;
    border-top: 3px solid var(--sky);
    position: relative;
  }
  .excel-letter {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--sky);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .excel-letter em { font-style: italic; }
  .excel-item h4 {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--paper);
    margin-bottom: 16px;
  }
  .excel-item h4 em { font-style: italic; color: var(--sky); }
  .excel-item p {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--paper);
    opacity: 0.85;
  }

  .excel-summary {
    text-align: center;
    max-width: 780px;
    margin: 80px auto 0;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.55;
    font-style: italic;
    color: var(--paper);
    opacity: 0.9;
  }
  .excel-summary strong { color: var(--sky); font-weight: 500; font-style: normal; }

  /* Framework section — subtle image backdrop */
  section.framework-bg {
    position: relative;
    isolation: isolate;
  }
  section.framework-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('img/conviction-seen-1920w.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.14;
    z-index: -1;
  }
  section.framework-bg::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(1, 30, 47, 0.65) 0%, rgba(1, 30, 47, 0.85) 100%);
    z-index: -1;
  }

  /* =========================================================================
     COMPREHENSIVE SUPPORT
     ========================================================================= */
  .support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
  }
  .support-card {
    background: var(--paper);
    padding: 44px 40px;
    border: 1px solid var(--rule);
    position: relative;
  }
  .support-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--orange);
  }
  .support-card h4 {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: -0.005em;
  }
  .support-card h4 em { font-style: italic; color: var(--clay); }
  .support-card p {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--charcoal);
  }

  /* =========================================================================
     SCHOOL ACCELERATOR
     ========================================================================= */
  .featured-block {
    background: var(--white);
    padding: 60px 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    margin-top: 48px;
    border-top: 4px solid var(--orange);
    box-shadow: 0 4px 24px rgba(2, 48, 74, 0.06);
  }
  .featured-tag {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 20px;
  }
  .featured-block h3 {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
  .featured-block h3 em { font-style: italic; color: var(--clay); }
  .featured-block .lede {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--charcoal);
    margin-bottom: 32px;
  }
  .featured-block p {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 32px;
  }
  .featured-features {
    list-style: none;
  }
  .featured-features li {
    padding: 14px 0;
    border-top: 1px solid var(--rule);
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .featured-features li:last-child { border-bottom: 1px solid var(--rule); }
  .featured-features li::before {
    content: "→";
    color: var(--orange);
    font-weight: 700;
  }

  /* =========================================================================
     ADVANTAGE (numbered list)
     ========================================================================= */
  .advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    margin-top: 48px;
  }
  .advantage-item {
    padding-top: 28px;
    border-top: 2px solid var(--orange);
  }
  section.navy .advantage-item, section.navy-deep .advantage-item {
    border-top-color: var(--sky);
  }
  .advantage-num {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 2rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 400;
    font-style: italic;
  }
  section.navy .advantage-num, section.navy-deep .advantage-num { color: var(--sky); }
  .advantage-item h4 {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: -0.005em;
  }
  section.navy .advantage-item h4, section.navy-deep .advantage-item h4 { color: var(--paper); }
  .advantage-item p {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
  }
  section.navy .advantage-item p, section.navy-deep .advantage-item p {
    color: var(--paper); opacity: 0.85;
  }

  /* =========================================================================
     TESTIMONIES
     ========================================================================= */
  .testimony-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 56px;
  }
  .testimony {
    background: var(--paper);
    padding: 48px 44px;
    border-top: 3px solid var(--clay);
    position: relative;
  }
  .testimony::before {
    content: "\201C";
    position: absolute;
    top: 20px; left: 32px;
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--clay);
    opacity: 0.25;
    font-weight: 400;
  }
  .testimony blockquote {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--navy);
    margin: 24px 0 32px;
    padding-left: 24px;
    position: relative;
    z-index: 1;
  }
  .testimony cite {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
    font-style: normal;
    font-weight: 600;
    padding-left: 24px;
    display: block;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
  }

  /* =========================================================================
     LEADERSHIP — AFA-style numbered info-cards
     ========================================================================= */

  /* Section mark: § 01 · rule · label (matches the AFA leadership treatment) */
  .section-mark {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px;
    max-width: 720px;
  }
  .section-num {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--orange);
    font-weight: 700;
  }
  .section-rule {
    flex: 1;
    height: 1px;
    background: var(--rule);
    max-width: 200px;
  }
  .section-label {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--soft);
    font-weight: 500;
  }

  /* Info-card grid */
  .info-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
  }
  .info-card {
    padding: 48px 40px;
    background: var(--white);
    border-top: 3px solid var(--orange);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .info-card-num {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--soft);
    font-weight: 700;
    margin-bottom: 4px;
  }
  .info-card-name {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-weight: 400;
    font-style: italic;
    font-size: 2rem;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: -0.005em;
  }
  .info-card-role {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--clay);
    margin-bottom: 12px;
  }
  .info-card-body {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--charcoal);
  }

  /* =========================================================================
     JOIN / CTA
     ========================================================================= */
  .join-section {
    background: var(--navy);
    color: var(--white);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .join-video {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.22;
  }
  .join-video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(2, 48, 74, 0.82) 0%, rgba(2, 48, 74, 0.94) 100%);
    z-index: -1;
  }
  .join-section::before {
    content: "";
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 200px; height: 4px;
    background: var(--orange);
    z-index: 1;
  }
  .join-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 96px;
    align-items: start;
  }
  .join-left h2 {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.05;
    font-weight: 400;
    color: var(--paper);
    margin-bottom: 32px;
    letter-spacing: -0.015em;
  }
  .join-left h2 em { font-style: italic; color: var(--sky); }
  .join-left .lede {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.55;
    color: var(--paper);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 620px;
  }
  .join-list {
    list-style: none;
    margin-bottom: 48px;
  }
  .join-list li {
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 1rem;
    color: var(--paper);
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .join-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .join-list li::before {
    content: "→";
    color: var(--orange);
    font-weight: 700;
  }
  .join-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  .join-right {
    background: rgba(255,255,255,0.05);
    padding: 48px 44px;
    border-top: 3px solid var(--orange);
  }
  .join-right h3 {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--paper);
    margin-bottom: 20px;
  }
  .join-right h3 em { font-style: italic; color: var(--sky); }
  .join-right p {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.98rem;
    color: var(--paper);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .contact-list {
    list-style: none;
  }
  .contact-list li {
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.92rem;
    color: var(--paper);
  }
  .contact-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .contact-list li strong {
    display: block;
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .contact-list a { color: var(--paper); text-decoration: none; opacity: 0.9; }
  .contact-list a:hover { color: var(--orange); opacity: 1; }

  /* =========================================================================
     FOOTER
     ========================================================================= */
  .footer {
    background: var(--navy-deep);
    color: var(--paper);
    padding: 80px 0 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-logo { width: 168px; margin-bottom: 24px; }
  .footer-logo svg { width: 100%; height: auto; }
  .footer-brand-note {
    font-family: "ivypresto-display", "ivypresto-headline", "ivypresto-text", Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--paper);
    opacity: 0.85;
    max-width: 340px;
    margin-bottom: 24px;
  }
  .footer-family {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 600;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .footer-col h5 {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.92rem;
    color: var(--paper);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s, color 0.2s;
  }
  .footer-col a:hover { color: var(--orange); opacity: 1; }

  .footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-copyright {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.78rem;
    color: var(--paper);
    opacity: 0.6;
  }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a {
    font-family: "area-normal", "area", -apple-system, sans-serif;
    font-size: 0.78rem;
    color: var(--paper);
    opacity: 0.6;
    text-decoration: none;
  }
  .footer-legal a:hover { color: var(--orange); opacity: 1; }

  /* =========================================================================
     RESPONSIVE
     ========================================================================= */
  @media (max-width: 1000px) {
    .container, .container-narrow, .container-wide { padding: 0 32px; }
    section { padding: 80px 0; }
    section.deep { padding: 100px 0; }

    .topnav .container { flex-wrap: wrap; }
    .topnav-links { gap: 20px; }
    .topnav-links a { font-size: 0.72rem; }

    .hero { padding: 80px 0 96px; }
    .stats-grid { grid-template-columns: 1fr; }
    .split-grid, .split-grid.reverse { grid-template-columns: 1fr; gap: 40px; }
    .mv-grid { grid-template-columns: 1fr; }
    .initiatives-grid { grid-template-columns: 1fr; gap: 24px; }
    .excel-grid { grid-template-columns: 1fr; gap: 20px; }
    .support-grid { grid-template-columns: 1fr; }
    .featured-block { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
    .advantage-grid { grid-template-columns: 1fr; }
    .testimony-grid { grid-template-columns: 1fr; }
    .info-card-grid { grid-template-columns: 1fr; gap: 24px; } .section-mark { max-width: 100%; }
    .join-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .pullquote-block { padding: 80px 0; }
  }

  @media (max-width: 620px) {
    .container, .container-narrow, .container-wide { padding: 0 24px; }
    .topnav-links { display: none; }
    .topnav-cta { display: inline-flex; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
  }
/* ===== SUBPAGE ADDITIONS ===== */
.page-hero { background: var(--navy); color: var(--white); padding: 100px 0 84px; position: relative; }
.page-hero::before { content:""; position:absolute; top:0; left:0; right:0; height:5px; background: var(--orange); }
.page-hero h1 { font-family: "ivypresto-display","ivypresto-headline",Georgia,serif; font-weight:400; font-size: clamp(2.6rem,5.4vw,4.4rem); line-height:1.04; letter-spacing:-0.015em; color: var(--white); margin-bottom: 24px; max-width: 900px; }
.page-hero h1 em { font-style: italic; color: var(--sky); }
.page-hero .lede { font-family: "ivypresto-display",Georgia,serif; font-style: italic; font-size: clamp(1.15rem,1.6vw,1.4rem); line-height:1.55; opacity:0.92; max-width: 760px; }
.breadcrumb { font-family:"area-normal","area",sans-serif; font-size:0.66rem; letter-spacing:0.26em; text-transform:uppercase; font-weight:600; color: var(--sky); margin-bottom: 26px; }
.breadcrumb a { color: var(--orange); text-decoration: none; }

.news-item { display:grid; grid-template-columns: 170px 1fr; gap: 40px; padding: 40px 0; border-top: 1px solid var(--rule); align-items:start; }
.news-meta .outlet { font-family:"area-normal","area",sans-serif; font-weight:700; font-size:0.95rem; color: var(--navy); line-height:1.3; }
.news-meta .kind { font-family:"area-normal","area",sans-serif; font-size:0.62rem; letter-spacing:0.22em; text-transform:uppercase; color: var(--orange); font-weight:700; margin-top:8px; }
.news-meta .date { font-family:"ivypresto-text","ivypresto-display",Georgia,serif; font-style:italic; font-size:0.9rem; color: var(--soft); margin-top:6px; }
.news-body h3 { font-family:"ivypresto-display",Georgia,serif; font-weight:400; font-size:1.55rem; line-height:1.2; color: var(--navy); margin-bottom:12px; letter-spacing:-0.005em; }
.news-body p { font-family:"area-normal","area",sans-serif; font-size:0.98rem; line-height:1.7; color: var(--charcoal); margin-bottom:14px; }
.news-body a.more { font-family:"area-normal","area",sans-serif; font-size:0.78rem; letter-spacing:0.18em; text-transform:uppercase; font-weight:700; color: var(--orange); text-decoration:none; }
.news-body a.more:hover { color: var(--orange-deep); }
.news-featured { background: var(--soft-ice); border-left: 4px solid var(--orange); padding: 44px 44px; margin-bottom: 24px; }

.tier-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
.tier { background: var(--white); border-top: 3px solid var(--orange); padding: 44px 38px; box-shadow: 0 4px 24px rgba(2,48,74,0.05); }
.tier .t-num { font-family:"ivypresto-display",Georgia,serif; font-size:2.2rem; color: var(--orange); line-height:1; margin-bottom:10px; }
.tier h3 { font-family:"ivypresto-display",Georgia,serif; font-weight:400; font-size:1.6rem; color: var(--navy); margin-bottom:20px; }
.tier ul { list-style:none; }
.tier li { font-family:"area-normal","area",sans-serif; font-size:0.94rem; line-height:1.55; color: var(--charcoal); padding: 9px 0 9px 24px; border-top:1px solid var(--rule); position:relative; }
.tier li::before { content:"→"; position:absolute; left:0; top:9px; color: var(--orange); font-weight:700; }

.give-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:32px; margin-top: 40px; }
.give { background: rgba(255,255,255,0.05); border-top: 3px solid var(--sky); padding: 40px 36px; text-align:center; }
.give .amt { font-family:"ivypresto-display",Georgia,serif; font-size: 2.6rem; color: var(--sky); line-height:1; margin-bottom:14px; }
.give p { font-family:"area-normal","area",sans-serif; font-size:0.98rem; color: var(--white); opacity:0.9; line-height:1.6; }

#networkMap { height: 560px; border: 1px solid var(--rule); }
.map-legend { display:flex; gap: 28px; flex-wrap:wrap; margin: 20px 0 8px; font-family:"area-normal","area",sans-serif; font-size:0.8rem; color: var(--charcoal); }
.map-legend .dot { display:inline-block; width:12px; height:12px; border-radius:50%; margin-right:8px; vertical-align:middle; }
.net-list { display:grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 40px; }
.net-card { background: var(--white); border:1px solid var(--rule); border-left:3px solid var(--orange); padding: 28px 30px; }
.net-card.pending { border-left-color: var(--sky); }
.net-card .n-status { font-family:"area-normal","area",sans-serif; font-size:0.58rem; letter-spacing:0.24em; text-transform:uppercase; font-weight:700; color: var(--orange); margin-bottom:8px; }
.net-card.pending .n-status { color: var(--sky); }
.net-card h4 { font-family:"ivypresto-display",Georgia,serif; font-weight:400; font-size:1.3rem; color: var(--navy); margin-bottom:6px; }
.net-card p { font-family:"area-normal","area",sans-serif; font-size:0.92rem; color: var(--charcoal); line-height:1.6; }

@media (max-width:1000px){
  .news-item { grid-template-columns:1fr; gap:14px; }
  .tier-grid, .give-grid, .net-list { grid-template-columns:1fr; }
  #networkMap { height: 420px; }
}
