:root {
  --ink: #17201e;
  --forest: #24423d;
  --forest-dark: #17312d;
  --sage: #77938d;
  --rose: #a85f63;
  --blush: #f1e5e4;
  --mist: #edf1ef;
  --paper: #fbfcfb;
  --white: #ffffff;
  --line: #d8dfdc;
  --shadow: 0 18px 40px rgba(23, 49, 45, 0.09);
  --content: min(1180px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest-dark);
  transform: translateY(-150%);
}

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

.content {
  width: var(--content);
  margin-inline: auto;
}

.content--narrow {
  max-width: 900px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 78px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  color: var(--forest-dark);
  background: rgba(251, 252, 251, 0.92);
  border-bottom: 1px solid rgba(36, 66, 61, 0.12);
  backdrop-filter: blur(14px);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  box-shadow: 0 6px 24px rgba(23, 49, 45, 0.08);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 0.95;
}

.wordmark span {
  font-family: var(--serif);
  font-size: 18px;
}

.wordmark strong {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  color: var(--rose);
}

.nav-cta {
  padding: 10px 18px;
  color: var(--white);
  background: var(--forest);
  border-radius: 4px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--rose);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0;
  color: var(--forest-dark);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before {
  position: absolute;
  top: -7px;
}

.menu-toggle__icon::after {
  position: absolute;
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(810px, 86svh);
  padding-top: 78px;
  overflow: hidden;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("/assets/hero-source.png");
  background-position: center 38%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__veil {
  background: rgba(255, 250, 246, 0.22);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: 70px 0 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: clamp(68px, 8vw, 126px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: #2d3a37;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--rose);
}

.button--quiet {
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(36, 66, 61, 0.45);
}

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

.hero__next {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.opening-statement {
  padding: 88px 0 96px;
  color: var(--white);
  background: var(--forest-dark);
  text-align: center;
}

.opening-statement h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(35px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
}

.opening-statement p:last-child {
  max-width: 740px;
  margin: 28px auto 0;
  color: #cfdbd7;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.06;
}

.section-heading > p:last-child {
  max-width: 590px;
  margin: 22px 0 0;
  color: #58645f;
}

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

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.service-card__index {
  align-self: flex-end;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 36px;
}

.service-card--featured .service-card__index,
.service-card--featured .service-card__type {
  color: #cbdad5;
}

.service-card__type {
  margin: 38px 0 8px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
}

.service-card > p:not(.service-card__type) {
  margin: 20px 0 32px;
  color: #58645f;
  font-size: 15px;
}

.service-card--featured > p:not(.service-card__type) {
  color: #dbe5e1;
}

.service-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.service-card--featured .service-card__footer {
  border-color: rgba(255, 255, 255, 0.24);
}

.service-card__footer strong {
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.service-card__footer a {
  color: var(--rose);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.service-card--featured .service-card__footer a {
  color: var(--white);
}

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

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.about__copy {
  padding-top: 36px;
}

.about__copy > p {
  max-width: 650px;
}

.about__lead {
  margin-top: 0;
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 37px);
  line-height: 1.3;
}

.about__signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 21px;
}

.about__signature span {
  width: 54px;
  height: 1px;
  background: currentColor;
}

.path {
  background: var(--mist);
}

.path-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid #bfcac6;
  list-style: none;
}

.path-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  min-height: 220px;
  padding: 34px 28px 34px 0;
  border-bottom: 1px solid #bfcac6;
}

.path-list li + li {
  padding-left: 28px;
  border-left: 1px solid #bfcac6;
}

.path-list > li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--rose);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
}

.path-list h3 {
  margin: 4px 0 12px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.path-list p {
  margin: 0;
  color: #58645f;
  font-size: 15px;
}

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

.faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 130px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-family: var(--serif);
  font-size: 23px;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--rose);
  content: "+";
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 400;
}

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

.faq details p {
  max-width: 650px;
  margin: -4px 0 26px;
  color: #58645f;
}

.contact {
  padding: 100px 0;
  color: var(--white);
  background: var(--forest);
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(50px, 10vw, 140px);
  align-items: end;
}

.contact__copy {
  max-width: 710px;
}

.section-kicker--light {
  color: #efb9bc;
}

.contact__copy > p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: #d5e2de;
}

.contact__action {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.contact__action > p {
  margin: 0 0 6px;
  color: #c9d9d4;
  font-size: 14px;
}

.contact__email {
  display: block;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 30px);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

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

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

.site-footer {
  padding: 34px 0;
  color: #57625e;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.site-footer__inner > p {
  margin: 0;
  font-size: 13px;
}

.site-footer__inner > p:last-child {
  justify-self: end;
}

.wordmark--footer span {
  font-size: 14px;
}

.wordmark--footer strong {
  font-size: 20px;
}

.mobile-contact {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 960px) {
  :root {
    --content: min(100% - 36px, 760px);
  }

  .site-header {
    min-height: 70px;
    padding-inline: 18px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 18px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(23, 49, 45, 0.12);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    padding: 12px 18px;
    border: 0;
    text-align: center;
  }

  .hero {
    min-height: 78svh;
    padding-top: 70px;
  }

  .hero__image {
    background-position: 61% center;
  }

  .hero__veil {
    background: rgba(255, 250, 246, 0.52);
  }

  .hero__content {
    width: var(--content);
  }

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

  .service-card {
    min-height: 340px;
  }

  .about__layout,
  .faq__layout,
  .contact__layout {
    grid-template-columns: 1fr;
  }

  .about__copy {
    padding-top: 0;
  }

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

  .path-list li,
  .path-list li + li {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
  }

  .contact__action {
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --content: calc(100% - 28px);
  }

  body {
    padding-bottom: 58px;
    font-size: 16px;
  }

  .hero {
    min-height: 650px;
  }

  .hero__image {
    background-position: 68% center;
  }

  .hero__veil {
    background: rgba(255, 250, 246, 0.62);
  }

  .hero__content {
    align-self: end;
    min-width: 0;
    padding-bottom: 105px;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 0.86;
  }

  .hero__lead {
    max-width: 100%;
    margin-top: 26px;
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__next {
    display: none;
  }

  .opening-statement {
    padding: 72px 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .service-card {
    min-height: 0;
    padding: 24px;
  }

  .service-card__type {
    margin-top: 24px;
  }

  .service-card__footer {
    align-items: center;
  }

  .contact {
    padding: 72px 0;
  }

  .site-footer {
    padding: 28px 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer__inner > p:last-child {
    justify-self: start;
  }

  .mobile-contact {
    position: fixed;
    z-index: 90;
    bottom: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: 58px;
    color: var(--white);
    background: var(--rose);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
  }
}

@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;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
