:root {
  --ink: #17201b;
  --muted: #5c665f;
  --paper: #f8f8f3;
  --white: #ffffff;
  --leaf: #2f5f45;
  --field: #b58a42;
  --sky: #d9eaf0;
  --line: rgba(23, 32, 27, 0.14);
  --shadow: 0 24px 70px rgba(23, 32, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 248, 243, 0.92);
  box-shadow: 0 10px 34px rgba(23, 32, 27, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a,
.header-action {
  opacity: 0.9;
}

.site-nav a:hover,
.header-action:hover {
  opacity: 1;
}

.header-action {
  justify-self: end;
  padding: 11px 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--leaf);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 18, 13, 0.78), rgba(9, 18, 13, 0.3) 48%, rgba(9, 18, 13, 0.04)),
    linear-gradient(0deg, rgba(9, 18, 13, 0.38), rgba(9, 18, 13, 0) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 clamp(20px, 7vw, 92px) clamp(52px, 10vh, 96px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--field);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #f1c66d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 20px;
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--white);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fbfbf7;
}

.intro-item {
  min-height: 146px;
  padding: clamp(24px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.intro-item:last-child {
  border-right: 0;
}

.intro-item strong,
.intro-item span {
  display: block;
}

.intro-item strong {
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.intro-item span {
  color: var(--muted);
  max-width: 620px;
  font-size: clamp(1.02rem, 1.45vw, 1.25rem);
  line-height: 1.55;
}

.section {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 116px;
}

.section-copy p,
.section-heading p:not(.eyebrow),
.growth-copy p,
.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.metrics {
  display: grid;
  gap: 14px;
}

.metric {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 4px 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.metric:last-child {
  border-bottom: 1px solid var(--line);
}

.metric span {
  grid-row: span 2;
  color: var(--field);
  font-weight: 800;
}

.metric strong {
  font-size: 1.35rem;
}

.metric p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.practice {
  background: #eef4ed;
}

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

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

.service-item {
  min-height: 310px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-item span {
  display: block;
  margin-bottom: 34px;
  color: var(--field);
  font-weight: 800;
}

.service-item h3 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.service-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.growth-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 9vw, 122px) clamp(20px, 6vw, 84px);
  color: var(--white);
  background: #243629;
}

.growth-copy .eyebrow {
  color: #f1c66d;
}

.growth-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.growth-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.growth-steps div {
  min-width: 0;
  min-height: 230px;
  padding: clamp(22px, 2.4vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.growth-steps div:last-child {
  border-right: 0;
}

.growth-steps span,
.impact-card span {
  display: block;
  margin-bottom: 18px;
  color: #f1c66d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.growth-steps strong {
  display: block;
  margin-bottom: 14px;
  max-width: 10ch;
  font-size: clamp(1.85rem, 2.35vw, 2.75rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.growth-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.practice-item {
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  border-top: 4px solid var(--leaf);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(23, 32, 27, 0.08);
}

.practice-index {
  margin-bottom: 36px;
  color: var(--field);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.practice-item h3 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  line-height: 1.08;
}

.practice-item p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

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

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

.impact-card {
  min-height: 250px;
  padding: clamp(26px, 4vw, 38px);
  color: var(--white);
  background: var(--leaf);
}

.impact-card:nth-child(2) {
  background: #3b4b35;
}

.impact-card:nth-child(3) {
  color: var(--ink);
  background: #f1c66d;
}

.impact-card:nth-child(3) span {
  color: #7a581b;
}

.impact-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 0.95;
}

.impact-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.impact-card:nth-child(3) p {
  color: rgba(23, 32, 27, 0.72);
}

.impact-note {
  max-width: 900px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.impact-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.careers {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
  background: var(--sky);
}

.careers-intro {
  position: sticky;
  top: 116px;
}

.careers-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--leaf);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.career-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 0;
  background: transparent;
}

.career-role {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(23, 32, 27, 0.14);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(23, 32, 27, 0.07);
}

.career-role span {
  color: var(--field);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.career-role h3 {
  max-width: 13ch;
  margin: 26px 0 16px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.08;
}

.career-role p {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(64px, 8vw, 118px) clamp(20px, 6vw, 84px);
  color: var(--white);
  background: var(--leaf);
}

.cta-section .eyebrow {
  color: #f1c66d;
}

.cta-section p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-panel strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
}

.contact-panel span {
  color: rgba(255, 255, 255, 0.7);
}

.contact-panel address {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.55;
}

.contact-panel address a {
  width: fit-content;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.contact-panel address a:hover {
  text-decoration: underline;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 84px);
  color: var(--muted);
  background: var(--white);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .header-action {
    padding: 10px 14px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 18, 13, 0.76), rgba(9, 18, 13, 0.42)),
      linear-gradient(0deg, rgba(9, 18, 13, 0.46), rgba(9, 18, 13, 0) 48%);
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5.6rem);
  }

  .intro-band,
  .split,
  .growth-band,
  .growth-steps,
  .service-grid,
  .practice-grid,
  .impact-grid,
  .careers,
  .career-list,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .intro-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-item:last-child {
    border-bottom: 0;
  }

  .section-copy {
    position: static;
  }

  .careers-intro {
    position: static;
  }

  .growth-steps div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .growth-steps div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .header-action {
    display: none;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 42px;
  }

  .button {
    width: 100%;
  }

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

  .metric span {
    grid-row: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
