:root {
  --ink: #17201b;
  --paper: #f3f0e7;
  --cream: #e8e2d4;
  --green: #2f5a46;
  --lime: #c8ef79;
  --white: #fffef8;
  --line: rgba(23, 32, 27, 0.16);
  --max-width: 1240px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 "DM Sans", sans-serif;
}

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

button {
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
}

section[id] {
  scroll-margin-top: 80px;
}

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

.section {
  padding: 120px 0;
}

.display {
  margin: 0;
  font: 500/0.97 Manrope, sans-serif;
  letter-spacing: -0.055em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentcolor;
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  padding: 18px 0;
  color: var(--white);
  background: rgba(23, 32, 27, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: 0.25s;
}

.site-header.is-scrolled {
  padding: 11px 0;
  background: rgba(23, 32, 27, 0.94);
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font: 13px Manrope, sans-serif;
}

.navigation-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.navigation-links a {
  opacity: 0.8;
}

.navigation-links a:hover, .navigation-links a:focus-visible {
  opacity: 1;
}

.navigation-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 100px;
}

.menu-button {
  display: none;
  padding: 8px 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.hero {
  min-height: 830px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  color: var(--white);
}

.hero::after {
  position: absolute;
  top: 80px;
  right: -170px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(200, 239, 121, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  min-height: 830px;
  padding-top: 120px;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5vw;
  align-items: end;
}

.hero-copy {
  z-index: 2;
  padding-bottom: 90px;
  position: relative;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(58px, 7.4vw, 112px);
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-subtitle {
  max-width: 560px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 23px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s;
}

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

.button-primary:hover {
  background: #d6ff83;
  transform: translateY(-2px);
}

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

.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 46px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.hero-photo {
  z-index: 2;
  height: 690px;
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #304337;
  border-radius: 220px 220px 0 0;
}

.hero-photo img, .portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  object-position: center 28%;
  filter: saturate(0.88) contrast(1.03);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 32, 27, 0.48));
  content: "";
}

.hero-photo figcaption {
  z-index: 2;
  position: absolute;
  bottom: 28px;
  left: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.intro h2 {
  max-width: 850px;
  font-size: clamp(44px, 5.3vw, 76px);
}

.section-lead {
  max-width: 670px;
  margin: 40px 0 0;
  color: #4f5a53;
  font-size: 20px;
}

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

.problem-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
  background: var(--white);
}

