:root {
  --forest: #285b3c;
  --forest-deep: #17462d;
  --forest-soft: #4f8156;
  --sage: #7f9a73;
  --peach: #f6d4ae;
  --peach-light: #fff2df;
  --paper: #fffaf1;
  --ink: #163b27;
  --muted: #6e756d;
  --line: rgba(22, 59, 39, 0.15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
  font-weight: 500;
}

.brand small {
  margin-top: 5px;
  color: var(--forest-soft);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.brand__mark {
  width: 46px;
  height: 47px;
  position: relative;
  display: inline-block;
}

.brand__mark i {
  position: absolute;
  width: 9px;
  height: 9px;
  left: 19px;
  top: 4px;
  border-radius: 50%;
  background: var(--forest);
}

.brand__mark b,
.brand__mark em {
  position: absolute;
  top: 17px;
  width: 22px;
  height: 14px;
  background: var(--sage);
  border-radius: 100% 0 100% 0;
}

.brand__mark b {
  left: 1px;
  rotate: 25deg;
}

.brand__mark em {
  right: 1px;
  rotate: -115deg;
}

.brand__mark::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 28px;
  background: var(--forest);
  top: 14px;
  left: 22px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #264c35;
  font-size: 14px;
}

.desktop-nav > a,
.nav-menu summary {
  padding: 12px 0;
}

.desktop-nav > a:hover,
.nav-menu summary:hover {
  color: var(--forest-soft);
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  cursor: pointer;
  list-style: none;
}

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

.nav-menu summary::after {
  content: "⌄";
  margin-left: 6px;
}

.nav-menu__panel {
  position: absolute;
  width: 260px;
  top: calc(100% + 8px);
  left: -24px;
  padding: 14px;
  display: grid;
  gap: 3px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(25, 61, 39, 0.13);
}

.nav-menu__panel a {
  padding: 9px 10px;
  border-radius: 3px;
}

.nav-menu__panel a:hover {
  background: var(--peach-light);
}

.header-phone {
  padding: 11px 17px;
  border: 1px solid var(--forest);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: 160ms ease;
}

.header-phone:hover {
  background: var(--forest);
  color: white;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background: var(--forest);
  color: var(--paper);
}

.hero__wash {
  position: absolute;
  inset: 0 auto 0 0;
  width: 61%;
  background: var(--peach);
  border-radius: 0 48% 52% 0 / 0 33% 67% 0;
}

.hero__grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 95px;
  position: relative;
}

.hero__copy {
  color: var(--ink);
  padding: 80px 0 88px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--forest-soft);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.1vw, 104px);
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  margin-left: 0.7em;
  color: var(--forest-soft);
  font-style: italic;
  font-size: 0.68em;
}

.hero__lead {
  max-width: 520px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.05em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

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

.button--quiet {
  border-bottom: 1px solid currentColor;
  padding-inline: 3px;
}

.hero__portrait {
  position: relative;
  padding: 58px 0 62px;
}

.portrait-frame {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 0.74;
  margin-left: auto;
  overflow: hidden;
  border: 13px solid var(--peach);
  outline: 1px solid var(--peach);
  outline-offset: 10px;
}

.portrait-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-note {
  position: absolute;
  left: 12px;
  bottom: 92px;
  min-width: 240px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(10, 41, 24, 0.18);
}

.portrait-note span {
  font-family: var(--serif);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portrait-note small {
  margin-top: 2px;
  color: var(--forest-soft);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.intro {
  padding-block: 130px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.intro h2,
.section-heading h2,
.contact h2,
.detail-contact h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 70px);
  letter-spacing: -0.035em;
}

.intro__text {
  padding-top: 31px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.75;
}

.intro__text p:last-child {
  margin-bottom: 0;
}

.treatments {
  padding-block: 118px;
  background: var(--forest);
  color: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 66px;
}

.section-heading > p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 250, 241, 0.76);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.treatment-card {
  min-height: 190px;
  padding: 31px 24px 28px 0;
  display: grid;
  grid-template-columns: 50px 1fr 34px;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 160ms ease, background 160ms ease;
}

.treatment-card:nth-child(odd) {
  padding-right: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.treatment-card:nth-child(even) {
  padding-left: 42px;
}

.treatment-card:hover {
  color: var(--peach);
  background: rgba(255, 255, 255, 0.035);
}

.treatment-card__number {
  padding-top: 8px;
  color: var(--peach);
  font-family: var(--serif);
  font-size: 14px;
}

.treatment-card h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 39px);
}

