:root {
  color-scheme: light;
  --ink: #17202a;
  --navy: #162b46;
  --navy-2: #203a5a;
  --paper: #f7f5f0;
  --white: #ffffff;
  --mist: #e8edf1;
  --line: #d7dce0;
  --gold: #b98b42;
  --sage: #6f7f70;
  --muted: #66717c;
  --shadow: 0 22px 60px rgba(23, 32, 42, 0.13);
  --radius: 8px;
  --container: 1160px;
  --header-height: 84px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(247, 245, 240, 0.94);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  border-bottom: 1px solid rgba(23, 32, 42, 0.12);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 245, 240, 0.94);
  border-bottom-color: rgba(23, 32, 42, 0.12);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 28px, 1380px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--ink);
  font-weight: 700;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  color: var(--ink);
}

.brand-logo {
  width: 224px;
  height: 72px;
  object-fit: contain;
  image-rendering: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.site-header.is-scrolled .nav-links,
.site-header.is-open .nav-links {
  color: var(--ink);
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(23, 32, 42, 0.14);
  border-radius: var(--radius);
  background: var(--white);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  border-color: rgba(23, 32, 42, 0.14);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 32, 42, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: rgba(23, 32, 42, 0.14);
  background: var(--white);
}

.nav-toggle-line {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  background: var(--ink);
  transition: background 160ms ease;
}

.site-header.is-scrolled .nav-toggle-line,
.site-header.is-open .nav-toggle-line {
  background: var(--ink);
}

.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;
}

.hero {
  position: relative;
  min-height: auto;
  display: block;
  background: var(--navy);
  padding-top: var(--header-height);
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  width: 100%;
  height: clamp(260px, 39.94vw, 520px);
  object-fit: cover;
  object-position: center;
  background: var(--navy);
}

.hero-shade {
  display: none;
}

.hero-content {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 46px 0 52px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
  hyphens: none;
}

