:root {
  --forest: #18342e;
  --moss: #526b4e;
  --sage: #dde4d9;
  --paper: #f4f1e8;
  --charcoal: #292d2b;
  --slate: #5e7880;
  --warm-gray: #d7d3c8;
  --white: #fffdf8;

  --font-heading: "Newsreader", Georgia, serif;
  --font-body: "Atkinson Hyperlegible Next", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid var(--warm-gray);
  background: transparent;
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: center;
  gap: 42px;
  width: min(1440px, calc(100% - 64px));
  min-height: 88px;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--forest);
  text-decoration: none;
}

.brand-mark {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  transform: rotate(-25deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--moss);
  font-size: 0.72rem;
  line-height: 1.35;
}

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

.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--moss);
}

.header-cta {
  padding: 13px 20px;
  border: 1px solid var(--forest);
  border-radius: 3px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--moss);
  border-color: var(--moss);
}

main {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: transparent;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px max(64px, calc((100vw - 1440px) / 2 + 32px));
}

.eyebrow {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 3.16vw, 3.54rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.hero-divider {
  width: 48px;
  height: 1px;
  margin: 28px 0 24px;
  background: var(--moss);
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.button-primary {
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--white);
}

.button-primary:hover {
  border-color: var(--moss);
  background: var(--moss);
}

.button-secondary {
  border: 1px solid var(--moss);
  background: transparent;
  color: var(--forest);
}

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

.hero-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--sage);
}

.hero-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 620px;
  background:
    linear-gradient(rgba(24, 52, 46, 0.08), rgba(24, 52, 46, 0.08)),
    linear-gradient(135deg, var(--sage), #aebda9);
  color: var(--forest);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 330px;
  padding: 22px 26px;
  background: rgba(24, 52, 46, 0.94);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid var(--warm-gray);
  background: var(--forest);
  color: var(--white);
}

.footer-inner {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
  padding-block: 30px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.8rem;
}

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

  .main-nav {
    grid-column: 1 / -1;
    justify-content: center;
    padding-bottom: 18px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 64px 32px;
  }

  .hero-image,
  .hero-image-placeholder {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: calc(100% - 32px);
    padding-block: 20px;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 0;
  }

  .header-cta {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.93vw, 3.61rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

.process-section {
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
  background: var(--sage);
}

.process-inner {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
  padding-block: 64px;
}

.process-heading {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0;
  color: var(--moss);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.number-badge {
  display: inline-flex;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(94, 120, 128, 0.72);
  border-radius: 50%;
  background: transparent;
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: none;
}

.number-badge--compact {
  flex-basis: 32px;
  width: 32px;
  height: 32px;
  font-size: 0.78rem;
}

.numbered-heading {
  display: flex;
  gap: 16px;
  align-items: center;
}

.process-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.43vw, 2.72rem);
  font-weight: 500;
  line-height: 1.08;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-block: 1px solid rgba(24, 52, 46, 0.24);
}

.process-step {
  position: relative;
  min-width: 0;
  padding: 22px 18px 24px;
  border-right: 1px solid rgba(24, 52, 46, 0.18);
}

.process-step:last-child {
  border-right: 0;
}

.process-number {
  display: inline-flex;
  margin-bottom: 16px;
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border: 1px solid var(--moss);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.process-step h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.2;
}

.process-step p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.78rem;
  line-height: 1.55;
}

.process-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 56px;
  align-items: end;
  margin-top: 38px;
  padding-left: 28px;
  border-left: 2px solid var(--moss);
}

.process-statement p {
  max-width: 780px;
  margin: 0;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(1.28rem, 2.25vw, 2.1rem);
  line-height: 1.25;
}

