:root {
  --forest-950: #071f1a;
  --forest-900: #0a2a23;
  --forest-800: #0f3d33;
  --forest-700: #155245;
  --forest-600: #1b6959;
  --sage-100: #e1eee9;
  --sage-50: #f0f6f3;
  --cream: #f7f4ed;
  --paper: #ffffff;
  --ink: #101613;
  --muted: #617069;
  --line: #cbd9d4;
  --line-dark: rgba(255, 255, 255, .15);
  --max: 1280px;
  --shadow: 0 22px 70px rgba(7, 31, 26, .11);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--forest-950);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }

::selection {
  background: var(--forest-700);
  color: #fff;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: #fff;
  color: var(--forest-950);
  border-radius: 999px;
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(10, 42, 35, .92);
  color: #fff;
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 20px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,.76);
  transition: color .18s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  cursor: pointer;
}

.button:hover { transform: translateY(-2px); }

.button-light {
  background: #fff;
  color: var(--forest-900);
}

.button-light:hover { background: var(--sage-100); }

.button-dark {
  background: var(--forest-900);
  color: #fff;
}

.button-dark:hover { background: var(--forest-700); }

.button-outline {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  background: transparent;
}

.button-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.07);
}

.button-arrow::after {
  content: "↗";
  margin-left: 10px;
  font-weight: 400;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow-light { color: rgba(255,255,255,.62); }

.display {
  margin: 0;
  max-width: 1110px;
  font-size: clamp(58px, 8.2vw, 124px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 520;
}

.page-title {
  margin: 0;
  max-width: 1040px;
  font-size: clamp(52px, 7.1vw, 104px);
  line-height: .93;
  letter-spacing: -.067em;
  font-weight: 520;
}

.section-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .98;
  letter-spacing: -.058em;
  font-weight: 520;
}

.lead {
  margin: 0;
  max-width: 760px;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.35;
  letter-spacing: -.035em;
}

.body-large {
  max-width: 700px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest-900);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,.08) 8% 8.08%, transparent 8.08% 30%, rgba(255,255,255,.06) 30% 30.08%, transparent 30.08% 100%),
    linear-gradient(0deg, transparent 0 16%, rgba(255,255,255,.05) 16% 16.08%, transparent 16.08% 65%, rgba(255,255,255,.04) 65% 65.08%, transparent 65.08% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -240px;
  bottom: -330px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255,255,255,.025),
    0 0 0 180px rgba(255,255,255,.018);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 96px 62px;
}

.signature {
  margin-top: 26px;
  max-width: 640px;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  letter-spacing: -.01em;
}

.hero-bottom {
  margin-top: 62px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

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

.section {
  padding-block: 140px;
}

.section-sage {
  background: var(--sage-100);
  color: var(--forest-950);
}

.section-soft { background: var(--sage-50); }
.section-paper { background: #fff; }

.section-dark {
  background: var(--forest-950);
  color: #fff;
}

.section-head {
  display: grid;
  gap: 26px;
  margin-bottom: 70px;
}

.statement {
  max-width: 1020px;
  font-size: clamp(42px, 5.7vw, 82px);
  line-height: 1;
  letter-spacing: -.058em;
  font-weight: 510;
}

.two-column {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 72px;
  align-items: start;
}

.intro-copy {
  max-width: 750px;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.17;
  letter-spacing: -.045em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--forest-800);
  font-weight: 700;
}

.expertise-list {
  border-top: 1px solid var(--line);
}

.expertise-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  transition: background .18s ease, padding .18s ease;
}

.expertise-row:hover {
  background: rgba(225, 238, 233, .72);
  padding-inline: 18px;
}

.expertise-number {
  color: var(--muted);
  font-size: 13px;
}

.expertise-name {
  color: var(--forest-950);
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -.045em;
}

.expertise-arrow {
  color: var(--forest-700);
  font-size: 24px;
  transition: transform .18s ease;
}

.expertise-row:hover .expertise-arrow { transform: translateX(5px); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  min-height: 330px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
}

.card-featured {
  background: var(--forest-800);
  color: #fff;
  border-color: var(--forest-800);
}

.card-number {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
}

.card-featured .card-number { color: rgba(255,255,255,.58); }

.card h3 {
  margin: 88px 0 16px;
  font-size: 32px;
  letter-spacing: -.04em;
  font-weight: 550;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.card-featured p { color: rgba(255,255,255,.72); }

.principles {
  border-top: 1px solid rgba(255,255,255,.15);
}

.principle {
  padding-block: 34px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: clamp(30px, 4vw, 55px);
  line-height: 1.1;
  letter-spacing: -.048em;
}

.quote-panel {
  position: relative;
  overflow: hidden;
  background: var(--forest-800);
  color: #fff;
  padding: 70px;
}

.quote-panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  right: -140px;
  bottom: -170px;
}

.quote-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 920px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.quote-panel small {
  display: block;
  margin-top: 40px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

.cta {
  background: var(--sage-100);
  color: var(--forest-950);
}

.cta-inner {
  display: grid;
  gap: 40px;
}

.site-footer {
  padding: 86px 0 36px;
  background: var(--forest-900);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
}

.footer-signatures {
  margin-top: 24px;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.56);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
  color: rgba(255,255,255,.8);
}

.footer-bottom {
  margin-top: 78px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.4);
  font-size: 12px;
}

.page-hero {
  padding: 124px 0 112px;
  color: #fff;
  background: var(--forest-900);
}

.page-hero .lead {
  margin-top: 46px;
  color: rgba(255,255,255,.74);
}

.content-stack {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.content-row {
  display: grid;
  grid-template-columns: 90px .9fr 1.1fr;
  gap: 30px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.content-row h2 {
  margin: 0;
  color: var(--forest-950);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 540;
}

.content-row p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.bullet-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.bullet-list div {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  letter-spacing: -.025em;
}

.form-grid {
  display: grid;
  gap: 26px;
}

.field {
  display: grid;
  gap: 9px;
}

.field label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 15px 16px;
  border-radius: 0;
  outline: none;
  font-size: 17px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(27,105,89,.12);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.status {
  min-height: 24px;
  color: var(--forest-700);
  font-size: 14px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.legal {
  max-width: 820px;
}

.legal h2 {
  margin-top: 48px;
  font-size: 28px;
  letter-spacing: -.03em;
}

.legal p {
  color: var(--muted);
  line-height: 1.7;
}

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

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 82px 0 0;
    display: none;
    padding: 38px 24px;
    background: var(--forest-900);
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 24px; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .main-nav { margin-left: auto; }

  .hero-inner { min-height: auto; padding-block: 96px 66px; }
  .hero-bottom { align-items: flex-start; flex-direction: column; }
  .two-column,
  .footer-grid,
  .content-row {
    grid-template-columns: 1fr;
  }

  .cards { grid-template-columns: 1fr; }
  .content-row { gap: 18px; }
  .section { padding-block: 96px; }
  .quote-panel { padding: 48px 28px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .display { font-size: clamp(55px, 17vw, 82px); }
  .page-title { font-size: clamp(50px, 15vw, 78px); }
  .section-title { font-size: clamp(40px, 12vw, 65px); }
  .lead { font-size: 22px; }
  .expertise-row { grid-template-columns: 44px 1fr auto; min-height: 96px; }
  .footer-grid { gap: 46px; }
  .footer-bottom { flex-direction: column; }
}
