:root {
  --cream: #FFF9F0;
  --cream-deep: #FAF1E5;
  --sky: #D8EEF0;
  --sage: #CFE5D8;
  --blush: #F4DDE3;
  --water: #7DAEB3;
  --water-light: #A8D2D2;
  --ink: #365F63;
  --ink-soft: rgb(54 95 99 / .78);
  --white: rgb(255 255 255);
  --line: rgb(125 174 179 / .26);
  --font-soft: "Varela Round", "Arial Rounded MT Bold", Arial, sans-serif;
  --shadow: 0 22px 60px rgb(86 131 133 / .12);
  --shadow-soft: 0 12px 35px rgb(86 131 133 / .08);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-soft);
  font-size: 22px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--water);
  outline-offset: 5px;
  border-radius: 999px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  right: 14px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-170%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 94px;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0 6vw;
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--ink);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  height: 76px;
  background: rgb(255 249 240 / .9);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px) saturate(120%);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: inherit;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.brand-name { font-size: 50px; letter-spacing: -.03em; }
.brand small { color: var(--water); font-size: 30px; letter-spacing: .17em; }

.main-nav { display: flex; gap: 5px; margin-inline: auto; }
.main-nav a, footer a { text-decoration: none; }
.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 30px;
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover { color: var(--ink); background: rgb(216 238 240 / .62); }

.header-contact {
  direction: ltr;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / .36);
  font-size: 17px;
  text-decoration: none;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 850px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 6vw;
  align-items: center;
  padding: 160px 10vw 150px;
  background:
    radial-gradient(circle at 14% 20%, rgb(244 221 227 / .7), transparent 26%),
    radial-gradient(circle at 78% 28%, rgb(216 238 240 / .82), transparent 33%),
    linear-gradient(145deg, var(--cream), var(--cream-deep));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}
.hero::before { width: 510px; height: 220px; left: -180px; bottom: 100px; background: rgb(207 229 216 / .5); transform: rotate(-12deg); }
.hero::after { width: 360px; height: 150px; right: 32%; top: 70px; background: rgb(216 238 240 / .38); transform: rotate(8deg); }

.hero-copy { position: relative; z-index: 3; max-width: 700px; }
.eyebrow { margin: 0 0 22px; color: var(--water); font-size: 16px; letter-spacing: .11em; }

.hero h1,
h2 {
  margin: 0;
  font-family: var(--font-soft);
  font-size: clamp(58px, 6.2vw, 94px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.08;
}
.hero h1 em, h2 em { color: var(--water); font-style: normal; font-weight: 400; }

.lead { max-width: 570px; margin: 34px 0; color: var(--ink-soft); font-size: 27px; line-height: 1.7; }
.hero-actions { display: flex; gap: 28px; align-items: center; }

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 400;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgb(86 131 133 / .17); }
.button-primary { background: linear-gradient(135deg, var(--water), var(--water-light)); color: var(--white); }
.button-primary:hover { background: linear-gradient(135deg, var(--water-light), var(--water)); }

.text-link { padding-bottom: 4px; border-bottom: 2px solid rgb(125 174 179 / .36); font-size: 21px; text-decoration: none; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(-5px); }

.hero-location { position: relative; margin: 40px 0 0; padding-right: 25px; color: var(--ink-soft); font-size: 18px; }
.hero-location::before { content: ""; position: absolute; right: 0; top: .65em; width: 10px; height: 10px; border-radius: 50%; background: var(--blush); box-shadow: 0 0 0 5px rgb(244 221 227 / .45); }

.hero-art { position: relative; z-index: 2; width: min(570px, 100%); aspect-ratio: 1.1; justify-self: center; }
.treatment-illustration { position: absolute; z-index: 2; inset: 2% 2% 5%; overflow: hidden; border-radius: 42% 58% 46% 54% / 48% 44% 56% 52%; background: var(--sky); box-shadow: var(--shadow); }
.treatment-illustration::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 10%, rgb(255 249 240 / .5), transparent 38%), linear-gradient(135deg, rgb(244 221 227 / .16), transparent 35%, rgb(216 238 240 / .18)); mix-blend-mode: soft-light; pointer-events: none; }
.treatment-watercolor { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.72) contrast(.82) brightness(1.08); }
.water-circle { position: absolute; border: 1px solid rgb(125 174 179 / .23); border-radius: 50%; }
.circle-one { width: 180px; height: 180px; right: -6%; top: 2%; box-shadow: 0 0 0 24px rgb(216 238 240 / .18); }
.circle-two { width: 54px; height: 54px; left: 0; bottom: 14%; background: rgb(244 221 227 / .45); }

