:root {
  --ivory: #f8f8f3;
  --paper: #fffefa;
  --cream: #f0ecf3;
  --mint: #f1f7f0;
  --lime: #bdd9b5;
  --sage-soft: #e5efe6;
  --sage: #b9d0bd;
  --olive: #4e6d5c;
  --forest: #30283f;
  --red: #765894;
  --copper: #765894;
  --gold: #e1d5eb;
  --ink: #2c2835;
  --muted: #625f69;
  --line: rgba(48, 40, 63, 0.16);
  --line-light: rgba(255, 254, 250, 0.24);
  --display: "Cormorant Garamond", Garamond, Georgia, serif;
  --sans: Manrope, "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --header-height: 4.5rem;
  --shell: min(calc(100% - 2.5rem), 78rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  margin: 0;
  max-width: 100%;
  min-width: 0;
  padding-bottom: 5rem;
}

body.menu-open {
  overflow: hidden;
}

main,
header,
footer,
section,
nav,
div,
article,
figure {
  min-width: 0;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
}

h1,
h2 {
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.4rem, 9.5vw, 3.25rem);
  line-height: 0.96;
}

h2 em,
h1 em {
  color: var(--red);
  font-weight: 400;
}

p,
dd,
li {
  overflow-wrap: anywhere;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

::selection {
  background: var(--gold);
  color: var(--forest);
}

:focus-visible {
  border-radius: 0.25rem;
  box-shadow: 0 0 0 5px var(--forest);
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--forest);
  color: var(--paper);
  left: 1rem;
  padding: 0.8rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-200%);
  transition: transform 220ms var(--ease-out);
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  margin-inline: auto;
  width: var(--shell);
}

.scroll-progress {
  background: transparent;
  height: 2px;
  inset: 0 0 auto;
  pointer-events: none;
  position: fixed;
  z-index: 150;
}

.scroll-progress span {
  background: var(--red);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

.site-header {
  align-items: center;
  background: color-mix(in srgb, var(--mint) 98%, var(--paper));
  border-bottom: 1px solid transparent;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  height: var(--header-height);
  left: 0;
  padding: 0 1rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  z-index: 120;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--mint) 97%, transparent);
  border-color: var(--line);
  box-shadow: 0 0.8rem 2.4rem rgba(36, 49, 38, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.65rem;
  min-height: 2.75rem;
  width: fit-content;
}

.brand-mark,
.footer-mark {
  align-items: center;
  background: var(--forest);
  border: 1px solid rgba(225, 213, 235, 0.72);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  height: 2.75rem;
  justify-content: center;
  overflow: hidden;
  width: 2.75rem;
}

.brand-copy,
.footer-brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-meta {
  display: none;
}

.desktop-nav,
.header-cta {
  display: none;
}

.menu-toggle {
  align-items: center;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--paper);
  cursor: pointer;
  display: inline-flex;
  gap: 0.65rem;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 0.95rem;
}

.menu-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.menu-lines {
  display: grid;
  gap: 0.34rem;
  width: 1rem;
}

.menu-lines i {
  background: currentColor;
  display: block;
  height: 1px;
  transition: transform 240ms var(--ease-out);
  width: 100%;
}

.menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
  transform: translateY(0.17rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
  transform: translateY(-0.17rem) rotate(-45deg);
}

.mobile-nav {
  align-content: start;
  background: var(--mint);
  display: grid;
  inset: var(--header-height) 0 0;
  opacity: 0;
  overflow-y: auto;
  padding: 2.4rem 1.25rem max(2rem, env(safe-area-inset-bottom));
  pointer-events: none;
  position: fixed;
  transform: translateY(-0.75rem);
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out), visibility 240ms;
  visibility: hidden;
  z-index: 119;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav > a:not(.mobile-nav-cta) {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: flex;
  font-family: var(--display);
  font-size: clamp(2rem, 10vw, 3rem);
  justify-content: space-between;
  min-height: 4.4rem;
  padding: 0.75rem 0;
}

.mobile-nav > a:nth-child(5) {
  border-bottom: 1px solid var(--line);
}

