@charset "UTF-8";

:root {
  --green-950: #073c2b;
  --green-900: #0a5136;
  --green-800: #0d6b43;
  --green-700: #168455;
  --green-100: #e3f2e9;
  --green-50: #f2f8f4;
  --pink-700: #b31368;
  --pink-600: #d21f7a;
  --pink-100: #f9e0ed;
  --navy: #13213a;
  --ink: #17231e;
  --muted: #647169;
  --paper: #fbfdfb;
  --white: #ffffff;
  --line: rgba(13, 107, 67, 0.16);
  --shadow: 0 24px 70px rgba(7, 60, 43, 0.13);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--pink-600);
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-padding {
  padding: 110px 0;
}

.scroll-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green-700), var(--pink-600));
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(251, 253, 251, 0.93);
  box-shadow: 0 12px 35px rgba(7, 60, 43, 0.07);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 43px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-700), var(--green-950));
  border-radius: 50% 50% 50% 14px;
  box-shadow: 0 9px 25px rgba(13, 107, 67, 0.22);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #3d4d44;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--pink-600);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  color: var(--white);
  background: var(--green-800);
  border: 1px solid var(--green-800);
  border-radius: 999px;
  box-shadow: 0 13px 30px rgba(13, 107, 67, 0.2);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  background: var(--green-950);
  box-shadow: 0 16px 32px rgba(7, 60, 43, 0.25);
  transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.card-link:focus-visible,
.attention-card a:focus-visible,
.accordion-toggle:focus-visible,
.menu-toggle:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid var(--pink-600);
  outline-offset: 4px;
}

.button-small {
  min-height: 43px;
  padding-inline: 20px;
  font-size: 13px;
}

.button-outline {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.button-outline:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.section-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 770px;
  padding-top: 82px;
  background:
    radial-gradient(circle at 8% 14%, rgba(210, 31, 122, 0.08), transparent 29%),
    radial-gradient(circle at 84% 30%, rgba(22, 132, 85, 0.13), transparent 30%),
    linear-gradient(135deg, #fbfdfb 0%, #f4faf5 52%, #fff8fb 100%);
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 65px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 2px;
  background: var(--pink-600);
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 690px;
  color: var(--navy);
  font-size: clamp(50px, 5.8vw, 78px);
}

.hero h1 em {
  display: block;
  color: var(--green-800);
  font-weight: 700;
}

.hero-lead {
  max-width: 605px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  gap: 42px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-facts strong {
  color: var(--pink-600);
  font-family: var(--serif);
  font-size: 39px;
  line-height: 1;
}

.hero-facts span {
  max-width: 95px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 505px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(13, 107, 67, 0.1);
  background: rgba(255, 255, 255, 0.64);
  border-radius: 46% 54% 61% 39% / 51% 35% 65% 49%;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: morph 10s ease-in-out infinite alternate;
}

.energy-rings {
  position: relative;
  z-index: 2;
  width: 310px;
  height: 310px;
  display: grid;
  place-items: center;
}

.energy-rings > i {
  position: absolute;
  border: 1px solid rgba(13, 107, 67, 0.25);
  border-radius: 50%;
}

.energy-rings > i:nth-child(1) {
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
  border-top-color: var(--pink-600);
  border-right-color: transparent;
}

.energy-rings > i:nth-child(2) {
  width: 74%;
  height: 74%;
  border-bottom-color: var(--green-700);
  border-left-color: transparent;
  animation: spinReverse 14s linear infinite;
}

.energy-rings > i:nth-child(3) {
  width: 48%;
  height: 48%;
  border-color: rgba(210, 31, 122, 0.33);
}

.energy-core {
  display: grid;
  width: 105px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-700), var(--green-950));
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 50% 50% 50% 25%;
  box-shadow: 0 18px 45px rgba(7, 60, 43, 0.25);
  font-family: var(--serif);
  font-size: 58px;
  font-style: italic;
}

.energy-rings::before,
.energy-rings::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--pink-600);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(179, 19, 104, 0.25);
}

.energy-rings::before {
  top: 33px;
  right: 40px;
}

