:root {
  --navy: #102a43;
  --navy-deep: #081b2c;
  --blue: #1f4d6b;
  --cream: #f5f0e7;
  --paper: #fffdf8;
  --white: #ffffff;
  --gold: #c7a45b;
  --orange: #d75215;
  --ink: #17212b;
  --muted: #5f6c76;
  --line: #d9d4ca;
  --shadow: 0 24px 60px rgba(16, 42, 67, .13);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--navy);
  font-family: "Libre Franklin", sans-serif;
  line-height: 1.12;
}
h1 { max-width: 820px; font-size: clamp(2.75rem, 6vw, 5.6rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -.04em; }
h3 { font-size: 1.3rem; letter-spacing: -.02em; }
.section-shell, .header-shell, .hero-shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(76px, 10vw, 132px) 0; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: #f3c981; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 42, 67, .09);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(14px);
}
.header-shell { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 205px; max-height: 58px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 30px); }
.primary-nav a { font-size: .92rem; font-weight: 600; text-decoration: none; }
.primary-nav a:not(.button):hover { color: var(--orange); }
.nav-portal { padding-left: 24px; border-left: 1px solid var(--line); }
.menu-toggle { display: none; width: 44px; padding: 8px; border: 0; background: none; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 6px 0; background: var(--navy); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}
.button:hover { border-color: #b53e0a; background: #b53e0a; transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 10px 19px; }
.button-light { border-color: var(--cream); color: var(--navy); background: var(--cream); }
.button-light:hover { border-color: var(--white); background: var(--white); }
.text-link { color: var(--navy); font-weight: 700; text-decoration: none; }
.text-link span, article a span { color: var(--orange); }

.hero { overflow: hidden; padding: clamp(72px, 9vw, 120px) 0; background: var(--cream); }
.hero-shell { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); align-items: center; gap: clamp(54px, 8vw, 110px); }
.hero-lead { max-width: 710px; color: #45535e; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero-actions { display: flex; align-items: center; gap: 26px; margin: 34px 0; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 26px; padding: 0; color: var(--blue); font-size: .92rem; font-weight: 600; list-style: none; }
.trust-list li::before { content: "•"; margin-right: 9px; color: var(--gold); }
.hero-visual { position: relative; }
.portrait-frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 220px 220px 24px 24px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.credential-card {
  position: absolute;
  right: -28px;
  bottom: 30px;
  width: min(330px, 88%);
  padding: 22px;
  border-left: 4px solid var(--orange);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}
.credential-card span { display: block; margin-bottom: 6px; color: #c9d5de; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.credential-card strong { display: block; line-height: 1.35; }

.signal-band { padding: 30px 0; color: var(--white); background: var(--navy); }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.signal-grid div { padding: 10px 40px; border-right: 1px solid rgba(255,255,255,.18); }
.signal-grid div:first-child { padding-left: 0; }
.signal-grid div:last-child { border-right: 0; }
.signal-grid strong { display: block; color: #f3c981; font-size: 1.25rem; }
.signal-grid span { color: #d4dee5; font-size: .88rem; }

.section-heading { max-width: 820px; margin-bottom: 52px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; }
.split-heading p:last-child { padding-bottom: 12px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 335px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.service-card:hover { background: var(--cream); }
.service-number { display: block; margin-bottom: 62px; color: var(--orange); font-size: .8rem; font-weight: 700; }
.service-card p { color: var(--muted); font-size: .96rem; }
.service-card a, .resource-grid a { color: var(--navy); font-size: .92rem; font-weight: 700; text-decoration: none; }
.service-card-accent { color: var(--white); background: var(--navy); }
.service-card-accent:hover { background: var(--navy-deep); }
.service-card-accent h3, .service-card-accent a { color: var(--white); }
.service-card-accent p { color: #d3dde4; }
.service-note {
  margin: 26px 0 0;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  background: var(--cream);
}
.service-note strong { color: var(--navy); }

.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 10vw, 140px); }
.about-mark { align-self: start; padding: 42px; border: 1px solid #d8ccb5; }
.about-mark img { width: 120px; margin-bottom: 34px; }
.about-mark p { margin: 0; color: var(--navy); font-family: "Libre Franklin", sans-serif; font-size: 1.25rem; line-height: 1.4; }
.about-copy p { color: #4e5a63; }
.credential-row { display: flex; gap: 12px; margin-top: 34px; }
.credential-row span { padding: 8px 14px; border: 1px solid var(--gold); border-radius: 999px; color: var(--navy); font-size: .82rem; font-weight: 700; }

.coordinated-section { color: var(--white); background: linear-gradient(135deg, var(--navy-deep), var(--blue)); }
.coordinated-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 120px); }
.coordinated-grid h2 { color: var(--white); }
.coordinated-grid p { color: #d5e0e7; }
.coordinated-grid .button { margin-top: 18px; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.resource-grid article { min-height: 235px; padding: 30px; border: 1px solid var(--line); background: var(--white); }
.resource-grid article > p { color: var(--orange); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.resource-grid h3 { margin: 38px 0; }

.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(60px, 10vw, 130px); }
.contact-grid > div > p:not(.eyebrow) { max-width: 620px; color: var(--muted); font-size: 1.08rem; }
.contact-grid .button { margin-top: 14px; }
.contact-grid address { padding-left: 40px; border-left: 1px solid var(--line); font-style: normal; }
.contact-grid address div { margin-bottom: 28px; }
.contact-grid address span { display: block; color: var(--orange); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-grid address a { color: var(--navy); font-size: 1.1rem; font-weight: 700; text-decoration: none; }
.contact-grid address p { margin: 3px 0 0; color: var(--navy); font-weight: 600; }

.site-footer { padding: 64px 0 22px; color: #cbd8e1; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .6fr .6fr; gap: 70px; }
.footer-brand img { width: 225px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 500px; }
.footer-grid h2 { color: #f3c981; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a { display: block; margin: 8px 0; color: var(--white); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: .78rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    padding: 24px 20px 30px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: grid; gap: 18px; }
  .nav-portal { padding: 14px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .hero-shell, .about-grid, .coordinated-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { width: min(540px, 88%); margin-inline: auto; }
  .split-heading { grid-template-columns: 1fr; gap: 0; }
  .service-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid address { padding: 0; border-left: 0; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .header-shell { min-height: 76px; }
  .brand img { width: 170px; }
  .primary-nav { top: 76px; }
  .hero { padding-top: 58px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { width: 94%; }
  .credential-card { right: -10px; bottom: 18px; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid div, .signal-grid div:first-child { padding: 15px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .signal-grid div:last-child { border-bottom: 0; }
  .service-grid, .resource-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .service-number { margin-bottom: 42px; }
  .about-mark { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
