@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=DM+Serif+Display&display=swap');

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

:root {
  --navy-900: #0d1e35; --navy-800: #1f3864; --navy-700: #264a82;
  --navy-100: #d6e0f0; --navy-50: #eef2f9;
  --gold-700: #996e08; --gold-600: #b8860b; --gold-400: #d4a017;
  --gold-200: #e8cc7a; --gold-100: #f5e9c0; --gold-50: #fdf8ec;
  --ink: #0d1623; --ink-2: #2c3e5a; --muted: #5a6a82;
  --border: #d6dce8; --border-gold: #dfc98a;
  --white: #ffffff; --off-white: #f8f9fc; --cream: #fdf8ec;
}

html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; color: var(--ink); background: var(--white); font-size: 16px; line-height: 1.65; }
h1, h2 { font-family: "DM Serif Display", serif; font-weight: 400; line-height: 1.2; }
h3, h4 { font-family: "DM Sans", sans-serif; font-weight: 600; line-height: 1.3; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 1px 6px rgba(31,56,100,0.06); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; height: 80px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy-800); }
.nav-cta { background: var(--navy-800) !important; color: #fff !important; padding: 9px 22px; border-radius: 5px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--navy-900) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 2; stroke-linecap: round; }
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); z-index: 99; padding: 16px 32px 24px; border-bottom: 1px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-size: 15px; font-weight: 500; color: var(--ink-2); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
@media (max-width: 768px) { .nav-links { display: none; } .hamburger { display: block; } }

/* ── PAGE WRAPPER ── */
.page-body { padding-top: 80px; }

