:root {
  --navy: #092a55;
  --navy-2: #143e70;
  --blue: #426f9f;
  --blue-soft: #eef4fa;
  --gold: #d1a044;
  --cream: #fbfaf6;
  --white: #ffffff;
  --text: #243041;
  --muted: #667085;
  --border: #e5e2da;
  --shadow: 0 22px 55px rgba(9, 42, 85, 0.10);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251,250,246,0.94);
  border-bottom: 1px solid rgba(229,226,218,0.92);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  text-decoration: none;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .09em;
}

nav { display: flex; gap: 24px; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--muted); font-size: .9rem; font-weight: 700; }
nav a:hover { color: var(--navy); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 86px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 16%, rgba(255,255,255,.10), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(209,160,68,.18), transparent 28%),
    linear-gradient(135deg, #071f42 0%, #0f3766 54%, #345c82 100%);
}

.stars {
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image:
    radial-gradient(circle, #fff 1px, transparent 1px),
    radial-gradient(circle, #fff 1px, transparent 1px),
    radial-gradient(circle, #f7d890 1px, transparent 1px);
  background-size: 96px 96px, 138px 138px, 176px 176px;
  background-position: 15px 25px, 60px 78px, 108px 8px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow, .section-kicker, .small-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
  font-weight: 800;
}

.eyebrow { color: #d7e2ef; }

.hero h1, .section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.08;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  line-height: .96;
  letter-spacing: -.035em;
}

.glory {
  margin: 18px 0 0;
  color: #f2d79d;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.18rem;
}

.lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: #e8eef5;
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--white); color: var(--navy); }
.button.secondary { color: var(--white); border: 1px solid rgba(255,255,255,.65); background: rgba(255,255,255,.06); }
.button.dark { margin-top: 12px; background: var(--navy); color: var(--white); }

.logo-card {
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}

.logo-card img { width: 100%; border-radius: 20px; }

.section { padding: 92px 0; }
.section-kicker { color: var(--blue); }
.section h2 { font-size: clamp(2.2rem, 4vw, 3.55rem); }
.section-intro { max-width: 730px; color: var(--muted); margin: 20px 0 40px; }

.mission-section { background: var(--white); border-bottom: 1px solid var(--border); }

.mission-grid, .origin-grid, .sister-grid, .current-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.large-copy {
  margin-top: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

blockquote {
  margin: 30px 0 0;
  padding: 24px 26px;
  border-left: 4px solid var(--gold);
  background: var(--blue-soft);
  border-radius: 0 16px 16px 0;
}

blockquote p {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

blockquote cite {
  color: var(--blue);
  font-style: normal;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pillars-section { background: var(--cream); }

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

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #f8f1df;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 800;
}

.pillar-card h3, .current-card h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.pillar-card p { margin-bottom: 0; color: #4e596a; }

.current-section {
  background: linear-gradient(135deg, #eef4fa 0%, #f8f3e8 100%);
  border-top: 1px solid #dfe5ea;
  border-bottom: 1px solid #e3dfd6;
}

.current-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.small-label { color: var(--gold); }
.origin-section { background: var(--white); }
.origin-grid p:first-child { margin-top: 0; }
.growing-section { background: var(--cream); }

.growing-card {
  padding: 56px;
  text-align: center;
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(209,160,68,.22), transparent 28%),
    linear-gradient(135deg, #08264d, #123f71);
  box-shadow: 0 26px 60px rgba(9,42,85,.16);
}

.growing-card .section-kicker { color: #d9e3ed; }
.growing-card h2 { color: var(--white); }

.growing-card > p {
  max-width: 780px;
  margin: 20px auto 0;
  color: #e5edf4;
}

.mini-star { display: inline-block; margin-bottom: 8px; color: var(--gold); font-size: 1.2rem; }

.future-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

.future-grid div {
  padding: 20px;
  border-radius: 17px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.future-grid strong { display: block; margin-bottom: 5px; color: #f4d99e; }
.future-grid span { color: #edf2f7; font-size: .93rem; }
.coming-note { color: #f4d99e !important; font-weight: 800; }

.sister-section { background: var(--white); border-bottom: 1px solid var(--border); }
.connect-section { padding-top: 72px; }

.connect-card {
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f1f5fa, #f8f0de);
  border: 1px solid #e2e4e5;
}

.connect-card p { max-width: 700px; margin-bottom: 0; }

footer {
  margin-top: 6px;
  padding: 50px 0;
  background: var(--navy);
  color: #dce5ef;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
}

footer strong { color: var(--white); }
footer p { margin: 6px 0; font-size: .9rem; }
footer a { color: var(--white); text-decoration: none; }
footer a:hover { text-decoration: underline; }

.footer-glory {
  color: #f1d69a;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.footer-right { max-width: 580px; text-align: right; }
.legal-note { margin-top: 16px; color: #bfcbd9; font-size: .78rem; }

@media (max-width: 840px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; padding: 17px 0; }
  .hero-grid, .mission-grid, .origin-grid, .sister-grid, .current-grid, .pillar-grid { grid-template-columns: 1fr; }
  .hero-grid, .mission-grid, .origin-grid, .sister-grid, .current-grid { gap: 38px; }
  .hero { padding: 66px 0 70px; }
  .section { padding: 68px 0; }
  .future-grid { grid-template-columns: 1fr; }
  .connect-card, .footer-wrap { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1120px); }
  nav { gap: 14px; }
  .hero h1 { font-size: 3.15rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .pillar-card, .current-card { padding: 26px; }
  .growing-card { padding: 38px 24px; }
  .connect-card { padding: 36px 26px; }
}