.process-statement span {
  color: var(--moss);
  font-size: 0.86rem;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .process-inner {
    width: min(100% - 40px, 980px);
  }

  .process-steps {
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .process-step {
    scroll-snap-align: start;
  }
}

@media (max-width: 720px) {
  .process-inner {
    width: calc(100% - 32px);
    padding-block: 52px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .process-step {
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 52, 46, 0.18);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-statement {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.solution-section {
  background: var(--white);
}

.solution-inner {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
  padding-block: 76px;
}

.solution-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px 64px;
  align-items: end;
  margin-bottom: 38px;
}

.solution-heading .section-kicker {
  grid-column: 1 / -1;
}

.solution-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.24vw, 3.62rem);
  font-weight: 500;
  line-height: 1.08;
}

.solution-heading p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.75;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 430px));
  gap: 26px;
  align-items: start;
  justify-content: center;
}

.solution-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--warm-gray);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(24, 52, 46, 0.06);
}

.solution-card h3 {
  margin: 0 0 22px;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 1.8vw, 1.82rem);
  font-weight: 500;
  line-height: 1.12;
}

.solution-flow {
  display: grid;
  gap: 16px;
}

.solution-flow-item {
  padding: 0;
}

.solution-flow-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.solution-flow-item p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.84rem;
  line-height: 1.55;
}

.solution-flow-item:nth-child(3) {
  padding-top: 17px;
  border-top: 1px solid var(--warm-gray);
}

.solution-flow-result {
  margin-top: 2px;
  padding: 18px 20px;
  border: 1px solid rgba(82, 107, 78, 0.18);
  border-radius: 10px;
  background: var(--sage);
}

.solution-flow-result span,
.solution-flow-result p {
  color: var(--forest);
}

.solution-flow-result p {
  font-weight: 500;
}

.solution-link {
  display: inline-flex;
  margin-top: 34px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.solution-link:hover {
  color: var(--moss);
}

@media (max-width: 1100px) {
  .solution-cards {
    grid-template-columns: repeat(2, minmax(280px, 410px));
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .solution-inner {
    width: calc(100% - 32px);
    padding-block: 56px;
  }

  .solution-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .solution-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .solution-card {
    padding: 26px 22px;
  }

  .solution-card h3 {
    margin-bottom: 20px;
    font-size: 1.42rem;
  }
}

.situations-section {
  border-top: 1px solid var(--warm-gray);
  background: var(--paper);
}

.situations-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 72px;
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
  padding-block: 78px;
}

.situations-intro {
  align-self: start;
  position: sticky;
  top: 32px;
}

.situations-intro h2 {
  max-width: 560px;
  margin: 18px 0 24px;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.24vw, 3.62rem);
  font-weight: 500;
  line-height: 1.08;
}

.situations-intro p:not(.section-kicker) {
  max-width: 600px;
  margin: 0;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.75;
}

.situations-list {
  border-top: 1px solid var(--warm-gray);
}

.situation-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--warm-gray);
  color: inherit;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    padding-inline 160ms ease,
    transform 160ms ease;
}

.situation-item:hover {
  padding-inline: 10px 12px;
  background: rgba(221, 228, 217, 0.45);
  transform: translateX(3px);
}

.situation-number {
  align-self: start;
}

.situation-content {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.situation-title {
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2vw, 1.88rem);
  font-weight: 500;
  line-height: 1.15;
}

.situation-description,
.situation-result {
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.65;
}

.situation-result {
  max-width: 680px;
  color: var(--forest);
}

.situation-result span {
  display: block;
  margin-bottom: 4px;
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-transform: uppercase;
}

.situation-arrow {
  color: var(--moss);
  font-size: 1.2rem;
  line-height: 1.2;
  transition: transform 160ms ease;
}

.situation-item:hover .situation-arrow {
  transform: translateX(4px);
}

.situations-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.situations-link:hover {
  color: var(--moss);
}