.treatment-card p {
  margin: 0;
  max-width: 460px;
  color: rgba(255, 250, 241, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

.treatment-card__arrow {
  font-size: 25px;
  transition: transform 160ms ease;
}

.treatment-card:hover .treatment-card__arrow {
  transform: translate(3px, -3px);
}

.quote {
  overflow: hidden;
  background: var(--peach);
}

.quote__inner {
  position: relative;
  padding: 130px 16%;
  text-align: center;
}

.quote__mark {
  position: absolute;
  top: 75px;
  left: 6%;
  color: rgba(40, 91, 60, 0.15);
  font-family: var(--serif);
  font-size: 250px;
  line-height: 1;
}

.quote blockquote {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 54px);
  font-style: italic;
  line-height: 1.3;
}

.quote cite {
  display: block;
  margin-top: 28px;
  color: var(--forest-soft);
  font-family: var(--serif);
}

.contact {
  position: relative;
  padding-block: 130px;
  text-align: center;
}

.contact > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px auto;
  font-family: var(--serif);
  font-size: 20px;
}

.contact__phone {
  display: block;
  margin-top: 30px;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.2;
}

.contact__phone:hover {
  color: var(--forest-soft);
}

.contact__hint {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact__leaf {
  position: absolute;
  top: 56px;
  right: 7%;
  width: 100px;
  height: 86px;
  opacity: 0.22;
}

.contact__leaf::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 78px;
  top: 0;
  left: 49px;
  background: var(--forest);
  rotate: 18deg;
}

.contact__leaf span {
  position: absolute;
  width: 46px;
  height: 25px;
  background: var(--forest);
  border-radius: 100% 0 100% 0;
}

.contact__leaf span:first-child {
  left: 5px;
  top: 18px;
  rotate: 25deg;
}

.contact__leaf span:last-child {
  right: 0;
  top: 42px;
  rotate: -110deg;
}

.site-footer {
  padding: 75px 0 24px;
  background: #123923;
  color: var(--paper);
}

.site-footer .brand__mark i,
.site-footer .brand__mark::after {
  background: var(--peach);
}

.site-footer .brand__mark b,
.site-footer .brand__mark em {
  background: #75a679;
}

.site-footer .brand small {
  color: var(--peach);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 80px;
  padding-bottom: 58px;
}

.site-footer__grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__grid > div > strong {
  color: var(--peach);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__grid a,
.site-footer__grid span,
.site-footer__grid p {
  margin: 0;
  color: rgba(255, 250, 241, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer__bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 250, 241, 0.45);
  font-family: var(--serif);
  font-size: 12px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding-block: 96px 110px;
  background: var(--peach);
}

.detail-hero__curve {
  position: absolute;
  width: 43%;
  height: 140%;
  right: -14%;
  top: -20%;
  background: var(--forest);
  border-radius: 50% 0 0 50%;
}

.detail-hero__inner {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 100px;
}

.detail-hero__inner > *,
.detail-contact__inner > *,
.process__steps > * {
  min-width: 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 62px;
  border-bottom: 1px solid currentColor;
  color: var(--forest-soft);
  font-size: 13px;
}

.detail-hero h1 {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: clamp(58px, 7.3vw, 100px);
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.detail-hero__lead {
  max-width: 700px;
  margin-bottom: 38px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.65;
}

.focus-card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  padding: 56px 46px 50px;
  background: var(--paper);
  border: 1px solid rgba(255, 250, 241, 0.6);
  outline: 1px solid var(--peach);
  outline-offset: 10px;
  box-shadow: 0 24px 70px rgba(9, 43, 24, 0.19);
}

.focus-card ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.focus-card li {
  padding: 15px 0 15px 30px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.focus-card li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: 23px;
  background: var(--sage);
  border-radius: 100% 0 100% 0;
  rotate: -40deg;
}

.focus-card__leaf {
  position: absolute;
  width: 55px;
  height: 44px;
  top: 35px;
  right: 35px;
}

.focus-card__leaf::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 37px;
  left: 27px;
  top: 3px;
  background: var(--forest);
}