.trust-strip { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(3, 1fr); padding: 30px 10vw 30px; background: linear-gradient(115deg, var(--sky), var(--sage), var(--blush)); color: var(--ink); }
.trust-strip div { min-height: 112px; display: flex; align-items: center; justify-content: center; gap: 18px; border-left: 1px solid rgb(255 255 255 / .65); }
.trust-strip div:last-child { border-left: 0; }
.trust-strip strong { color: var(--water); font-size: 48px; font-weight: 400; }
.trust-strip span { max-width: 150px; color: var(--ink-soft); font-size: 25px; line-height: 1.45; }

.section { position: relative; isolation: isolate; padding: 155px 11vw 145px; }
.section > :not(.soft-transition) { position: relative; z-index: 2; }
.soft-transition { position: absolute; z-index: 0; top: -82px; right: -5%; width: 110%; height: 140px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: var(--section-bg); transform: rotate(-1deg); }

.intro { --section-bg: var(--cream); background: var(--section-bg); }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: 11vw; align-items: start; }
.body-copy p { max-width: 650px; margin: 0 0 26px; color: var(--ink-soft); font-size: 24px; line-height: 1.9; text-align: justify; text-align-last: right; }

blockquote { max-width: 980px; margin: 105px auto 0; padding: 24px 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; color: var(--ink); font-size: clamp(36px, 3.5vw, 52px); line-height: 1.5; text-align: center; }
blockquote span { color: var(--water); }

.therapy { --section-bg: var(--sky); display: grid; grid-template-columns: .95fr 1.05fr; gap: 10vw; align-items: center; background: var(--section-bg); color: var(--ink); }
.therapy-copy h2 { margin-bottom: 34px; font-size: clamp(52px, 5.4vw, 78px); }
.therapy-copy .eyebrow { color: var(--water); }
.therapy-copy p { max-width: 600px; color: var(--ink-soft); font-size: 24px; line-height: 1.9; text-align: justify; text-align-last: right; }
.therapy-copy .text-link { color: var(--ink); }

.therapy-botanical { position: relative; min-height: 610px; display: grid; place-items: center; }
.previous-botanical { position: relative; z-index: 2; width: min(470px, 92%); max-height: 660px; object-fit: contain; filter: drop-shadow(0 18px 24px rgb(86 131 133 / .09)); }

.process { --section-bg: var(--cream-deep); background: var(--section-bg); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 8vw; margin-bottom: 65px; }
.section-heading h2 { font-size: clamp(51px, 5.2vw, 75px); }
.section-intro { max-width: 470px; margin: 0; color: var(--ink-soft); font-size: 23px; text-align: justify; text-align-last: right; }
.process-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 78px 1fr; gap: 27px; align-items: center; padding: 30px 34px; border: 1px solid rgb(244 221 227 / .7); border-radius: 38px; background: rgb(255 255 255 / .5); transition: transform .2s ease, box-shadow .2s ease; }
.process-list li:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.process-list > li > span { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, var(--blush), var(--sky)); color: var(--ink); }
.process-list h3 { margin: 0 0 7px; font-size: 32px; font-weight: 400; }
.process-list p { max-width: 750px; margin: 0; color: var(--ink-soft); font-size: 22px; text-align: justify; text-align-last: right; }