@media (max-width: 1050px) {
  .situations-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(100% - 40px, 980px);
  }

  .situations-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .situations-inner {
    width: calc(100% - 32px);
    gap: 32px;
    padding-block: 58px;
  }

  .situations-intro h2 {
    margin-top: 14px;
    margin-bottom: 18px;
  }

  .situation-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 24px 0;
  }

  .situation-number {
    grid-column: 1 / -1;
  }

  .situation-title {
    font-size: 1.34rem;
  }

  .situation-description,
  .situation-result {
    font-size: 0.88rem;
  }
}

.featured-service-section {
  border-top: 1px solid var(--warm-gray);
  background: var(--white);
}

.featured-service-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 56px;
  align-items: stretch;
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
  padding-block: 104px;
}

.featured-service-copy {
  max-width: 820px;
  padding: 46px 48px;
  border: 1px solid rgba(215, 211, 200, 0.8);
  border-radius: 8px;
  background: var(--white);
}

.featured-service-copy h2 {
  display: block;
  width: 100%;
  max-width: none;
  margin: 18px 0 30px;
  padding: 24px 28px 26px;
  border: 1px solid rgba(82, 107, 78, 0.18);
  border-radius: 14px;
  background: var(--sage);
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.65vw, 2.72rem);
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(24, 52, 46, 0.08);
}

.featured-service-lead {
  max-width: 660px;
  margin: 0;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.75;
}

.featured-service-note {
  max-width: 620px;
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--moss);
  color: var(--forest);
  font-size: 0.92rem;
  line-height: 1.6;
}

.featured-service-details {
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid rgba(24, 52, 46, 0.18);
}

.featured-service-details h3 {
  margin: 0 0 20px;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 1.46rem;
  font-weight: 500;
  line-height: 1.2;
}

.featured-service-details p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.65;
}

.featured-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.featured-service-list li {
  padding-top: 16px;
  border-top: 1px solid rgba(24, 52, 46, 0.16);
  color: var(--charcoal);
}

.featured-service-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.2;
}

.featured-service-list span {
  display: block;
  font-size: 0.86rem;
  line-height: 1.6;
}

.featured-service-when {
  max-width: 660px;
  margin-top: 38px;
  padding: 24px 26px;
  border-left: 2px solid var(--moss);
  background: rgba(244, 241, 232, 0.78);
}

.featured-service-when h3 {
  margin-bottom: 10px;
}

.featured-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
}

.featured-service-text-link {
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.featured-service-text-link:hover {
  color: var(--moss);
}

.service-document-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 58px 42px;
  border: 1px solid rgba(215, 211, 200, 0.7);
  border-radius: 8px;
  background: rgba(221, 228, 217, 0.42);
}

.service-document-paper {
  width: min(100%, 372px);
  padding: 28px 28px 24px;
  border: 1px solid rgba(215, 211, 200, 0.9);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(94, 120, 128, 0.07), transparent 30%),
    var(--white);
  box-shadow: 0 12px 28px rgba(24, 52, 46, 0.08);
}

.service-document-header {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(215, 211, 200, 0.72);
}

.service-document-header span {
  display: block;
  margin-bottom: 10px;
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-document-header h3 {
  max-width: 280px;
  margin: 0;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 1.62rem;
  font-weight: 500;
  line-height: 1.1;
}

.service-document-sections {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-document-sections li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid rgba(215, 211, 200, 0.48);
}

.service-document-number {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
  font-size: 0.7rem;
}

.service-document-sections strong {
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 500;
}

.service-document-footer {
  margin-top: 20px;
  padding-top: 16px;
  color: var(--moss);
  font-size: 0.76rem;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .featured-service-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(100% - 40px, 980px);
  }

  .featured-service-copy {
    max-width: none;
  }

  .service-document-preview {
    justify-content: flex-start;
    padding: 42px;
  }
}

