:root {
      --navy: #082f63;
      --navy-dark: #051f42;
      --gold: #c9a14a;
      --light-blue: #eef4f8;
      --light-gray: #f6f7f9;
      --medium-gray: #6b7280;
      --text: #1f2937;
      --white: #ffffff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      line-height: 1.6;
      background: var(--white);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, 92%);
      margin: 0 auto;
    }

    /* Header */
    .site-header {
      background: var(--white);
      border-bottom: 1px solid #e5e7eb;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--navy);
      font-weight: 700;
      letter-spacing: 1px;
    }

    .logo-mark {
      width: 4px;
      height: 42px;
      background: var(--gold);
    }

    .logo-main {
      font-size: 32px;
      line-height: 1;
      font-family: Georgia, 'Times New Roman', serif;
    }

    .logo-sub {
      font-size: 11px;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 4px;
    }

    .nav-menu {
      display: flex;
      gap: 28px;
      list-style: none;
      font-size: 14px;
      font-weight: 600;
      color: var(--navy-dark);
    }

    .nav-menu a:hover {
      color: var(--gold);
    }

    .btn {
      display: inline-block;
      padding: 13px 24px;
      border-radius: 3px;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: .3px;
      transition: .2s ease;
    }

    .btn-primary {
      background: var(--navy);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--navy-dark);
    }

    .btn-gold {
      background: var(--gold);
      color: var(--white);
    }

    .btn-outline {
      border: 2px solid var(--navy);
      color: var(--navy);
      background: transparent;
    }

    /* Shared Sections */
    section {
      padding: 72px 0;
    }

    .section-light {
      background: var(--light-gray);
    }

    .section-blue {
      background: var(--navy);
      color: var(--white);
    }

    .eyebrow {
      color: var(--gold);
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 2px;
      font-size: 13px;
      margin-bottom: 10px;
    }

    h1, h2, h3 {
      color: var(--navy-dark);
      line-height: 1.15;
      font-family: Georgia, 'Times New Roman', serif;
    }

    .section-blue h2,
    .section-blue h3 {
      color: var(--white);
    }

    h1 {
      font-size: clamp(42px, 6vw, 68px);
      margin-bottom: 22px;
    }

    h2 {
      font-size: clamp(30px, 4vw, 44px);
      text-align: center;
      margin-bottom: 16px;
    }

    h3 {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .section-intro {
      max-width: 780px;
      text-align: center;
      margin: 0 auto 42px;
      color: var(--medium-gray);
      font-size: 18px;
    }

    .gold-line {
      width: 70px;
      height: 3px;
      background: var(--gold);
      margin: 16px auto 36px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }

    .card {
      background: var(--white);
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 25px rgba(8, 47, 99, .06);
    }

    .card h3 {
      font-size: 24px;
    }

    .icon-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 34px;
      margin-bottom: 22px;
    }

    ul.check-list {
      list-style: none;
      margin-top: 18px;
    }

    ul.check-list li {
      margin-bottom: 10px;
      padding-left: 28px;
      position: relative;
    }

    ul.check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 700;
    }

    .hero {
      position: relative;
      background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 48%, rgba(238,244,248,.75) 100%), url('../images/image1.jpg') center right/cover;
      padding: 110px 0 90px;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 10px;
      background: linear-gradient(90deg, var(--navy), var(--gold));
    }

    .hero-content {
      max-width: 700px;
    }

    .hero p {
      font-size: 20px;
      margin-bottom: 28px;
      color: #374151;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .phase-card {
      position: relative;
      text-align: left;
    }

    .phase-number {
      color: var(--gold);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .statement-band {
      background: var(--navy);
      color: var(--white);
      padding: 50px 0;
    }

    .statement-band p {
      max-width: 920px;
      margin: 0 auto;
      font-size: 25px;
      text-align: center;
      line-height: 1.4;
    }

    .statement-band strong {
      color: var(--gold);
    }

    .cta-band {
      background: linear-gradient(90deg, rgba(8,47,99,.93), rgba(8,47,99,.72)), url('../images/image2.jpg') center/cover;
      color: var(--white);
      padding: 62px 0;
    }

    .cta-inner {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      align-items: center;
    }

    .cta-inner h2 {
      color: var(--white);
      text-align: left;
      margin-bottom: 8px;
    }

    /* Page hero variants */
    .page-hero {
      padding: 86px 0;
      background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.8)), url('../images/image3.jpg') center/cover;
    }

    .page-hero.partners {
      background-image: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.8)), url('../images/image4.jpg');
    }

    .page-hero.organizations {
      background-image: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.8)), url('../images/image5.jpg');
    }

    .page-hero.about {
      background-image: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.82)), url('../images/image6.jpg');
    }

    .page-hero.contact {
      background-image: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.85)), url('../images/image7.jpg');
    }

    .page-hero-content {
      max-width: 720px;
    }

    .page-hero h1 {
      font-size: clamp(38px, 5vw, 58px);
    }

    .callout-box {
      background: var(--light-blue);
      border-left: 5px solid var(--gold);
      padding: 34px;
      border-radius: 8px;
    }

    .outcome-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      text-align: center;
    }

    .outcome-item {
      padding: 24px 14px;
      background: var(--white);
      border-radius: 10px;
      border: 1px solid #e5e7eb;
    }

    .outcome-item .mini-icon {
      font-size: 30px;
      color: var(--gold);
      margin-bottom: 10px;
    }

    /* Contact */
    .contact-wrap {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 40px;
      align-items: start;
    }

    .contact-list {
      list-style: none;
      margin-top: 20px;
    }

    .contact-list li {
      margin-bottom: 14px;
      font-weight: 600;
    }

    form {
      background: var(--white);
      padding: 32px;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(8, 47, 99, .06);
    }

    input, textarea {
      width: 100%;
      padding: 14px;
      border: 1px solid #d1d5db;
      border-radius: 4px;
      margin-bottom: 16px;
      font: inherit;
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    .site-footer {
      background: var(--navy-dark);
      color: var(--white);
      padding: 36px 0;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      align-items: center;
      flex-wrap: wrap;
      font-size: 14px;
    }

    .footer-inner a {
      color: var(--white);
      text-decoration: underline;
    }

    @media (max-width: 900px) {
      .nav-wrap,
      .cta-inner,
      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .nav-menu {
        flex-wrap: wrap;
        gap: 14px;
      }

      .grid-2,
      .grid-3,
      .grid-4,
      .contact-wrap,
      .outcome-row {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 70px 0;
      }
    }
  

/* Multi-page refinements */
.site-header .nav-menu a.active {
  color: var(--gold);
}

.contact-centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-centered .gold-line {
  margin-left: auto;
  margin-right: auto;
}

.contact-centered .contact-list {
  text-align: center;
  margin-top: 26px;
}

.contact-centered .contact-list li {
  font-size: 18px;
}

.contact-centered .contact-list a {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-centered {
    max-width: 92%;
  }
}