.hero h1,
h2,
h3,
p {
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 56px;
  line-height: 1.03;
  font-weight: 760;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
  text-align: justify;
  text-align-last: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 760;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #101820;
  border-color: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #c99c52;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.contact .button-secondary {
  color: var(--ink);
  border-color: rgba(23, 32, 42, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.section-pad {
  padding: 96px 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 760;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.28;
  font-weight: 740;
}

p {
  margin: 0;
  text-align: justify;
  text-align-last: left;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.intro-grid > p,
.section-heading p,
.framework-copy p,
.outcomes-grid > div > p,
.insights-copy p,
.contact p,
.site-footer p {
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.services {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2 + p {
  margin-top: 18px;
  font-size: 18px;
}

.section-heading.compact {
  max-width: 690px;
}

.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: 280px;
  padding: 30px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  background: #fbfaf6;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-index {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.service-card-wide {
  grid-column: span 3;
  min-height: 220px;
}

.trusted {
  background: #f7f5f0;
}

.trusted-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.trusted-copy p {
  margin-top: 20px;
  color: var(--muted);
}

.credential-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.credential-logos img {
  width: 100%;
  max-height: 118px;
  object-fit: contain;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(23, 32, 42, 0.1);
  border-radius: var(--radius);
}

.credential-logos .ssm-logo {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 360px);
  padding: 18px;
}

.framework {
  background: #f1f3f0;
}

.framework-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.framework-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.framework-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.framework-copy p {
  margin-top: 22px;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #3c4650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(111, 127, 112, 0.14);
}

.approach {
  background: var(--navy);
  color: var(--white);
}

.approach h2,
.approach h3 {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.timeline-item {
  position: relative;
  padding: 34px 26px 0 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(185, 139, 66, 0.2);
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 14px;
  color: #d1b88a;
  font-size: 13px;
  font-weight: 800;
}

.timeline-item p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-align: justify;
  text-align-last: left;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.outcomes {
  background: var(--paper);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
}

.outcomes-grid > div > p {
  margin-top: 20px;
}

.outcome-list {
  display: grid;
  gap: 14px;
}

.outcome-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 32, 42, 0.1);
  border-radius: var(--radius);
}

.outcome-item p {
  margin-top: 8px;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.insights {
  background: var(--white);
}

.insights-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 5vw, 76px);
  align-items: center;
}

.insights-copy p {
  margin-top: 20px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.insight-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.insight-note {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 42px;
  padding: 26px;
  border-radius: var(--radius);
  background: #f8f6f0;
  border: 1px solid rgba(23, 32, 42, 0.08);
}

.insight-note h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.26;
  text-align: left;
  text-align-last: auto;
  text-wrap: balance;
  hyphens: none;
}

.insight-note:nth-child(2) {
  background: #edf2ef;
}

.insight-note:nth-child(3) {
  background: #f3efe7;
}

.insight-note span {
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.contact {
  background: #dce4e3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.contact p {
  max-width: 620px;
  margin-top: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-panel a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 32, 42, 0.1);
  color: var(--navy);
  font-weight: 760;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  flex: 0 0 42px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-icon {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.site-footer {
  padding: 74px 0 62px;
  background: #15191f;
  color: var(--white);
}

.footer-modern {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 6vw, 104px);
  align-items: start;
}

.footer-brand,
.footer-logo {
  display: block;
}

.footer-logo {
  width: 312px;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
}

.footer-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 30px;
  margin: 34px 0 0;
  padding: 0;
  max-width: 560px;
}

.footer-facts div {
  padding: 0 0 18px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-facts dt {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 800;
}

.footer-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 720;
}

.footer-main {
  display: grid;
  gap: 64px;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 52px;
  align-items: center;
}

.footer-cta h2 {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 34px;
  line-height: 1.18;
}

.button-light {
  min-width: 180px;
  background: var(--white);
  color: #111820;
  border-color: var(--white);
}

.footer-info {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(240px, 0.74fr);
  gap: 72px;
}

.footer-info h3 {
  color: var(--white);
  font-size: 18px;
}

.footer-info p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--header-height) - 4px);
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(247, 245, 240, 0.98);
    color: var(--ink);
    border: 1px solid rgba(23, 32, 42, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 6px;
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .intro-grid,
  .framework-grid,
  .trusted-grid,
  .outcomes-grid,
  .insights-grid,
  .contact-grid,
  .footer-modern {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    row-gap: 34px;
  }

  .insight-stack {
    grid-template-columns: 1fr;
  }

  .credential-logos {
    grid-template-columns: 1fr 1fr;
  }

  .insight-note {
    min-height: 190px;
    gap: 28px;
  }

  .contact-actions,
  .footer-links {
    justify-content: flex-start;
  }

  .footer-modern,
  .footer-cta,
  .footer-info {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 42px;
  }

  .footer-cta {
    gap: 22px;
    align-items: start;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  body {
    font-size: 15px;
  }

  .nav,
  .container,
  .hero-content {
    width: min(100% - 28px, var(--container));
  }

  .brand-logo {
    width: 176px;
    height: 58px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    height: 190px;
    object-position: right center;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    padding: 34px 0 38px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 34px;
    line-height: 1.06;
  }

  .hero-copy {
    max-width: 360px;
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .section-pad {
    padding: 68px 0;
  }

  h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  h3 {
    font-size: 19px;
  }

  .intro-grid,
  .framework-grid,
  .trusted-grid,
  .outcomes-grid,
  .insights-grid {
    gap: 34px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: span 1;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-index {
    margin-bottom: 34px;
  }

  .timeline {
    grid-template-columns: 1fr;
    border-top: 0;
    margin-top: 28px;
  }

  .timeline-item {
    padding: 0 0 0 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
  }

  .timeline-item::before {
    top: 4px;
    left: -6px;
  }

  .outcome-item,
  .insight-note {
    padding: 20px;
  }

  .credential-logos,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel a {
    min-height: 86px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding: 54px 0 42px;
  }

  .footer-modern {
    gap: 42px;
  }

  .footer-logo {
    width: 240px;
  }

  .footer-facts {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
  }

  .footer-cta h2 {
    font-size: 27px;
  }

  .footer-info {
    gap: 34px;
  }

  .footer-links {
    gap: 16px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
