:root {
  --ink: #12251d;
  --forest: #16372b;
  --forest-light: #22513f;
  --paper: #f3f0e7;
  --paper-deep: #e9e4d8;
  --lime: #cbea72;
  --peach: #f1a47c;
  --line: rgba(18, 37, 29, 0.18);
  --muted: #59675f;
  --max-width: 1200px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  color: white;
  background: var(--forest);
  transform: translateY(-150%);
}

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

.site-header,
.hero,
.section,
footer {
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.65rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--forest);
}

.brand-dot {
  color: var(--muted);
  font-weight: 500;
}

nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-size: 0.85rem;
  font-weight: 650;
}

nav a,
.text-link {
  position: relative;
}

nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  color: white;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--forest);
  background: var(--lime);
  transform: translateY(-2px);
}

.button-small {
  justify-self: end;
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 6vw;
  min-height: 710px;
  padding: 5rem 0 6rem;
}

.eyebrow {
  margin-bottom: 1.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h1 {
  max-width: 800px;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 8vw, 7.4rem);
}

h1 em {
  color: var(--forest-light);
  font-weight: 400;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.text-link {
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(18, 37, 29, 0.28);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 12px;
  height: 12px;
  background: var(--peach);
  border: 3px solid var(--paper);
  border-radius: 50%;
  content: "";
}

.orbit-one {
  width: 96%;
  height: 46%;
  transform: rotate(22deg);
}

.orbit-two {
  width: 96%;
  height: 46%;
  transform: rotate(82deg);
}

.orbit-two::after {
  background: var(--lime);
}

.orbit-three {
  width: 76%;
  height: 76%;
}

.orbit-three::after {
  top: 12%;
  left: 8%;
  background: var(--forest);
}

.core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  padding: 1.9rem;
  color: white;
  background: var(--forest);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}

.statement {
  padding: clamp(4rem, 9vw, 8rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  color: white;
  background: var(--forest);
}

.statement p {
  max-width: 1060px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.statement strong {
  color: var(--lime);
  font-weight: 400;
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-heading h2,
.example-copy h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.service-card {
  min-height: 330px;
  padding: 2rem clamp(1.2rem, 3vw, 2.5rem) 2rem 0;
  border-right: 1px solid var(--line);
}

.service-card + .service-card {
  padding-left: clamp(1.2rem, 3vw, 2.5rem);
}

.service-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-number {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.approach {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6vw;
  border-top: 1px solid var(--line);
}

.section-heading.compact {
  display: block;
  margin: 0;
}

.section-heading.compact h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.approach-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: approach;
}

.approach-list li {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 2rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  counter-increment: approach;
}

.approach-list li::before {
  grid-row: 1 / 3;
  color: var(--muted);
  content: "0" counter(approach);
  font-size: 0.7rem;
  font-weight: 800;
}

.approach-list span {
  font-family: var(--serif);
  font-size: 1.8rem;
}

.approach-list p {
  grid-column: 2;
  margin: -0.5rem 0 0;
  color: var(--muted);
}

.example {
  padding-top: 0;
}

.example-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1fr 0.65fr;
  gap: 3rem;
  min-height: 520px;
  padding: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  color: white;
  background: var(--forest);
  border-radius: 2px;
}

.example-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  margin-top: 0.25rem;
  background: var(--lime);
  border-radius: 50%;
}

.example-copy {
  align-self: center;
}

.example-copy h2 {
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.example-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.example-mark {
  position: absolute;
  right: -1.2rem;
  bottom: -1.1rem;
  display: flex;
  flex-direction: column;
  color: var(--lime);
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.095em;
  line-height: 0.67;
  opacity: 0.12;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.person {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: 1.5rem;
  background: var(--paper-deep);
  border: 1px solid transparent;
  transition: border-color 180ms ease, transform 180ms ease;
}

.person:hover {
  border-color: var(--forest);
  transform: translateY(-4px);
}

.person-monogram {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--forest);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.person:nth-child(2) .person-monogram {
  background: var(--peach);
}

.person:nth-child(3) .person-monogram {
  color: white;
  background: var(--forest);
}

.person h3 {
  margin-bottom: 0.25rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.person h3 a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.16em;
  transition: text-decoration-color 180ms ease;
}

.person h3 a:hover,
.person h3 a:focus-visible {
  text-decoration-color: currentColor;
}

.person .role {
  margin-bottom: 1.2rem;
  color: var(--forest-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.person p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100vw - var(--max-width)) / 2));
  color: var(--ink);
  background: var(--peach);
  background: linear-gradient(125deg, #d86e52, var(--peach));
}

.contact-intro h2 {
  max-width: 900px;
  margin-bottom: 2rem;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.contact-form {
  align-self: start;
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(18, 37, 29, 0.55);
  border-radius: 0;
  font: inherit;
}

.contact-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--ink);
  outline: 0;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-note,
.contact-status {
  margin: 0;
  font-size: 0.78rem;
}

.contact-note {
  max-width: 250px;
  opacity: 0.75;
}

.contact-status {
  padding-top: 0.5rem;
  font-weight: 700;
}

.contact-status.is-error {
  color: #681f18;
}

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

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

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  min-height: 220px;
  padding-block: 4rem 2rem;
}

.brand-footer {
  align-self: end;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

footer .copyright {
  text-align: right;
}

:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 4px;
}

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

  .button-small {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-visual {
    width: min(80vw, 460px);
    margin: -2rem auto 0;
  }

  .section-heading,
  .approach,
  .example-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .example-card {
    gap: 2rem;
  }

  .example-copy {
    align-self: start;
  }

  .example-mark {
    right: -0.5rem;
    bottom: -0.5rem;
  }
}

@media (max-width: 700px) {
  .site-header,
  .hero,
  .section,
  footer {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: 78px;
    padding-block: 1.25rem;
  }

  nav {
    justify-content: space-between;
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }

  .hero {
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

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

  .service-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card + .service-card {
    min-height: 0;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-number {
    margin-bottom: 2rem;
  }

  .approach-list li {
    grid-template-columns: 0.2fr 1fr;
  }

  .person {
    min-height: 330px;
  }

  .contact-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
  }

  footer p,
  footer .copyright {
    text-align: left;
  }
}

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

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