.mobile-nav > a > span {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.mobile-nav-cta {
  align-items: center;
  background: var(--forest);
  border-radius: 999px;
  color: var(--paper);
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: space-between;
  margin-top: 1.75rem;
  min-height: 3.5rem;
  padding: 0.85rem 1.15rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 1rem;
  justify-content: space-between;
  letter-spacing: 0.01em;
  min-height: 3.4rem;
  padding: 0.55rem 0.62rem 0.55rem 1.15rem;
  transition: transform 260ms var(--ease-out), background-color 220ms ease, color 220ms ease;
  width: 100%;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg,
.header-cta svg {
  border: 1px solid currentColor;
  border-radius: 50%;
  height: 2.25rem;
  padding: 0.53rem;
  transition: transform 280ms var(--ease-out);
  width: 2.25rem;
}

.button-primary {
  background: var(--olive);
  color: var(--paper);
}

.button-dark {
  background: var(--forest);
  color: var(--paper);
}

.button-gold {
  background: var(--gold);
  color: var(--forest);
}

.eyebrow {
  align-items: center;
  color: var(--olive);
  display: flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 1.8rem;
}

.eyebrow-light {
  color: var(--gold);
}

.hero {
  background: var(--mint);
  overflow: hidden;
  padding: calc(var(--header-height) + 2.2rem) 0 0;
}

.hero-grid {
  display: grid;
  isolation: isolate;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  align-items: center;
  color: var(--olive);
  display: flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker span + span {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.hero-kicker span + span::before {
  background: var(--red);
  border-radius: 50%;
  content: "";
  height: 0.28rem;
  width: 0.28rem;
}

h1 {
  font-size: clamp(2.9rem, 14.2vw, 4.8rem);
  line-height: 0.84;
  margin-top: 1.5rem;
  max-width: none;
}

h1 > span,
h1 > em {
  display: block;
  white-space: nowrap;
}

h1 > em {
  margin-left: 0.5em;
}

h1 > span:last-child {
  margin-left: 0.82em;
}

.hero-intro {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-top: 1.5rem;
  max-width: 31rem;
}

.hero-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.55rem;
}

.text-link,
.source-link,
.map-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  gap: 0.6rem;
  min-height: 2.75rem;
  padding: 0.45rem 0;
  width: fit-content;
}

.text-link {
  border-bottom: 1px solid var(--line);
}

.hero-signature {
  display: none;
}

.hero-media {
  aspect-ratio: 1122 / 1402;
  background: transparent;
  height: auto;
  isolation: isolate;
  margin-top: 1.25rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-ribbon {
  fill: none;
  height: 100%;
  inset: 0 -20% auto -20%;
  max-width: none;
  opacity: 0.58;
  position: absolute;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-width: 28;
  transform: translate3d(0, var(--hero-ribbon-shift, 0px), 0);
  width: 140%;
  will-change: transform;
  z-index: 0;
}

.hero-sun {
  background: rgba(255, 253, 248, 0.52);
  border-radius: 50%;
  height: 19rem;
  position: absolute;
  right: -7rem;
  top: 3.5rem;
  width: 19rem;
  z-index: -1;
}

.hero-person {
  height: 100%;
  inset: 0;
  object-fit: contain;
  object-position: center top;
  position: absolute;
  transform: translate3d(0, var(--hero-image-shift, 0px), 0);
  will-change: transform;
  width: 100%;
  z-index: 1;
}

.hero-profile-card {
  align-items: center;
  backdrop-filter: blur(0.6rem);
  background: color-mix(in srgb, var(--lime) 82%, transparent);
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 0.45rem;
  bottom: 1.1rem;
  color: var(--forest);
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 2.25rem minmax(0, 1fr) 1rem;
  left: 0.7rem;
  padding: 0.55rem 0.65rem;
  position: absolute;
  z-index: 3;
}

.profile-mark {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

.hero-profile-card > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.hero-profile-card strong {
  font-size: 0.72rem;
}

.hero-profile-card small {
  font-size: 0.62rem;
  margin-top: 0.15rem;
}

.hero-profile-card > svg {
  height: 1rem;
  width: 1rem;
}

.hero-proof {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-proof > div {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  justify-content: center;
  min-height: 6.3rem;
  padding: 0.9rem 0.7rem;
}

.hero-proof > div + div {
  border-left: 1px solid var(--line);
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-proof strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.15;
}

.philosophy {
  display: grid;
  gap: 2.4rem;
  padding-block: 5.5rem;
}

.philosophy-index {
  align-items: center;
  color: var(--muted);
  display: grid;
  font-size: 0.72rem;
  gap: 0.75rem;
  grid-template-columns: auto minmax(2rem, 1fr) auto;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.philosophy-index i {
  background: var(--line);
  height: 1px;
}

.philosophy-copy h2 {
  margin-top: 1.25rem;
  max-width: 15ch;
}

.philosophy-copy > p:last-child {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1.5rem;
  max-width: 34rem;
}

.care {
  background: var(--paper);
  padding-block: 5.5rem;
}

.section-heading {
  display: grid;
  gap: 1.5rem;
}

.section-heading h2 {
  margin-top: 1.25rem;
  max-width: 15ch;
}

.care .section-heading h2 {
  max-width: 18ch;
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 24rem;
}

.care-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 2.7rem;
}

.care-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  color: var(--forest);
  display: flex;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.care-card-meta {
  align-items: center;
  display: flex;
  gap: 0.85rem;
}

.care-card h3 {
  font-size: clamp(1.85rem, 6.8vw, 2.2rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.care-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 0.85rem;
}

.care-card a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  justify-content: space-between;
  margin-top: 1.25rem;
  min-height: 2.75rem;
  padding-top: 0.75rem;
  position: relative;
}

.care-card a::after {
  background: var(--olive);
  content: "";
  height: 1px;
  inset: -1px 0 auto;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}

.care-card a > span {
  transition: transform 300ms var(--ease-out);
}

.care-card a:hover::after,
.care-card a:focus-visible::after {
  transform: scaleX(1);
}

.care-card a:hover > span,
.care-card a:focus-visible > span {
  transform: translate(0.15rem, 0.15rem);
}

.care-icon {
  align-items: center;
  background: color-mix(in oklab, var(--paper) 96%, transparent);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  box-shadow: 0 0.35rem 1.1rem color-mix(in srgb, var(--forest) 7%, transparent);
  height: 3.4rem;
  justify-content: center;
  transition: transform 420ms var(--ease-out);
  width: 3.4rem;
}

.illustrated-icon {
  display: block;
  flex: 0 0 auto;
  height: 70%;
  object-fit: contain;
  width: 70%;
}

.care-card-photo {
  min-height: 29rem;
}

.care-card-photo::after {
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--paper) 5%, transparent) 0%,
      color-mix(in oklab, var(--paper) 58%, transparent) 27%,
      color-mix(in oklab, var(--paper) 96%, transparent) 49%,
      var(--paper) 71%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.care-card-photo > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 1100ms var(--ease-out);
  width: 100%;
}

.care-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9.5rem;
  justify-content: space-between;
  min-height: 30rem;
  padding: 1.35rem;
  position: relative;
  z-index: 2;
}

.care-card-content a {
  color: var(--olive);
}

.care-card > img { object-position: center top; }
.care-card:nth-child(2) > img { object-position: 52% top; }
.care-card:nth-child(3) > img { object-position: 64% top; }
.care-card:nth-child(4) > img { object-position: 57% top; }
.care-card:nth-child(2) { --card-delay: 100ms; }
.care-card:nth-child(3) { --card-delay: 200ms; }
.care-card:nth-child(4) { --card-delay: 300ms; }

.method {
  background: var(--sage-soft);
  padding-block: 5.5rem;
}

.method-inner {
  display: grid;
  gap: 3.4rem;
}

.method-copy h2 {
  margin-top: 1.25rem;
  max-width: 15ch;
}

.method-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1.5rem;
  max-width: 33rem;
}

.method-copy .button {
  margin-top: 1.75rem;
}

.method-list {
  border-top: 1px solid var(--line);
  list-style: none;
  padding: 0;
}

.method-list li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 2.3rem 1fr;
  padding: 1.4rem 0;
}

