:root {
  --navy: #0b3b7a;
  --navy-dark: #072a56;
  --blue-steel: #e9eff8;
  --gold: #d49b27;
  --gold-soft: #f5ead0;
  --ivory: #fcfaf5;
  --paper: #ffffff;
  --mist: #f5f7fb;
  --ink: #18253f;
  --muted: #56647b;
  --line: rgba(11, 59, 122, 0.12);
  --shadow: 0 24px 60px rgba(7, 42, 86, 0.12);
  --radius-lg: 30px;
  --radius-md: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212, 155, 39, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(11, 59, 122, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, var(--ivory) 32%, #f8f8fa 100%);
  line-height: 1.65;
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 92px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f9f6ef);
  padding: 6px;
  box-shadow: 0 10px 28px rgba(7, 42, 86, 0.1);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy-dark);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-button {
  padding: 10px 16px;
  background: var(--navy);
  color: #fff !important;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(7,42,86,0.18);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 999px;
}

/* GENERAL */

.section-pad {
  padding: 90px clamp(18px, 5vw, 64px);
}

/* HERO */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 740px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 70px -40px auto auto;
  width: min(50vw, 560px);
  height: 560px;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 45%, rgba(212, 155, 39, 0.18), transparent 38%),
    radial-gradient(circle at 50% 50%, rgba(11, 59, 122, 0.09), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(233,239,248,0.9));
  border-radius: 50%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--navy-dark);
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 780px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  color: #fff;
  box-shadow: 0 16px 30px rgba(7,42,86,0.22);
}

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

.button.secondary {
  background: rgba(255,255,255,0.85);
  color: var(--navy-dark);
  border: 1px solid var(--line);
}

/* CARDS */

.hero-showcase {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.logo-panel,
.metric-card,
.program-card,
.contact-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(7,42,86,0.07);
}

.logo-panel {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,247,239,0.96));
}

.logo-panel img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.hero-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  color: #fff;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto auto -110px -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(212,155,39,0.35), transparent 60%);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent, rgba(255,255,255,0.06));
}

.hero-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.14;
}

/* METRICS */

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 0;
}

.metric-card {
  padding: 28px;
}

.metric-card span {
  display: block;
  color: var(--navy);
  font-size: 3rem;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 1;
}

.metric-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

/* MISSION */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
}

.rich-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* STATEMENT */

.statement {
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: "";
  position: absolute;
  inset: -40px auto auto -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212,155,39,0.22), transparent 60%);
}

.statement h2 {
  position: relative;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.statement p {
  position: relative;
  max-width: 740px;
  margin: 22px auto 0;
  color: rgba(255,255,255,0.83);
  font-size: 1.16rem;
}

/* PROGRAMS */

.section-heading {
  max-width: var(--max);
  margin: 0 auto 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.program-card {
  min-height: 240px;
  padding: 28px;
}

.program-card p {
  color: var(--muted);
}

.highlight-card {
  background: linear-gradient(180deg, #fffdf9, var(--gold-soft));
  border-color: rgba(212,155,39,0.3);
}

/* PARTNER */

.partner-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(233,239,248,0.82));
  border: 1px solid var(--line);
  border-radius: 34px;
}

.partner-content p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.partner-list {
  display: grid;
  gap: 12px;
}

.partner-list div {
  padding: 18px 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  color: var(--navy-dark);
}

.partner-contact-button {
  margin-top: 16px;
}

/* CONTACT */

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
}

.contact-card p {
  color: var(--muted);
  font-size: 1.03rem;
}

.contact-card a {
  color: var(--navy);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 900;
  color: var(--navy-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(11,59,122,0.16);
  border-radius: 14px;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(212,155,39,0.23);
  border-color: var(--gold);
}

.form-note {
  margin: 0;
  font-size: 0.9rem !important;
  color: var(--muted);
}

/* FOOTER */

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255,255,255,0.78);
  background: linear-gradient(180deg, var(--navy-dark), #061d3b);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

/* TABLET AND PHONE NAV */

@media (max-width: 960px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

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

  .hero,
  .split,
  .partner-band,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    inset: auto 50% 120px auto;
    transform: translateX(40%);
    width: 74vw;
    height: 380px;
  }

  .intro-grid,
  .program-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-band,
  .statement {
    border-radius: 26px;
  }
}

/* MOBILE ONLY */

@media (max-width: 760px) {
  .site-header {
    padding: 10px 14px;
    min-height: 78px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
    max-width: calc(100% - 54px);
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    max-width: 48px;
    object-fit: contain;
    padding: 4px;
    border-radius: 13px;
  }

  .brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 175px;
  }

  .brand-title {
    font-size: 0.98rem;
    line-height: 1.08;
  }

  .brand-tag {
    font-size: 0.68rem;
    line-height: 1.18;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    margin-left: auto;
  }

  .nav-toggle span:not(.sr-only) {
    width: 30px;
    height: 3px;
    margin: 3px auto;
    background: var(--navy-dark);
  }

  .site-nav {
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
  }

  .section-pad {
    padding: 62px 18px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    padding-top: 54px;
    overflow: hidden;
  }

  .hero-content,
  .hero-showcase {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.65;
    letter-spacing: 0.15em;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
    line-height: 1;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.25rem);
  }

  .hero-copy {
    font-size: 1.03rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .logo-panel {
    width: 100%;
    max-width: 100%;
    padding: 22px;
    margin-top: 4px;
  }

  .logo-panel img {
    width: 100%;
    max-width: 310px;
    height: auto;
    margin: 0 auto;
  }

  .hero-card {
    min-height: 152px;
    padding: 22px;
  }

  .hero-card p {
    font-size: 1.55rem;
  }

  .intro-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .program-card {
    padding: 24px;
  }

  .metric-card span {
    font-size: 2.65rem;
  }

  .split {
    gap: 26px;
  }

  .statement {
    border-radius: 24px;
  }

  .partner-band {
    padding: 34px 22px;
  }

  .partner-list div {
    border-radius: 18px;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* VERY SMALL PHONES */

@media (max-width: 390px) {
  .site-header {
    padding: 9px 12px;
    min-height: 74px;
  }

  .brand {
    gap: 8px;
    max-width: calc(100% - 50px);
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    max-width: 44px;
  }

  .brand-copy {
    max-width: 145px;
  }

  .brand-title {
    font-size: 0.88rem;
  }

  .brand-tag {
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 27px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .section-pad {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* More readable mobile program grid */
@media (max-width: 760px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .program-card {
    padding: 18px 14px;
    min-height: 170px;
  }

  .program-card h3 {
    font-size: 1rem;
    line-height: 1.15;
  }

  .program-card p {
    font-size: 0.82rem;
    line-height: 1.4;
  }
}
}