:root {
  --ivory: #f7f3eb;
  --paper: #fffdf8;
  --cream: #ece6da;
  --mint: #edf5e7;
  --lime: #cce89a;
  --sage-soft: #dfe5d8;
  --sage: #a6b39a;
  --olive: #53634b;
  --forest: #243126;
  --red: #a94738;
  --copper: #b9694a;
  --gold: #d8bc7c;
  --ink: #20251f;
  --muted: #626b5e;
  --line: rgba(36, 49, 38, 0.16);
  --line-light: rgba(255, 253, 248, 0.22);
  --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.65rem, 12vw, 3.85rem);
  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;
  backdrop-filter: blur(0.8rem);
  background: color-mix(in srgb, var(--mint) 84%, transparent);
  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(216, 188, 124, 0.72);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  height: 2.75rem;
  justify-content: center;
  overflow: hidden;
  width: 2.75rem;
}

.brand-mark img,
.footer-mark img {
  height: 78%;
  object-fit: contain;
  width: 78%;
}

.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;
}

.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 {
  height: clamp(31rem, 128vw, 40rem);
  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 {
  bottom: -0.6rem;
  filter: drop-shadow(0 1.5rem 1.8rem rgba(36, 49, 38, 0.1));
  height: 98%;
  left: 50%;
  max-width: none;
  object-fit: contain;
  position: absolute;
  transform: translate3d(-48%, var(--hero-image-shift, 0px), 0);
  will-change: transform;
  width: auto;
  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;
}

.profile-mark img {
  height: 78%;
  object-fit: contain;
  width: 78%;
}

.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: 10ch;
}

.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: 10ch;
}

.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 {
  border: 0;
  border-radius: 0.4rem;
  color: var(--paper);
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.care-card-content > span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.care-card h3 {
  font-size: clamp(2rem, 9vw, 2.7rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-top: auto;
}

.care-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 0.85rem;
}

.care-card a {
  align-items: center;
  border-top: 1px solid rgba(255, 253, 248, 0.42);
  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;
}

.care-icon {
  align-items: center;
  backdrop-filter: blur(0.5rem);
  background: rgba(36, 49, 38, 0.34);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 50%;
  display: flex;
  height: 3.15rem;
  justify-content: center;
  margin-bottom: 1.15rem;
  transition: background-color 300ms ease, transform 420ms var(--ease-out);
  width: 3.15rem;
}

.care-icon svg {
  height: 1.45rem;
  stroke-width: 1.7;
  width: 1.45rem;
}

.care-card-photo {
  aspect-ratio: 4 / 5;
}

.care-card-photo::after {
  background:
    linear-gradient(90deg, rgba(18, 27, 20, 0.7) 0%, rgba(18, 27, 20, 0.52) 62%, rgba(18, 27, 20, 0.28) 100%),
    linear-gradient(180deg, rgba(18, 27, 20, 0.28) 0%, rgba(18, 27, 20, 0.46) 48%, rgba(13, 20, 15, 0.96) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.care-card-photo > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 750ms var(--ease-out);
  width: 100%;
}

.care-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem;
  position: relative;
  text-shadow: 0 0.18rem 1.25rem rgba(8, 13, 9, 0.48);
  z-index: 2;
}

.care-card-content a {
  color: var(--gold);
}

.care-card:nth-child(2) > img { object-position: 64% center; }
.care-card:nth-child(3) > img { object-position: 63% center; }
.care-card:nth-child(4) > img { object-position: 67% center; }

.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: 10ch;
}

.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;
  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: 10ch;
}

.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: 10ch;
}

.journey-list {
  list-style: none;
  padding: 0;
}

.journey-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 3rem 1fr;
  padding: 1.4rem 0;
}

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

.journey-list li > span {
  align-items: center;
  background: var(--olive);
  border-radius: 50%;
  color: var(--paper);
  display: flex;
  font-family: var(--display);
  font-size: 1.1rem;
  height: 2.6rem;
  justify-content: center;
  width: 2.6rem;
}

.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;
}

.testimonials {
  background: var(--paper);
  padding-block: 5.5rem;
}

.testimonials-head {
  display: grid;
  gap: 1.8rem;
}

.testimonials h2 {
  margin-top: 1.25rem;
  max-width: 9ch;
}

.rating {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  padding-top: 1rem;
}