/* ── BUTTONS ── */
.btn-gold { display: inline-block; background: var(--gold-600); color: #fff; font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: 5px; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-gold:hover { background: var(--gold-700); transform: translateY(-1px); }
.btn-outline-navy { display: inline-block; border: 1.5px solid var(--navy-800); color: var(--navy-800); font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 600; padding: 13px 28px; border-radius: 5px; text-decoration: none; transition: background 0.2s; }
.btn-outline-navy:hover { background: var(--navy-50); }
.btn-white { display: inline-block; background: #fff; color: var(--navy-800); font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: 5px; text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.btn-white:hover { background: var(--gold-50); }
.btn-navy { display: inline-block; background: var(--navy-800); color: #fff; font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: 5px; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-navy:hover { background: var(--navy-900); transform: translateY(-1px); }

/* ── GOLD BAR ── */
.gold-bar { background: var(--gold-50); border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); padding: 22px 32px; }
.gold-bar-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.gold-bar-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-2); font-weight: 500; }
.gold-bar-item svg { width: 16px; height: 16px; stroke: var(--gold-600); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 80px 32px; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy-800); }
.section-inner { max-width: 1140px; margin: 0 auto; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 12px; }
.kicker::before { content: ""; display: block; width: 20px; height: 2px; background: var(--gold-400); border-radius: 2px; }
.kicker-light { color: var(--gold-200); }
.kicker-light::before { background: var(--gold-600); }
.section-title { font-family: "DM Serif Display", serif; font-size: clamp(28px, 3vw, 40px); font-weight: 400; color: var(--ink); margin-bottom: 14px; }
.section-title-light { color: #fff; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 520px; line-height: 1.75; margin-bottom: 48px; }
.section-sub-light { color: rgba(255,255,255,0.65); }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 8px 32px rgba(31,56,100,0.10); transform: translateY(-2px); }
.card-icon { width: 46px; height: 46px; border-radius: 9px; background: var(--navy-800); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card-icon svg { width: 22px; height: 22px; stroke: var(--gold-200); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 17px; color: var(--ink); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.stat-cell { background: var(--white); padding: 36px 24px; text-align: center; }
.stat-num { font-family: "DM Serif Display", serif; font-size: 46px; color: var(--navy-800); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── PROCESS ── */
.process-list { display: flex; flex-direction: column; }
.process-item { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: start; }
.process-item:last-child { border-bottom: none; }
.process-num { font-family: "DM Serif Display", serif; font-size: 36px; color: var(--gold-200); line-height: 1; }
.process-content h3 { font-size: 17px; color: #fff; margin-bottom: 8px; }
.process-content p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ── CTA BAND ── */
.cta-band { background: var(--navy-900); padding: 80px 32px; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(184,134,11,0.07); }
.cta-band-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(24px, 3vw, 36px); color: #fff; max-width: 500px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.6); margin-top: 10px; max-width: 440px; line-height: 1.7; }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy-800); padding: 72px 32px; }
.page-hero-inner { max-width: 1140px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(30px, 4vw, 48px); color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75; }
.page-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-200); margin-bottom: 14px; }
.page-kicker::before { content: ""; display: block; width: 20px; height: 2px; background: var(--gold-600); border-radius: 2px; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.prose h2 { font-size: 26px; color: var(--ink); margin-bottom: 14px; }
.prose p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.prose p:last-child { margin-bottom: 0; }

/* ── CHECK LIST ── */
.check-list { list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-2); padding: 12px 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.check-list li:last-child { border-bottom: none; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-50); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-icon svg { width: 11px; height: 11px; stroke: var(--gold-600); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── SERVICES ── */
.service-block { padding: 64px 32px; border-bottom: 1px solid var(--border); }
.service-block:last-of-type { border-bottom: none; }
.service-block-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr; gap: 64px; }
@media (max-width: 700px) { .service-block-inner { grid-template-columns: 1fr; gap: 24px; } }
.service-index { font-family: "DM Serif Display", serif; font-size: 64px; color: var(--navy-100); line-height: 1; margin-bottom: 12px; }
.service-label h3 { font-size: 19px; color: var(--navy-800); font-weight: 600; }
.service-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.service-body h4 { font-size: 11px; font-weight: 700; color: var(--gold-600); margin: 22px 0 10px; text-transform: uppercase; letter-spacing: .1em; }
.pill-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { background: var(--navy-50); color: var(--navy-800); font-size: 12px; font-weight: 600; padding: 5px 13px; border-radius: 20px; border: 1px solid var(--navy-100); }

/* ── MISSION ── */
.mission-pull { background: var(--navy-800); padding: 72px 32px; }
.mission-pull-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.mission-pull blockquote { font-family: "DM Serif Display", serif; font-size: clamp(20px, 2.8vw, 30px); color: #fff; line-height: 1.45; }
.mission-pull cite { display: block; font-family: "DM Sans", sans-serif; font-size: 12px; font-style: normal; color: var(--gold-200); letter-spacing: .1em; text-transform: uppercase; margin-top: 24px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.value-card { padding: 28px 24px; border: 1px solid var(--border); border-top: 3px solid var(--gold-600); border-radius: 0 0 10px 10px; background: var(--white); }
.value-card h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── CONTACT ── */
.contact-wrap { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 5px; font-family: "DM Sans", sans-serif; font-size: 15px; color: var(--ink); background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy-800); box-shadow: 0 0 0 3px rgba(31,56,100,0.1); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.btn-submit { width: 100%; background: var(--navy-800); color: #fff; font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 600; padding: 14px; border: none; border-radius: 5px; cursor: pointer; margin-top: 8px; transition: background 0.2s; }
.btn-submit:hover { background: var(--navy-900); }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.success-msg { display: none; background: var(--gold-50); border: 1px solid var(--border-gold); border-radius: 12px; padding: 40px; text-align: center; }
.success-msg h3 { font-size: 22px; color: var(--navy-800); margin-bottom: 8px; font-family: "DM Serif Display", serif; }
.success-msg p { font-size: 15px; color: var(--muted); }

/* ── FOOTER ── */
footer { background: var(--navy-900); padding: 52px 32px 32px; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-logo-wrap img { height: 48px; width: auto; background: white; padding: 6px 12px; border-radius: 6px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 10px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-200); }
.footer-bottom { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ── HOME HERO ── */
.hero { background: var(--white); border-bottom: 1px solid var(--border); padding: 72px 32px 80px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: var(--cream); clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); z-index: 0; }
.hero-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } .hero::before { display: none; } .hero-logo-panel { display: none; } }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 22px; }
.hero-eyebrow::before { content: ""; display: block; width: 28px; height: 2px; background: var(--gold-600); border-radius: 2px; }
.hero h1 { font-size: clamp(34px, 4.5vw, 54px); color: var(--navy-800); margin-bottom: 22px; letter-spacing: -0.01em; }
.hero h1 em { font-style: italic; color: var(--gold-600); }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 38px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-logo-panel { display: flex; align-items: center; justify-content: center; padding: 40px; }
.hero-logo-panel img { width: 100%; max-width: 420px; height: auto; }


/* ── ORG CHART ── */
.compact-section { padding-top: 64px; padding-bottom: 64px; }
.org-chart { margin-top: 26px; margin-bottom: 28px; text-align: center; }
.org-node { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold-600); border-radius: 8px; padding: 14px 16px; box-shadow: 0 4px 14px rgba(31,56,100,0.06); }
.org-node strong { display: block; font-size: 13px; color: var(--navy-800); margin-bottom: 4px; }
.org-node span { display: block; font-size: 12px; color: var(--muted); }
.org-ceo { max-width: 300px; margin: 0 auto; }
.org-line { width: 2px; height: 28px; background: var(--border-gold); margin: 0 auto; }
.org-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.staff-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; }
.staff-summary p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.staff-summary strong { color: var(--ink-2); }
@media (max-width: 900px) { .org-grid { grid-template-columns: repeat(2, 1fr); } .staff-summary { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .org-grid { grid-template-columns: 1fr; } }