@media (max-width: 720px) {
  .featured-service-inner {
    width: calc(100% - 32px);
    gap: 38px;
    padding-block: 64px;
  }

  .featured-service-copy {
    padding: 30px 22px;
  }

  .featured-service-copy h2 {
    margin-top: 14px;
    margin-bottom: 22px;
    padding: 18px 18px 20px;
    border-radius: 12px;
    font-size: clamp(1.45rem, 6.4vw, 2.1rem);
    white-space: normal;
  }

  .featured-service-lead {
    font-size: 0.98rem;
  }

  .featured-service-details {
    margin-top: 34px;
    padding-top: 28px;
  }

  .featured-service-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-service-when {
    margin-top: 30px;
    padding: 22px 20px;
  }

  .featured-service-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 34px;
  }

  .featured-service-text-link {
    display: inline-flex;
    justify-content: center;
    padding-block: 8px;
  }

  .service-document-paper {
    width: 100%;
    padding: 24px 20px 22px;
  }

  .service-document-preview {
    padding: 24px 16px;
  }

  .service-document-header h3 {
    font-size: 1.42rem;
  }

  .service-document-sections li {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 42px;
  }

.service-document-sections strong {
    font-size: 0.86rem;
  }
}

.expertise-section {
  border-top: 1px solid var(--warm-gray);
  background: var(--white);
}

.expertise-inner {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
  padding-block: 96px 88px;
}

.expertise-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.33fr) minmax(0, 0.67fr);
  gap: 56px;
  align-items: center;
}

.expertise-copy {
  max-width: 430px;
}

.expertise-copy h2 {
  margin: 18px 0 24px;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.24vw, 3.62rem);
  font-weight: 500;
  line-height: 1.08;
}

.expertise-copy p:not(.section-kicker) {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.75;
}

.expertise-statement {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 2px solid var(--moss);
  color: var(--forest);
}

.expertise-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage);
  aspect-ratio: 16 / 9;
}

.expertise-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(24, 52, 46, 0.38), transparent 38%),
    linear-gradient(180deg, rgba(24, 52, 46, 0.18), transparent 42%, rgba(24, 52, 46, 0.28));
  pointer-events: none;
}

.expertise-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.expertise-markers {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.expertise-marker {
  position: absolute;
  display: grid;
  grid-template-columns: 16px 36px minmax(112px, 170px);
  gap: 7px;
  align-items: center;
  width: max-content;
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(12, 25, 22, 0.34));
}

.expertise-marker-water,
.expertise-marker-use {
  grid-template-columns: minmax(112px, 170px) 36px 16px;
}

.expertise-marker-water .expertise-marker-dot,
.expertise-marker-use .expertise-marker-dot {
  order: 3;
}

.expertise-marker-water .expertise-marker-line,
.expertise-marker-use .expertise-marker-line {
  order: 2;
}

.expertise-marker-water .expertise-marker-text,
.expertise-marker-use .expertise-marker-text {
  order: 1;
}

.expertise-marker-dot {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 253, 248, 0.9);
  border-radius: 50%;
  background: rgba(24, 52, 46, 0.24);
  box-shadow: 0 0 0 4px rgba(255, 253, 248, 0.12);
}

.expertise-marker-line {
  width: 36px;
  height: 1px;
  background: rgba(255, 253, 248, 0.78);
}

.expertise-marker-text {
  display: grid;
  gap: 3px;
  padding: 7px 9px;
  border-radius: 4px;
  background: rgba(24, 52, 46, 0.42);
  backdrop-filter: blur(2px);
}

.expertise-marker-text strong {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}

.expertise-marker-text span {
  font-size: 0.68rem;
  line-height: 1.35;
}

.expertise-marker-root {
  left: 8%;
  top: 57%;
}

.expertise-marker-water {
  left: 37%;
  top: 65%;
}

.expertise-marker-soil {
  left: 38%;
  top: 83%;
}

.expertise-marker-use {
  left: 52%;
  top: 49%;
}

.expertise-marker-biodiversity {
  left: 22%;
  top: 38%;
}

.expertise-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 34px;
  border-block: 1px solid var(--warm-gray);
  background: rgba(255, 253, 248, 0.86);
}