.energy-rings::after {
  bottom: 36px;
  left: 45px;
  background: var(--green-700);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 178px;
  padding: 13px 17px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(13, 107, 67, 0.13);
  border-radius: 16px;
  box-shadow: 0 17px 40px rgba(7, 60, 43, 0.13);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.floating-note small,
.floating-note strong {
  display: block;
  line-height: 1.25;
}

.floating-note small {
  color: var(--muted);
  font-size: 10px;
}

.floating-note strong {
  color: var(--navy);
  font-size: 13px;
}

.note-dot {
  width: 14px;
  height: 14px;
  background: var(--green-700);
  border: 4px solid var(--green-100);
  border-radius: 50%;
}

.note-dot-pink {
  background: var(--pink-600);
  border-color: var(--pink-100);
}

.note-top {
  top: 76px;
  right: 2px;
  animation: float 4s ease-in-out infinite;
}

.note-bottom {
  bottom: 73px;
  left: 6px;
  animation: float 4s 0.8s ease-in-out infinite;
}

.visual-word {
  position: absolute;
  z-index: 1;
  right: -9px;
  bottom: 10px;
  margin: 0;
  color: rgba(13, 107, 67, 0.06);
  font-family: var(--serif);
  font-size: 77px;
  font-style: italic;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 140px;
  left: -75px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(210, 31, 122, 0.15);
}

.hero-orb-two {
  right: -90px;
  bottom: 105px;
  width: 205px;
  height: 205px;
  background: rgba(210, 31, 122, 0.055);
}

.service-strip {
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
  border-bottom: 4px solid var(--pink-600);
}

.service-strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  min-width: 100%;
  padding: 17px 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-strip b {
  color: var(--pink-600);
}

.intro {
  background: var(--white);
}

.intro-grid,
.prices-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 105px;
}

.section-heading h2,
.experience-copy h2 {
  color: var(--navy);
  font-size: clamp(39px, 4.3vw, 58px);
}

.section-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--muted);
}

.intro-copy {
  border-left: 1px solid var(--line);
  padding-left: 48px;
}

.intro-copy p {
  margin: 0 0 17px;
  color: #56645c;
  font-size: 17px;
}

.text-link,
.card-link,
.attention-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.text-link span,
.card-link span,
.attention-card a span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.card-link:hover span,
.attention-card a:hover span {
  transform: translateX(5px);
}

.therapies {
  background:
    radial-gradient(circle at 90% 16%, rgba(210, 31, 122, 0.07), transparent 20%),
    var(--green-50);
}

.section-heading-centered {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.eyebrow-centered {
  justify-content: center;
}

.therapy-featured {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 245px;
  gap: 25px;
  overflow: hidden;
  padding: 45px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.therapy-featured::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  background: var(--pink-100);
  border-radius: 50%;
  opacity: 0.55;
}

.therapy-number,
.therapy-card-top > span {
  color: rgba(13, 107, 67, 0.42);
  font-family: var(--serif);
  font-size: 21px;
}

.therapy-featured-copy {
  position: relative;
  z-index: 2;
}

.therapy-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.therapy-featured h3,
.therapy-card h3,
.attention-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  line-height: 1.15;
}

.therapy-featured h3 {
  font-size: clamp(34px, 4vw, 50px);
}

.therapy-featured-copy > p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
}

.therapy-featured-copy .supporting-copy {
  color: var(--green-900);
  font-weight: 700;
}

