:root {
  --ink: #14251d;
  --muted: #56645d;
  --forest: #174d36;
  --forest-dark: #0d3625;
  --sage: #dce7df;
  --paper: #f7f6f1;
  --cream: #ece9df;
  --white: #fffef9;
  --line: rgba(20, 37, 29, 0.16);
  --gold: #b58b50;
  --shadow: 0 24px 70px rgba(20, 37, 29, 0.1);
}

* { 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: 16px;
  line-height: 1.65;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  min-height: 82px;
  margin: 0 auto;
  padding: 14px 32px;
  background: rgba(247, 246, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font-family: "Libre Franklin", sans-serif; font-size: 18px; letter-spacing: -0.03em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 30px; }
nav a { color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--forest); }

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

.button:hover, .button:focus-visible { background: var(--forest-dark); transform: translateY(-1px); }
.button:focus-visible, a:focus-visible { outline: 3px solid rgba(181, 139, 80, 0.42); outline-offset: 3px; }
.button-small { min-height: 40px; padding: 8px 15px; color: white; font-size: 13px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.75fr);
  gap: 80px;
  align-items: center;
  max-width: 1180px;
  min-height: 650px;
  margin: 0 auto;
  padding: 96px 32px;
}

.eyebrow, .card-label {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; font-family: "Libre Franklin", sans-serif; line-height: 1.12; letter-spacing: -0.04em; }
h1 { max-width: 780px; margin-bottom: 26px; font-size: clamp(3rem, 6vw, 5.4rem); font-weight: 600; }
h2 { margin-bottom: 24px; font-size: clamp(2rem, 4vw, 3.45rem); font-weight: 600; }
h3 { margin-bottom: 12px; font-size: 20px; font-weight: 600; letter-spacing: -0.025em; }
p { margin-top: 0; }

.hero-lead { max-width: 760px; margin-bottom: 34px; color: var(--muted); font-size: 20px; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.text-link { color: var(--forest); font-weight: 700; text-decoration: none; }
.text-link span { margin-left: 6px; }

.role-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.role-card dl { margin: 0; }
.role-card dl div { display: grid; grid-template-columns: 105px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); }
.role-card dt { color: var(--muted); font-size: 13px; font-weight: 700; }
.role-card dd { margin: 0; font-weight: 600; }
.fine-print { margin: 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.section { padding: 112px max(32px, calc((100vw - 1116px) / 2)); }
.intro { background: var(--white); }
.section-heading { max-width: 760px; }
.section-lead { max-width: 820px; margin-bottom: 58px; color: var(--muted); font-size: 19px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { min-height: 270px; padding: 28px; background: var(--paper); border-top: 1px solid var(--forest); }
.steps li > span { display: block; margin-bottom: 48px; color: var(--gold); font-family: "Libre Franklin", sans-serif; font-size: 14px; font-weight: 700; }
.steps p { color: var(--muted); font-size: 15px; }

.split-section { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 90px; align-items: start; background: var(--cream); }
.split-section > div:first-child p:not(.eyebrow) { max-width: 630px; color: var(--muted); font-size: 17px; }
.requirements { padding: 34px; background: var(--white); border: 1px solid var(--line); }
.requirements ul { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.requirements li { position: relative; padding-left: 28px; font-weight: 600; }
.requirements li::before { content: "✓"; position: absolute; left: 0; color: var(--forest); font-weight: 800; }

.about { display: grid; grid-template-columns: 1fr 0.85fr; gap: 90px; background: var(--paper); }
.about-copy { padding-top: 40px; color: var(--muted); font-size: 17px; }

.cta { padding: 100px max(32px, calc((100vw - 1116px) / 2)); color: white; background: var(--forest-dark); }
.cta .eyebrow { color: #c6d6cb; }
.cta h2 { max-width: 850px; }
.cta p:not(.eyebrow) { max-width: 820px; margin-bottom: 32px; color: #dce7df; font-size: 18px; }
.button-light { color: var(--forest-dark); background: var(--white); border-color: var(--white); }
.button-light:hover, .button-light:focus-visible { color: white; background: transparent; }

footer { display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: center; padding: 34px max(32px, calc((100vw - 1116px) / 2)); color: var(--muted); background: var(--paper); border-top: 1px solid var(--line); font-size: 12px; }
footer p { margin: 0; }
.footer-brand .brand-mark { width: 30px; height: 30px; }
.footer-brand strong { font-size: 15px; }

@media (max-width: 860px) {
  .site-header { padding: 12px 20px; }
  nav > a:not(.button) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 48px; min-height: 0; padding: 72px 24px; }
  .steps, .split-section, .about { grid-template-columns: 1fr; }
  .split-section, .about { gap: 45px; }
  .section { padding: 82px 24px; }
  .about-copy { padding-top: 0; }
  footer { grid-template-columns: 1fr; gap: 18px; padding: 30px 24px; }
}

@media (max-width: 520px) {
  .brand small { display: none; }
  .site-header .button-small { padding: 8px 12px; }
  h1 { font-size: 2.65rem; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .role-card { padding: 26px 22px; }
  .role-card dl div { grid-template-columns: 1fr; gap: 3px; }
  .steps li { min-height: 0; }
  .steps li > span { margin-bottom: 26px; }
  .requirements { padding: 26px 22px; }
  .cta { padding: 72px 24px; }
  .cta .button { font-size: 13px; }
}

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