:root {
  --navy: #092547;
  --navy-deep: #061a32;
  --blue: #125fa9;
  --orange: #ee7f22;
  --ivory: #f5f1e8;
  --paper: #fffdf8;
  --ink: #12253b;
  --muted: #667383;
  --line: rgba(9, 37, 71, 0.16);
  --white-line: rgba(255, 255, 255, 0.16);
  --display: "Instrument Serif", Georgia, serif;
  --body: "DM Sans", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(6, 26, 50, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { color: var(--navy); font-family: var(--display); font-weight: 400; letter-spacing: -0.035em; line-height: 0.98; }
h1 { margin-bottom: 30px; font-size: clamp(4.2rem, 8vw, 8.6rem); }
h2 { margin-bottom: 24px; font-size: clamp(3.2rem, 5.7vw, 6.2rem); }
h1 em, h2 em { color: var(--orange); font-weight: 400; }

.container { width: min(100% - 48px, 1240px); margin-inline: auto; }
.section { padding: 140px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 16px; color: #fff; background: var(--orange); transform: translateY(-150%); transition: transform 180ms ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; color: var(--blue); font-size: 0.71rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: #9fc5e9; }
.btn { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 38px; border: 1px solid transparent; padding: 14px 22px; font-size: 0.84rem; font-weight: 700; transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--orange); box-shadow: 0 14px 28px rgba(238, 127, 34, 0.2); }
.btn-primary:hover { background: #d96c12; box-shadow: 0 17px 32px rgba(238, 127, 34, 0.27); }
.btn-dark { color: #fff; background: var(--navy); }
.btn-dark:hover { background: var(--blue); }

.site-header { position: absolute; z-index: 20; top: 0; right: 0; left: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.nav-wrap { display: flex; min-height: 92px; align-items: center; justify-content: space-between; }
.brand { display: block; width: 196px; padding: 7px 11px; background: #fff; }
.brand img { width: 100%; height: 48px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 34px; color: rgba(255, 255, 255, 0.78); font-size: 0.78rem; font-weight: 600; }
.nav a { transition: color 180ms ease; }
.nav a:hover { color: #fff; }
.nav-cta { display: inline-flex; min-height: 43px; align-items: center; gap: 22px; border-left: 1px solid rgba(255, 255, 255, 0.24); padding-left: 34px; color: #fff; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; padding: 12px; color: #fff; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }

.hero { position: relative; overflow: hidden; padding: 170px 0 0; color: #fff; background: var(--navy); }
.hero::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 76px 76px; content: ""; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
.hero-orbit { position: absolute; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; pointer-events: none; }
.orbit-one { top: 18%; right: -14%; width: 58vw; height: 58vw; }
.orbit-two { top: 40%; right: 2%; width: 29vw; height: 29vw; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr); gap: 80px; align-items: end; }
.hero-copy { padding: 58px 0 90px; }
.hero h1 { max-width: 950px; color: #fff; }
.hero-intro { max-width: 650px; margin-bottom: 40px; color: #b8c8d8; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.text-button { display: inline-flex; align-items: center; gap: 18px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.34); color: #fff; font-size: 0.85rem; font-weight: 600; }
.hero-panel { position: relative; min-height: 510px; padding: 26px; overflow: hidden; color: #fff; background: var(--orange); box-shadow: var(--shadow); }
.hero-panel::after { position: absolute; right: -70px; bottom: -100px; width: 310px; height: 310px; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 50%; content: ""; }
.panel-topline { display: flex; position: relative; z-index: 1; justify-content: space-between; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.monogram { position: absolute; top: 43%; left: 50%; color: rgba(255,255,255,.9); font-family: var(--display); font-size: 10rem; line-height: 1; letter-spacing: -0.25em; transform: translate(-55%, -50%); }
.monogram span { color: rgba(9, 37, 71, 0.82); }
.panel-copy { position: absolute; z-index: 1; right: 26px; bottom: 28px; left: 26px; }
.panel-copy p { margin-bottom: 12px; font-family: var(--display); font-size: 2.1rem; line-height: 1.05; }
.panel-copy span { font-size: 0.68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.trust-strip { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--white-line); }
.trust-strip > div { display: grid; grid-template-columns: 38px 1fr; padding: 30px 34px; border-right: 1px solid var(--white-line); }
.trust-strip > div:first-child { border-left: 1px solid var(--white-line); }
.trust-strip span { grid-row: 1 / 3; color: var(--orange); font-family: var(--display); font-size: 1.3rem; }
.trust-strip strong { font-family: var(--display); font-size: 1.3rem; font-weight: 400; }
.trust-strip small { color: #8499ae; font-size: .72rem; }

.editorial-grid { display: grid; grid-template-columns: 90px minmax(0, 1.2fr) minmax(280px, .8fr); gap: 55px; align-items: start; }
.section-marker { color: var(--orange); font-family: var(--display); font-size: 1.2rem; }
.section-copy { padding-top: 58px; }
.section-copy p { color: var(--muted); }
.section-copy .lead { margin-bottom: 24px; color: var(--ink); font-size: 1.25rem; line-height: 1.55; }
.inline-link { display: inline-flex; gap: 25px; margin-top: 20px; border-bottom: 1px solid var(--navy); padding-bottom: 4px; color: var(--navy); font-size: .84rem; font-weight: 700; }

.services { color: #fff; background: var(--navy-deep); }
.services h2 { color: #fff; }
.services-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; align-items: end; margin-bottom: 70px; }
.services-heading > p { max-width: 390px; margin-bottom: 12px; color: #91a4b6; }
.service-list { border-top: 1px solid var(--white-line); }
.service-row { display: grid; grid-template-columns: 80px 1fr 1.1fr 44px; gap: 30px; align-items: center; min-height: 132px; border-bottom: 1px solid var(--white-line); transition: background 220ms ease, padding 220ms ease; }
.service-row:hover { padding-inline: 18px; background: rgba(255,255,255,.045); }
.service-number { color: var(--orange); font-family: var(--display); }
.service-row h3 { margin: 0; font-family: var(--display); font-size: clamp(1.5rem, 2.3vw, 2.25rem); font-weight: 400; }
.service-row p { margin: 0; color: #91a4b6; font-size: .88rem; }
.service-row a { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transition: color 180ms ease, background 180ms ease, transform 180ms ease; }
.service-row a:hover { color: var(--navy); background: var(--orange); transform: rotate(45deg); }

.academy { background: var(--ivory); }
.academy-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 120px; align-items: center; }
.academy-copy > p:not(.eyebrow) { max-width: 520px; margin-bottom: 34px; color: var(--muted); font-size: 1.05rem; }
.learning-list { margin: 0; border-top: 1px solid var(--line); padding: 0; list-style: none; }
.learning-list li { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 25px 8px; border-bottom: 1px solid var(--line); transition: padding 180ms ease, background 180ms ease; }
.learning-list li:hover { padding-inline: 18px; background: rgba(255,255,255,.55); }
.learning-list li > span { color: var(--orange); font-family: var(--display); font-size: 1.1rem; }
.learning-list div { display: grid; gap: 3px; }
.learning-list strong { color: var(--navy); font-family: var(--display); font-size: 1.55rem; font-weight: 400; }
.learning-list small { color: var(--muted); }

.impact { padding: 130px 0; color: #fff; background: var(--orange); }
.impact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; align-items: center; }
.impact-label { position: relative; min-height: 380px; border: 1px solid rgba(255,255,255,.45); padding: 25px; }
.impact-label::before, .impact-label::after { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: ""; }
.impact-label::before { inset: 40px; }
.impact-label::after { inset: 80px; }
.impact-label > span { font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.impact-symbol { position: absolute; z-index: 1; top: 50%; left: 50%; font-family: var(--display); font-size: clamp(6rem, 12vw, 11rem); line-height: 1; transform: translate(-50%, -50%); }
.impact-symbol sup { font-size: .25em; }
.impact-copy h2 { color: #fff; }
.impact-copy h2 em { color: var(--navy); }
.impact-copy > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.82); font-size: 1.05rem; }
.impact-copy strong { display: inline-block; margin-top: 22px; border-top: 1px solid rgba(255,255,255,.45); padding-top: 16px; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }

.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; align-items: start; }
.contact-intro { position: sticky; top: 50px; }
.contact-intro > p:not(.eyebrow) { max-width: 480px; color: var(--muted); font-size: 1.05rem; }
.direct-contact { display: grid; justify-items: start; gap: 7px; margin-top: 46px; border-top: 1px solid var(--line); padding-top: 24px; }
.direct-contact span { color: var(--muted); font-size: .76rem; }
.direct-contact > a:first-of-type { color: var(--navy); font-family: var(--display); font-size: 1.85rem; }
.direct-contact > a:last-of-type { margin-top: 5px; color: var(--blue); font-size: .8rem; font-weight: 700; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 24px; border-top: 1px solid var(--navy); padding-top: 34px; }
.honeypot { display: none; }
.form-row { display: grid; gap: 9px; }
.form-row-wide { grid-column: 1 / -1; }
.form-row label { color: var(--navy); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.form-row label span { color: var(--muted); font-weight: 400; text-transform: none; }
.form-row input, .form-row select, .form-row textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 11px 2px 14px; outline: 0; color: var(--ink); background: transparent; transition: border-color 180ms ease; }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input::placeholder, .form-row textarea::placeholder { color: #9ba3aa; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--orange); }
.form-row input[aria-invalid="true"], .form-row select[aria-invalid="true"], .form-row textarea[aria-invalid="true"] { border-color: #bd2e2e; }
.form-footer { display: flex; align-items: center; gap: 25px; margin-top: 10px; }
.form-footer p { max-width: 250px; margin: 0; color: var(--muted); font-size: .68rem; line-height: 1.5; }
.form-message { margin: -8px 0 0; color: var(--blue); font-size: .82rem; }
.form-message.is-error { color: #a82020; }
.contact-form.is-submitting { opacity: .68; pointer-events: none; }

.site-footer { padding: 70px 0 25px; color: #fff; background: var(--navy-deep); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; padding-bottom: 70px; }
.footer-brand { width: 196px; padding: 7px 11px; background: #fff; }
.footer-brand img { width: 100%; height: 48px; object-fit: contain; }
.footer-main > p { color: #9badbf; font-family: var(--display); font-size: 1.7rem; line-height: 1.15; }
.footer-main nav { display: grid; justify-content: end; gap: 7px; color: #c2ced8; font-size: .8rem; }
.footer-main nav a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--white-line); padding-top: 22px; color: #73889d; font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .section { padding: 105px 0; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .nav { display: grid; position: fixed; inset: 92px 0 auto; gap: 0; padding: 18px 24px 28px; visibility: hidden; color: var(--navy); background: var(--paper); box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }
  .nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .nav a { border-bottom: 1px solid var(--line); padding: 14px 0; }
  .nav-cta { border-left: 0; padding-left: 0; color: var(--orange); }
  .hero-grid { grid-template-columns: 1fr .55fr; gap: 35px; }
  .hero-panel { min-height: 420px; }
  .editorial-grid { grid-template-columns: 55px 1fr; }
  .section-copy { grid-column: 2; padding-top: 0; }
  .services-heading, .academy-grid, .impact-grid, .contact-grid { grid-template-columns: 1fr; gap: 65px; }
  .services-heading { align-items: start; }
  .service-row { grid-template-columns: 50px .8fr 1.2fr 44px; }
  .impact-label { max-width: 540px; width: 100%; }
  .contact-intro { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 50px; }
  .footer-main nav { grid-column: 2; grid-row: 1 / 3; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 30px, 1240px); }
  .site-header { border-bottom-color: rgba(255,255,255,.18); }
  .nav-wrap { min-height: 78px; }
  .brand { width: 168px; }
  .brand img { height: 40px; }
  .nav { inset: 78px 0 auto; }
  .hero { padding-top: 118px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 35px 0 20px; }
  h1 { font-size: clamp(4rem, 19vw, 6rem); }
  h2 { font-size: clamp(3.1rem, 14vw, 4.7rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-panel { min-height: 350px; margin-top: 20px; }
  .monogram { font-size: 8rem; }
  .trust-strip { grid-template-columns: 1fr; margin-top: 35px; }
  .trust-strip > div { border-right: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
  .trust-strip > div:last-child { border-bottom: 0; }
  .editorial-grid { grid-template-columns: 1fr; gap: 20px; }
  .section-copy { grid-column: 1; }
  .section-marker { display: none; }
  .service-row { grid-template-columns: 38px 1fr 38px; gap: 14px; padding: 24px 0; }
  .service-row h3 { font-size: 1.7rem; }
  .service-row p { grid-column: 2 / -1; }
  .service-row a { grid-column: 3; grid-row: 1; width: 36px; height: 36px; }
  .service-row:hover { padding-inline: 8px; }
  .academy-grid, .impact-grid, .contact-grid { gap: 48px; }
  .impact { padding: 90px 0; }
  .impact-label { min-height: 300px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-row-wide { grid-column: auto; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; padding-bottom: 45px; }
  .footer-main nav { grid-column: 1; grid-row: auto; justify-content: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