.method-list li > span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.method-list h3 {
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.method-list p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
  margin-top: 0.5rem;
}

.about {
  display: grid;
  gap: 3rem;
  padding-block: 5.5rem;
}

.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 4rem 0.3rem 0.3rem 0.3rem;
  overflow: hidden;
  position: relative;
}

.about-photo::after {
  background: linear-gradient(180deg, transparent 68%, rgba(24, 32, 25, 0.58));
  content: "";
  inset: 0;
  position: absolute;
}

.about-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  width: 100%;
}

.about-photo figcaption {
  bottom: 1.2rem;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  left: 1.2rem;
  position: absolute;
  z-index: 2;
}

.about-photo figcaption span {
  font-family: var(--display);
  font-size: 1.35rem;
}

.about-photo figcaption small {
  font-size: 0.7rem;
}

.about-copy h2 {
  margin-top: 1.25rem;
  max-width: 15ch;
}

.about-lead {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  line-height: 1.35;
  margin-top: 1.7rem;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1rem;
}

.credentials {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin-top: 2rem;
}

.credentials div {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.credentials dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credentials dd {
  font-family: var(--display);
  font-size: 1.2rem;
  margin-top: 0.35rem;
}

.journey {
  background: var(--cream);
  padding-block: 5.5rem;
}

.journey-inner {
  display: grid;
  gap: 2.8rem;
}

.journey h2 {
  margin-top: 1.25rem;
  max-width: 15ch;
}

.journey-list {
  list-style: none;
  padding: 0;
}

.journey-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  padding: 1.4rem 0;
}