.focus-card__leaf i,
.focus-card__leaf b {
  position: absolute;
  width: 25px;
  height: 14px;
  top: 12px;
  background: var(--sage);
  border-radius: 100% 0 100% 0;
}

.focus-card__leaf i {
  left: 1px;
  rotate: 27deg;
}

.focus-card__leaf b {
  right: 1px;
  rotate: -117deg;
}

.process {
  padding-block: 125px;
}

.section-heading--dark > p {
  color: var(--muted);
}

.process__steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.process__steps li {
  min-height: 250px;
  padding: 35px 34px 30px 0;
  border-bottom: 1px solid var(--line);
}

.process__steps li + li {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.process__steps span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 14px;
}

.process__steps h3 {
  margin: 45px 0 15px;
  font-size: 31px;
}

.process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.evidence-note {
  margin-top: 55px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  background: var(--peach-light);
  border-left: 3px solid var(--sage);
}

.evidence-note strong {
  color: var(--forest-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.evidence-note p {
  margin: 0;
  font-size: 14px;
}

.detail-contact {
  padding-block: 100px;
  background: var(--forest);
  color: var(--paper);
}

.detail-contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 90px;
}

.detail-contact__inner > div:last-child p {
  color: rgba(255, 250, 241, 0.72);
}

.detail-contact__inner > div:last-child a {
  color: var(--peach);
  font-family: var(--serif);
  font-size: 30px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-menu summary span {
    width: 20px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-menu nav {
    position: absolute;
    width: min(320px, calc(100vw - 32px));
    right: 0;
    top: 55px;
    max-height: calc(100vh - 120px);
    overflow: auto;
    padding: 18px;
    display: grid;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(23, 70, 45, 0.16);
  }

  .mobile-menu nav a {
    padding: 11px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .hero__grid {
    gap: 42px;
  }

  .hero__wash {
    width: 64%;
  }

  .intro,
  .section-heading,
  .detail-contact__inner {
    gap: 55px;
  }

  .detail-hero__inner {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: calc(100% - 32px);
    max-width: 600px;
  }

  .site-header__inner {
    min-height: 76px;
    gap: 12px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 8px;
  }

  .brand__mark {
    scale: 0.86;
    margin-left: -4px;
    margin-right: -4px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__wash {
    width: 100%;
    height: 65%;
    border-radius: 0 0 48% 0 / 0 0 16% 0;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__copy {
    padding: 72px 0 64px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 80px);
  }

  .hero h1 span {
    margin-left: 0.25em;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__portrait {
    padding: 20px 13px 82px;
  }

  .portrait-frame {
    margin-inline: auto;
  }

  .portrait-note {
    left: 0;
    bottom: 58px;
  }

  .intro,
  .section-heading,
  .detail-contact__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro {
    padding-block: 85px;
  }

  .intro__text {
    padding-top: 0;
    font-size: 18px;
  }

  .treatments {
    padding-block: 82px;
  }

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

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

  .treatment-card,
  .treatment-card:nth-child(odd),
  .treatment-card:nth-child(even) {
    min-height: 170px;
    padding: 28px 0;
    border-right: 0;
  }

  .quote__inner {
    padding: 95px 6px;
  }

  .quote__mark {
    top: 54px;
    left: -18px;
  }

  .contact {
    padding-block: 95px;
  }

  .contact__leaf {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer__bottom {
    gap: 18px;
    flex-direction: column;
  }

  .detail-hero {
    padding-block: 62px 85px;
  }

  .detail-hero__curve {
    width: 100%;
    height: 32%;
    right: -45%;
    top: auto;
    bottom: -14%;
  }

  .detail-hero__inner {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .back-link {
    margin-bottom: 45px;
  }

  .detail-hero h1 {
    font-size: clamp(40px, 12vw, 60px);
    line-height: 1.03;
  }

  .detail-hero__lead {
    font-size: 18px;
  }

  .focus-card {
    width: 100%;
    padding: 48px 28px 34px;
    overflow: hidden;
  }

  .process {
    padding-block: 84px;
  }

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

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

  .process__steps h3 {
    margin-top: 24px;
  }

  .evidence-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-contact {
    padding-block: 78px;
  }
}

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

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