.tag {
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-card h3 {
  margin: 0;
  font: 500 25px Manrope, sans-serif;
  letter-spacing: -0.03em;
}

.problem-card p {
  margin: 0;
  color: #69716c;
  font-size: 15px;
}

.approach {
  background: var(--green);
  color: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.approach h2 {
  position: sticky;
  top: 100px;
  font-size: clamp(50px, 6vw, 86px);
}

.approach h2 span {
  color: var(--lime);
}

.approach-copy > p {
  margin: 0 0 70px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.principle {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 30px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.principle h3 {
  margin: 0;
  font: 500 27px Manrope, sans-serif;
  letter-spacing: -0.03em;
}

.principle p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 15px;
}

.principle-word {
  padding-top: 9px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process h2 {
  max-width: 850px;
  font-size: clamp(48px, 6vw, 84px);
}

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

.step {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 30px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.step > span {
  color: var(--green);
  font-size: 13px;
}

.step h3 {
  margin: 0;
  font: 500 25px Manrope, sans-serif;
  letter-spacing: -0.03em;
}

.step p {
  max-width: 500px;
  margin: 3px 0;
  color: #66706a;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  align-items: center;
}

.portrait {
  height: 650px;
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #9ba99b;
  border-radius: 4px;
}

.portrait img {
  object-position: center;
  filter: saturate(0.82);
}

.portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  content: "";
  pointer-events: none;
}

.about h2 {
  margin: 18px 0 35px;
  font-size: clamp(48px, 5.5vw, 78px);
}

.about-lead {
  color: #445048;
  font-size: 20px;
}

.about p {
  color: #5d665f;
}

.about blockquote {
  margin: 50px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  font: 500 25px/1.35 Manrope, sans-serif;
  letter-spacing: -0.025em;
}

.services h2 {
  font-size: clamp(48px, 6vw, 84px);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background: var(--white);
  border: 1px solid transparent;
  transition: 0.25s;
}

.service-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
}

.service-card h3 {
  margin: 0;
  font: 500 25px Manrope, sans-serif;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: #687069;
  font-size: 15px;
}

.service-card small {
  color: var(--green);
}

.service-symbol {
  width: 64px;
  height: 46px;
  position: relative;
  color: var(--green);
}

.symbol-motion::before, .symbol-motion::after {
  position: absolute;
  border: 1px solid currentcolor;
  border-radius: 50%;
  content: "";
}

.symbol-motion::before {
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
}

.symbol-motion::after {
  top: 13px;
  left: 35px;
  width: 20px;
  height: 20px;
  background: var(--lime);
}

.symbol-assess::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 50px;
  height: 28px;
  border-bottom: 2px solid currentcolor;
  border-left: 2px solid currentcolor;
  content: "";
  transform: skewX(-28deg);
}

.symbol-assess::after {
  position: absolute;
  top: 4px;
  right: 2px;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
}

.symbol-plan {
  width: 54px;
  height: 42px;
  background: repeating-linear-gradient(to bottom, currentcolor 0 2px, transparent 2px 13px);
}

.social-proof {
  background: #dfe6d8;
}

.proof-grid, .faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.proof-grid h2, .faq h2 {
  font-size: clamp(43px, 5vw, 72px);
}

.testimonial {
  margin: 0;
  font: 500 clamp(28px, 3vw, 43px)/1.25 Manrope, sans-serif;
  letter-spacing: -0.04em;
}

.testimonial::before {
  display: block;
  color: var(--green);
  font-size: 75px;
  line-height: 0.7;
  content: "“";
}

.client {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
  padding-top: 20px;
  color: #5f6861;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.placeholder {
  color: #8b938d;
  font-style: italic;
}

.faq details {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

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

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font: 500 20px Manrope, sans-serif;
}

.faq summary::after {
  color: var(--green);
  font-size: 24px;
  content: "+";
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 650px;
  margin: 18px 0 4px;
  color: #657068;
}

.contact {
  padding: 120px 0 38px;
  background: var(--ink);
  color: var(--white);
}

.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
}

.contact h2 {
  max-width: 950px;
  font-size: clamp(58px, 8vw, 120px);
}

.contact h2 span {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 120px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 22px;
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.75s ease;
}

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

@media (max-width: 900px) {
  .section {
    padding: 85px 0;
  }
  .menu-button {
    display: block;
  }
  .navigation-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(23, 32, 27, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navigation-links.is-open {
    display: flex;
  }
  .navigation-cta {
    text-align: center;
  }
  .hero, .hero-grid {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 160px;
  }
  .hero-copy {
    padding-bottom: 60px;
  }
  .hero-photo {
    height: 520px;
    border-radius: 170px 170px 0 0;
  }
  .intro-grid, .approach-grid, .about-grid, .proof-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .problem-grid, .service-grid {
    grid-template-columns: 1fr;
  }
  .approach h2 {
    position: static;
  }
  .step {
    grid-template-columns: 50px 1fr;
  }
  .step p {
    grid-column: 2;
  }
  .portrait {
    height: 540px;
  }
  .contact-top {
    display: block;
  }
  .contact .button {
    margin-top: 35px;
  }
  .footer-bottom {
    margin-top: 80px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max-width));
  }
  .brand > span:last-child {
    display: none;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .hero-meta {
    display: block;
  }
  .hero-meta span {
    display: block;
    margin-top: 6px;
  }
  .hero-photo {
    height: 430px;
  }
  .section-lead, .approach-copy > p, .about-lead {
    font-size: 18px;
  }
  .step {
    grid-template-columns: 38px 1fr;
  }
  .footer-bottom {
    display: block;
  }
  .social-links {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}

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