.journey-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-icon {
  align-items: center;
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--red) 22%, transparent);
  border-radius: 1.15rem;
  color: var(--red);
  display: flex;
  height: 3.6rem;
  justify-content: center;
  width: 3.6rem;
}

.journey-list li:nth-child(2) .journey-icon {
  background: var(--sage-soft);
  border-color: var(--line);
  color: var(--olive);
}

.journey-list h3 {
  font-size: 1.65rem;
}

.journey-list p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
  margin-top: 0.5rem;
}

.faq {
  display: grid;
  gap: 2.7rem;
  padding-block: 5.5rem;
}

.faq h2 {
  margin-top: 1.25rem;
  max-width: 15ch;
}

.faq-heading > p:last-child {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 24rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 2.75rem minmax(0, 1fr) 1rem;
  list-style: none;
  min-height: 5.4rem;
  padding: 0.8rem 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span:nth-child(2) {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.faq-icon {
  align-items: center;
  background: var(--sage-soft);
  border: 1px solid rgba(83, 99, 75, 0.12);
  border-radius: 50%;
  color: var(--olive);
  display: flex;
  height: 2.75rem;
  justify-content: center;
  transition: background-color 220ms ease, color 220ms ease, transform 300ms var(--ease-out);
  width: 2.75rem;
}

.faq-plus {
  height: 1rem;
  position: relative;
  width: 1rem;
}

.faq-plus::before,
.faq-plus::after {
  background: currentColor;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transition: transform 240ms var(--ease-out);
  width: 100%;
}

.faq-plus::after {
  transform: rotate(90deg);
}

.faq-list details[open] .faq-plus::after {
  transform: rotate(0);
}

.faq-list details[open] .faq-icon {
  background: var(--gold);
  border-color: var(--red);
}

.faq-answer {
  display: none;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-left: 3.55rem;
  max-width: 40rem;
  padding: 0 0 1.4rem;
}

.faq-list details[open] .faq-answer {
  display: block;
}

.faq-list details[open] .faq-answer p {
  animation: answer-in 320ms var(--ease-out) both;
}

.contact {
  background: var(--ivory);
}

.contact-panel {
  background: var(--forest);
  border-radius: 3.5rem 3.5rem 0 0;
  color: var(--paper);
  display: grid;
  gap: 2.7rem;
  padding: 4.5rem 1.25rem;
  width: min(calc(100% - 1rem), 86rem);
}

.contact h2 {
  margin-top: 1.25rem;
  max-width: 15ch;
}

.contact h2 em {
  color: var(--gold);
}

.contact-info {
  border-top: 1px solid var(--line-light);
  padding-top: 1.5rem;
}

.contact-info address {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  font-style: normal;
  gap: 0.45rem;
  line-height: 1.55;
}

.contact-info address strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
}

.contact-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.map-link {
  border-bottom: 1px solid currentColor;
  color: var(--gold);
}

.site-footer {
  background: var(--paper);
  display: grid;
  gap: 1.6rem;
  padding: 2.5rem 1.25rem 2rem;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.footer-mark {
  height: 3rem;
  width: 3rem;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.footer-brand small,
.footer-note,
.footer-links {
  font-size: 0.72rem;
  font-weight: 600;
}

.footer-brand small {
  color: var(--muted);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.footer-links a,
.footer-note a {
  align-items: center;
  display: inline-flex;
  min-height: 2.75rem;
}

.footer-note {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.footer-legal {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
  padding-top: 1rem;
}

.mobile-whatsapp {
  align-items: center;
  background: var(--gold);
  border: 1px solid rgba(36, 49, 38, 0.18);
  border-radius: 999px;
  bottom: max(0.7rem, env(safe-area-inset-bottom));
  color: var(--forest);
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0;
  justify-content: center;
  left: auto;
  min-width: 3.6rem;
  min-height: 3.6rem;
  padding: 0;
  position: fixed;
  right: 1rem;
  width: 3.6rem;
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
  z-index: 90;
}

.mobile-whatsapp svg {
  height: 1.35rem;
  width: 1.35rem;
}

.mobile-whatsapp span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.js .mobile-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  visibility: hidden;
}

.js .mobile-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

body.menu-open .mobile-whatsapp {
  opacity: 0;
  pointer-events: none;
}

.philosophy,
.method,
.journey,
.faq,
.contact {
  isolation: isolate;
  overflow: clip;
  position: relative;
}

.philosophy::after,
.method::before,
.journey::after,
.faq::before,
.contact::after {
  border: clamp(0.72rem, 1.25vw, 1.15rem) solid rgba(189, 217, 181, 0.46);
  border-radius: 50%;
  content: "";
  height: clamp(20rem, 38vw, 34rem);
  pointer-events: none;
  position: absolute;
  width: clamp(20rem, 38vw, 34rem);
  z-index: 0;
}

.philosophy > *,
.method > *,
.journey > *,
.faq > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.philosophy::after {
  bottom: -15rem;
  right: -18rem;
}

.method::before {
  left: -19rem;
  top: -13rem;
}

.journey::after {
  bottom: -19rem;
  right: -17rem;
}

.faq::before {
  left: -21rem;
  top: 17%;
}

.contact::after {
  right: -18rem;
  top: -15rem;
}

.load {
  animation: rise-in 760ms var(--ease-out) both;
}

.load-1 { animation-delay: 50ms; }
.load-2 { animation-delay: 120ms; }
.load-3 { animation-delay: 210ms; }
.load-4 { animation-delay: 300ms; }

.load-photo {
  animation: photo-in 980ms var(--ease-out) 150ms both;
}

.js h1.load {
  animation: none;
}

.js h1.load > span,
.js h1.load > em {
  animation: title-line-in 900ms var(--ease-out) both;
}

.js h1.load > span:nth-child(2) {
  animation-delay: 110ms;
}

.js h1.load > em {
  animation-delay: 220ms;
}

.js h1.load > span:nth-child(4) {
  animation-delay: 330ms;
}

.js .hero-ribbon path {
  animation: curve-draw 1.45s var(--ease-out) both;
  stroke-dasharray: 1600;
}

.js .hero-ribbon path + path {
  animation-delay: 180ms;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .care-card[data-reveal] {
  transition-delay: var(--card-delay, 0ms);
  transition-duration: 750ms;
}

.js .care-card > img {
  transform: scale(1.06);
  transition-delay: var(--card-delay, 0ms);
}

.js .care-card.is-visible > img {
  transform: scale(1);
}

.js .care-card-copy {
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
  transition-delay: calc(var(--card-delay, 0ms) + 120ms);
}

.js .care-card.is-visible .care-card-copy {
  opacity: 1;
  transform: translateY(0);
}

.js .method-list li:nth-child(2),
.js .journey-list li:nth-child(2),
.js .faq-list details:nth-child(2) {
  transition-delay: 70ms;
}

.js .method-list li:nth-child(3),
.js .journey-list li:nth-child(3),
.js .faq-list details:nth-child(3) {
  transition-delay: 140ms;
}

.js .faq-list details:nth-child(4) {
  transition-delay: 210ms;
}

.js .faq-list details:nth-child(5) {
  transition-delay: 280ms;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(1.25rem); }
}

@keyframes title-line-in {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transform: translateY(0.42em);
  }
}

@keyframes curve-draw {
  from { stroke-dashoffset: 1600; }
  to { stroke-dashoffset: 0; }
}

@keyframes photo-in {
  from { opacity: 0; transform: translateY(1rem) scale(1.012); }
}

@keyframes answer-in {
  from { opacity: 0; transform: translateY(-0.4rem); }
}

@media (min-width: 600px) {
  :root {
    --shell: min(calc(100% - 4rem), 78rem);
  }

  body {
    padding-bottom: 0;
  }

  .site-header {
    padding-inline: 2rem;
  }

  .brand-meta {
    color: var(--muted);
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
    text-transform: uppercase;
  }

  .hero-actions,
  .contact-actions {
    align-items: center;
    flex-direction: row;
  }

  .button {
    width: fit-content;
  }

  .hero-actions .button {
    min-width: 19rem;
  }

  .hero-proof > div {
    min-height: 7.2rem;
    padding-inline: 1.4rem;
  }

  .hero-proof strong {
    font-size: 1.25rem;
  }

  .care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-card-photo {
    aspect-ratio: auto;
  }

  .credentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credentials div:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 1rem;
  }

  .credentials div:nth-child(odd) {
    padding-right: 1rem;
  }

  .contact-panel {
    padding-inline: 3rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-inline: 2rem;
  }

  .footer-brand,
  .footer-legal {
    grid-column: 1 / -1;
  }

  .footer-note {
    align-items: flex-end;
  }

  .mobile-whatsapp {
    display: none;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 5rem;
  }

  h2 {
    font-size: clamp(3rem, 4.5vw, 4rem);
  }

  .brand-mark {
    height: 3rem;
    width: 3rem;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .mobile-nav {
    padding-inline: 3rem;
  }

  .philosophy,
  .section-heading,
  .method-inner,
  .journey-inner,
  .faq,
  .contact-panel {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .philosophy-index {
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 11rem;
  }

  .philosophy-index i {
    width: 100%;
  }

  .section-heading {
    align-items: end;
  }

  .section-heading > p {
    justify-self: end;
  }

  .method-inner {
    gap: 5rem;
  }

  .about {
    align-items: center;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 4rem;
  }

  .about-photo {
    border-radius: 6rem 0.3rem 0.3rem 0.3rem;
  }

  .journey-inner {
    gap: 5rem;
  }

  .faq-heading {
    align-self: start;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .contact-panel {
    align-items: end;
    gap: 5rem;
    padding: 5rem;
  }

  .site-footer {
    grid-template-columns: 1fr auto 1fr;
  }

  .footer-brand,
  .footer-legal {
    grid-column: auto;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .about {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .about-photo {
    justify-self: center;
    width: min(100%, 26rem);
  }

  .about-copy {
    justify-self: center;
    max-width: 38rem;
  }
}

@media (min-width: 1000px) {
  .hero {
    padding-top: 0;
  }

  .hero-grid {
    align-items: stretch;
    grid-template-columns: minmax(21rem, 0.82fr) minmax(0, 1.18fr);
    min-height: max(calc(43rem + var(--header-height)), calc(100svh - 7.2rem));
  }

  .hero-copy {
    align-self: center;
    padding: calc(var(--header-height) + 4rem) 3rem 4.5rem 0;
  }

  h1 {
    font-size: clamp(5rem, 6.5vw, 6.45rem);
    max-width: none;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-signature {
    align-items: center;
    color: var(--muted);
    display: flex;
    font-size: 0.68rem;
    font-weight: 700;
    gap: 0.65rem;
    letter-spacing: 0.07em;
    margin-top: 2rem;
    text-transform: uppercase;
  }

  .hero-signature i {
    background: var(--red);
    height: 1px;
    width: 2rem;
  }

  .hero-media {
    aspect-ratio: auto;
    height: auto;
    margin-top: 0;
    min-height: max(calc(43rem + var(--header-height)), calc(100svh - 7.2rem));
  }

  .hero-person {
    height: calc(100% + 2rem);
    inset: calc(var(--header-height) + 0.5rem) 0 auto;
    object-position: center top;
    transform: translate3d(0, var(--hero-image-shift, 0px), 0);
  }

  .hero-ribbon {
    height: 110%;
    inset: -5% -10% auto -10%;
    opacity: 0.76;
    stroke-width: 24;
    width: 120%;
  }

  .hero-sun {
    height: 32rem;
    right: -12rem;
    top: 4rem;
    width: 32rem;
  }

  .hero-profile-card {
    bottom: 3.25rem;
    left: 7%;
  }

  .hero-proof {
    border-top: 1px solid var(--line);
  }

  .about-photo {
    max-height: 48rem;
  }

}

@media (min-width: 1000px) and (max-width: 1179px) {
  h1 {
    font-size: clamp(4.55rem, 7.6vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 1100px) {
  .care-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .care-card {
    min-height: 30rem;
  }

  .care-card-photo {
    aspect-ratio: auto;
  }

  .care-card h3 {
    font-size: clamp(1.75rem, 2.05vw, 2.05rem);
  }

  .about {
    gap: 6.5rem;
  }

  .journey-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-list li {
    border-bottom: 1px solid var(--line);
    display: block;
    min-height: 16rem;
    padding: 1.6rem;
  }

  .journey-list li + li {
    border-left: 1px solid var(--line);
  }

  .journey-icon {
    margin-bottom: 1.75rem;
  }

  .journey-list h3 {
    font-size: 1.5rem;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (min-width: 1180px) {
  .site-header {
    gap: 2rem;
    grid-template-columns: minmax(14rem, 1fr) auto minmax(14rem, 1fr);
    padding-inline: clamp(2rem, 4vw, 4.5rem);
  }

  .desktop-nav {
    align-items: center;
    display: flex;
    gap: clamp(1.55rem, 2.15vw, 2.7rem);
  }

  .desktop-nav a {
    align-items: center;
    color: var(--olive);
    display: inline-flex;
    font-size: 0.71rem;
    font-weight: 650;
    letter-spacing: 0.015em;
    min-height: 2.75rem;
    position: relative;
    transition: color 220ms ease;
  }

  .desktop-nav a::after {
    background: var(--red);
    bottom: 0.45rem;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms var(--ease-out);
    width: 100%;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .desktop-nav a:hover,
  .desktop-nav a:focus-visible {
    color: var(--forest);
  }

  .header-cta {
    align-items: center;
    background: var(--forest);
    border-radius: 999px;
    color: var(--paper);
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 700;
    gap: 0.8rem;
    justify-self: end;
    min-height: 3rem;
    padding: 0.35rem 0.4rem 0.35rem 1rem;
    border: 1px solid color-mix(in srgb, var(--gold) 54%, transparent);
    box-shadow: 0 0.7rem 1.7rem rgba(36, 49, 38, 0.1);
    transition: box-shadow 220ms ease, transform 220ms var(--ease-out);
  }

  .header-cta:hover {
    box-shadow: 0 1rem 2.2rem rgba(36, 49, 38, 0.16);
    transform: translateY(-2px);
  }

  .header-cta svg {
    height: 2.2rem;
    width: 2.2rem;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }
}

@media (min-width: 1400px) {
  .hero-grid {
    grid-template-columns: clamp(40rem, 43vw, 52rem) minmax(0, 1fr);
    width: calc(100% - 4rem);
  }

  .hero-copy {
    justify-self: end;
    width: min(100%, 34rem);
  }

  .hero-person {
    height: calc(100% + 2rem);
    inset: calc(var(--header-height) + 0.5rem) 0 auto;
    object-position: center top;
  }

  .hero-profile-card {
    left: 5%;
  }
}

@media (min-width: 1700px) {
  .hero-person {
    object-position: center top;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover svg,
  .header-cta:hover svg {
    transform: translateX(0.14rem);
  }

  .care-card:hover > img,
  .js .care-card.is-visible:hover > img {
    transform: scale(1.03);
    transition-delay: 0ms;
  }

  .care-card:hover .care-icon {
    transform: translateY(-0.12rem);
  }

  .faq-list summary:hover .faq-icon {
    background: var(--olive);
    color: var(--paper);
    transform: translateY(-0.12rem);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .js .care-card > img,
  .js .care-card.is-visible:hover > img,
  .js .care-card-copy {
    opacity: 1;
    transform: none;
  }
}
