/* Generated from https://aarr-mockup.netlify.app/ on 2026-07-03. */

  :root {
    --navy: #122A38;
    --navy-deep: #0C1D27;
    --gold: #CCA45A;
    --gold-soft: #DBB876;
    --navy-soft: #1F3D4E;
    --terracotta: #8C6B2E;
    --terra-soft: #B08840;
    --paper: #FFFFFF;
    --paper-warm: #FAF5EC;
    --ink: #15242C;
    --body: #54616B;
    --line: #E4E1D8;
    --layout-max: 1340px;
    --layout-pad: 32px;
    --display: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --body-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --mono: 'Montserrat', system-ui, -apple-system, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--display);
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  /* Brand: Montserrat for display/UI (default), Helvetica support face for running body copy */
  p { font-family: var(--body-font); }
  /* Brand seal logo in header */
  .logo-img { height: 160px; width: 160px; display: block; }

  /* ============= UTILITY BAR ============= */
  .util-bar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.72);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid rgba(204, 164, 90,0.12);
  }
  .util-bar .inner {
    max-width: 1680px; margin: 0 auto; padding: 0 32px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  .util-bar .pill {
    display: inline-block; padding: 2px 10px; border: 1px solid var(--gold-soft);
    color: var(--gold-soft); border-radius: 100px; margin-right: 14px;
    letter-spacing: 0.12em;
  }
  .util-bar a { color: var(--gold-soft); text-decoration: none; transition: color 0.15s; }
  .util-bar a:hover { color: var(--gold); }
  .util-bar .right a + a { margin-left: 22px; }
  .util-bar .right a + a::before { content: "·"; color: rgba(219, 184, 118,0.4); margin-right: 22px; }

  /* ============= MAIN HEADER ============= */
  header.site-header {
    background: white;
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 5000;
  }
  .header-inner {
    max-width: 1680px; margin: 0 auto; padding: 18px 32px 18px;
    display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  }

  .logo-lockup { display: flex; align-items: center; gap: 14px; text-decoration: none; }
  .logo-mark { width: 64px; height: 64px; flex: 0 0 64px; }
  .logo-divider { width: 1.5px; height: 44px; background: var(--gold); }
  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-text .aarr { font-weight: 800; font-size: 26px; letter-spacing: -0.015em; color: var(--navy); }
  .logo-text .sub { font-weight: 500; font-size: 11px; color: var(--body); margin-top: 5px; letter-spacing: 0.01em; line-height: 1.3; }

  .header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

  .cta-row { display: flex; gap: 10px; align-items: center; align-self: flex-end; }
  .cta-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    font-weight: 700; font-size: 12.5px;
    letter-spacing: 0.11em; text-transform: uppercase;
    text-decoration: none; border-radius: 100px;
    transition: all 0.15s ease; white-space: nowrap;
  }
  .cta-pill.primary { background: var(--navy); color: white; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
  .cta-pill.primary:hover { background: var(--navy-soft); transform: translateY(-1px); }
  .cta-pill.secondary { background: var(--gold); color: var(--navy); }
  .cta-pill.secondary:hover { background: var(--gold-soft); }
  .cta-pill.tertiary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
  .cta-pill.tertiary:hover { background: var(--navy); color: white; }

  /* Main nav */
  nav.main-nav { display: flex; gap: 22px; align-items: center; position: relative; }
  .nav-item { position: relative; }
  .nav-trigger {
    display: inline-flex; align-items: center;
    font-weight: 600; font-size: 14px;
    color: var(--navy); text-decoration: none;
    letter-spacing: 0.005em; padding: 8px 0;
    position: relative; background: none; border: none;
    cursor: pointer; transition: color 0.15s;
    white-space: nowrap;
  }
  .nav-trigger:hover, .nav-trigger:focus-visible { color: var(--terracotta); outline: none; }
  .nav-trigger::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
    height: 1.5px; background: var(--terracotta);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.18s ease;
  }
  .nav-trigger:hover::after, .nav-trigger:focus-visible::after { transform: scaleX(1); }
  .nav-item.active > .nav-trigger { color: var(--terracotta); }
  .nav-item.active > .nav-trigger::after { transform: scaleX(1); }
  .nav-trigger .caret {
    font-size: 9px; margin-left: 5px; opacity: 0.55;
    display: inline-block; transform: translateY(-1px);
    transition: transform 0.18s ease;
  }
  .nav-item.open > .nav-trigger .caret { transform: translateY(-1px) rotate(180deg); }

  .dropdown {
    position: absolute; top: calc(100% + 2px); left: 0;
    min-width: 240px; background: white;
    border: 1px solid var(--line); border-top: 2px solid var(--gold);
    border-radius: 3px; padding: 8px 0; margin: 0; list-style: none;
    box-shadow: 0 24px 48px rgba(18, 42, 56,0.10);
    opacity: 0; visibility: hidden; transform: translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 60;
  }
  .nav-item.open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown li { margin: 0; }
  .dropdown a {
    display: block; padding: 10px 22px;
    font-weight: 500; font-size: 13.5px;
    color: var(--navy); text-decoration: none;
    transition: background 0.12s ease, color 0.12s ease;
  }
  .dropdown a:hover, .dropdown a:focus-visible {
    background: var(--paper-warm); color: var(--terracotta); outline: none;
  }
  .dropdown a.active {
    color: var(--terracotta);
    border-left: 2px solid var(--gold);
    padding-left: 20px;
  }

  /* Hamburger */
  .hamburger-btn {
    display: none;
    background: none; border: 1px solid var(--line);
    width: 44px; height: 44px; padding: 0;
    cursor: pointer; align-items: center; justify-content: center;
    flex-direction: column; gap: 5px; border-radius: 3px;
    transition: border-color 0.15s;
  }
  .hamburger-btn:hover { border-color: var(--gold); }
  .hamburger-btn .bar {
    display: block; width: 20px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  /* Mobile menu */
  .mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(12, 29, 39, 0.55);
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    z-index: 99;
  }
  .mobile-overlay.open { opacity: 1; visibility: visible; }
  .mobile-menu {
    position: fixed; top: 0; right: 0;
    width: 340px; max-width: 88vw; height: 100vh;
    background: white;
    box-shadow: -8px 0 32px rgba(18, 42, 56,0.18);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 100; overflow-y: auto;
    padding: 22px 22px 40px;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 18px; padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu-header .label {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
  }
  .mobile-close {
    background: none; border: none; cursor: pointer;
    font-size: 22px; line-height: 1;
    color: var(--navy); padding: 8px 10px; border-radius: 3px;
  }
  .mobile-close:hover { background: var(--paper-warm); }
  .mobile-nav { list-style: none; padding: 0; margin: 0; }
  .mobile-nav-item { border-bottom: 1px solid var(--line); }
  .mobile-nav-trigger {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 16px 4px;
    font-weight: 600; font-size: 16px;
    color: var(--navy); background: none; border: none;
    cursor: pointer; text-align: left;
  }
  .mobile-nav-trigger:hover { color: var(--terracotta); }
  .mobile-nav-trigger .caret {
    font-size: 12px; opacity: 0.6;
    transition: transform 0.2s ease;
  }
  .mobile-nav-item.open .mobile-nav-trigger .caret { transform: rotate(180deg); }
  .mobile-nav-item.open .mobile-nav-trigger { color: var(--terracotta); }
  .mobile-nav-children {
    list-style: none; padding: 0 0 8px; margin: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .mobile-nav-item.open .mobile-nav-children { max-height: 480px; }
  .mobile-nav-children a {
    display: block; padding: 11px 16px;
    font-weight: 500; font-size: 14px;
    color: var(--body); text-decoration: none;
    border-radius: 3px;
  }
  .mobile-nav-children a:hover, .mobile-nav-children a:focus-visible {
    color: var(--terracotta); background: var(--paper-warm); outline: none;
  }
  body.menu-open { overflow: hidden; }

  /* Info callout */
  .callout-info {
    background: var(--paper-warm);
    border-left: 3px solid var(--gold);
    padding: 18px 22px; border-radius: 0 3px 3px 0;
    margin-bottom: 32px;
    display: flex; align-items: center; gap: 16px;
    box-shadow: 0 2px 12px rgba(18, 42, 56,0.05);
  }
  .callout-info .icon {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; color: var(--gold);
    text-transform: uppercase; font-weight: 600;
    flex: 0 0 auto; padding: 6px 10px;
    border: 1px solid var(--gold); border-radius: 100px;
  }
  .callout-info p { font-size: 15px; line-height: 1.55; color: var(--ink); margin: 0; }
  .callout-info a {
    color: var(--terracotta); font-weight: 700; text-decoration: none;
    border-bottom: 1.5px solid var(--gold); padding-bottom: 1px;
    transition: color 0.15s, border-color 0.15s;
  }
  .callout-info a:hover { color: var(--terra-soft); border-bottom-color: var(--terra-soft); }
  .callout-info.on-dark {
    background: rgba(204, 164, 90,0.08);
    border-left-color: var(--gold); box-shadow: none;
  }
  .callout-info.on-dark p { color: rgba(255,255,255,0.92); }
  .callout-info.on-dark .icon { color: var(--gold); border-color: rgba(204, 164, 90,0.55); }
  .callout-info.on-dark a { color: var(--gold-soft); border-bottom-color: var(--gold); }
  .callout-info.on-dark a:hover { color: var(--gold); border-bottom-color: var(--gold-soft); }

  /* ============= VIDEO HERO ============= */
  .video-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 520px;
    max-height: 780px;
    overflow: hidden;
    background: var(--navy-deep);
  }
  .video-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  .video-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(12, 29, 39,0.30) 0%, rgba(12, 29, 39,0.55) 100%),
      radial-gradient(circle at 50% 40%, transparent 0%, rgba(12, 29, 39,0.35) 100%);
    pointer-events: none;
  }
  .video-hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 32px 32px 72px;
    max-width: 1340px;
    margin: 0 auto;
  }
  .video-hero-eyebrow {
    font-family: var(--mono);
    font-weight: 500; font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  }
  .video-hero-eyebrow::before,
  .video-hero-eyebrow::after {
    content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.7;
  }
  .video-hero-content h1 {
    color: white;
    font-weight: 700;
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 28px rgba(0,0,0,0.45);
    max-width: 880px;
    margin: 0;
  }
  .video-hero-content h1 em {
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    letter-spacing: -0.015em;
  }
  .video-hero-ctas {
    margin-top: 32px;
    justify-content: center;
  }
  .video-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: video-hero-bounce 2.2s ease-in-out infinite;
  }
  .video-hero-scroll:hover { color: var(--gold); }
  .video-hero-scroll .arrow {
    width: 1px; height: 28px;
    background: linear-gradient(180deg, transparent, var(--gold));
  }
  @keyframes video-hero-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 6px); }
  }
  @media (max-width: 768px) {
    .video-hero { height: 64vh; min-height: 420px; }
    .video-hero-content { padding: 24px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .video-hero-scroll { animation: none; }
  }

  /* ============= HERO ============= */
  .hero {
    background:
      radial-gradient(circle at 85% 35%, rgba(204, 164, 90,0.10), transparent 55%),
      linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: white; overflow: hidden; position: relative;
    border-bottom: 1px solid rgba(204, 164, 90,0.18);
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px; pointer-events: none;
  }
  .hero-inner {
    max-width: 1340px; margin: 0 auto; padding: 110px 32px 130px;
    display: grid; grid-template-columns: 1.25fr 1fr; gap: 80px;
    align-items: center; position: relative;
  }
  .eyebrow {
    font-family: var(--mono); font-weight: 500; font-size: 12px;
    color: var(--gold); letter-spacing: 0.24em; text-transform: uppercase;
    display: flex; align-items: center; gap: 14px; margin-bottom: 30px;
  }
  .eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
  .hero h1 {
    font-weight: 700; font-size: clamp(44px, 5.6vw, 80px);
    line-height: 1.04; letter-spacing: -0.025em;
    color: white; margin-bottom: 32px;
  }
  .hero h1 em { font-weight: 300; font-style: italic; color: var(--gold); letter-spacing: -0.015em; }
  .hero-lede {
    font-size: 19px; font-weight: 400; line-height: 1.6;
    color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 44px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-ctas .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 30px; font-weight: 700; font-size: 13.5px;
    letter-spacing: 0.11em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
    transition: all 0.15s ease;
  }
  .hero-ctas .btn.primary { background: var(--navy); color: white; }
  .hero-ctas .btn.primary:hover { background: var(--navy-soft); }
  .hero-ctas .btn.outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5); }
  .hero-ctas .btn.outline:hover { border-color: var(--gold); color: var(--gold); }

  .medallion-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
  .medallion {
    width: 100%; max-width: 460px; aspect-ratio: 1;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.30));
  }

  /* ============= PAGE HERO (interior pages) ============= */
  .page-hero {
    background:
      radial-gradient(circle at 85% 35%, rgba(204, 164, 90,0.08), transparent 55%),
      linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: white; position: relative;
    border-bottom: 1px solid rgba(204, 164, 90,0.18);
    overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px; pointer-events: none;
  }
  .page-hero-inner {
    max-width: 1340px; margin: 0 auto; padding: 70px 32px 70px;
    position: relative;
  }
  .page-hero h1 {
    font-weight: 700; font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.08; letter-spacing: -0.02em;
    color: white; margin-bottom: 16px; max-width: 880px;
  }
  .page-hero h1 em { font-weight: 300; font-style: italic; color: var(--gold); }
  .page-hero-lede {
    font-size: 18px; line-height: 1.55;
    color: rgba(255,255,255,0.82);
    max-width: 720px; margin: 0;
  }
  .page-hero .breadcrumb {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; color: var(--gold-soft);
    text-transform: uppercase; margin-bottom: 18px;
  }
  .page-hero .breadcrumb a { color: var(--gold-soft); text-decoration: none; }
  .page-hero .breadcrumb a:hover { color: var(--gold); }
  .page-hero .breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

  /* ============= STATS STRIP ============= */
  .stats-strip {
    background: var(--paper);
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
  }
  .stats-inner {
    max-width: 1340px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .stat {
    background: var(--navy-deep);
    border-radius: 20px;
    padding: 44px 28px;
    position: relative;
    text-align: center;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 6px 24px rgba(18, 42, 56, 0.14), 0 0 0 1px rgba(204, 164, 90, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 15%, rgba(204, 164, 90,0.15), transparent 55%);
    pointer-events: none;
  }
  .stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(18, 42, 56, 0.22);
  }
  .stat-num {
    font-weight: 800;
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.025em;
    display: inline-block;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 16px rgba(204, 164, 90,0.18);
  }
  .stat-label {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }
  .stat-label::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--gold);
    margin: 0 auto 12px;
  }

  /* ============= SECTION SHELL ============= */
  section.block { padding: 110px 0; }
  section.block.warm { background: var(--paper-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  section.block.dark { background: var(--navy); color: white; }
  section.block.dark.with-side-photo {
    position: relative;
    overflow: hidden;
    background-image:
      linear-gradient(rgba(12, 29, 39,0.65), rgba(12, 29, 39,0.65)),
      url('/mockup/what-we-do-bg.jpeg');
    background-size: cover, cover;
    background-position: center, center;
    background-attachment: scroll, fixed;
    background-repeat: no-repeat;
  }
  section.block.dark.with-side-photo > * { position: relative; z-index: 1; }
  @media (max-width: 1024px) {
    section.block.dark.with-side-photo {
      background-attachment: scroll, scroll;
    }
  }
  section.block.short { padding: 70px 0; }
  .block-inner { max-width: 1340px; margin: 0 auto; padding: 0 32px; }

  .section-eyebrow {
    font-family: var(--mono); font-weight: 500; font-size: 12px;
    color: var(--terracotta); letter-spacing: 0.28em;
    text-transform: uppercase; margin-bottom: 22px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-eyebrow .num { color: var(--gold); font-weight: 600; }
  section.block.dark .section-eyebrow { color: var(--gold-soft); }
  section.block.dark .section-eyebrow .num { color: var(--gold); }

  h2.section-title {
    font-weight: 700; font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08; letter-spacing: -0.02em;
    color: var(--navy); margin-bottom: 26px;
  }
  section.block.dark h2.section-title { color: white; }
  h2.section-title em { font-weight: 300; font-style: italic; color: var(--terracotta); letter-spacing: -0.015em; }
  section.block.dark h2.section-title em { color: var(--gold); }

  .section-lede { font-size: 19px; line-height: 1.65; color: var(--body); max-width: 720px; margin-bottom: 0; }
  section.block.dark .section-lede { color: rgba(255,255,255,0.78); }

  /* ============= THREE PILLARS ============= */
  .pillars-header { text-align: center; margin-bottom: 64px; }
  .pillars-header .section-eyebrow { justify-content: center; }
  .pillars-header h2 { margin: 0 auto; }
  .pillars-header .section-lede { margin: 22px auto 0; }
  .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
  .pillar-link + .pillar-link { margin-top: 10px; align-self: flex-start; }
  .pillar {
    background: white; border: 1px solid var(--line);
    padding: 0; border-top: 3px solid var(--gold);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }
  .pillar:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(18, 42, 56,0.10); border-top-color: var(--terracotta); }
  .pillar-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--paper-warm);
  }
  .pillar-image img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
  }
  .pillar:hover .pillar-image img { transform: scale(1.04); }
  .pillar-content {
    padding: 24px 26px 30px;
    flex: 1;
    display: flex; flex-direction: column;
  }
  .pillar-num {
    font-family: var(--mono); font-weight: 500; font-size: 11px;
    color: var(--terracotta); letter-spacing: 0.22em;
    text-transform: uppercase; margin-bottom: 12px;
  }
  .pillar h3 { font-weight: 700; font-size: 19px; color: var(--navy); letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 12px; }
  .pillar p { font-size: 14px; line-height: 1.6; color: var(--body); }
  .pillar-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
    font-family: var(--mono); font-size: 10.5px; color: var(--terracotta);
    text-decoration: none; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500;
    transition: color 0.15s;
  }
  .pillar-link:hover { color: var(--terra-soft); }

  /* ============= FIND HOUSING FEATURE ============= */
  .feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 24px; }
  @media (max-width: 1020px) { .feat-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
  .find-search {
    background: white; border: 1px solid var(--line); border-radius: 4px;
    padding: 8px; margin-top: 32px;
    display: grid; grid-template-columns: 1fr auto; gap: 8px;
    box-shadow: 0 4px 18px rgba(18, 42, 56,0.06); max-width: 480px;
  }
  .find-search input {
    border: none; outline: none; padding: 12px 16px;
    font-family: var(--display); font-size: 15px;
    color: var(--ink); background: transparent;
  }
  .find-search input::placeholder { color: #95A0A8; }
  .find-search button {
    background: var(--navy); color: white; border: none; border-radius: 3px;
    padding: 12px 22px; font-weight: 700; font-size: 12px;
    letter-spacing: 0.11em; text-transform: uppercase; cursor: pointer;
    transition: background 0.15s;
  }
  .find-search button:hover { background: var(--navy-soft); }
  .crisis-callout {
    margin-top: 28px; padding: 16px 20px;
    background: rgba(204, 164, 90,0.07);
    border-left: 3px solid var(--terracotta);
    border-radius: 0 3px 3px 0;
    font-size: 14px; line-height: 1.55; color: var(--ink);
  }
  .crisis-callout strong { color: var(--terracotta); }

  /* ============= NARR LEVELS ============= */
  .levels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
  .level-card {
    background: white; border: 1px solid var(--line);
    padding: 26px 22px; border-radius: 3px;
    transition: all 0.2s;
  }
  .level-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(204, 164, 90,0.10); }
  .level-card .roman { font-weight: 700; font-size: 32px; color: var(--gold); letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1; }
  .level-card .name { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 8px; }
  .level-card .desc { font-size: 12.5px; color: var(--body); line-height: 1.5; }

  /* ============= STEP STRIP ============= */
  .step-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 44px; margin-bottom: 36px; }
  .step {
    background: white;
    border-radius: 6px;
    padding: 24px 20px 26px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.28);
  }
  .step-num {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--terracotta);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
  }
  .step-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.005em;
  }

  /* ============= PARTNERS CAROUSEL ============= */
  .partners-strip { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 56px 0; }
  .partners-inner { max-width: 1340px; margin: 0 auto; padding: 0 32px; text-align: center; }
  .partners-eyebrow {
    font-family: var(--mono); font-weight: 600; font-size: 14px;
    color: var(--navy); letter-spacing: 0.26em;
    text-transform: uppercase; margin-bottom: 38px;
  }
  .partners-carousel {
    position: relative; overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  }
  .partners-track {
    display: flex; width: max-content;
    animation: partners-scroll 40s linear infinite;
    align-items: center;
  }
  .partners-carousel:hover .partners-track { animation-play-state: paused; }
  @keyframes partners-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .partner-logo {
    flex: 0 0 auto; width: 180px; margin-right: 56px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    padding: 8px 12px;
    opacity: 0.88;
    transition: opacity 0.2s, transform 0.2s;
  }
  .partner-logo:hover { opacity: 1; transform: translateY(-2px); }
  .partner-logo .logo-mark-img {
    width: auto;
    max-width: 160px;
    height: 80px;
    flex-shrink: 0;
    object-fit: contain;
  }
  @media (prefers-reduced-motion: reduce) {
    .partners-track { animation: none; }
  }

  /* ============= NEWS ============= */
  .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
  .news-card {
    background: white; border: 1px solid var(--line);
    overflow: hidden; border-radius: 3px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
  }
  .news-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(18, 42, 56,0.10); }
  .news-card .image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--paper-warm), white 65%);
    border-bottom: 1px solid var(--line); position: relative;
  }
  .news-card .image::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(204, 164, 90,0.12), transparent 50%);
  }
  .news-card .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
  .news-card .meta {
    font-family: var(--mono); font-size: 11px;
    color: var(--terracotta); letter-spacing: 0.2em;
    text-transform: uppercase; margin-bottom: 12px;
  }
  .news-card h3 { font-weight: 700; font-size: 19px; color: var(--navy); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 12px; }
  .news-card .excerpt { font-size: 14px; color: var(--body); line-height: 1.6; flex: 1; }
  .news-card .read-more { margin-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; }

  .btn-outline-navy {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 30px; font-weight: 700; font-size: 12.5px;
    letter-spacing: 0.11em; text-transform: uppercase;
    color: var(--navy); background: transparent;
    border: 1.5px solid var(--navy); border-radius: 2px;
    text-decoration: none; transition: all 0.15s;
  }
  .btn-outline-navy:hover { background: var(--navy); color: white; }

  /* ============= NEWSLETTER ============= */
  .newsletter {
    background-image:
      linear-gradient(rgba(12, 29, 39, 0.72), rgba(12, 29, 39, 0.82)),
      url('/mockup/newsletter-bg.jpg');
    background-color: var(--navy-deep);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    padding: 110px 0;
    border-top: 1px solid rgba(204, 164, 90,0.2);
    position: relative;
  }
  @media (max-width: 1024px) {
    .newsletter { background-attachment: scroll; }
  }
  .newsletter-inner { max-width: 980px; margin: 0 auto; padding: 0 32px; text-align: center; position: relative; z-index: 1; }
  .newsletter h2 { font-weight: 700; font-size: clamp(36px, 4vw, 56px); color: white; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 18px; }
  .newsletter p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 580px; margin: 0 auto 36px; line-height: 1.55; }
  .newsletter-form { display: flex; gap: 8px; max-width: 520px; margin: 0 auto; background: white; border-radius: 3px; padding: 8px; }
  .newsletter-form input { flex: 1; border: none; outline: none; padding: 12px 16px; font-family: var(--display); font-size: 15px; color: var(--ink); background: transparent; }
  .newsletter-form button { background: var(--gold); color: var(--navy); border: none; border-radius: 2px; padding: 12px 24px; font-weight: 700; font-size: 12px; letter-spacing: 0.11em; text-transform: uppercase; cursor: pointer; transition: background 0.15s; }
  .newsletter-form button:hover { background: var(--gold-soft); }
  .newsletter .privacy { margin-top: 18px; font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.16em; text-transform: uppercase; }

  /* ============= MISSION / COMMITMENTS / BENEFITS ============= */
  .mission-statement {
    font-size: 19px;
    line-height: 1.7;
    color: var(--ink);
    max-width: 920px;
    margin: 0 0 64px;
  }
  /* When the parallax block doubles as a page hero */
  .block.dark.with-parallax-bg .breadcrumb {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; color: var(--gold-soft);
    text-transform: uppercase; margin-bottom: 18px;
  }
  .block.dark.with-parallax-bg .breadcrumb a { color: var(--gold-soft); text-decoration: none; }
  .block.dark.with-parallax-bg .breadcrumb a:hover { color: var(--gold); }
  .block.dark.with-parallax-bg .breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
  .block.dark.with-parallax-bg > .block-inner > h1 {
    font-weight: 700;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: white;
    margin: 0 0 32px;
    max-width: 880px;
  }
  .block.dark.with-parallax-bg > .block-inner > h1 em {
    font-weight: 300; font-style: italic; color: var(--gold);
  }
  .commitments-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
  }
  .commitment { text-align: left; }
  .commitment-num {
    font-family: var(--mono); font-weight: 500; font-size: 12px;
    color: var(--terracotta); letter-spacing: 0.22em;
    text-transform: uppercase;
    display: inline-block; padding-bottom: 6px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 18px;
  }
  .commitment h3 {
    font-weight: 700; font-size: 20px;
    color: var(--navy); letter-spacing: -0.01em;
    line-height: 1.3; margin-bottom: 14px;
  }
  .commitment p { font-size: 15px; line-height: 1.65; color: var(--body); }

  /* Parallax background variant for dark sections */
  section.block.dark.with-parallax-bg {
    position: relative;
    overflow: hidden;
    background-image:
      linear-gradient(rgba(12, 29, 39,0.74), rgba(12, 29, 39,0.80)),
      url('/mockup/arkansas-flag.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-attachment: scroll, fixed;
    background-repeat: no-repeat;
  }
  @media (max-width: 1024px) {
    section.block.dark.with-parallax-bg { background-attachment: scroll, scroll; }
  }

  /* Mission + commitment text colors on dark backgrounds */
  section.block.dark .mission-statement { color: rgba(255,255,255,0.92); }
  section.block.dark .commitment h3 { color: white; }
  section.block.dark .commitment p { color: rgba(255,255,255,0.82); }
  section.block.dark .commitment-num { color: var(--gold-soft); border-bottom-color: var(--gold); }

  /* Benefits grid + cards (now navy bubbles on white) */
  .benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .benefit-card {
    background: var(--navy-deep);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 32px 30px 32px;
    box-shadow: 0 6px 22px rgba(18, 42, 56, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(18, 42, 56, 0.22);
  }
  .benefit-card h3 {
    font-weight: 700; font-size: 19px;
    color: var(--gold); letter-spacing: -0.01em;
    line-height: 1.3; margin-bottom: 14px;
  }
  .benefit-card p { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.82); }
  @media (max-width: 900px) {
    .commitments-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
  }

  /* ============= RESIDENT SUPPORT FUNDS PAGE ============= */
  .rsf-grid-2 {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 28px; align-items: stretch;
  }
  @media (max-width: 900px) {
    .rsf-grid-2 { grid-template-columns: 1fr; }
  }

  /* Info card with header + subsections */
  .rsf-card {
    background: white;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 4px;
    padding: 36px 36px 34px;
    display: flex; flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .rsf-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(18, 42, 56,0.08);
    border-top-color: var(--terracotta);
  }
  .rsf-card-num {
    font-family: var(--mono); font-weight: 500;
    font-size: 12px; color: var(--terracotta);
    letter-spacing: 0.22em; text-transform: uppercase;
    margin-bottom: 14px;
  }
  .rsf-card > h3 {
    font-weight: 700; font-size: 24px;
    color: var(--navy); letter-spacing: -0.01em;
    line-height: 1.25; margin: 0 0 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  /* Wide full-width card with internal 4-up subsection grid */
  .rsf-card-wide { margin-top: 28px; }
  .rsf-card-sub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
  }
  .rsf-card-sub-grid .rsf-card-sub { margin-bottom: 0; }
  @media (max-width: 1100px) {
    .rsf-card-sub-grid { grid-template-columns: 1fr 1fr; gap: 28px 36px; }
    .rsf-card-sub-grid .rsf-card-sub { margin-bottom: 8px; }
  }
  @media (max-width: 600px) {
    .rsf-card-sub-grid { grid-template-columns: 1fr; gap: 22px; }
  }

  /* Subsection within a card */
  .rsf-card-sub { margin-bottom: 26px; }
  .rsf-card-sub:last-child { margin-bottom: 0; }
  .rsf-card-sub h4 {
    font-family: var(--mono); font-weight: 600;
    font-size: 12px; letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin: 0 0 14px;
  }
  .rsf-card-sub ul {
    margin: 0; padding-left: 20px;
    color: var(--body); font-size: 15px;
    line-height: 1.65;
  }
  .rsf-card-sub ul li { margin-bottom: 8px; }
  .rsf-card-sub ul li:last-child { margin-bottom: 0; }
  .rsf-card-sub ul li strong { color: var(--navy); }
  .rsf-card-sub p {
    font-size: 15px; line-height: 1.65;
    color: var(--body); margin: 0 0 12px;
  }
  .rsf-card-sub p + ul { margin-top: 4px; }
  .rsf-card-sub p:last-child { margin-bottom: 0; }
  .rsf-card-sub .rsf-note {
    font-size: 13px; color: var(--body);
    font-style: italic; opacity: 0.78;
    margin-top: 14px;
  }
  .rsf-section-cta { text-align: center; margin-top: 56px; }

  /* Contact + CTA section (vertical, centered) */
  .rsf-contact-stack {
    max-width: 720px; margin: 0 auto;
    text-align: center;
  }
  .rsf-contact-meta {
    font-family: var(--mono); font-size: 13px;
    letter-spacing: 0.04em; line-height: 1.9;
    color: rgba(255,255,255,0.85);
    margin-top: 22px;
  }
  .rsf-contact-meta .row {
    display: flex; align-items: center; gap: 14px;
    justify-content: center; margin-bottom: 4px;
  }
  .rsf-contact-meta .row:last-child { margin-bottom: 0; }
  .rsf-contact-meta .label {
    color: var(--gold); font-weight: 600;
    letter-spacing: 0.22em; font-size: 11px;
    min-width: 64px; text-align: right;
  }
  .rsf-contact-meta a {
    color: rgba(255,255,255,0.95); text-decoration: none;
    border-bottom: 1px solid rgba(204, 164, 90,0.4);
    padding-bottom: 1px;
    transition: border-color 0.15s, color 0.15s;
  }
  .rsf-contact-meta a:hover { border-bottom-color: var(--gold); color: white; }
  .rsf-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 22px 38px;
    font-family: var(--display);
    font-weight: 700; font-size: 14px;
    letter-spacing: 0.11em; text-transform: uppercase;
    text-decoration: none; border-radius: 3px;
    background: var(--gold); color: var(--navy);
    transition: background 0.15s, transform 0.2s;
  }
  .rsf-cta-btn:hover { background: var(--gold-soft); transform: translateY(-2px); }

  /* ============= OUR TEAM PAGE ============= */
  /* Layout grids */
  .team-leadership-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px 48px; align-items: start;
    max-width: 880px; margin: 0 auto;
  }
  @media (max-width: 700px) {
    .team-leadership-grid { grid-template-columns: 1fr; max-width: 360px; }
  }
  .team-board-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 56px 36px; align-items: start;
  }
  @media (max-width: 900px) {
    .team-board-grid { grid-template-columns: 1fr 1fr; gap: 48px 28px; }
  }
  @media (max-width: 600px) {
    .team-board-grid { grid-template-columns: 1fr; gap: 44px; max-width: 320px; margin-left: auto; margin-right: auto; }
  }

  /* Unified team card (circular photo + name + title + expandable bio) */
  .team-card {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
  }
  .team-card-photo {
    width: 168px; height: 168px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--paper-warm);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 9px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--body);
    margin-bottom: 22px;
    border: 3px solid white;
    box-shadow: 0 6px 22px rgba(18, 42, 56,0.10);
  }
  .team-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .team-card-photo img.rodney-beaver-photo {
    object-position: 50% 16%;
  }
  .team-card-name {
    font-weight: 700; font-size: 20px;
    color: var(--navy); letter-spacing: -0.01em;
    line-height: 1.2; margin: 0 0 6px;
  }
  .team-card-title {
    font-size: 14.5px; line-height: 1.4;
    color: var(--ink); margin: 0 0 2px;
    font-weight: 500;
  }
  .team-card-org {
    font-size: 13px; line-height: 1.4;
    color: var(--body); margin: 0 0 14px;
  }

  /* Toggle button */
  .team-card-toggle {
    display: inline-flex; align-items: center; gap: 10px;
    background: none; border: none; cursor: pointer;
    font-family: var(--mono); font-weight: 500;
    font-size: 12px; color: var(--terracotta);
    letter-spacing: 0.04em;
    padding: 6px 2px;
    transition: color 0.15s;
  }
  .team-card-toggle:hover { color: var(--terra-soft); }
  .team-card-toggle .icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px;
    border: 1.5px solid var(--terracotta);
    border-radius: 50%;
    font-size: 18px; font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease, background 0.15s, color 0.15s, border-color 0.15s;
  }
  .team-card-toggle:hover .icon { border-color: var(--terra-soft); }
  .team-card-toggle[aria-expanded="true"] .icon {
    transform: rotate(45deg);
    background: var(--terracotta);
    color: white;
  }

  /* Expanded bio area */
  .team-card-expand {
    width: 100%;
    max-width: 320px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: left;
    animation: team-expand 0.25s ease;
  }
  @keyframes team-expand {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .team-card-bio {
    font-size: 13.5px; line-height: 1.6;
    color: var(--body); margin: 0 0 14px;
  }
  .team-card-bio.pending {
    font-style: italic; opacity: 0.7;
  }
  .team-card-email {
    font-family: var(--mono); font-size: 10.5px;
    color: var(--terracotta); text-decoration: none;
    letter-spacing: 0.04em;
    word-break: break-all;
    display: inline-block;
  }
  .team-card-email:hover { color: var(--terra-soft); }

  /* Dark variant — used for the Leadership section on navy-deep */
  .team-card.on-dark .team-card-photo {
    background: rgba(255,255,255,0.06);
    border: 3px solid rgba(204, 164, 90,0.32);
    box-shadow: 0 6px 24px rgba(0,0,0,0.30);
    color: rgba(255,255,255,0.55);
  }
  .team-card.on-dark .team-card-name { color: white; font-size: 22px; }
  .team-card.on-dark .team-card-title { color: rgba(255,255,255,0.88); }
  .team-card.on-dark .team-card-org { color: rgba(255,255,255,0.65); }
  .team-card.on-dark .team-card-toggle { color: var(--gold-soft); }
  .team-card.on-dark .team-card-toggle:hover { color: var(--gold); }
  .team-card.on-dark .team-card-toggle .icon { border-color: var(--gold-soft); }
  .team-card.on-dark .team-card-toggle:hover .icon { border-color: var(--gold); }
  .team-card.on-dark .team-card-toggle[aria-expanded="true"] .icon {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
  }
  .team-card.on-dark .team-card-expand { border-top-color: rgba(204, 164, 90,0.25); }
  .team-card.on-dark .team-card-bio { color: rgba(255,255,255,0.82); }
  .team-card.on-dark .team-card-bio.pending { color: rgba(255,255,255,0.55); }
  .team-card.on-dark .team-card-email { color: var(--gold-soft); }
  .team-card.on-dark .team-card-email:hover { color: var(--gold); }

  /* ============= PLACEHOLDER (interior pages) ============= */
  .placeholder-notice {
    background: white; border: 1px dashed var(--gold);
    border-radius: 4px; padding: 32px 36px;
    max-width: 760px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 14px;
    box-shadow: 0 2px 12px rgba(18, 42, 56,0.04);
  }
  .placeholder-notice .badge {
    align-self: flex-start; font-family: var(--mono);
    font-size: 10.5px; letter-spacing: 0.22em;
    color: var(--gold); text-transform: uppercase; font-weight: 600;
    padding: 5px 12px; border: 1px solid var(--gold); border-radius: 100px;
  }
  .placeholder-notice h3 {
    font-weight: 700; font-size: 22px; color: var(--navy);
    letter-spacing: -0.01em; line-height: 1.25;
  }
  .placeholder-notice p { font-size: 15px; line-height: 1.65; color: var(--body); }
  .placeholder-notice ul { margin-top: 4px; padding-left: 20px; color: var(--body); font-size: 14.5px; line-height: 1.7; }
  .placeholder-notice ul li { margin-bottom: 4px; }
  .placeholder-notice .back-link {
    margin-top: 6px; font-family: var(--mono);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--terracotta); text-decoration: none; font-weight: 500;
    border-bottom: 1.5px solid var(--gold); align-self: flex-start;
    padding-bottom: 3px; transition: color 0.15s, border-color 0.15s;
  }
  .placeholder-notice .back-link:hover { color: var(--terra-soft); border-bottom-color: var(--terra-soft); }

  /* ============= FOOTER ============= */
  footer.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 72px 0 32px; border-top: 1px solid rgba(204, 164, 90,0.12); }
  .footer-inner { max-width: 1340px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 56px; }
  .footer-brand .logo-lockup { gap: 12px; }
  .footer-brand .logo-mark { width: 48px; height: 48px; flex: 0 0 48px; }
  .footer-brand .logo-text .aarr { color: white; font-size: 20px; }
  .footer-brand .logo-text .sub { color: rgba(255,255,255,0.65); font-size: 10px; }
  .footer-brand p { font-size: 14px; line-height: 1.65; max-width: 340px; margin-top: 22px; color: rgba(255,255,255,0.65); }
  footer.site-footer h4 { font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
  footer.site-footer ul { list-style: none; }
  footer.site-footer ul li { margin-bottom: 12px; line-height: 1.5; }
  footer.site-footer a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 14px; transition: color 0.15s; }
  footer.site-footer a:hover { color: var(--gold); }
  footer.site-footer .contact-meta { font-family: var(--mono); font-size: 11.5px; line-height: 1.85; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; }
  footer.site-footer .contact-meta a { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; }
  .footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
  footer.site-footer .footer-social a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; gap: 8px; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.78); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.13em; line-height: 1; text-transform: uppercase; text-decoration: none; }
  footer.site-footer .footer-social a:hover { border-color: rgba(211,170,85,0.65); background: rgba(211,170,85,0.12); color: var(--gold); }
  .footer-social svg, .footer-social-icon { flex: 0 0 auto; }
  .footer-social-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: 0; }
  .footer-bottom { max-width: 1340px; margin: 56px auto 0; padding: 28px 32px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 18px; }
  .footer-bottom .legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
  .footer-bottom .legal-links a { color: rgba(255,255,255,0.5); font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
  .footer-bottom .legal-links a:hover { color: var(--gold); }

  /* ============= RESPONSIVE ============= */
  @media (max-width: 1100px) {
    .header-inner { grid-template-columns: 1fr; gap: 14px; }
    .header-right { align-items: stretch; }
    nav.main-nav { display: none; }
    .hamburger-btn { display: inline-flex; align-self: flex-end; margin-top: -2px; }
    .callout-info { flex-direction: column; align-items: flex-start; gap: 10px; }
    .hero-inner { grid-template-columns: 1fr; gap: 60px; padding: 64px 24px 90px; }
    .medallion-wrap { order: -1; }
    .medallion { max-width: 320px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: 1fr; }
    .feature-split { grid-template-columns: 1fr; gap: 48px; }
    .levels-grid { grid-template-columns: repeat(2, 1fr); }
    .step-strip { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .page-hero-inner { padding: 56px 24px; }
  }
  @media (max-width: 600px) {
    .util-bar { font-size: 10px; }
    .util-bar .pill { display: none; }
    .cta-row { flex-direction: column; align-items: stretch; gap: 8px; }
    .cta-pill { justify-content: center; }
    .stats-inner { grid-template-columns: 1fr; }
    .levels-grid { grid-template-columns: 1fr; }
    .step-strip { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

  /* ============= GRIEVANCE FORM (scoped under .griev) ============= */
  .griev {
    --gv-gold-link: #8C6B2E;
    --gv-error: #B23A2E;
    --gv-navy-015: rgba(18,42,56,0.15);
    --gv-navy-040: rgba(18,42,56,0.40);
    --gv-gold-focus: rgba(204,164,90,0.45);
    --gv-radius: 10px;
    --gv-field-border: 1.5px solid rgba(18,42,56,0.40);
    max-width: 780px; margin: 0 auto; color: var(--navy);
    font-family: var(--body-font); line-height: 1.55;
  }
  .griev .aarr-intro { margin: 0 0 26px; font-size: 16px; text-align: left; }
  .griev .aarr-intro a { color: var(--gv-gold-link); font-weight: 600; }
  .griev fieldset { border: 0; border-top: 2px solid var(--gv-navy-015); margin: 0 0 8px; padding: 28px 0 4px; }
  .griev fieldset:first-of-type { border-top: 0; padding-top: 0; }
  .griev legend {
    font-family: var(--display); font-weight: 700; font-size: 13px;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--gv-gold-link);
    padding: 0; margin-bottom: 4px;
  }
  .griev .aarr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
  .griev .aarr-grid .full { grid-column: 1 / -1; }
  .griev .field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
  .griev label, .griev .group-label { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--navy); }
  .griev .req { color: var(--gv-error); margin-left: 2px; }
  .griev .hint { font-size: 13.5px; color: var(--body); font-weight: 400; }
  .griev input[type="text"], .griev input[type="email"], .griev input[type="tel"],
  .griev input[type="date"], .griev select, .griev textarea {
    width: 100%; font-family: var(--body-font); font-size: 16px; color: var(--navy);
    background: #fff; border: var(--gv-field-border); border-radius: var(--gv-radius);
    padding: 13px 15px; transition: border-color .15s ease, box-shadow .15s ease;
  }
  .griev textarea { min-height: 150px; resize: vertical; line-height: 1.55; }
  .griev select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231F3D4E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
  }
  .griev ::placeholder { color: var(--body); opacity: 1; }
  .griev input:focus, .griev select:focus, .griev textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gv-gold-focus);
  }
  .griev input.invalid, .griev select.invalid, .griev textarea.invalid { border-color: var(--gv-error); }
  .griev .error-msg { color: var(--gv-error); font-size: 13.5px; font-weight: 600; display: none; }
  .griev .error-msg.show { display: block; }
  .griev .choice-row { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
  .griev .choice { display: inline-flex; align-items: center; gap: 9px; font-family: var(--body-font); font-size: 16px; cursor: pointer; }
  .griev .choice input { accent-color: var(--navy); width: 18px; height: 18px; }
  .griev .ack { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: var(--gv-field-border); border-radius: var(--gv-radius); padding: 16px 18px; }
  .griev .ack input { accent-color: var(--navy); width: 19px; height: 19px; margin-top: 3px; flex: 0 0 auto; }
  .griev .ack label { font-weight: 400; font-family: var(--body-font); font-size: 15.5px; }
  .griev #staffNameField[hidden] { display: none; }
  .griev .aarr-actions { margin-top: 32px; }
  .griev button[type="submit"] {
    font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: 0.04em;
    color: var(--navy); background: var(--gold); border: 0; border-radius: var(--gv-radius);
    padding: 15px 42px; cursor: pointer; transition: filter .15s ease, transform .05s ease;
  }
  .griev button[type="submit"]:hover { filter: brightness(0.94); }
  .griev button[type="submit"]:active { transform: translateY(1px); }
  .griev button[type="submit"]:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--navy), 0 0 0 6px var(--gv-gold-focus); }
  .griev #aarr-success, .griev #aarr-contact-success { display: none; background: var(--navy); color: #fff; border-radius: var(--gv-radius); padding: 28px 26px; text-align: center; }
  .griev #aarr-success h2, .griev #aarr-contact-success h2 { font-family: var(--display); font-weight: 700; margin: 0 0 8px; }
  .griev .contact-meta { margin-top: 40px; padding-top: 28px; border-top: 2px solid var(--gv-navy-015); }
  .griev .contact-meta h3 { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--navy); margin: 0 0 12px; }
  .griev .contact-meta p { margin: 0 0 6px; font-size: 15.5px; }
  .griev .contact-meta a { color: var(--gv-gold-link); font-weight: 600; }
  @media (max-width: 640px) { .griev .aarr-grid { grid-template-columns: 1fr; } }

  /* ============= BLOG ============= */
  .blog-index { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 900px) { .blog-index { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .blog-index { grid-template-columns: 1fr; } }
  .blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(18,42,56,0.10); }
  .blog-card .thumb { aspect-ratio: 16 / 10; background: var(--navy); background-size: cover; background-position: center; }
  .blog-card .thumb.ph { display: flex; align-items: flex-end; padding: 16px; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }
  .blog-card .thumb.ph .ph-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); }
  .blog-card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
  .blog-card .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px; }
  .blog-card h3 { font-family: var(--display); font-size: 18px; line-height: 1.3; color: var(--navy); margin: 0 0 10px; letter-spacing: -0.01em; }
  .blog-card .excerpt { font-size: 14px; color: var(--body); line-height: 1.55; flex: 1; }
  .blog-card .read { margin-top: 16px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--body); }

  .blog-post { max-width: 760px; margin: 0 auto; }
  .blog-post .post-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 22px; }
  .blog-post .post-hero-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 14px; margin-bottom: 34px; }
  .blog-post p { font-size: 17px; line-height: 1.7; color: var(--ink); margin: 0 0 20px; }
  .blog-post h2 { font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--navy); margin: 38px 0 14px; line-height: 1.25; }
  .blog-post h3 { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--navy); margin: 28px 0 12px; }
  .blog-post ul, .blog-post ol { margin: 0 0 22px; padding-left: 24px; }
  .blog-post li { font-size: 17px; line-height: 1.6; color: var(--ink); margin-bottom: 9px; }
  .blog-post a { color: var(--terracotta); font-weight: 600; }
  .blog-post strong { color: var(--navy); }
  .blog-post blockquote { border-left: 3px solid var(--gold); padding: 4px 0 4px 20px; margin: 0 0 22px; color: var(--body); font-style: italic; }
  .blog-back { display: inline-block; margin-top: 38px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); text-decoration: none; }
  .blog-back:hover { color: var(--terra-soft); }

  /* ============= POLICY DOCUMENT EMBED ============= */
  .doc-embed { max-width: 900px; margin: 0 auto; }
  .doc-embed .doc-intro { font-size: 16px; color: var(--ink); margin: 0 0 22px; }
  .doc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
  .doc-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--body); margin-bottom: 26px; }
  .pdf-frame {
    width: 100%; height: 820px; border: 1px solid var(--line);
    border-radius: 12px; background: var(--paper-warm); box-shadow: 0 4px 18px rgba(18,42,56,0.06);
  }
  @media (max-width: 640px) { .pdf-frame { height: 540px; } }

  /* ============= FEATURED EVENT ============= */
  .event-feature { background: var(--navy); color: #fff; border-radius: 18px; padding: 44px 46px 40px; box-shadow: 0 12px 32px rgba(18,42,56,0.14); position: relative; overflow: hidden; }
  .event-feature .event-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; }
  .event-feature h2 { font-family: var(--display); font-weight: 800; font-size: 34px; line-height: 1.1; margin: 0 0 10px; color: #fff; letter-spacing: -0.02em; }
  .event-feature .event-tagline { font-family: var(--display); font-weight: 500; font-size: 18px; color: var(--gold-soft); margin: 0 0 22px; }
  .event-feature .event-meta { display: flex; flex-wrap: wrap; gap: 8px 30px; font-size: 15px; color: #fff; margin-bottom: 22px; }
  .event-feature .event-meta span { font-weight: 600; }
  .event-feature .event-meta .lbl { color: var(--gold); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; margin-right: 8px; }
  .event-feature .event-desc { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.85); max-width: 700px; margin: 0 0 24px; }
  .event-feature .event-included { list-style: none; padding: 0; margin: 0 0 30px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 26px; max-width: 660px; }
  .event-feature .event-included li { position: relative; padding-left: 26px; font-size: 14.5px; color: rgba(255,255,255,0.9); }
  .event-feature .event-included li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
  .event-feature .event-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
  .event-feature .ev-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.07em; text-transform: uppercase; padding: 14px 28px; border-radius: 100px; text-decoration: none; transition: all .15s ease; }
  .event-feature .ev-btn.gold { background: var(--gold); color: var(--navy); }
  .event-feature .ev-btn.gold:hover { background: var(--gold-soft); }
  .event-feature .ev-btn.ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
  .event-feature .ev-btn.ghost:hover { background: rgba(255,255,255,0.10); border-color: #fff; }
  .event-feature .event-note { font-size: 13.5px; color: rgba(255,255,255,0.72); margin: 0; }
  .event-feature .event-note a { color: var(--gold-soft); font-weight: 600; }
  @media (max-width: 600px) { .event-feature { padding: 30px 24px; } .event-feature h2 { font-size: 26px; } .event-feature .event-included { grid-template-columns: 1fr; } }

  /* ============= DOCUMENT LIST ============= */
  .doc-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; }
  .doc-item { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; transition: box-shadow .15s ease, transform .15s ease; }
  .doc-item:hover { box-shadow: 0 10px 28px rgba(18,42,56,0.08); transform: translateY(-2px); }
  .doc-item .doc-badge { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 10px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 11px; font-weight: 600; }
  .doc-item .doc-info { flex: 1 1 auto; min-width: 0; }
  .doc-item .doc-info h3 { font-family: var(--display); font-weight: 700; font-size: 16.5px; color: var(--navy); margin: 0 0 3px; }
  .doc-item .doc-info p { font-size: 13.5px; color: var(--body); margin: 0; line-height: 1.5; }
  .doc-item .doc-links { flex: 0 0 auto; display: flex; gap: 16px; }
  .doc-item .doc-links a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); text-decoration: none; font-weight: 600; white-space: nowrap; }
  .doc-item .doc-links a:hover { color: var(--terra-soft); }
  @media (max-width: 620px) { .doc-item { flex-wrap: wrap; } .doc-item .doc-links { width: 100%; padding-left: 64px; } }

  /* Simple resource list */
  .resource-list { list-style: none; padding: 0; margin: 0; max-width: 820px; }
  .resource-list li { padding: 16px 2px; border-bottom: 1px solid var(--line); }
  .resource-list li:first-child { border-top: 1px solid var(--line); }
  .resource-list a { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--navy); text-decoration: none; }
  .resource-list a:hover { color: var(--terracotta); }
  .resource-list .rl-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-left: 10px; }
  .resource-list p { font-size: 13.5px; color: var(--body); margin: 4px 0 0; }

  /* ============= CONSUMER PROTECTION NOTICE ============= */
  .notice-highlight { background: var(--paper-warm); border: 1px solid #E7DCC4; border-left: 5px solid var(--gold); border-radius: 14px; padding: 32px 34px; max-width: 900px; box-shadow: 0 4px 18px rgba(18,42,56,0.05); }
  .notice-highlight .notice-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; margin-bottom: 12px; }
  .notice-highlight h2 { font-family: var(--display); font-weight: 800; font-size: 25px; color: var(--navy); margin: 0 0 12px; line-height: 1.2; letter-spacing: -0.01em; }
  .notice-highlight > p { font-size: 16px; color: var(--ink); margin: 0 0 16px; }
  .notice-highlight ul { margin: 0 0 22px; padding-left: 22px; }
  .notice-highlight li { font-size: 15.5px; color: var(--ink); margin-bottom: 7px; line-height: 1.5; }

  /* ============= TRAINING VIDEOS ============= */
  .video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 980px; }
  @media (max-width: 720px) { .video-grid { grid-template-columns: 1fr; } }
  .video-card video,
  .video-card iframe { width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; background: #000; display: block; border: 1px solid var(--line); }
  .video-card iframe { border: 0; }
  .video-card .vnum { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); margin-top: 14px; display: block; }
  .video-card h3 { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--navy); margin: 6px 0 4px; line-height: 1.3; }
  .video-card p { font-size: 13.5px; color: var(--body); margin: 0; line-height: 1.5; }
  /* Startup Guide page: centered sections + tighter vertical rhythm */
  article[data-page="startup-guide"] section.block { padding: 48px 0; }
  article[data-page="startup-guide"] .section-eyebrow { justify-content: center; }
  article[data-page="startup-guide"] h2.section-title { text-align: center; }
  article[data-page="startup-guide"] .video-grid { margin-left: auto; margin-right: auto; }
  article[data-page="startup-guide"] .notice-highlight { margin-left: auto; margin-right: auto; }
  article[data-page="startup-guide"] .doc-list { margin-left: auto; margin-right: auto; }

  /* ============= TRAINING COURSE LIBRARY ============= */
  .login-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); background: var(--paper-warm); border: 1px solid #E7DCC4; border-radius: 100px; padding: 7px 16px; margin: 0 0 30px; }
  .login-pill::before { content: ""; width: 9px; height: 9px; border-radius: 2px; border: 1.5px solid var(--terracotta); border-bottom: none; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: 0 3px 0 -1px var(--terracotta); margin-bottom: 2px; }
  .course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
  @media (max-width: 900px) { .course-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .course-grid { grid-template-columns: 1fr; } }
  .course-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
  .course-card:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(18,42,56,0.10); }
  .course-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy); }
  .course-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
  .course-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,29,39,0) 45%, rgba(12,29,39,0.5)); }
  .course-thumb .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 16px; padding-left: 4px; z-index: 1; }
  .course-thumb .lock { position: absolute; top: 10px; right: 10px; z-index: 1; background: rgba(12,29,39,0.82); color: var(--gold-soft); font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 9px; border-radius: 100px; }
  .course-card .body { padding: 16px 18px 20px; }
  .course-card .cnum { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); }
  /* Training portal: demo-style seal thumbnails + centered course previews */
  .course-thumb.seal { display: flex; align-items: center; justify-content: center; }
  .course-thumb.seal img { width: 42%; height: auto; object-fit: contain; }
  .course-thumb.seal.light { background: #fff; border-bottom: 1px solid var(--line); }
  .course-card .train-chip { display: inline-block; align-self: flex-start; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); background: var(--paper-warm); border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; margin-bottom: 10px; }
  #course-previews .section-eyebrow { justify-content: center; }
  #course-previews h2.section-title { text-align: center; }
  #course-previews .section-lede { margin-left: auto; margin-right: auto; text-align: center; }
  /* Video Library page */
  .yt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  @media (max-width: 900px) { .yt-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .yt-grid { grid-template-columns: 1fr; } }
  .yt-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
  .yt-card:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(18,42,56,0.10); }
  .yt-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy); }
  .yt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .yt-thumb iframe { width: 100%; height: 100%; border: 0; display: block; background: var(--navy); }
  .yt-thumb .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; background: rgba(12,29,39,0.30); opacity: 0; transition: opacity .2s ease; }
  .yt-card:hover .yt-thumb .play { opacity: 1; }
  .yt-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
  .yt-card .vnum { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); }
  .yt-card h3 { font-family: var(--display); font-weight: 700; font-size: 15.5px; color: var(--navy); line-height: 1.35; margin: 0; flex: 1; }
  .yt-card .watch { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; margin-top: 6px; }
  /* FAQ page */
  .faq-intro { background: var(--paper-warm); border: 1px solid #ECE3CF; border-left: 4px solid var(--gold); border-radius: 10px; padding: 16px 20px; font-size: 15px; color: var(--ink); max-width: 900px; margin-bottom: 44px; }
  .faq-intro a { color: var(--terracotta); font-weight: 600; }
  .faq-group { display: grid; grid-template-columns: 250px 1fr; gap: 30px 48px; padding: 38px 0; border-top: 1px solid var(--line); }
  @media (max-width: 820px) { .faq-group { grid-template-columns: 1fr; gap: 18px; } }
  .faq-group .gnum { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold); color: var(--terracotta); font-family: var(--display); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
  .faq-group h2 { font-family: var(--display); font-weight: 800; font-size: 1.45rem; color: var(--navy); line-height: 1.22; letter-spacing: -0.01em; }
  .faq-qs { display: flex; flex-direction: column; gap: 12px; }
  .faq-qs details { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
  .faq-qs details[open] { border-color: #D7CFB8; box-shadow: 0 6px 22px rgba(18,42,56,0.06); }
  .faq-qs summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 16px 20px; font-family: var(--display); font-weight: 700; font-size: 15.5px; color: var(--navy); }
  .faq-qs summary::-webkit-details-marker { display: none; }
  .faq-qs summary::after { content: "+"; font-weight: 600; color: var(--gold); font-size: 20px; line-height: 1; flex: 0 0 auto; }
  .faq-qs details[open] summary::after { content: "–"; }
  .faq-qs .a { padding: 0 20px 18px; color: var(--body); font-size: 14.5px; line-height: 1.65; }
  .faq-qs .a a { color: var(--terracotta); font-weight: 600; }
  .faq-qs .a ul { margin: 10px 0 0 18px; }
  .faq-qs .a li { margin-bottom: 6px; }
  .faq-qs .a .rel { margin-top: 12px; font-size: 13.5px; color: var(--ink); }
  .faq-qs .a .rel b { font-family: var(--display); font-weight: 700; }
  .faq-qs .a .rel a { text-decoration: underline; text-underline-offset: 3px; }
  /* Apply page: get certified */
  .apply-page .apply-hero .page-hero-inner { padding-top: 78px; padding-bottom: 78px; }
  .apply-page .apply-hero h1 {
    font-size: clamp(34px, 4.2vw, 56px);
    letter-spacing: 0;
    margin-bottom: 26px;
  }
  .apply-page .apply-hero h1 em { letter-spacing: 0; }
  .apply-page .apply-hero .page-hero-lede {
    max-width: 980px;
    font-size: 18px;
    line-height: 1.65;
  }
  .apply-start-section {
    background: #fff;
    padding: 112px 0 128px;
  }
  .apply-start-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .apply-new-callout {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    background: var(--paper-warm);
    border-left: 3px solid var(--gold);
    border-radius: 0 3px 3px 0;
    padding: 20px 34px;
    margin-bottom: 48px;
  }
  .apply-new-callout span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border: 1.5px solid var(--gold);
    border-radius: 100px;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  .apply-new-callout p {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.45;
  }
  .apply-new-callout a,
  .apply-support a {
    color: #8f6827;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 2px;
  }
  .apply-new-callout a:hover,
  .apply-support a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }
  .apply-intro {
    max-width: 1040px;
    margin: 0 auto;
  }
  .apply-intro > p:first-child {
    max-width: 980px;
    margin: 0 0 34px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.6;
  }
  .apply-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 38px;
  }
  .apply-action-primary,
  .apply-action-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0 40px;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  }
  .apply-action-primary {
    background: var(--navy);
    color: #fff;
    border: 1.5px solid var(--navy);
    min-width: 280px;
  }
  .apply-action-primary:hover { background: var(--navy-soft); border-color: var(--navy-soft); transform: translateY(-1px); }
  .apply-action-secondary {
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    min-width: 320px;
  }
  .apply-action-secondary:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
  .apply-support {
    margin: 0;
    color: var(--body);
    font-size: 17px;
    line-height: 1.6;
  }
  @media (max-width: 860px) {
    .apply-start-section { padding: 70px 0 88px; }
    .apply-start-inner { padding: 0 24px; }
    .apply-new-callout {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      padding: 20px 22px;
      margin-bottom: 40px;
    }
    .apply-intro { margin: 0; }
    .apply-actions { align-items: stretch; gap: 14px; }
    .apply-action-primary,
    .apply-action-secondary {
      width: 100%;
      min-width: 0;
      padding: 0 22px;
      text-align: center;
    }
  }
  @media (max-width: 600px) {
    .apply-page .apply-hero .page-hero-inner { padding-top: 56px; padding-bottom: 60px; }
    .apply-page .apply-hero h1 { font-size: clamp(34px, 12vw, 44px); letter-spacing: 0; }
    .apply-page .apply-hero .page-hero-lede { font-size: 16px; }
    .apply-start-section { padding-top: 56px; }
    .apply-new-callout p,
    .apply-support { font-size: 16px; }
    .apply-intro > p:first-child { font-size: 18px; }
    .apply-action-primary,
    .apply-action-secondary {
      min-height: 58px;
      font-size: 11px;
      letter-spacing: 0.12em;
    }
  }
  /* Affiliations page */
  .affil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
  @media (max-width: 860px) { .affil-grid { grid-template-columns: 1fr; } }
  .affil-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: 14px; padding: 30px 30px 28px; box-shadow: 0 4px 18px rgba(18,42,56,0.05); display: flex; flex-direction: column; }
  .affil-logo { height: 110px; display: flex; align-items: center; margin-bottom: 18px; }
  .affil-logo img { max-height: 100%; max-width: 260px; object-fit: contain; display: block; }
  .affil-card h3 { font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: var(--navy); letter-spacing: -0.01em; margin: 0 0 4px; }
  .affil-tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 12px; }
  .affil-card p { font-size: 14.5px; color: var(--body); line-height: 1.65; margin: 0 0 18px; flex: 1; }
  .affil-link { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--line); border-radius: 100px; color: var(--navy); text-decoration: none; font-family: var(--display); font-weight: 600; font-size: 13px; transition: all .2s; }
  .affil-link:hover { border-color: var(--gold); background: var(--paper-warm); color: var(--terracotta); }
  .course-card h3 { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--navy); margin: 5px 0 6px; line-height: 1.3; }
  .course-card .body p { font-size: 13px; color: var(--body); margin: 0; line-height: 1.5; }

  /* ============= HIGHLIGHTED DOCUMENT CARDS ============= */
  .doc-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  @media (max-width: 1040px) { .doc-feature-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .doc-feature-grid { grid-template-columns: 1fr; } }
  .doc-feature { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: 14px; padding: 28px 26px 26px; box-shadow: 0 4px 18px rgba(18,42,56,0.05); transition: transform .2s ease, box-shadow .2s ease; }
  .doc-feature:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(18,42,56,0.12); }
  .doc-feature .ic { width: 52px; height: 52px; border-radius: 12px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 12px; font-weight: 600; margin-bottom: 18px; }
  .doc-feature h3 { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--navy); margin: 0 0 8px; line-height: 1.3; letter-spacing: -0.01em; }
  .doc-feature p { font-size: 14px; color: var(--body); line-height: 1.55; margin: 0 0 24px; flex: 1; }
  .doc-feature .acts { display: flex; gap: 16px; align-items: center; }
  .doc-feature .acts .open { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; background: var(--navy); color: #fff; padding: 11px 20px; border-radius: 100px; text-decoration: none; transition: background .15s ease; }
  .doc-feature .acts .open:hover { background: var(--navy-soft); }
  .doc-feature .acts .dl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); text-decoration: none; font-weight: 600; }
  .doc-feature .acts .dl:hover { color: var(--terra-soft); }

  /* ============= CERTIFICATION PROCESS (scoped under .certproc) ============= */
  .certproc { max-width: 940px; margin: 0 auto; --cp-goldd: #8C6B2E; --cp-navydd: #0B1A23; --cp-ssm: 0 1px 3px rgba(18,42,56,.07); --cp-smd: 0 6px 22px rgba(18,42,56,.10); }
  .certproc .cp-intro { background: var(--paper-warm); border: 1px solid #ECE3CF; border-left: 4px solid var(--gold); border-radius: 10px; padding: 16px 20px; font-size: 15px; color: var(--ink); margin-bottom: 30px; }
  .certproc .cp-intro a { color: var(--cp-goldd); font-weight: 600; }
  .certproc .cp-stats { display: flex; flex-wrap: wrap; gap: 16px 44px; padding: 0 0 6px; margin-bottom: 10px; }
  .certproc .cp-stat { display: flex; flex-direction: column; }
  .certproc .cp-stat b { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--navy); line-height: 1; }
  .certproc .cp-stat span { font-size: 11px; color: var(--body); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }
  .certproc .cp-timeline { padding: 22px 0 10px; }
  .certproc .stage { position: relative; margin-bottom: 14px; }
  .certproc .stage-head { display: flex; align-items: baseline; gap: 14px; padding: 26px 0 8px; }
  .certproc .stage-head .lab { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: var(--cp-goldd); }
  .certproc .stage-head .ttl { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.15rem; }
  .certproc .stage-head::before { content: ""; flex: 1; order: 3; height: 1px; background: var(--line); }
  .certproc .rail { position: relative; padding-left: 78px; }
  .certproc .rail::before { content: ""; position: absolute; left: 34px; top: 8px; bottom: 24px; width: 2px; background: var(--line); }
  .certproc .rail::after { content: ""; position: absolute; left: 34px; top: 8px; width: 2px; height: var(--progress,0); background: linear-gradient(var(--gold), var(--cp-goldd)); transition: height .25s ease; border-radius: 2px; }
  .certproc .step { position: relative; padding: 10px 0 30px; }
  .certproc .node { position: absolute; left: -78px; top: 6px; width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--navy); z-index: 2; box-shadow: var(--cp-ssm); transition: all .25s; }
  .certproc .step.on .node { background: var(--navy); color: #fff; }
  .certproc .step.on .node::after { content: ""; position: absolute; inset: -5px; border: 2px solid var(--gold); border-radius: 50%; }
  .certproc .card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 26px 24px; box-shadow: var(--cp-ssm); transition: box-shadow .25s, transform .25s, border-color .25s; }
  .certproc .step:hover .card { box-shadow: var(--cp-smd); border-color: #D7CFB8; transform: translateY(-2px); }
  .certproc .card h3 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.3rem; letter-spacing: -.01em; line-height: 1.2; }
  .certproc .card .kicker { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 1.3px; font-size: 11px; color: var(--cp-goldd); margin-bottom: 5px; }
  .certproc .card p { color: var(--ink); font-size: 1rem; line-height: 1.62; margin-top: 9px; }
  .certproc .card h3 + .kicker, .certproc .card p + .kicker { margin-top: 14px; }
  .certproc .card .kicker + p { margin-top: 4px; }
  .certproc .note { background: var(--paper-warm); border: 1px solid #ECE3CF; border-left: 4px solid var(--gold); border-radius: 8px; padding: 13px 16px; margin-top: 16px; font-size: .95rem; color: var(--body); line-height: 1.55; }
  .certproc .note b { font-family: var(--display); font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .6px; font-size: 11px; display: block; margin-bottom: 4px; }
  .certproc .docs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
  .certproc .doc { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--navy); text-decoration: none; font-family: var(--display); font-weight: 600; font-size: .83rem; transition: all .2s; }
  .certproc .doc:hover { border-color: var(--gold); background: var(--paper-warm); color: var(--cp-goldd); }
  .certproc .doc.primary { background: var(--gold); border-color: var(--gold); color: var(--navy); }
  .certproc .doc.primary:hover { background: #bb9444; color: var(--navy); }
  .certproc .cp-cta { background: linear-gradient(135deg, var(--cp-navydd), var(--navy)); color: #fff; text-align: center; padding: 54px 28px; border-radius: 16px; margin-top: 44px; }
  .certproc .cp-cta .eyebrow { color: var(--gold); font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; }
  .certproc .cp-cta h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 10px 0 0; color: #fff; }
  .certproc .cp-cta p { color: #CED6DB; max-width: 50ch; margin: 14px auto 0; }
  .certproc .cp-cta .btn { display: inline-block; margin-top: 24px; background: var(--gold); color: var(--navy); font-family: var(--display); font-weight: 700; font-size: 1rem; padding: 15px 32px; border-radius: 100px; text-decoration: none; transition: transform .2s, background .2s; }
  .certproc .cp-cta .btn:hover { transform: translateY(-2px); background: #d8b261; }
  .certproc .cp-cta .alt { display: block; margin-top: 16px; color: rgba(255,255,255,.72); font-size: .9rem; }
  .certproc .cp-cta .alt a { color: var(--gold); }
  @media (max-width: 640px) {
    .certproc .rail { padding-left: 56px; }
    .certproc .rail::before, .certproc .rail::after { left: 22px; }
    .certproc .node { left: -56px; width: 42px; height: 42px; font-size: 1rem; }
    .certproc .card { padding: 18px 18px 20px; }
  }

  /* ============= EVENTS LIST ============= */
  .evt-list { display: flex; flex-direction: column; gap: 16px; max-width: 880px; }
  .evt { display: flex; gap: 22px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px 24px; align-items: flex-start; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
  .evt:hover { box-shadow: 0 14px 32px rgba(18,42,56,0.09); transform: translateY(-2px); border-color: #D7CFB8; }
  .evt .date { flex: 0 0 auto; width: 72px; background: var(--navy); color: #fff; border-radius: 10px; padding: 10px 6px; text-align: center; }
  .evt .date .mo { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); display: block; }
  .evt .date .dy { font-family: var(--display); font-weight: 800; font-size: 20px; color: #fff; display: block; line-height: 1.1; margin-top: 2px; }
  .evt .info { flex: 1; min-width: 0; }
  .evt .info .tag { display: inline-block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); border: 1px solid var(--line); border-radius: 100px; padding: 3px 10px; margin-bottom: 8px; }
  .evt .info h3 { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--navy); margin: 0 0 6px; line-height: 1.3; }
  .evt .info .meta { font-size: 13.5px; color: var(--body); line-height: 1.5; margin: 0 0 4px; }
  .evt .info .summary { font-size: 13.5px; color: var(--body); line-height: 1.55; margin: 6px 0 0; }
  .evt .info .more { display: inline-block; margin-top: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); text-decoration: none; font-weight: 600; }
  .evt .info .more:hover { color: var(--terra-soft); }
  @media (max-width: 560px) { .evt { flex-direction: column; gap: 14px; } .evt .date { display: inline-flex; flex-direction: column; } }

  /* ============= NEWS LIST ============= */
  .news-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 56px; align-items: start; }
  @media (max-width: 760px) { .news-list { grid-template-columns: 1fr; } }
  .news-list .item { padding: 20px 0 26px; border-top: 1px solid var(--line); }
  .news-list .src { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); }
  .news-list .item h3 { font-family: var(--display); font-weight: 700; font-size: 18px; margin: 7px 0 6px; line-height: 1.3; }
  .news-list .item h3 a { color: var(--navy); text-decoration: none; }
  .news-list .item h3 a:hover { color: var(--terracotta); }
  .news-list .item p { font-size: 14.5px; color: var(--body); line-height: 1.6; margin: 0; }

  /* ============= VOLUNTEER APPLICATION (scoped under .volform) ============= */
  .volform { max-width: 820px; margin: 0 auto; --vf-goldd: #8C6B2E; }
  .volform .req-note { font-size: 13.5px; color: var(--body); margin-bottom: 18px; }
  .volform .req-note b { color: var(--vf-goldd); }
  .volform .sec { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px 26px 26px; margin-bottom: 22px; box-shadow: 0 1px 3px rgba(18,42,56,.07); }
  .volform .sec-head { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
  .volform .sec-num { width: 34px; height: 34px; border-radius: 9px; background: var(--navy); color: #fff; font-family: var(--display); font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex: none; }
  .volform .sec-head h2 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.18rem; }
  .volform .hint { color: var(--body); font-size: 14px; margin: -6px 0 16px; }
  .volform .sub { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: .92rem; margin: 18px 0 10px; padding-top: 6px; border-top: 1px solid var(--line); }
  .volform .qlabel { display: block; font-family: var(--display); font-weight: 600; color: var(--navy); font-size: 14px; margin: 16px 0 9px; }
  .volform .field { margin-bottom: 15px; }
  .volform .field .lbl { display: block; font-family: var(--display); font-weight: 600; font-size: 12.5px; color: var(--navy); margin-bottom: 6px; letter-spacing: .2px; }
  .volform .req { color: var(--vf-goldd); }
  .volform input[type=text], .volform input[type=email], .volform input[type=tel], .volform input[type=date], .volform textarea { width: 100%; font: inherit; font-size: 15px; color: var(--ink); padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px; background: #fff; transition: border-color .15s, box-shadow .15s; }
  .volform input::placeholder, .volform textarea::placeholder { color: #a7adb4; }
  .volform input:focus, .volform textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(204,164,90,.18); }
  .volform textarea { min-height: 92px; resize: vertical; line-height: 1.55; }
  .volform .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .volform .opts { display: grid; gap: 9px; margin-top: 2px; }
  .volform .opts.c2 { grid-template-columns: 1fr 1fr; }
  .volform .opts.inline { display: flex; flex-wrap: wrap; gap: 9px; }
  .volform .opt { display: flex; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; font-size: 14px; background: #fff; transition: border-color .15s, background .15s; }
  .volform .opt:hover { border-color: var(--gold); background: var(--paper-warm); }
  .volform .opt input { accent-color: var(--navy); width: 16px; height: 16px; flex: none; cursor: pointer; }
  .volform .opt.inline-pill { padding: 8px 14px; }
  .volform .ack { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; line-height: 1.5; color: var(--ink); }
  .volform .ack:last-of-type { border-bottom: none; }
  .volform .ack input { margin-top: 3px; accent-color: var(--navy); width: 18px; height: 18px; flex: none; cursor: pointer; }
  .volform .submit-row { text-align: center; padding: 14px 0 8px; }
  .volform .btn { background: var(--gold); color: var(--navy); font-family: var(--display); font-weight: 700; font-size: 1.02rem; letter-spacing: .2px; padding: 15px 44px; border: none; border-radius: 100px; cursor: pointer; box-shadow: 0 6px 22px rgba(204,164,90,.28); transition: transform .15s, background .15s; }
  .volform .btn:hover { transform: translateY(-2px); background: #d8b261; }
  .volform .privacy { font-size: 13px; color: var(--body); margin-top: 14px; }
  .volform .success { display: none; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--gold); border-radius: 12px; padding: 30px; text-align: center; box-shadow: 0 6px 22px rgba(18,42,56,.10); }
  .volform .success h2 { font-family: var(--display); color: var(--navy); font-weight: 700; font-size: 1.5rem; margin-bottom: 8px; }
  .volform .success p { color: var(--body); }
  @media (max-width: 560px) { .volform .grid2, .volform .opts.c2 { grid-template-columns: 1fr; } .volform .sec { padding: 20px 18px; } }

  /* ============= SUPPORT / DONATE ============= */
  .support { background: var(--paper-warm); border-top: 1px solid var(--line); }
  .support-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .support-copy .support-lede { color: var(--body); font-size: 17px; max-width: 460px; margin: 16px 0 28px; line-height: 1.6; }
  .support-form { background: #fff; border: 1px solid var(--line); border-radius: 12px; min-height: 360px; padding: 12px; box-shadow: 0 4px 18px rgba(18,42,56,0.05); }
  .support-fallback { height: 100%; min-height: 336px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 32px; }
  .support-fallback strong { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--navy); }
  .support-fallback span { color: var(--body); font-size: 14px; }
  .support-fallback a { color: var(--terracotta); font-weight: 700; font-size: 14px; letter-spacing: 0.4px; text-decoration: none; }
  @media (max-width: 960px) { .support-inner { grid-template-columns: 1fr; gap: 32px; } }

  /* ============= CERTIFIED RESIDENCE DIRECTORY (scoped under .rdir) ============= */
  .rdir { --navy:#122A38; --navy-2:#1E4356; --gold:#CCA45A; --gold-dk:#b78f44; --rd-cream:#FAF5EC; --rd-ink:#1f2a2f; --rd-muted:#5b6770; --rd-line:#e6ddcb; font-family: var(--body-font); color: var(--rd-ink); line-height: 1.6; }
  .rdir h2, .rdir h3, .rdir h4 { font-family: var(--display); }
  .rdir a { color: var(--navy); text-decoration: none; }
  .rdir .searchcard { background:#fff; border:1px solid var(--rd-line); border-radius:14px; box-shadow:0 12px 30px rgba(18,42,56,.10); padding:18px; }
  .rdir .searchrow { display:flex; gap:10px; flex-wrap:wrap; }
  .rdir .searchrow .field { flex:1; min-width:220px; display:flex; align-items:center; gap:10px; background:var(--rd-cream); border:1px solid var(--rd-line); border-radius:8px; padding:0 14px; }
  .rdir .searchrow .field input { border:none; background:none; outline:none; font:inherit; font-size:16px; padding:14px 0; width:100%; color:var(--rd-ink); }
  .rdir .searchrow button { background:var(--navy); color:#fff; border:none; border-radius:8px; font-family:var(--display); font-weight:700; letter-spacing:1px; text-transform:uppercase; font-size:13px; padding:0 30px; cursor:pointer; }
  .rdir .searchrow button:hover { background:var(--navy-2); }
  .rdir .filters { display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
  .rdir .filters select { font:inherit; font-size:13px; color:var(--rd-ink); background:#fff; border:1px solid var(--rd-line); border-radius:7px; padding:9px 12px; cursor:pointer; }
  .rdir .filters .lbl { font-size:12px; color:var(--rd-muted); align-self:center; font-weight:600; letter-spacing:.5px; text-transform:uppercase; }
  .rdir .dir-count { margin: 14px 2px 0; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--rd-muted); }
  .rdir .results-note { font-size: 13.5px; color: var(--rd-muted); margin: 4px 2px 0; }
  .rdir .chips { margin-top:12px; font-size:13px; color:var(--rd-muted); }
  .rdir .chips a { display:inline-block; background:var(--rd-cream); border:1px solid var(--rd-line); border-radius:999px; padding:4px 12px; margin:3px 4px 0 0; color:var(--navy); font-weight:600; cursor:pointer; }
  .rdir .chips a:hover { border-color:var(--gold); }
  .rdir .crisis-inner { background:#fff7e9; border:1px solid #ecd9ad; border-left:4px solid var(--gold); border-radius:8px; padding:12px 16px; font-size:14px; color:#5c4a22; margin-top:16px; }
  .rdir .crisis-inner strong { color:var(--gold-dk); }
  .rdir .directory { margin-top:24px; display:grid; grid-template-columns:minmax(340px,420px) 1fr; gap:24px; align-items:start; }
  .rdir .results-head { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:12px; }
  .rdir .results-head .count { font-family:var(--display); font-weight:700; color:var(--navy); font-size:15px; }
  .rdir .results-head .reset { font-size:13px; color:var(--gold-dk); cursor:pointer; font-weight:600; }
  .rdir .cards { display:flex; flex-direction:column; gap:12px; max-height:620px; overflow-y:auto; padding-right:6px; }
  .rdir .card { background:#fff; border:1px solid var(--rd-line); border-radius:12px; padding:16px 18px; cursor:pointer; transition:border-color .15s,box-shadow .15s; }
  .rdir .card:hover { border-color:var(--gold); box-shadow:0 6px 18px rgba(18,42,56,.08); }
  .rdir .card.active { border-color:var(--navy); box-shadow:0 6px 18px rgba(18,42,56,.16); }
  .rdir .card .name { font-family:var(--display); font-weight:700; font-size:17px; color:var(--navy); }
  .rdir .card .loc { font-size:13px; color:var(--rd-muted); margin:2px 0 10px; }
  .rdir .card .meta { display:flex; flex-wrap:wrap; gap:6px; }
  .rdir .card .tag { font-size:11px; font-weight:600; letter-spacing:.3px; background:var(--rd-cream); border:1px solid var(--rd-line); color:var(--navy); padding:3px 9px; border-radius:999px; }
  .rdir .card .tag.cert { background:var(--navy); color:#fff; border-color:var(--navy); }
  .rdir .card .tag.mat { background:#eaf4ec; border-color:#cfe6d4; color:#2f6b41; }
  .rdir .no-results { grid-column: 1 / -1; display: grid; gap: 8px; background:#fff; border:1px dashed var(--rd-line); border-radius:12px; padding:28px; text-align:center; color:var(--rd-muted); font-size:14px; }
  .rdir .no-results strong { display: block; color: var(--navy); font-family: var(--display); font-size: 18px; }
  .rdir #map { position: relative; z-index: 0; isolation: isolate; height:620px; border-radius:14px; border:1px solid var(--rd-line); box-shadow:0 8px 24px rgba(18,42,56,.10); }
  /* Directory: Peter-style criteria panel (no lat/long) + logo-tile cards */
  .rdir .crit-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px 18px; align-items: end; }
  @media (max-width: 980px) { .rdir .crit-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 620px) { .rdir .crit-grid { grid-template-columns: 1fr 1fr; } }
  .rdir .crit label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rd-muted); margin-bottom: 7px; }
  .rdir .crit input, .rdir .crit select { width: 100%; padding: 11px 12px; border: 1px solid var(--rd-line); border-radius: 8px; background: var(--rd-cream); font-family: var(--body-font); font-size: 14px; color: var(--rd-ink); }
  .rdir .crit-search { width: 100%; padding: 12px 16px; border: 0; border-radius: 100px; background: var(--navy); color: #fff; font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background .15s ease; }
  .rdir .crit-search:hover { background: var(--navy-2); }
  .rdir .dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 26px; }
  @media (max-width: 980px) { .rdir .dir-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 620px) { .rdir .dir-grid { grid-template-columns: 1fr; } }
  .rdir .dcard { display: flex; flex-direction: column; background: #fff; border: 1.5px solid var(--gold); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(18,42,56,0.05); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
  .rdir .dcard:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(18,42,56,0.12); }
  .rdir .dcard.active { border-color: var(--navy); box-shadow: 0 0 0 2px var(--navy), 0 18px 38px rgba(18,42,56,0.16); outline: 0; outline-offset: 0; }
  .rdir .dcard-media { aspect-ratio: 16 / 9; min-height: 0; overflow: hidden; background: #fff; border-bottom: 0; flex: none; }
  .rdir .dcard-media img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .rdir .dcard-media.text { aspect-ratio: 16 / 9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: #fff; }
  .rdir .dcard-media.text::before, .rdir .dcard-media.text::after { content: ""; width: 34px; height: 2px; background: var(--gold); }
  .rdir .dcard-media.text span { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 1.3rem; text-align: center; line-height: 1.3; letter-spacing: .01em; padding: 0 28px; }
  .rdir .dcard-body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; color: var(--rd-ink); background: var(--rd-cream); border-top: 1px solid var(--rd-line); }
  .rdir .dcard .badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
  .rdir .dcard .b-pend { color: var(--gold-dk); font-size: 12px; font-weight: 700; font-family: var(--display); }
  .rdir .dcard h3 { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--navy); line-height: 1.25; min-height: 2.5em; padding: 0; margin: 0; }
  .rdir .dcard .loc { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--rd-muted); margin-top: 5px; }
  .rdir .dcard .serves { font-size: 15px; color: var(--rd-ink); margin-top: 10px; padding: 0; }
  .rdir .dcard .beds { font-size: 14.5px; color: var(--rd-muted); margin-top: 2px; }
  .rdir .dcard .beds strong { color: var(--rd-ink); }
  .rdir .dcard .addr { font-size: 14px; color: var(--rd-ink); margin-top: 12px; }
  .rdir .dcard .phone { font-size: 14.5px; font-weight: 700; color: var(--rd-ink); margin-top: 2px; text-decoration: none; }
  .rdir .dcard .phone:hover { text-decoration: underline; text-underline-offset: 3px; }
  .rdir .dcard .actions { display: flex; align-items: center; gap: 16px; margin-top: auto; padding-top: 16px; }
  .rdir .dcard .callbtn { background: var(--gold); color: var(--navy); font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; border-radius: 100px; padding: 9px 22px; }
  .rdir .dcard .callbtn:hover { background: var(--gold-soft); }
  .rdir .dcard .details { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 14.5px; color: var(--navy); text-decoration: underline; text-underline-offset: 4px; margin: 0; }
  .rdir .dcard .details:hover { color: var(--navy-2); }
  .rdir .leaflet-popup-content { font-family:var(--body-font); font-size:13px; line-height:1.5; margin:10px 12px; }
  .rdir .leaflet-popup-content b { font-family:var(--display); color:var(--navy); }
  .rdir .pin { background:var(--navy); width:22px; height:22px; border-radius:50% 50% 50% 0; transform:rotate(-45deg); border:2px solid var(--gold); box-shadow:0 2px 5px rgba(0,0,0,.3); }
  .rdir .pin.on { background:var(--gold); border-color:var(--navy); }
  .rdir .foot-inner { display:none; background:var(--navy); color:#fff; border-radius:12px; padding:20px 24px; font-size:13px; line-height:1.65; margin-top:28px; }
  .rdir .foot-inner strong { color:var(--gold); }
  @media (max-width:880px){ .rdir .directory{grid-template-columns:1fr;} .rdir .cards{max-height:none;} .rdir #map{height:380px;order:-1;} }

  /* ============= SITEMAP ============= */
  .sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px 28px; }
  @media (max-width: 900px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .sitemap-grid { grid-template-columns: 1fr; } }
  .sitemap-col h3 { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin: 0 0 14px; }
  .sitemap-col ul { list-style: none; padding: 0; margin: 0; }
  .sitemap-col li { margin-bottom: 9px; }
  .sitemap-col a { font-size: 15px; color: var(--navy); text-decoration: none; }
  .sitemap-col a:hover { color: var(--terracotta); }

  /* ============= GRANTS & FUNDING ============= */
  .fund-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media (max-width: 860px) { .fund-grid { grid-template-columns: 1fr; } }
  .fund-feature { display: flex; gap: 32px; align-items: center; background: var(--navy); border-radius: 16px; padding: 34px 38px; margin-bottom: 26px; box-shadow: 0 10px 30px rgba(18,42,56,0.14); }
  .fund-feature .ic { flex: none; width: 64px; height: 64px; border-radius: 14px; background: rgba(204,164,90,0.16); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; font-weight: 600; }
  .fund-feature .body { flex: 1; }
  .fund-feature .label { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 11px; color: var(--gold-soft); margin-bottom: 8px; }
  .fund-feature h3 { font-family: var(--display); font-weight: 700; font-size: 23px; color: #fff; margin: 0 0 8px; line-height: 1.25; letter-spacing: -0.01em; }
  .fund-feature p { font-size: 14.5px; color: #C5D0D7; line-height: 1.55; margin: 0; max-width: 62ch; }
  .fund-feature .acts { flex: none; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
  .fund-feature .acts .open { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; background: var(--gold); color: var(--navy-deep); padding: 13px 26px; border-radius: 100px; text-decoration: none; transition: background .15s ease; white-space: nowrap; }
  .fund-feature .acts .open:hover { background: var(--gold-soft); }
  .fund-feature .acts .dl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); text-decoration: none; font-weight: 600; }
  @media (max-width: 760px) { .fund-feature { flex-direction: column; align-items: flex-start; gap: 20px; padding: 26px 24px; } .fund-feature .acts { flex-direction: row; align-items: center; } }


/* React shell adapters: keep the client mockup visual contract while using real routes and a fixed mobile menu. */
.site-header .header-inner {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}
.site-header .logo-lockup-horizontal {
  width: clamp(240px, 22vw, 300px);
  min-width: 0;
  min-height: 0;
}
.site-header .logo-horizontal {
  display: block;
  width: 100%;
  height: auto;
  max-height: 98px;
  object-fit: contain;
}
.site-header .header-right {
  min-width: 0;
  width: 100%;
}
.site-header .cta-row { width: auto; }
.site-header .mobile-nav-actions { display: none; }
.site-header nav.main-nav {
  width: 100%;
  max-width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  column-gap: 18px;
  row-gap: 2px;
}
.site-header .dropdown {
  width: max-content;
  max-width: min(320px, calc(100vw - 32px));
}
.site-header .nav-item:nth-last-child(-n + 3) > .dropdown {
  left: auto;
  right: 0;
}
.site-header .dropdown a {
  white-space: normal;
  overflow-wrap: anywhere;
}
.mobile-toggle { display: none; }

/* The mockup has the hamburger inside .cta-row; the React shell keeps it beside the logo so the mobile menu can scroll correctly. */
@media (max-width: 1180px) {
  header.site-header { z-index: 5000; }
  body.menu-open header.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  .header-inner { grid-template-columns: 1fr auto; gap: 14px; }
  .site-header .logo-lockup-horizontal { width: min(320px, calc(100vw - 112px)); }
  .site-header .logo-horizontal { width: 100%; height: auto; }
  .site-header .logo-lockup-horizontal,
  .mobile-toggle {
    position: relative;
    z-index: 3;
  }
  .mobile-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: white;
    color: var(--navy);
    justify-self: end;
  }
  .mobile-toggle:hover { border-color: var(--gold); }
  .site-header .desktop-cta-row { display: none; }
  .header-right { display: none; grid-column: 1 / -1; align-items: stretch; }
  .header-right.open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 2;
    height: 100dvh;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: clamp(112px, 16vh, 148px) 24px max(28px, env(safe-area-inset-bottom));
    background: white;
    box-shadow: 0 20px 48px rgba(18, 42, 56, 0.18);
  }
  .site-header .header-right.open {
    max-height: none;
    min-height: 100dvh;
  }
  .header-right.open .mobile-nav-actions,
  .header-right.open nav.main-nav {
    width: min(100%, 480px);
  }
  .header-right.open .mobile-nav-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-self: stretch;
    gap: 8px;
    margin: 0 0 14px;
  }
  .header-right.open .mobile-nav-actions .cta-pill {
    justify-content: flex-start;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    white-space: normal;
    text-align: left;
  }
  .header-right.open nav.main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .header-right.open .dropdown {
    position: static;
    width: 100%;
    max-width: none;
    min-width: 0;
    box-shadow: none;
  }
  .header-right.open .nav-item:not(.open) > .dropdown { display: none; }
  .header-right.open .nav-item.open > .dropdown { display: block; }
}

@media (max-width: 760px) {
  .util-bar { padding: 4px 0; line-height: 1.2; }
  .util-bar .inner { flex-wrap: wrap; justify-content: center; gap: 4px 14px; text-align: center; }
  .util-bar .left { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px; }
  .util-bar .pill { display: inline-flex; align-items: center; margin-right: 0; padding: 2px 8px; line-height: 1.2; }
  .util-bar .right { display: inline-flex; justify-content: center; align-items: center; gap: 14px; }
  .util-bar .right a + a { margin-left: 0; }
  .util-bar .right a + a::before { content: none; margin-right: 0; }
  .header-inner { padding-left: 24px; padding-right: 24px; }
  .header-right.open { padding-top: 112px; }
  .site-header .logo-lockup-horizontal { width: min(260px, calc(100vw - 92px)); }
}

.directory-leaflet-map { position: relative; z-index: 0; isolation: isolate; min-height: 520px; }
.directory-map-marker {
  display: grid;
  place-items: center;
  width: 44px !important;
  height: 44px !important;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  background: var(--navy);
  box-shadow: 0 3px 8px rgba(18, 42, 56, .28);
  color: white;
  transform: rotate(-45deg);
}
.leaflet-marker-icon.directory-map-marker,
.directory-vector-map .directory-map-marker {
  display: grid !important;
  place-items: center;
  text-align: center;
  line-height: 1;
}
.leaflet-marker-icon.directory-map-marker {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}
.leaflet-marker-icon.directory-map-marker::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  background: var(--navy);
  box-shadow: 0 3px 8px rgba(18, 42, 56, .28);
  transform: rotate(-45deg);
}
.directory-map-marker span {
  display: block;
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transform-origin: center;
}
.leaflet-marker-icon.directory-map-marker span { transform: none; }
.directory-vector-map .directory-map-marker span { transform: rotate(45deg); }
.directory-map-marker.active { z-index: 600 !important; border-color: var(--navy); background: var(--gold); color: var(--navy); }
.leaflet-marker-icon.directory-map-marker.active {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.leaflet-marker-icon.directory-map-marker.active::before { border-color: var(--navy); background: var(--gold); }
.directory-vector-map .directory-map-marker { position: absolute; transform: translate(-50%, -100%) rotate(-45deg); }
.newsletter-status { max-width: 520px; margin: 14px auto 0; color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 700; }
.newsletter-status.error { color: #f7c8c8; }

/* Keep legacy app-wide controls from changing the imported mockup pages. */
.site-header .cta-pill { line-height: 1.6; }
.site-header .cta-pill.primary,
.site-header .cta-pill.secondary {
  border: 0;
}
.site-header .nav-trigger,
.site-header .main-nav a {
  min-height: 0;
}
.mockup-page li {
  font-family: var(--display);
}
.mockup-page .page-hero-lede {
  max-width: 720px;
}
.mockup-page input,
.mockup-page select,
.mockup-page button {
  min-width: 0;
  min-height: 0;
  line-height: normal;
}
.mockup-page textarea {
  min-width: 0;
}
.mockup-page .find-search button,
.mockup-page .newsletter-form button {
  font-family: Arial, sans-serif;
}
@media (max-width: 760px) {
  .newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 10px;
  }
  .newsletter-form input {
    grid-column: 1;
    width: 100%;
    min-width: 0;
  }
  .newsletter-form button {
    grid-column: 1;
    width: 100%;
  }
}
.mockup-page .cta-pill {
  min-height: auto;
  line-height: 1.6;
}
.mockup-page .cta-pill.primary,
.mockup-page .cta-pill.secondary {
  border: 0;
}
.mockup-page .partner-logo {
  height: auto;
}
.mockup-page .certproc .step {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 0 30px;
  transform: none;
}
.mockup-page .certproc .rail {
  isolation: isolate;
}
.mockup-page .certproc .rail::before,
.mockup-page .certproc .rail::after {
  z-index: 0;
}
.mockup-page .certproc .card {
  position: relative;
  z-index: 1;
}
.mockup-page .certproc .node {
  z-index: 3;
  box-shadow: 0 0 0 7px #fff, var(--cp-ssm);
}
.mockup-page .news-list {
  margin-top: 0;
}
.mockup-page .stat-label {
  line-height: 1.6;
}
.mockup-page .griev label,
.mockup-page .griev .group-label,
.mockup-page .volform .qlabel,
.mockup-page .volform .field .lbl {
  display: block;
}
.mockup-page .griev .choice { display: inline-flex; }
.mockup-page .griev .ack,
.mockup-page .volform .opt,
.mockup-page .volform .ack {
  display: flex;
}
.mockup-page .certproc .cp-cta .btn,
.mockup-page .volform .btn,
.mockup-page .griev button[type="submit"] {
  text-transform: none;
}
.mockup-page .sitemap-grid {
  margin-top: 0;
}
.mockup-page .sitemap-grid a {
  display: inline;
  align-items: initial;
  gap: normal;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 400;
}
.mockup-page .volform .opt input {
  width: 16px;
  min-width: 0;
  min-height: 0;
  height: 16px;
  line-height: normal;
}
.mockup-page .volform .ack input {
  width: 18px;
  min-width: 0;
  min-height: 0;
  height: 18px;
  line-height: normal;
}
.mockup-page .griev .choice input {
  width: 18px;
  min-width: 0;
  min-height: 0;
  height: 18px;
  line-height: normal;
}
.mockup-page .griev .ack input {
  width: 19px;
  min-width: 0;
  min-height: 0;
  height: 19px;
  line-height: normal;
}