.expertise-area {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  min-width: 0;
  min-height: 148px;
  padding: 26px 20px 24px;
  border-right: 1px solid var(--warm-gray);
  color: var(--forest);
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.expertise-area:last-child {
  border-right: 0;
}

.expertise-area svg {
  width: 36px;
  height: 36px;
  color: var(--moss);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.expertise-area span {
  align-self: end;
  max-width: 180px;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.38;
}

.expertise-area:hover,
.expertise-area:focus-visible {
  background: rgba(221, 228, 217, 0.48);
  color: var(--forest);
  transform: translateY(-2px);
}

.expertise-area:hover svg,
.expertise-area:focus-visible svg {
  transform: translateX(3px);
}

.expertise-area:focus-visible,
.expertise-link:focus-visible {
  outline: 2px solid var(--slate);
  outline-offset: 4px;
}

.expertise-link {
  display: flex;
  justify-content: flex-end;
  width: fit-content;
  margin: 28px 0 0 auto;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.expertise-link:hover {
  color: var(--moss);
}

.problem-page {
  background: var(--white);
}

.problem-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.43fr) minmax(0, 0.57fr);
  gap: 64px;
  align-items: center;
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
  padding-block: 78px 72px;
}

.problem-hero-copy {
  max-width: 620px;
}

.problem-hero h1 {
  margin: 18px 0 26px;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.24vw, 3.62rem);
  font-weight: 500;
  line-height: 1.06;
}

.problem-hero-lead {
  max-width: 620px;
  margin: 0;
  color: var(--charcoal);
  font-size: 1.03rem;
  line-height: 1.78;
}

.problem-hero-highlight {
  max-width: 560px;
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--moss);
  color: var(--forest);
  font-size: 0.98rem;
  line-height: 1.65;
}

.problem-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.problem-text-link {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.problem-text-link:hover {
  color: var(--moss);
}

.problem-text-link:focus-visible,
.problem-toc a:focus-visible,
.problem-service-path a:focus-visible {
  outline: 2px solid var(--slate);
  outline-offset: 4px;
}

.problem-hero-media {
  position: relative;
  margin: 0;
}

.problem-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.problem-hero-media figcaption {
  max-width: 420px;
  margin-top: 14px;
  color: var(--moss);
  font-size: 0.78rem;
  line-height: 1.55;
}

.problem-content-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 76px;
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
  padding-block: 72px 96px;
  border-top: 1px solid var(--warm-gray);
}

.problem-toc {
  position: sticky;
  top: 32px;
  align-self: start;
  padding-top: 4px;
}

.problem-toc p {
  margin: 0 0 18px;
  color: var(--moss);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-toc nav {
  display: grid;
  border-top: 1px solid var(--warm-gray);
}

.problem-toc a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(215, 211, 200, 0.75);
  color: var(--charcoal);
  font-size: 0.84rem;
  line-height: 1.35;
  text-decoration: none;
}

.problem-toc a:hover {
  color: var(--forest);
}

.problem-content {
  min-width: 0;
}

.problem-section {
  padding-block: 72px;
  border-top: 1px solid rgba(215, 211, 200, 0.86);
}

.problem-section:first-child {
  padding-top: 0;
  border-top: 0;
}

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

.problem-section-heading h2,
.problem-questions-heading h2,
.problem-cta h2 {
  margin: 14px 0 0;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.24vw, 3.62rem);
  font-weight: 500;
  line-height: 1.1;
}

.problem-section-heading p:not(.section-kicker),
.problem-questions-heading p:not(.section-kicker),
.problem-cta p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--charcoal);
  font-size: 0.96rem;
  line-height: 1.75;
}

.problem-readable {
  max-width: 740px;
}

.problem-readable p {
  margin: 0;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.82;
}

.problem-readable p + p {
  margin-top: 22px;
}

