:root {
  --ink: #14221f;
  --ink-soft: #43534e;
  --forest: #102925;
  --forest-light: #1f4b43;
  --sage: #b8c9bb;
  --mint: #dbe8dd;
  --paper: #f4f1e9;
  --paper-deep: #e8e2d6;
  --white: #fffdf8;
  --amber: #c6995b;
  --line: rgba(20, 34, 31, 0.16);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --page: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  width: var(--page);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.wordmark-mark {
  width: 27px;
  height: 20px;
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}

.wordmark-mark i {
  display: block;
  width: 7px;
  background: var(--forest-light);
  transform: skewY(-31deg);
  border-radius: 1px 1px 0 0;
}

.wordmark-mark i:nth-child(1) { height: 9px; }
.wordmark-mark i:nth-child(2) { height: 17px; }
.wordmark-mark i:nth-child(3) { height: 12px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:not(.nav-cta) {
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--ink);
  border-color: var(--ink);
}

.nav-cta {
  padding: 11px 16px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  transition: background 160ms ease, color 160ms ease;
}

.nav-cta:hover {
  background: transparent;
  color: var(--forest);
}

.hero {
  width: var(--page);
  min-height: 680px;
  margin: 0 auto;
  padding: 84px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 76px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--forest-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(58px, 6.7vw, 92px);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.64;
}

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

.button {
  min-height: 48px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--forest);
  font-size: 14px;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--forest-light);
}

.button-secondary {
  color: var(--forest);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--forest);
}

.hero-note {
  margin: 25px 0 0;
  color: #62716c;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.15), transparent 36%),
    var(--forest);
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(219, 232, 221, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 232, 221, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
}

.contour {
  position: absolute;
  border: 1px solid rgba(184, 201, 187, 0.24);
  border-radius: 45% 55% 61% 39% / 51% 37% 63% 49%;
  transform: rotate(-18deg);
}

.contour-one {
  width: 440px;
  height: 250px;
  top: -60px;
  right: -130px;
}

.contour-two {
  width: 370px;
  height: 210px;
  top: -22px;
  right: -94px;
}

.contour-three {
  width: 300px;
  height: 168px;
  top: 18px;
  right: -56px;
}

.visual-card {
  position: absolute;
  z-index: 2;
  width: calc(100% - 64px);
  left: 32px;
  bottom: 68px;
  padding: 28px;
  color: var(--ink);
  background: rgba(244, 241, 233, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.visual-label {
  margin-bottom: 30px;
  color: #65746f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  font-family: var(--serif);
  font-size: 18px;
}

.signal-row strong {
  text-align: right;
  font-weight: 500;
}

.signal-arrow {
  color: var(--amber);
}

.signal-line {
  height: 4px;
  margin: 22px 0 20px;
  background: var(--paper-deep);
}

.signal-line i {
  display: block;
  width: 71%;
  height: 100%;
  background: linear-gradient(90deg, var(--forest-light), var(--amber));
}

.signal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.signal-tags span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 16px;
  margin: 0;
  color: rgba(255, 253, 248, 0.64);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles > div {
  min-height: 190px;
  padding: 38px max(32px, calc((100vw - min(1180px, calc(100vw - 48px))) / 2));
  border-right: 1px solid var(--line);
}

.principles > div:first-child {
  padding-left: max(24px, calc((100vw - min(1180px, calc(100vw - 48px))) / 2));
}

.principles > div:last-child {
  padding-right: max(24px, calc((100vw - min(1180px, calc(100vw - 48px))) / 2));
  border-right: 0;
}

.principle-number {
  display: block;
  margin-bottom: 31px;
  color: var(--forest-light);
  font-size: 11px;
  font-weight: 600;
}

.principles p {
  max-width: 340px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
}

.principles strong {
  color: var(--ink);
  font-weight: 500;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 124px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 0.9fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 68px;
}

.section-heading h2,
.reality h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

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

.capability-card {
  min-height: 500px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 248, 0.56);
  border: 1px solid var(--line);
}

.capability-card-featured {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.capability-topline {
  margin-bottom: 68px;
  display: flex;
  justify-content: space-between;
  color: #66746f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-card-featured .capability-topline {
  color: var(--sage);
}

.capability-card h3 {
  min-height: 78px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.capability-card > p {
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}

.capability-card-featured > p {
  color: var(--mint);
}

.capability-card ul {
  margin: auto 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.capability-card-featured ul {
  border-color: rgba(255, 255, 255, 0.18);
}

.capability-card li {
  position: relative;
  margin: 12px 0;
  padding-left: 17px;
  color: var(--ink-soft);
  font-size: 12px;
}

.capability-card-featured li {
  color: var(--mint);
}

.capability-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
}

.reality {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 110px;
}

.reality-copy {
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.reality-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.reality-copy p + p {
  margin-top: 26px;
}

.approach {
  padding-top: 60px;
}

.approach-heading {
  grid-template-columns: 0.75fr 2.05fr;
}

.approach-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.approach-steps li {
  min-height: 180px;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 0.75fr 2.05fr;
  gap: 52px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--forest-light);
  font-size: 11px;
  font-weight: 600;
}

.approach-steps li > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.approach-steps h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.approach-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}

.contact {
  width: var(--page);
  margin: 22px auto 0;
  padding: 72px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  color: var(--white);
  background: var(--forest);
}

.eyebrow-light {
  color: var(--sage);
}

.contact-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.contact-action p {
  margin-bottom: 30px;
  color: var(--mint);
  font-size: 15px;
  line-height: 1.72;
}

.button-light {
  color: var(--forest);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
}

.site-footer {
  width: var(--page);
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: #69766f;
  font-size: 11px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

.footer-wordmark {
  color: var(--ink);
}

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

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

  .hero-visual {
    min-height: 430px;
  }

  .section-heading {
    grid-template-columns: 0.5fr 1.4fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
  }

  .capability-card h3 {
    min-height: 0;
  }

  .capability-topline {
    margin-bottom: 45px;
  }

  .reality {
    gap: 60px;
  }

  .contact {
    padding: 54px;
    gap: 54px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100vw - 32px);
  }

  .site-header {
    min-height: 74px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    padding: 64px 0 72px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .visual-card {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 54px;
    padding: 22px;
  }

  .signal-row {
    font-size: 15px;
  }

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

  .principles > div,
  .principles > div:first-child,
  .principles > div:last-child {
    min-height: 0;
    padding: 30px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles > div:last-child {
    border-bottom: 0;
  }

  .principle-number {
    margin-bottom: 18px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading,
  .approach-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  .section-heading > p:last-child {
    grid-column: auto;
  }

  .capability-card {
    padding: 25px;
  }

  .reality {
    padding-top: 18px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .reality-copy {
    padding-top: 28px;
  }

  .approach-steps li {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }

  .approach-steps li > div {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact {
    width: 100%;
    margin-top: 0;
    padding: 70px 24px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .site-footer {
    min-height: 190px;
    padding: 34px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer p,
  .site-footer p:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
