:root {
  --green-950: #0d3124;
  --green-900: #123e2d;
  --green-800: #194d37;
  --green-700: #246445;
  --green-100: #e6efe9;
  --green-050: #f2f7f3;
  --gold: #b88a45;
  --earth: #72533a;
  --cream: #fbfaf6;
  --paper: #ffffff;
  --ink: #17221d;
  --muted: #536159;
  --line: #d8e0da;
  --error: #a12727;
  --shadow: 0 20px 60px rgba(13, 49, 36, .11);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shell: min(1240px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 126px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.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;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--green-900);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.operator-bar {
  min-height: 38px;
  background: var(--green-950);
  color: #fff;
  font-size: 14px;
  letter-spacing: .01em;
}
.operator-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.operator-contact { display: flex; gap: 22px; }
.operator-contact a { text-decoration: none; color: #fff; }
.operator-contact a:hover, .operator-contact a:focus-visible { text-decoration: underline; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(216, 224, 218, .9);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 50px;
  border-right: 1px solid var(--line);
  color: var(--green-800);
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em;
  padding-right: 14px;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.22; }
.brand-copy strong { color: var(--green-950); font-size: 21px; }
.brand-copy small { color: var(--muted); font-size: 13px; margin-top: 3px; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--green-700); }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--green-800);
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--green-950); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}
.menu-toggle-line { display: block; height: 2px; margin: 5px 0; background: var(--green-900); }

