:root {
      --ink: #17313b;
      --muted: #5d7077;
      --brand: #173f4f;
      --brand-2: #2c6674;
      --accent: #dba85e;
      --cream: #fbf7ef;
      --paper: #ffffff;
      --soft: #edf5f4;
      --line: #dce7e6;
      --shadow: 0 18px 45px rgba(23, 49, 59, 0.10);
      --radius: 22px;
      --max: 1120px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Segoe UI", Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.65;
    }
    a { color: inherit; }
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      background: var(--paper);
      color: var(--brand);
      padding: 10px 14px;
      z-index: 1000;
    }
    .skip-link:focus { left: 12px; top: 12px; }

    .site-header {
      background: rgba(255,255,255,0.94);
      border-bottom: 1px solid var(--line);
    }
    .header-inner,
    .section-inner,
    .footer-inner {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 18px 0;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      text-decoration: none;
    }
    .brand-mark {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: var(--brand);
      color: white;
      flex: 0 0 auto;
    }
    .brand-mark svg {
      width: 29px;
      height: 29px;
      fill: currentColor;
    }
    .brand-name {
      display: block;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.01em;
    }
    .brand-subtitle {
      display: block;
      margin-top: 1px;
      color: var(--muted);
      font-size: 0.82rem;
    }
    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--soft);
      color: var(--brand);
      font-size: 0.82rem;
      font-weight: 700;
      white-space: nowrap;
    }
    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 86% 18%, rgba(219,168,94,0.24), transparent 23rem),
        linear-gradient(145deg, #173f4f 0%, #245867 56%, #2c6674 100%);
      color: white;
    }
    .hero::after {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -110px;
      bottom: -130px;
      border-radius: 50%;
      border: 52px solid rgba(255,255,255,0.06);
    }
    .hero-inner {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
      padding: 92px 0 86px;
      position: relative;
      z-index: 1;
    }
    .eyebrow {
      display: inline-block;
      margin-bottom: 16px;
      color: #f3d7a8;
      font-size: 0.83rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      max-width: 850px;
      margin-bottom: 20px;
      font-size: clamp(2.55rem, 7vw, 5.25rem);
      line-height: 0.99;
      letter-spacing: -0.045em;
    }
    .hero-lead {
      max-width: 760px;
      margin-bottom: 30px;
      color: rgba(255,255,255,0.9);
      font-size: clamp(1.05rem, 2vw, 1.28rem);
    }
    .hero-note {
      display: inline-block;
      padding: 10px 14px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.94);
      font-size: 0.9rem;
    }

    section { padding: 78px 0; }
    .intro { background: var(--paper); }
    .section-label {
      margin-bottom: 10px;
      color: var(--brand-2);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    h2 {
      margin-bottom: 18px;
      font-size: clamp(1.85rem, 4vw, 3rem);
      line-height: 1.1;
      letter-spacing: -0.025em;
    }
    .intro-copy {
      max-width: 860px;
      color: var(--muted);
      font-size: 1.12rem;
    }
    .mission-box {
      margin-top: 32px;
      padding: 28px 30px;
      border-left: 5px solid var(--accent);
      border-radius: 0 var(--radius) var(--radius) 0;
      background: var(--soft);
      box-shadow: var(--shadow);
    }
    .mission-box strong {
      display: block;
      margin-bottom: 7px;
      color: var(--brand);
      font-size: 0.83rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }
    .mission-box p {
      margin-bottom: 0;
      font-size: 1.25rem;
      font-weight: 650;
      line-height: 1.5;
    }

    .programs { background: var(--cream); }
    .programs-intro {
      max-width: 760px;
      margin-bottom: 34px;
      color: var(--muted);
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .card {
      min-height: 100%;
      padding: 30px 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 10px 30px rgba(23,49,59,0.06);
    }
    .card-number {
      display: inline-grid;
      width: 42px;
      height: 42px;
      margin-bottom: 20px;
      place-items: center;
      border-radius: 12px;
      background: var(--soft);
      color: var(--brand);
      font-weight: 850;
    }
    .card h3 {
      margin-bottom: 10px;
      font-size: 1.28rem;
      line-height: 1.25;
    }
    .card p { margin-bottom: 0; color: var(--muted); }

    .community { background: var(--paper); }
    .community-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 58px;
      align-items: center;
    }
    .community-callout {
      padding: 34px;
      border-radius: var(--radius);
      background: var(--brand);
      color: white;
      box-shadow: var(--shadow);
    }
    .community-callout .big-line {
      display: block;
      margin-bottom: 13px;
      color: #f3d7a8;
      font-size: clamp(1.7rem, 4vw, 2.7rem);
      font-weight: 850;
      line-height: 1.05;
      letter-spacing: -0.03em;
    }
    .community-callout p { margin-bottom: 0; color: rgba(255,255,255,0.88); }
    .benefits {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .benefits li {
      position: relative;
      margin: 0 0 15px;
      padding-left: 30px;
      color: var(--muted);
    }
    .benefits li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: -1px;
      color: var(--brand-2);
      font-weight: 900;
    }

    .coming-soon {
      background:
        linear-gradient(rgba(251,247,239,0.88), rgba(251,247,239,0.88)),
        radial-gradient(circle at 20% 30%, rgba(44,102,116,0.12), transparent 18rem);
    }
    .soon-box {
      padding: 46px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      text-align: center;
      box-shadow: var(--shadow);
    }
    .soon-box h2 { margin-bottom: 14px; }
    .soon-box p {
      max-width: 700px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 1.06rem;
    }

    footer {
      padding: 34px 0 46px;
      background: #102d37;
      color: rgba(255,255,255,0.74);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: flex-start;
    }
    .footer-name { color: white; font-weight: 800; }
    .footer-meta { font-size: 0.86rem; text-align: right; }

    @media (max-width: 840px) {
      .cards,
      .community-grid { grid-template-columns: 1fr; }
      .community-grid { gap: 30px; }
      .header-inner { align-items: flex-start; }
      .status-pill { display: none; }
    }

    @media (max-width: 580px) {
      .header-inner,
      .section-inner,
      .footer-inner,
      .hero-inner { width: min(calc(100% - 28px), var(--max)); }
      .hero-inner { padding: 70px 0 66px; }
      section { padding: 60px 0; }
      .mission-box,
      .card,
      .community-callout,
      .soon-box { padding: 24px; }
      .footer-inner { flex-direction: column; }
      .footer-meta { text-align: left; }
    }
