@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --ink: #1c2721;
  --forest: #173b2b;
  --forest-dark: #0d2a1d;
  --moss: #5b7059;
  --sage: #dbe3d8;
  --mist: #eef1eb;
  --cream: #f8f5ed;
  --white: #fffefa;
  --line: rgba(23, 59, 43, 0.22);
  --sans: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
}

h1 {
  margin-bottom: 28px;
  color: var(--forest);
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 24px;
  color: var(--forest);
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  letter-spacing: -0.055em;
}

h3 {
  letter-spacing: -0.035em;
}

:where(section[id], main[id]) {
  scroll-margin-top: 96px;
}

:where(a, button, summary, input, textarea):focus-visible {
  outline: 3px solid #b06c27;
  outline-offset: 4px;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 250ms ease,
    border-color 250ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 254, 250, 0.93);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, calc(100% - 64px));
  min-height: 96px;
  margin: 0 auto;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  color: var(--forest);
  line-height: 1;
  text-decoration: none;
}

.wordmark-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.wordmark-role {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

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

.site-nav a:not(.nav-contact) {
  position: relative;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 11px 18px;
  border: 1px solid var(--forest);
  border-radius: 99px;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  min-height: 100svh;
  padding: 150px max(5vw, 28px) 72px;
  gap: 7vw;
  background: var(--cream);
}

.hero-copy {
  max-width: 720px;
  margin-left: auto;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--moss);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
}

.hero h1 span {
  display: block;
}

.hero-service {
  font-size: clamp(3.2rem, 5.4vw, 6.4rem);
}

.hero-location {
  max-width: 680px;
  margin-top: 8px;
  font-size: clamp(1.8rem, 3.1vw, 3.5rem);
  letter-spacing: -0.045em;
}

.hero-statement {
  max-width: 540px;
  margin-bottom: 18px;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.hero-intro {
  max-width: 520px;
  margin-bottom: 34px;
  color: #475149;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

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

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

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
  text-underline-offset: 5px;
}

.text-link span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-image {
  position: relative;
  max-width: 780px;
  height: min(76vh, 780px);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.image-note {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: var(--cream);
  color: var(--forest);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-pad {
  padding: 140px max(5vw, 28px);
}

.statement {
  display: grid;
  grid-template-columns: 60px minmax(300px, 1.25fr) minmax(300px, 0.75fr);
  align-items: start;
  gap: 4vw;
  max-width: 1500px;
  margin: 0 auto;
}

.section-number {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--moss);
  font-size: 11px;
  place-items: center;
}

.statement h2 {
  max-width: 850px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.statement-copy {
  padding-top: 55px;
  color: #566058;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  max-width: 1380px;
  margin: 0 auto 78px;
  gap: 8vw;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 430px;
  margin-bottom: 10px;
  color: #536058;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.concerns-grid article {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.concerns-grid span {
  color: var(--moss);
  font-size: 11px;
}

.concerns-grid h3 {
  margin: 54px 0 16px;
  color: var(--forest);
  font-size: 25px;
}

.concerns-grid p {
  max-width: 330px;
  margin-bottom: 0;
  color: #566058;
}

.landscape-break {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
}

.landscape-break::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 31, 22, 0.58), rgba(12, 31, 22, 0.05));
  content: "";
}

.landscape-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landscape-break blockquote {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: max(5vw, 28px);
  max-width: 760px;
  margin: 0;
  color: white;
  transform: translateY(-50%);
}

.landscape-break blockquote p {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.approach {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  max-width: 1450px;
  margin: 0 auto;
  gap: 10vw;
}

.approach-intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.approach-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  gap: 28px;
}

.approach-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.approach-index {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--moss);
  font-size: 11px;
  place-items: center;
}

.approach-list h3 {
  margin-bottom: 16px;
  color: var(--forest);
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
}

.approach-list p {
  max-width: 650px;
  margin-bottom: 0;
  color: #566058;
}

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

.about-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
  align-items: center;
  max-width: 1250px;
  margin: 0 auto;
  gap: 10vw;
}

.about-monogram {
  display: grid;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  place-items: center;
}

.about-card .eyebrow,
.about-card h2 {
  color: white;
}