.problem-chain {
  display: flex;
  gap: 14px;
  align-items: stretch;
  margin-top: 42px;
}

.problem-chain-step {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  gap: 14px;
  align-items: center;
}

.problem-chain-bubble {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 82px;
  padding: 18px 18px 17px;
  border: 1px solid var(--warm-gray);
  border-radius: 12px;
  background: var(--white);
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.16;
  text-align: center;
  box-shadow: 0 8px 18px rgba(24, 52, 46, 0.035);
  transition: background-color 160ms ease, transform 160ms ease;
}

.problem-chain-arrow {
  flex: 0 0 auto;
  color: var(--moss);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1;
}

.problem-chain-step:hover .problem-chain-bubble {
  background: rgba(221, 228, 217, 0.42);
  transform: translateX(2px);
}

.problem-causes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 44px;
  max-width: 860px;
  border-top: 1px solid var(--warm-gray);
}

.problem-causes article {
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--warm-gray);
}

.problem-cause-title {
  display: flex;
  gap: 16px;
  align-items: center;
}

.problem-cause-number {
  border: 1px solid var(--warm-gray);
}

.problem-causes h3,
.problem-outcomes h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.18;
}

.problem-causes p,
.problem-outcomes p {
  margin: 12px 0 0;
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.65;
}

.problem-questions-section {
  margin-block: 18px 72px;
  padding: 46px 48px;
  background: var(--forest);
  color: var(--white);
}

.problem-questions-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: 34px 54px;
  align-items: end;
}

.problem-questions-heading .section-kicker,
.problem-questions-heading h2,
.problem-questions-heading p:not(.section-kicker) {
  color: var(--white);
}

.problem-questions-heading .section-kicker {
  color: rgba(255, 253, 248, 0.76);
}

.problem-questions-heading h2 {
  grid-column: 1;
  margin-top: 12px;
}

.problem-questions-heading p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
}

.problem-question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
}

.problem-question-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
  color: rgba(255, 253, 248, 0.92);
  font-size: 0.92rem;
  line-height: 1.58;
}

.problem-question-number {
  margin-top: 1px;
  border-color: rgba(221, 228, 217, 0.52);
  background: transparent;
  color: rgba(255, 253, 248, 0.82);
}

.problem-question-text {
  min-width: 0;
}

.problem-service-path {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 860px;
  border-top: 1px solid var(--warm-gray);
}

.problem-service-path a {
  display: grid;
  grid-template-columns: 52px minmax(200px, 0.35fr) minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--warm-gray);
  color: inherit;
  text-decoration: none;
}

.problem-service-number {
  justify-self: start;
}

.problem-service-path strong {
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.18;
}

.problem-service-path em {
  color: var(--charcoal);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.6;
}

.problem-service-path b {
  color: var(--moss);
  font-weight: 500;
  transition: transform 160ms ease;
}

.problem-service-path a:hover {
  background: rgba(221, 228, 217, 0.32);
}

.problem-service-path a:hover b {
  transform: translateX(4px);
}

.problem-outcomes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 960px;
  border-block: 1px solid var(--warm-gray);
}

.problem-outcomes article {
  min-width: 0;
  padding: 26px 24px 28px 0;
  border-right: 1px solid var(--warm-gray);
}

.problem-outcomes article + article {
  padding-left: 24px;
}

.problem-outcomes article:last-child {
  border-right: 0;
}

.problem-outcome-title {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 44px;
}

.problem-outcome-number {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  border-color: var(--warm-gray);
  font-size: 0.82rem;
}

.problem-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  margin-top: 28px;
  padding: 44px 0 0;
  border-top: 2px solid var(--forest);
}

.problem-cta h2 {
  max-width: 720px;
}

.problem-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  min-width: 260px;
}