.hero {
  padding: 44px 0 48px;
  background:
    radial-gradient(circle at 8% 12%, rgba(184, 138, 69, .13), transparent 31%),
    linear-gradient(180deg, #fff 0%, #f7faf7 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: 52px;
}
.hero-copy { padding: 12px 0; }
.eyebrow {
  margin: 0 0 13px;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow-light { color: #cfe7d8; }
h1, h2, h3 { margin-top: 0; color: var(--green-950); line-height: 1.14; letter-spacing: -.025em; }
h1 { margin-bottom: 22px; font-size: clamp(42px, 4.3vw, 62px); }
h2 { margin-bottom: 18px; font-size: clamp(31px, 3vw, 43px); }
h3 { margin-bottom: 10px; font-size: 22px; }
p { margin-top: 0; }
.hero-lead { max-width: 680px; margin-bottom: 28px; color: #37463e; font-size: 20px; line-height: 1.58; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.button-primary { background: var(--green-800); color: #fff; box-shadow: 0 9px 22px rgba(25, 77, 55, .2); }
.button-primary:hover, .button-primary:focus-visible { background: var(--green-950); }
.button-secondary { background: #fff; border-color: var(--green-700); color: var(--green-900); }
.button-secondary:hover, .button-secondary:focus-visible { background: var(--green-050); }
.button-light { color: var(--green-950); background: #fff; }
.media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #dce6df;
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 7px;
  color: #fff;
  background: rgba(7, 29, 21, .78);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .01em;
}
.hero-media { height: 370px; }
.hero-media img { object-position: 52% 50%; }
.hero-media-mobile { display: none; }
.hero-grid > *, .split-grid > *, .two-column > *, .feature-band > *, .employee-grid > *, .contact-closure > * { min-width: 0; }

.pathways { background: #fff; border-bottom: 1px solid var(--line); }
.pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.path-card { position: relative; padding: 30px 34px 32px; border-left: 1px solid var(--line); }
.path-card:last-child { border-right: 1px solid var(--line); }
.path-number { display: inline-block; margin-bottom: 15px; color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.path-card h2 { margin-bottom: 9px; font-size: 27px; }
.path-card p { margin-bottom: 11px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.text-link { color: var(--green-800); font-size: 15px; font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.section { padding: 82px 0; }
.section-tint { background: var(--green-050); border-block: 1px solid var(--line); }
.section-dark { background: var(--green-950); color: #edf5ef; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-heading { margin-bottom: 38px; }
.section-heading.narrow { max-width: 870px; }
.section-heading > p:last-child { color: var(--muted); }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.topic-card { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.topic-card h3 { font-size: 21px; }
.topic-card p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.52; }
.split-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 58px; }
.split-grid.reverse { grid-template-columns: .95fr 1.05fr; }
.split-copy > p:not(.eyebrow) { color: var(--muted); }
.section-dark .split-copy > p:not(.eyebrow) { color: #d9e6dd; }
.split-media { height: 480px; }
.split-media img { object-position: center; }
.situation-list { margin: 28px 0 30px; display: grid; gap: 12px; }
.situation-list > div { display: grid; grid-template-columns: 165px 1fr; gap: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.situation-list strong { color: var(--green-900); }
.situation-list span { color: var(--muted); font-size: 16px; }
.two-column { display: grid; grid-template-columns: 1.25fr .75fr; gap: 64px; align-items: start; }
.two-column p { color: var(--muted); }
.compact-panel { padding: 30px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: 0 15px 50px rgba(13, 49, 36, .08); }
.check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 15px; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green-700); font-weight: 900; }
.feature-band { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 50px; padding: 42px 48px; border: 1px solid #d6cbb7; border-radius: var(--radius-lg); background: linear-gradient(120deg, #fff 0%, #f5efe4 100%); }
.feature-band h2 { margin-bottom: 0; font-size: clamp(29px, 2.7vw, 39px); }
.feature-band > p { margin-bottom: 0; color: var(--muted); }
.employee-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; }
.employee-grid p:last-child { margin-bottom: 0; color: var(--muted); }

.trust-section { padding: 36px 0; background: #fff; border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { display: flex; align-items: baseline; justify-content: center; gap: 12px; padding: 8px 30px; border-left: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 1px solid var(--line); }
.trust-grid strong { color: var(--green-800); font-size: 36px; line-height: 1; }
.trust-grid span { color: var(--muted); font-size: 15px; }

.form-section { background: #f7f6f1; }
.form-shell { max-width: 1040px; }
.contact-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.intent-fieldset { margin: 0 0 26px; padding: 0; border: 0; }
.intent-fieldset legend { margin-bottom: 12px; color: var(--green-950); font-size: 19px; font-weight: 800; }
.intent-fieldset label { display: inline-flex; align-items: center; gap: 9px; margin: 0 24px 9px 0; cursor: pointer; }
.intent-fieldset input { width: 20px; height: 20px; accent-color: var(--green-700); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: grid; gap: 8px; }
.field-wide { grid-column: 1 / -1; }
.field > span { color: var(--green-950); font-size: 15px; font-weight: 800; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid #c9d3cb;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}
.field textarea { min-height: 180px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--green-700); box-shadow: 0 0 0 4px rgba(36, 100, 69, .12); }
.field [aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 3px rgba(161, 39, 39, .1); }
.field-error { min-height: 1.2em; color: var(--error); font-size: 13px; }
.optional-fields { margin-top: 22px; border-top: 1px solid var(--line); }
.optional-fields summary { padding: 20px 0 14px; color: var(--green-900); font-weight: 800; cursor: pointer; }
.optional-fields summary span { color: var(--muted); font-weight: 500; }
.optional-grid { padding-top: 4px; }
.form-actions { display: flex; align-items: center; gap: 20px; margin-top: 28px; }
.form-actions p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.form-status { min-height: 1.5em; margin: 16px 0 0; color: var(--green-800); font-weight: 700; }

.contact-closure { display: grid; grid-template-columns: 1fr 420px; gap: 42px; align-items: center; margin-top: 32px; padding: 34px; border-radius: var(--radius-lg); background: var(--green-950); color: #fff; }
.contact-closure h2 { color: #fff; }
.contact-name { font-size: 20px; }
.contact-links { display: grid; gap: 10px; }
.contact-links a { display: flex; flex-wrap: wrap; gap: 10px; color: #fff; text-decoration: none; }
.contact-links a:hover, .contact-links a:focus-visible { text-decoration: underline; }
.contact-links span { min-width: 106px; color: #bed4c6; font-size: 15px; font-weight: 800; }
.contact-media { height: 300px; box-shadow: none; }
.contact-media img { object-position: center 38%; }

.site-footer { padding: 28px 0; background: #0a251b; color: #dfeae3; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 34px; }
.footer-grid strong { color: #fff; }
.footer-grid p { margin: 0; font-size: 14px; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-grid a { color: #fff; font-size: 14px; text-decoration: none; }
.footer-grid a:hover, .footer-grid a:focus-visible { text-decoration: underline; }

.legal-main { padding: 64px 0 90px; }
.legal-card { max-width: 900px; padding: 40px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.legal-card h1 { font-size: clamp(38px, 5vw, 54px); }
.legal-card h2 { margin-top: 32px; font-size: 27px; }
.legal-card address { font-style: normal; }
.legal-back { display: inline-flex; margin-bottom: 22px; color: var(--green-800); font-weight: 800; }
.image-note-list { display: grid; gap: 18px; padding: 0; list-style: none; }
.image-note-list li { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); }

:focus-visible { outline: 3px solid #d39b47; outline-offset: 3px; }

@media (max-width: 1100px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 14px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero-media { height: 350px; }
  .contact-closure { grid-template-columns: 1fr 360px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 760px); }
  body { font-size: 17px; }
  html { scroll-padding-top: 90px; }
  .operator-bar { display: none; }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 0 0 14px 14px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(13, 49, 36, .13);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; font-size: 16px; }
  .nav-cta { border-radius: 8px; text-align: center; }
  .hero { padding: 34px 0 38px; }
  .hero-grid, .split-grid, .split-grid.reverse, .two-column, .feature-band, .employee-grid, .contact-closure { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-media { order: 2; height: 360px; }
  .pathway-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .path-card { border-left: 0; border-bottom: 1px solid var(--line); padding: 24px 5px; }
  .path-card:last-child { border-right: 0; border-bottom: 0; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 66px 0; }
  .split-media { height: 420px; }
  .feature-band { padding: 34px; gap: 20px; }
  .employee-grid .button { justify-self: start; }
  .trust-grid { gap: 0; }
  .trust-grid > div { flex-direction: column; align-items: center; gap: 6px; text-align: center; padding-inline: 16px; }
  .contact-closure { gap: 28px; }
  .contact-media { height: 330px; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .brand-mark { width: 56px; font-size: 25px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { display: none; }
  h1 { font-size: clamp(36px, 11vw, 47px); }
  h2 { font-size: clamp(29px, 8.5vw, 37px); }
  .hero-lead { font-size: 18px; }
  .button-row, .form-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-media-desktop { display: none; }
  .hero-media-mobile { display: block; height: 250px; margin: 22px 0 24px; border-radius: 17px; }
  .hero-media img { object-position: 53% 50%; }
  .topic-grid { grid-template-columns: 1fr; }
  .feature-band { padding: 28px 20px; }
  .feature-band .eyebrow, .feature-band h2 { overflow-wrap: anywhere; }
  .split-media { height: 300px; }
  .situation-list > div { grid-template-columns: 1fr; gap: 3px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { flex-direction: row; justify-content: flex-start; border-left: 0; border-bottom: 1px solid var(--line); padding: 18px 4px; }
  .trust-grid > div:last-child { border-right: 0; border-bottom: 0; }
  .contact-form { padding: 23px 18px; }
  .intent-fieldset label { display: flex; margin-right: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-closure { padding: 26px 20px; }
  .contact-media { height: 260px; }
  .contact-links a { display: grid; gap: 0; }
  .footer-grid nav { display: grid; grid-template-columns: repeat(2, max-content); }
  .legal-card { padding: 26px 20px; }
}

@media (max-width: 360px) {
  :root { --shell: calc(100% - 22px); }
  .brand { gap: 8px; }
  .brand-mark { width: 50px; height: 45px; font-size: 23px; padding-right: 10px; }
  .brand-copy strong { font-size: 16px; }
  .menu-toggle { width: 44px; }
  .hero-media-mobile { height: 225px; }
}

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