.sessions { --section-bg: var(--sage); background: var(--section-bg); }
.sessions .section-heading { justify-content: flex-start; text-align: right; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { min-height: 380px; display: flex; flex-direction: column; padding: 32px 30px 35px; border: 1px solid rgb(255 255 255 / .66); border-radius: 42px; background: rgb(255 255 255 / .58); box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-number { color: var(--water); }
.card h3 { margin: 15px 0 15px; font-size: 40px; font-weight: 400; letter-spacing: -.03em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 21px; text-align: justify; text-align-last: right; }
.card .duration { margin-top: auto; padding-top: 27px; color: var(--ink); }
.card-accent { border-color: rgb(255 255 255 / .7); background: linear-gradient(145deg, rgb(244 221 227 / .86), rgb(216 238 240 / .86)); color: var(--ink); }
.card-accent p, .card-accent .card-number, .card-accent .text-link { color: var(--ink); }
.card-accent .text-link { margin-top: auto; align-self: flex-start; }

.details { --section-bg: var(--cream); display: grid; grid-template-columns: .85fr 1.15fr; gap: 11vw; background: var(--section-bg); }
.details h2 { font-size: clamp(44px, 4.5vw, 67px); }
.details-list { display: grid; gap: 15px; }
.details-list > div { padding: 25px 28px; border: 1px solid var(--line); border-radius: 32px; background: linear-gradient(130deg, rgb(216 238 240 / .36), rgb(255 255 255 / .45)); }
.details-list h3 { margin: 0 0 8px; color: var(--water); font-size: 32px; font-weight: 400; }
.details-list p { max-width: 640px; margin: 0; color: var(--ink-soft); font-size: 21px; text-align: justify; text-align-last: right; }

.contact { --section-bg: var(--blush); display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: center; background: linear-gradient(130deg, var(--blush), var(--sky) 58%, var(--sage)); color: var(--ink); }
.contact .soft-transition { background: linear-gradient(90deg, var(--blush), var(--sky), var(--sage)); }
.contact::after { content: ""; position: absolute; z-index: 0; width: 340px; height: 340px; left: -170px; bottom: -150px; border: 1px solid rgb(255 255 255 / .65); border-radius: 50%; box-shadow: 0 0 0 38px rgb(255 255 255 / .12), 0 0 0 76px rgb(255 255 255 / .07); }
.contact-copy, .contact-panel { position: relative; z-index: 2; }
.contact .eyebrow { color: var(--water); }
.contact h2 { font-size: clamp(58px, 6vw, 86px); }
.contact h2 em { color: var(--water); }
.contact-copy > p:last-child { max-width: 500px; color: var(--ink-soft); font-size: 24px; text-align: justify; text-align-last: right; }
.contact-panel { padding: 42px; border: 1px solid rgb(255 255 255 / .75); border-radius: 42px; background: rgb(255 249 240 / .82); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.contact-row { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 21px; text-decoration: none; }
.contact-row strong { direction: ltr; font-weight: 400; }
.full { width: 100%; margin-top: 30px; }
.hours { margin: 22px 0 0; color: var(--ink-soft); font-size: 18px; text-align: center; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 42px 6vw; background: var(--cream-deep); color: var(--ink); }
footer .brand small { color: var(--water); }
footer p { margin: 0; color: var(--ink-soft); font-size: 18px; }
footer a:hover { color: var(--water); }
.footer-links { display: flex; gap: 25px; font-size: 17px; }

.floating-contact { position: fixed; z-index: 18; bottom: 18px; left: 18px; width: 78px; height: 78px; display: none; align-items: center; justify-content: center; border: 2px solid rgb(255 255 255 / .7); border-radius: 50%; background: linear-gradient(145deg, var(--water), var(--water-light)); box-shadow: 0 10px 28px rgb(86 131 133 / .2); color: var(--white); font-size: 16px; text-decoration: none; }

@media (max-width: 820px) {
  body { font-size: 20px; }
  .site-header, .site-header.scrolled { height: 74px; padding: 0 6vw; }
  .header-contact { display: none; }
  .menu-toggle { display: flex; align-items: center; gap: 9px; margin-right: auto; border: 0; background: transparent; color: inherit; font: 400 16px var(--font-soft); }
  .menu-toggle span, .menu-toggle::after { content: ""; width: 19px; height: 2px; display: block; border-radius: 999px; background: currentColor; }
  .main-nav { position: absolute; top: 74px; left: 0; right: 0; display: none; flex-direction: column; gap: 8px; padding: 24px 7vw 30px; border-radius: 0 0 34px 34px; background: rgb(255 249 240 / .97); box-shadow: var(--shadow-soft); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 15px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 60px; padding: 132px 8vw 145px; }
  .hero h1 { font-size: clamp(55px, 15vw, 74px); }
  .lead { font-size: 23px; }
  .hero-art { width: min(410px, 94%); }
  .trust-strip { padding: 30px 6vw 70px; }
  .trust-strip div { min-height: 98px; gap: 10px; }
  .trust-strip strong { font-size: 34px; }
  .trust-strip span { max-width: 105px; font-size: 15px; }
  .section { padding: 125px 8vw 100px; }
  .soft-transition { top: -62px; height: 100px; }
  .two-column, .therapy, .details, .contact { grid-template-columns: 1fr; gap: 52px; }
  .two-column h2 { font-size: 56px; }
  .body-copy p { font-size: 22px; }
  blockquote { margin-top: 72px; padding: 44px 31px; border-radius: 42px; }
  .therapy-botanical { width: 100%; min-height: 520px; order: 2; }
  .therapy-copy { order: 1; }
  .section-heading { display: block; }
  .section-heading h2 { font-size: 55px; }
  .section-intro { margin-top: 25px; }
  .process-list li { grid-template-columns: 60px 1fr; gap: 16px; padding: 23px 19px; border-radius: 30px; }
  .process-list > li > span { width: 49px; height: 49px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 305px; }
  .contact-panel { padding: 31px 24px; }
  footer { align-items: flex-start; flex-direction: column; gap: 16px; padding: 34px 8vw 118px; }
  .footer-links { flex-wrap: wrap; }
  .floating-contact { display: flex; }
}

@media (max-width: 480px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .trust-strip { grid-template-columns: 1fr; padding: 18px 8vw 70px; }
  .trust-strip div { min-height: 76px; justify-content: flex-start; border-left: 0; border-bottom: 1px solid rgb(255 255 255 / .65); }
  .trust-strip div:last-child { border-bottom: 0; }
  .trust-strip span { max-width: none; font-size: 17px; }
  .contact-row { align-items: flex-start; flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: rise .8s both; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