@media (max-width: 1050px) {
  .problem-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(100% - 40px, 980px);
    padding-block: 64px;
  }

  .problem-hero-copy {
    max-width: 760px;
  }

  .problem-hero-media img {
    aspect-ratio: 16 / 9;
  }

  .problem-content-shell {
    grid-template-columns: 1fr;
    gap: 44px;
    width: min(100% - 40px, 980px);
    padding-block: 52px 78px;
  }

  .problem-toc {
    position: static;
  }

  .problem-toc nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    border-bottom: 1px solid var(--warm-gray);
    scrollbar-width: thin;
  }

  .problem-toc a {
    flex: 0 0 auto;
    padding: 13px 20px 13px 0;
    border-bottom: 0;
    white-space: nowrap;
  }

  .problem-section {
    padding-block: 58px;
  }

  .problem-chain {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px 14px;
  }

  .problem-chain-step {
    flex: 0 1 calc(50% - 7px);
  }

  .problem-chain-bubble {
    width: 100%;
    min-height: 78px;
  }

  .problem-chain-step:nth-child(2n):not(:last-child) {
    flex-direction: column;
    gap: 10px;
  }

  .problem-chain-step:nth-child(2n):not(:last-child) .problem-chain-arrow {
    transform: rotate(90deg);
  }

  .problem-causes {
    gap: 0 34px;
  }

  .problem-questions-section {
    padding: 40px 34px;
  }

  .problem-questions-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problem-questions-heading h2,
  .problem-questions-heading p:not(.section-kicker) {
    grid-column: auto;
    grid-row: auto;
  }

  .problem-service-path a {
    grid-template-columns: 54px minmax(170px, 0.4fr) minmax(0, 1fr) auto;
    gap: 18px;
  }

  .problem-outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-outcomes article:nth-child(2n) {
    border-right: 0;
  }

  .problem-outcomes article:nth-child(n + 3) {
    border-top: 1px solid var(--warm-gray);
  }
}