.price {
  flex-shrink: 0;
  color: var(--pink-600);
  font-family: var(--serif);
  font-size: 30px;
}

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 16px 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.accordion-toggle span {
  color: var(--pink-600);
  font-size: 25px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.accordion-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.accordion-content > * {
  overflow: hidden;
}

.accordion-content.open {
  grid-template-rows: 1fr;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accordion-content.open .tag-list,
.accordion-content.open .simple-list {
  margin-top: 18px;
  margin-bottom: 5px;
}

.tag-list li {
  padding: 7px 11px;
  color: #3f5147;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.therapy-symbol {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: grid;
  min-height: 285px;
  place-items: center;
  background: linear-gradient(150deg, var(--green-900), var(--green-950));
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
}

.therapy-symbol span {
  display: grid;
  width: 102px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 31px;
}

.therapy-symbol i {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--pink-600);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.therapy-symbol i:nth-of-type(1) { top: 42px; left: 56px; }
.therapy-symbol i:nth-of-type(2) { top: 75px; right: 44px; background: #f0b64c; }
.therapy-symbol i:nth-of-type(3) { bottom: 65px; right: 55px; background: #398cba; }
.therapy-symbol i:nth-of-type(4) { bottom: 42px; left: 45px; background: #7c68b6; }
.therapy-symbol i:nth-of-type(5) { top: 50%; left: 32px; background: #66a757; }

.therapy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.therapy-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 33px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.therapy-card:hover {
  box-shadow: 0 19px 50px rgba(7, 60, 43, 0.11);
  transform: translateY(-6px);
}

.therapy-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.therapy-card h3 {
  max-width: 470px;
  font-size: 31px;
}

.therapy-card > p:not(.card-kicker) {
  color: var(--muted);
}

.therapy-card .card-link {
  margin-top: auto;
  padding-top: 25px;
}

.therapy-card-dark {
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-950);
  border-color: var(--green-950);
}

.therapy-card-dark h3,
.therapy-card-dark .therapy-card-top > span,
.therapy-card-dark .card-link,
.therapy-card-dark > p:not(.card-kicker) {
  color: var(--white);
}

.therapy-card-dark .card-kicker {
  color: #8ed2aa;
}

.therapy-card-dark .accordion-toggle {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
}

.simple-list {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.therapy-card-pink {
  background: linear-gradient(145deg, #fff7fb, #f9e0ed);
  border-color: rgba(210, 31, 122, 0.16);
}

.chakra-line {
  display: flex;
  gap: 11px;
  margin: 32px 0;
}

.chakra-line i {
  width: 13px;
  height: 13px;
  background: #d44242;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.62);
}

.chakra-line i:nth-child(2) { background: #e67e22; }
.chakra-line i:nth-child(3) { background: #e1b22f; }
.chakra-line i:nth-child(4) { background: #5a9e58; }
.chakra-line i:nth-child(5) { background: #3b8fc0; }
.chakra-line i:nth-child(6) { background: #505ba5; }
.chakra-line i:nth-child(7) { background: #8056a6; }

.experience {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.experience::before {
  content: "";
  position: absolute;
  top: -230px;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.experience-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.experience-visual {
  position: relative;
  display: grid;
  min-height: 415px;
  place-content: center;
  text-align: center;
  background: linear-gradient(155deg, rgba(22, 132, 85, 0.68), rgba(7, 60, 43, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50% 50% 45% 45% / 44% 44% 56% 56%;
}

.experience-number {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 170px;
  line-height: 0.8;
}

.experience-label {
  margin: 20px 0 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience-seal {
  position: absolute;
  right: -22px;
  bottom: 40px;
  display: grid;
  width: 112px;
  aspect-ratio: 1;
  place-content: center;
  color: var(--navy);
  background: var(--pink-100);
  border: 8px solid var(--navy);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.experience-seal span {
  color: var(--pink-600);
}

.experience-copy h2 {
  color: var(--white);
}

.experience-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 23px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.experience .eyebrow {
  color: #8ed2aa;
}

.timeline {
  margin-top: 37px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline span {
  width: 9px;
  height: 9px;
  align-self: center;
  background: var(--pink-600);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(210, 31, 122, 0.15);
}

.timeline p {
  display: flex;
  gap: 25px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.timeline strong {
  width: 92px;
  color: var(--white);
}

.attention {
  background: var(--white);
}

.attention-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.attention-card {
  position: relative;
  min-height: 335px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 42px;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.attention-card::before {
  content: "";
  position: absolute;
  top: -65px;
  right: -45px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(13, 107, 67, 0.15);
  border-radius: 50%;
}

.attention-index {
  position: absolute;
  top: 30px;
  left: 36px;
  color: rgba(13, 107, 67, 0.38);
  font-family: var(--serif);
  font-size: 23px;
}

.attention-card h3 {
  max-width: 420px;
  font-size: 37px;
}

.attention-card p,
.attention-card address {
  margin: 14px 0 0;
  color: var(--muted);
  font-style: normal;
}

.attention-card address {
  color: var(--green-900);
  font-weight: 800;
}

.attention-card-accent {
  color: var(--white);
  background: linear-gradient(145deg, var(--pink-700), #851047);
  border-color: var(--pink-700);
}

.attention-card-accent::before {
  border-color: rgba(255, 255, 255, 0.2);
}

.attention-card-accent h3,
.attention-card-accent p,
.attention-card-accent a,
.attention-card-accent .attention-index {
  color: var(--white);
}

.prices {
  background: var(--green-50);
}

.prices-grid {
  align-items: start;
}

.price-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 17px 50px rgba(7, 60, 43, 0.08);
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 25px;
  border-bottom: 1px solid var(--line);
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list span {
  color: #3c4c43;
  font-weight: 700;
}

.price-list strong {
  color: var(--pink-600);
  font-family: var(--serif);
  font-size: 25px;
}

.contact {
  background: var(--white);
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  align-items: center;
  gap: 55px;
  overflow: hidden;
  padding: 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(210, 31, 122, 0.25), transparent 32%),
    var(--green-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: 25%;
  bottom: -160px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-copy,
.contact-details,
.contact-card .button {
  position: relative;
  z-index: 2;
}

.eyebrow-light {
  color: #8ed2aa;
}

.contact h2 {
  color: var(--white);
  font-size: clamp(42px, 4vw, 58px);
}

.contact-copy > p:not(.eyebrow) {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.contact-details p {
  margin: 8px 0;
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 15px;
}

.button-pink {
  background: var(--pink-600);
  border-color: var(--pink-600);
  box-shadow: 0 14px 34px rgba(210, 31, 122, 0.3);
}

.button-pink:hover {
  background: #a7105c;
}

.site-footer {
  padding: 0 0 25px;
  color: #5f6c65;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 35px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.footer-grid > a {
  color: var(--green-800);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 21px;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 25px;
  bottom: 25px;
  display: flex;
  min-width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  color: var(--white);
  background: #1fae61;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 13px 32px rgba(7, 60, 43, 0.27);
  font-size: 12px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 17px 37px rgba(7, 60, 43, 0.33);
  transform: translateY(-4px);
}

.whatsapp-float svg {
  width: 23px;
  fill: currentColor;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes morph {
  0% { border-radius: 46% 54% 61% 39% / 51% 35% 65% 49%; }
  100% { border-radius: 55% 45% 42% 58% / 38% 55% 45% 62%; }
}

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .header-cta { display: none; }
  .hero-grid { gap: 30px; }
  .hero-visual { transform: scale(0.88); }
  .therapy-featured { grid-template-columns: 54px minmax(0, 1fr) 205px; padding: 35px; }
  .contact-card { grid-template-columns: 1fr 1fr; }
  .contact-card .button { justify-self: start; }
}

@media (max-width: 860px) {
  .section-padding { padding: 85px 0; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed;
    inset: 82px 18px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 13px 15px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-copy { text-align: center; }
  .hero .eyebrow, .hero-actions, .hero-facts { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { min-height: 430px; transform: none; }
  .service-strip-track { animation: marquee 22s linear infinite; }
  .intro-grid, .prices-grid, .experience-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-copy { padding-left: 0; border-left: 0; }
  .therapy-featured { grid-template-columns: 1fr; }
  .therapy-number { position: absolute; top: 28px; left: 30px; }
  .therapy-featured-copy { padding-top: 30px; }
  .therapy-symbol { min-height: 230px; }
  .experience-visual { width: min(100%, 440px); margin-inline: auto; }
  .contact-card { gap: 35px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid > p { grid-column: 1 / -1; }
  @keyframes marquee { to { transform: translateX(-35%); } }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-padding { padding: 70px 0; }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 38px; }
  .brand-copy strong { font-size: 21px; }
  .main-nav { top: 72px; }
  .hero { padding-top: 72px; }
  .hero-grid { min-height: auto; padding-top: 62px; }
  .hero h1 { font-size: clamp(43px, 13.6vw, 60px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-facts { gap: 22px; }
  .hero-facts div { align-items: flex-start; }
  .hero-facts strong { font-size: 32px; }
  .hero-visual { min-height: 365px; }
  .hero-visual::before { width: 310px; height: 310px; }
  .energy-rings { width: 250px; height: 250px; }
  .energy-core { width: 88px; font-size: 47px; }
  .floating-note { min-width: 150px; padding: 10px 12px; }
  .note-top { top: 50px; right: 0; }
  .note-bottom { bottom: 38px; left: 0; }
  .visual-word { font-size: 52px; }
  .service-strip-track { gap: 18px; padding-block: 14px; font-size: 10px; }
  .section-heading h2, .experience-copy h2 { font-size: 40px; }
  .section-heading-centered { margin-bottom: 38px; }
  .therapy-featured { padding: 28px 22px; border-radius: 25px; }
  .therapy-title-row { display: block; }
  .therapy-title-row .price { display: block; margin-top: 8px; }
  .therapy-grid, .attention-grid { grid-template-columns: 1fr; }
  .therapy-card { min-height: 310px; padding: 26px 23px; }
  .therapy-card h3 { font-size: 28px; }
  .therapy-card-top { margin-bottom: 29px; }
  .tag-list li { font-size: 10px; }
  .experience-grid { gap: 55px; }
  .experience-visual { min-height: 340px; }
  .experience-number { font-size: 135px; }
  .experience-seal { right: 0; width: 96px; }
  .timeline p { display: grid; gap: 1px; }
  .attention-card { min-height: 300px; padding: 32px 25px; }
  .attention-card h3 { font-size: 31px; }
  .price-list div { align-items: flex-start; padding: 17px; }
  .price-list span { font-size: 13px; }
  .price-list strong { font-size: 22px; }
  .contact-card { grid-template-columns: 1fr; padding: 38px 25px; border-radius: 25px; }
  .contact h2 { font-size: 43px; }
  .contact-card .button { width: 100%; }
  .footer-grid { display: flex; flex-direction: column; align-items: flex-start; }
  .footer-bottom { display: grid; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 56px; padding: 0; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