.rating strong {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.rating span {
  color: var(--copper);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.rating small {
  color: var(--muted);
  flex-basis: 100%;
  font-size: 0.72rem;
}

.testimonial-stage {
  background: var(--sage-soft);
  border: 1px solid var(--line);
  border-radius: 0.4rem 3.5rem 0.4rem 0.4rem;
  margin-top: 2.2rem;
  overflow: hidden;
  padding: 1.4rem;
  position: relative;
}

.quote-mark {
  color: var(--olive);
  font-family: var(--display);
  font-size: 6rem;
  height: 3.5rem;
  line-height: 0.9;
  opacity: 0.5;
}

.testimonial-track {
  min-height: 15.5rem;
  overflow: hidden;
  position: relative;
}

.testimonial {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(1.5rem);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

.testimonial.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.testimonial > p {
  font-family: var(--display);
  font-size: clamp(2rem, 9vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.03;
  max-width: 15ch;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  font-size: 0.68rem;
  font-weight: 700;
  gap: 0.25rem;
  letter-spacing: 0.04em;
  margin-top: 1.4rem;
  text-transform: uppercase;
}

.testimonial footer small {
  color: var(--muted);
}

.carousel-controls {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
}

.carousel-count {
  align-items: center;
  display: flex;
  font-size: 0.7rem;
  gap: 0.55rem;
}

.carousel-count i {
  background: var(--forest);
  height: 1px;
  width: 2.5rem;
}

.carousel-controls > div:last-child {
  display: flex;
  gap: 0.5rem;
}

.carousel-controls button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--forest);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2.9rem;
  justify-content: center;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms var(--ease-out);
  width: 2.9rem;
}

.carousel-controls button:hover {
  background: var(--forest);
  color: var(--paper);
  transform: translateY(-2px);
}

.carousel-controls svg {
  height: 1.1rem;
  width: 1.1rem;
}

.source-link {
  border-bottom: 1px solid currentColor;
  margin-top: 1rem;
}

.faq {
  display: grid;
  gap: 2.7rem;
  padding-block: 5.5rem;
}

.faq h2 {
  margin-top: 1.25rem;
  max-width: 10ch;
}

.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-icon svg {
  height: 1.25rem;
  stroke-width: 1.65;
  width: 1.25rem;
}

.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(--olive);
  color: var(--paper);
}

.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: 10ch;
}

.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(204, 232, 154, 0.48);
  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 .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:nth-child(2),
.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 .care-card:nth-child(3),
.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 .care-card:nth-child(4),
.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;
  }

  .testimonial-stage {
    padding: 2.25rem;
  }

  .testimonial-track {
    min-height: 13rem;
  }

  .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(3.5rem, 7vw, 5rem);
  }

  .brand-mark {
    height: 3rem;
    width: 3rem;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .mobile-nav {
    padding-inline: 3rem;
  }

  .philosophy,
  .section-heading,
  .method-inner,
  .journey-inner,
  .testimonials-head,
  .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;
  }

  .rating {
    align-self: end;
    border-left: 1px solid var(--line);
    border-top: 0;
    justify-self: end;
    padding-left: 2rem;
    padding-top: 0;
  }

  .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: 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 {
    height: auto;
    margin-top: 0;
    min-height: max(calc(43rem + var(--header-height)), calc(100svh - 7.2rem));
  }

  .hero-person {
    bottom: -9.3rem;
    height: 132%;
    left: auto;
    right: -1%;
    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;
  }

  .testimonial-stage {
    padding: 3rem;
  }

  .testimonial-track {
    min-height: 15rem;
  }
}

@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: 25rem;
  }

  .care-card-photo {
    aspect-ratio: auto;
  }

  .care-card h3 {
    font-size: clamp(2rem, 2.6vw, 2.65rem);
  }

  .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-list li > span {
    margin-bottom: 3rem;
  }

  .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%, 30rem);
  }

  .hero-person {
    bottom: -21rem;
    height: 152%;
    right: -1.25%;
  }

  .hero-profile-card {
    left: 5%;
  }
}

@media (min-width: 1700px) {
  .hero-person {
    bottom: -30rem;
    height: 168%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover svg,
  .header-cta:hover svg {
    transform: translateX(0.14rem);
  }

  .care-card:hover > img {
    transform: scale(1.045);
  }

  .care-card:hover .care-icon {
    background: rgba(36, 49, 38, 0.62);
    transform: translateY(-0.2rem) rotate(-4deg);
  }

  .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;
  }
}