.about-card p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.about-card .qualification {
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.about-card .qualification strong {
  color: white;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.light-link {
  margin-top: 16px;
  color: white;
}

.practical > div:first-child {
  max-width: 1380px;
  margin: 0 auto 50px;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  gap: 0;
}

.practical-grid article {
  padding: 42px 40px 20px 0;
}

.practical-grid article + article {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.micro-label {
  margin-bottom: 46px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.practical-grid h3 {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 25px;
}

.practical-grid article > p:last-child {
  max-width: 330px;
  color: #566058;
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  background: var(--cream);
  gap: 9vw;
}

.faq-heading {
  max-width: 540px;
}

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

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

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  color: var(--forest);
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 500;
  list-style: none;
}

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

summary span {
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 300;
  transition: transform 200ms ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 680px;
  padding: 0 46px 30px 0;
  color: #566058;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: var(--sage);
  gap: 10vw;
}

.contact-copy {
  max-width: 600px;
}

.contact-note {
  max-width: 430px;
  margin-top: 38px;
  color: #4f5c52;
  font-size: 12px;
}

.contact-email {
  margin-top: 26px;
  color: var(--forest);
  font-weight: 600;
}

.contact-email a,
.practical-grid a {
  text-underline-offset: 4px;
}

.contact-form {
  max-width: 700px;
}

.contact-form > label:not(.consent) {
  display: block;
  margin-bottom: 28px;
}

.contact-form > label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 600;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 59, 43, 0.42);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--forest);
  outline: 3px solid #b06c27;
  outline-offset: 4px;
  box-shadow: 0 1px 0 var(--forest);
}

.consent {
  display: flex;
  align-items: flex-start;
  margin: 6px 0 28px;
  gap: 10px;
  cursor: pointer;
}

.consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--forest);
}

.consent span {
  max-width: 520px;
  color: #515d54;
  font-size: 12px;
  font-weight: 400 !important;
}

footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  align-items: end;
  padding: 58px max(5vw, 28px);
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.72);
  gap: 28px;
}

.footer-mark {
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 13px;
  text-underline-offset: 4px;
}

footer p {
  margin-bottom: 0;
  font-size: 13px;
}

.copyright {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .nav-wrap {
    width: min(100% - 40px, 1440px);
    min-height: 78px;
  }

  .menu-toggle {
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 14px 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
    gap: 7px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--forest);
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100dvh;
    padding:
      calc(116px + env(safe-area-inset-top))
      max(32px, env(safe-area-inset-right))
      calc(40px + env(safe-area-inset-bottom))
      max(32px, env(safe-area-inset-left));
    overflow-y: auto;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-18px);
    transition:
      opacity 200ms ease,
      transform 200ms ease,
      visibility 200ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    font-family: var(--display);
    font-size: 28px;
  }

  .nav-contact {
    margin-top: 14px;
    padding: 10px 20px;
    font-size: 18px !important;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
    gap: 60px;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-image {
    width: 100%;
    max-width: none;
    height: 62vh;
    min-height: 440px;
  }

  .section-pad {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .statement {
    grid-template-columns: 50px 1fr;
  }

  .statement-copy {
    grid-column: 2;
    padding-top: 0;
  }

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

  .section-heading {
    gap: 30px;
  }

  .concerns-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-intro {
    position: static;
  }

  .about-card {
    gap: 7vw;
  }

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

  .practical-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .micro-label {
    margin-bottom: 24px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-service {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
  }

  .hero-location {
    max-width: 420px;
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .wordmark-name {
    font-size: 16px;
  }

  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .hero-actions .text-link {
    min-height: 44px;
    align-items: center;
  }

  .hero-image {
    height: 54vh;
    min-height: 380px;
  }

  .section-pad {
    padding-right: 20px;
    padding-left: 20px;
  }

  .statement {
    display: block;
  }

  .section-number {
    margin-bottom: 40px;
  }

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

  .concerns-grid article {
    min-height: 230px;
    padding: 28px;
  }

  .concerns-grid h3 {
    margin-top: 38px;
  }

  .landscape-break {
    min-height: 460px;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-monogram {
    width: min(74vw, 340px);
  }

  .approach-list article {
    grid-template-columns: 36px 1fr;
    gap: 16px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-mark {
    margin-bottom: 20px;
  }
}

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

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