@media (max-width: 720px) {
  .number-badge,
  .number-badge--compact {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 0.74rem;
  }

  .problem-hero {
    width: calc(100% - 32px);
    padding-block: 48px 54px;
  }

  .problem-hero h1 {
    margin-top: 14px;
    margin-bottom: 22px;
    font-size: clamp(1.81rem, 8.41vw, 2.78rem);
  }

  .problem-hero-lead {
    font-size: 0.98rem;
  }

  .problem-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .problem-hero-actions .problem-text-link {
    justify-content: center;
    padding-block: 8px;
  }

  .problem-content-shell {
    width: calc(100% - 32px);
    padding-block: 38px 62px;
  }

  .problem-toc {
    display: none;
  }

  .problem-section {
    padding-block: 48px;
  }

  .problem-section-heading {
    margin-bottom: 28px;
  }

  .problem-section-heading h2,
  .problem-questions-heading h2,
  .problem-cta h2 {
    font-size: clamp(1.81rem, 8.41vw, 2.78rem);
  }

  .problem-readable p {
    font-size: 0.96rem;
  }

  .problem-chain {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .problem-chain-step {
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .problem-chain-bubble {
    width: 100%;
    min-height: 0;
    padding: 17px 18px;
    font-size: 1.04rem;
  }

  .problem-chain-arrow {
    transform: rotate(90deg);
  }

  .problem-causes,
  .problem-question-list,
  .problem-outcomes {
    grid-template-columns: 1fr;
  }

  .problem-causes article {
    padding-block: 24px;
  }

  .problem-cause-title {
    gap: 12px;
  }

  .problem-cause-number {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .problem-questions-section {
    margin-block: 8px 48px;
    padding: 32px 22px;
  }

  .problem-question-list {
    gap: 0;
    margin-top: 32px;
  }

  .problem-service-path a {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 10px 18px;
    padding: 24px 0;
  }

  .problem-service-path em {
    grid-column: 1 / -1;
  }

  .problem-service-number {
    grid-column: 1;
    grid-row: 1;
  }

  .problem-service-path strong {
    grid-column: 2;
    grid-row: 1;
  }

  .problem-service-path b {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
  }

  .problem-outcomes article,
  .problem-outcomes article + article {
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid var(--warm-gray);
  }

  .problem-outcomes article:first-child {
    border-top: 0;
  }

  .problem-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 10px;
    padding-top: 34px;
  }

  .problem-cta-actions {
    align-items: stretch;
    min-width: 0;
  }

  .problem-cta-actions .problem-text-link {
    justify-content: center;
    padding-block: 8px;
  }
}

@media (max-width: 1050px) {
  .expertise-inner {
    width: min(100% - 40px, 980px);
    padding-block: 74px;
  }

  .expertise-hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .expertise-copy {
    max-width: 720px;
  }

  .expertise-visual {
    aspect-ratio: 16 / 9;
  }

  .expertise-marker {
    grid-template-columns: 14px 32px minmax(110px, 166px);
    gap: 7px;
  }

  .expertise-marker-water,
  .expertise-marker-use {
    grid-template-columns: minmax(110px, 166px) 32px 14px;
  }

  .expertise-marker-dot {
    width: 14px;
    height: 14px;
  }

  .expertise-marker-line {
    width: 32px;
  }

  .expertise-marker-text {
    padding: 7px 9px;
  }

  .expertise-marker-text strong {
    font-size: 0.72rem;
  }

  .expertise-marker-text span {
    font-size: 0.64rem;
  }

  .expertise-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .expertise-area:nth-child(3n) {
    border-right: 0;
  }

  .expertise-area:nth-child(n + 4) {
    border-top: 1px solid var(--warm-gray);
  }
}

@media (max-width: 720px) {
  .expertise-inner {
    width: calc(100% - 32px);
    padding-block: 62px;
  }

  .expertise-copy h2 {
    margin-top: 14px;
    margin-bottom: 20px;
    font-size: clamp(1.81rem, 8.41vw, 2.78rem);
  }

  .expertise-copy p:not(.section-kicker) {
    font-size: 0.94rem;
  }

  .expertise-statement {
    margin-top: 22px;
  }

  .expertise-visual {
    overflow: visible;
    background: transparent;
    aspect-ratio: auto;
  }

  .expertise-visual::after {
    display: none;
  }

  .expertise-visual img {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .expertise-markers {
    position: static;
    display: grid;
    gap: 16px;
    margin-top: 14px;
  }

  .expertise-marker,
  .expertise-marker-water,
  .expertise-marker-use {
    position: static;
    grid-template-columns: 12px 24px minmax(0, 1fr);
    gap: 6px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 4px;
    background: rgba(24, 52, 46, 0.86);
    filter: none;
  }

  .expertise-marker-water .expertise-marker-dot,
  .expertise-marker-use .expertise-marker-dot,
  .expertise-marker-water .expertise-marker-line,
  .expertise-marker-use .expertise-marker-line,
  .expertise-marker-water .expertise-marker-text,
  .expertise-marker-use .expertise-marker-text {
    order: initial;
  }

  .expertise-marker-dot {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 3px rgba(255, 253, 248, 0.12);
  }

  .expertise-marker-line {
    width: 24px;
  }

  .expertise-marker-text {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .expertise-marker-text strong {
    font-size: 0.68rem;
  }

  .expertise-marker-text span {
    font-size: 0.6rem;
    line-height: 1.3;
  }

  .expertise-strip {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .expertise-area,
  .expertise-area:nth-child(3n) {
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-top: 1px solid var(--warm-gray);
  }

  .expertise-area:first-child {
    border-top: 0;
  }

  .expertise-area svg {
    width: 30px;
    height: 30px;
  }

  .expertise-area span {
    align-self: center;
    max-width: none;
    font-size: 0.9rem;
  }

  .expertise-link {
    justify-content: flex-start;
    margin-left: 0;
  }
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .hero-image img {
    min-height: 480px;
  }
}
