:root {
  --navy: #062b49;
  --navy-2: #0a3d63;
  --gold: #b08a36;
  --gold-2: #d8b66b;
  --ink: #102033;
  --muted: #5e6a76;
  --bg: #f7f4ee;
  --white: #ffffff;
  --line: rgba(6, 43, 73, 0.12);
  --shadow: 0 24px 70px rgba(6, 43, 73, 0.13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: -0.08em;
  box-shadow: 0 10px 30px rgba(6, 43, 73, 0.17);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.05rem; color: var(--navy); letter-spacing: 0.14em; }
.brand-text small { color: var(--muted); text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.22em; }
.nav-menu { display: flex; align-items: center; gap: 28px; color: var(--navy); font-size: 0.95rem; }
.nav-menu a { opacity: 0.86; }
.nav-menu a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 9px 16px;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--navy); color: white !important; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 182, 107, 0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(6, 43, 73, 0.08), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f8f5ef 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 14% -16% auto auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(176, 138, 54, 0.18);
  border-radius: 44%;
  transform: rotate(24deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 62px;
  align-items: center;
  min-height: 620px;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 16px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  color: var(--navy);
  margin-bottom: 26px;
}
h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  max-width: 660px;
  font-size: 1.18rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 18px 36px rgba(6, 43, 73, 0.22);
}
.btn.secondary {
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
}
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,0.62);
  font-size: 0.88rem;
}
.hero-card { position: relative; }
.identity-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 43, 73, 0.10);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.identity-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: rgba(176, 138, 54, 0.11);
  border-radius: 42px;
  right: -54px;
  bottom: -62px;
  transform: rotate(12deg);
}
.identity-card img {
  width: 100%;
  border-radius: 26px;
  background: white;
  border: 1px solid rgba(6,43,73,0.08);
}
.identity-note {
  margin-top: 20px;
  padding: 20px;
  border-radius: 22px;
  background: var(--navy);
  color: white;
}
.identity-note strong { color: var(--gold-2); }
.identity-note p { margin: 8px 0 0; color: rgba(255,255,255,0.78); }

.stats-band { background: var(--navy); color: white; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stats-grid div {
  padding: 28px 22px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stats-grid strong {
  display: block;
  color: var(--gold-2);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.stats-grid span { color: rgba(255,255,255,0.82); }

.two-col, .contact-grid, .work-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.section-intro h2, .section-heading h2, .impact-card h2, .contact-copy h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
.content-block p, .section-heading p, .work-wrap p, .contact-copy p, .impact-card p {
  color: var(--muted);
  font-size: 1.05rem;
}
.muted { background: var(--bg); }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.focus-card {
  background: white;
  border: 1px solid rgba(6,43,73,0.10);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 250px;
  box-shadow: 0 12px 42px rgba(6,43,73,0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.focus-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(6,43,73,0.10); }
.focus-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(176,138,54,0.12);
  color: var(--gold);
  font-weight: 850;
  margin-bottom: 36px;
}
.focus-card h3, .resource-card h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 10px; }
.focus-card p, .resource-card p { color: var(--muted); margin-bottom: 0; }

.work-list { display: grid; gap: 14px; }
.work-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}
.work-item strong { color: var(--navy); font-size: 1.08rem; }
.work-item p { margin: 7px 0 0; }
.impact-panel {
  background:
    linear-gradient(135deg, rgba(6,43,73,0.96), rgba(10,61,99,0.92)),
    radial-gradient(circle at 25% 15%, rgba(216,182,107,0.2), transparent 36%);
  color: white;
}
.impact-card {
  max-width: 860px;
  padding: 64px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}
.impact-card h2 { color: white; }
.impact-card p { color: rgba(255,255,255,0.76); font-size: 1.18rem; }
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.resource-card {
  display: block;
  padding: 28px;
  min-height: 230px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbf8f1);
}
.resource-card span {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; color: var(--navy); font-weight: 750; margin-bottom: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(6,43,73,0.16);
  border-radius: 15px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: 0.86rem; margin: 12px 0 0; }
.contact-links { display: grid; gap: 10px; margin-top: 24px; }
.contact-links a {
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid rgba(176,138,54,0.36);
  width: fit-content;
}
.footer {
  background: #031d32;
  color: white;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 54px;
  padding-bottom: 40px;
}
.footer p, .footer a, .footer-bottom { color: rgba(255,255,255,0.72); }
.footer a { display: block; margin-top: 8px; }
.footer strong { color: white; }
.footer-brand { margin-bottom: 16px; }
.footer-brand .brand-text strong { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

@media (max-width: 900px) {
  .container { width: min(100% - 28px, 760px); }
  .nav-toggle {
    display: inline-flex;
    background: var(--navy);
    color: white;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
  }
  .nav-menu {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px; }
  .nav-cta { text-align: center; }
  .hero-grid, .two-col, .contact-grid, .work-wrap { grid-template-columns: 1fr; gap: 38px; }
  .hero-grid { min-height: auto; }
  .cards-grid, .resource-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 68px 0; }
  h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .identity-card { padding: 18px; border-radius: 24px; }
  .impact-card { padding: 32px; border-radius: 28px; }
  .footer-bottom { display: grid; }
}
