@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  --ink: #27241f;
  --plum: #4d2447;
  --cream: #fff3da;
  --cream-soft: #fff9ec;
  --blue: #99b7f5;
  --green: #267f53;
  --orange: #f5793b;
  --pink: #f296bd;
  --yellow: #fcca59;
  --red-orange: #ec542e;
  --line: rgba(39, 36, 31, .14);
  --shadow: 0 24px 70px rgba(89, 55, 24, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(153, 183, 245, .38) 0 72px, transparent 73px),
    radial-gradient(circle at 92% 8%, rgba(242, 150, 189, .38) 0 95px, transparent 96px),
    radial-gradient(circle at 88% 88%, rgba(252, 202, 89, .38) 0 120px, transparent 121px),
    linear-gradient(135deg, var(--cream-soft), var(--cream));
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .36;
  background-image:
    radial-gradient(circle, var(--orange) 0 5px, transparent 6px),
    radial-gradient(circle, var(--pink) 0 4px, transparent 5px),
    linear-gradient(45deg, transparent 47%, rgba(38, 127, 83, .7) 48% 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(153, 183, 245, .75) 48% 52%, transparent 53%);
  background-size: 180px 180px, 210px 210px, 155px 155px, 190px 190px;
  background-position: 12px 40px, 120px 90px, 30px 20px, 100px 130px;
}

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

.header {
  width: min(1240px, calc(100% - 40px));
  height: 88px;
  margin: 18px auto 0;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 20;
  background: rgba(255, 249, 236, .82);
  border: 1px solid rgba(39, 36, 31, .12);
  border-radius: 999px;
  box-shadow: 0 14px 45px rgba(89, 55, 24, .09);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  letter-spacing: -1px;
}

.brand span {
  color: var(--pink);
  font-style: italic;
}

.nav {
  display: flex;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: .2s ease;
}

.nav a:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}

.hero {
  min-height: calc(100vh - 106px);
  width: min(1150px, 100%);
  margin: auto;
  padding: 66px 32px 105px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 84px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 42% 58% 55% 45%;
}

.hero::before {
  width: 130px;
  height: 130px;
  left: 30px;
  bottom: 52px;
  background: var(--blue);
  transform: rotate(-12deg);
}

.hero::after {
  width: 96px;
  height: 96px;
  right: 14px;
  top: 110px;
  background: var(--yellow);
  transform: rotate(18deg);
}

.hero__mobile-title {
  display: none;
}

.hero__visual {
  height: 540px;
  position: relative;
  display: flex;
  justify-content: center;
  order: 0;
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  z-index: 0;
}

.hero__visual::before {
  width: 116px;
  height: 116px;
  left: -18px;
  top: 54px;
  background:
    linear-gradient(90deg, transparent 43%, var(--orange) 44% 56%, transparent 57%),
    linear-gradient(0deg, transparent 43%, var(--orange) 44% 56%, transparent 57%);
  transform: rotate(20deg);
}

.hero__visual::after {
  width: 95px;
  height: 95px;
  right: 8px;
  bottom: 76px;
  border: 18px solid var(--pink);
  border-radius: 50%;
}

.hero__shape {
  position: absolute;
  width: 340px;
  height: 355px;
  top: -24px;
  right: 10px;
  background: var(--green);
  border-radius: 58% 42% 47% 53% / 48% 56% 44% 52%;
  box-shadow: 30px 28px 0 var(--yellow);
}

.hero__visual img {
  width: min(360px, 82%);
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  border: 10px solid var(--cream-soft);
  border-radius: 190px 190px 34px 34px;
  box-shadow: var(--shadow);
  filter: saturate(1.04) contrast(1.02);
}

.hero__note {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: -4px;
  margin: 0;
  padding: 18px 22px;
  color: white;
  background: var(--orange);
  border: 4px solid var(--cream-soft);
  border-radius: 28px 28px 28px 4px;
  box-shadow: 0 16px 45px rgba(245, 121, 59, .28);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.25;
}

.hero__content {
  order: 1;
  position: relative;
}

.hero__content::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  right: 70px;
  top: -18px;
  background:
    radial-gradient(circle, var(--green) 0 6px, transparent 7px) 0 0 / 24px 24px,
    radial-gradient(circle, var(--blue) 0 6px, transparent 7px) 12px 12px / 24px 24px;
  opacity: .7;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  color: var(--green);
  background: rgba(38, 127, 83, .1);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 800;
}

.hero__credential {
  width: fit-content;
  margin: 0 0 20px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum);
  background: rgba(255, 249, 236, .88);
  border: 2px solid rgba(77, 36, 71, .1);
  border-radius: 999px;
  box-shadow: 7px 7px 0 rgba(252, 202, 89, .62);
}

.hero__credential strong {
  padding: 7px 14px;
  color: white;
  background: var(--plum);
  border-radius: 999px;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.hero__credential span {
  padding: 7px 12px 7px 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -.035em;
}

.hero__content h1,
.hero__mobile-title {
  max-width: 650px;
  font-size: clamp(41px, 4.4vw, 64px);
  color: var(--plum);
  text-wrap: balance;
}

.hero__content h1 span,
.hero__mobile-title span {
  display: block;
}

.hero__content h1 em,
.hero__mobile-title em {
  display: block;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 14px 11px;
  color: var(--ink);
  background: var(--pink);
  border-radius: 24px 24px 24px 6px;
  font-size: .52em;
  line-height: 1.08;
  box-shadow: 10px 10px 0 var(--yellow);
}

em {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}

.hero__mobile-about {
  display: none;
}

.hero__text {
  max-width: 560px;
  margin: 28px 0 0;
  color: #574f44;
  font-size: 18px;
}

.hero__text--long {
  margin: 28px 0 30px;
  padding: 28px;
  background: rgba(255, 249, 236, .86);
  border: 2px solid rgba(39, 36, 31, .1);
  border-left: 10px solid var(--green);
  border-radius: 34px;
  box-shadow: 0 18px 60px rgba(89, 55, 24, .1);
  font-size: 15.5px;
  line-height: 1.62;
}

.hero__text--long p {
  margin: 0 0 14px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 15px 19px 15px 24px;
  color: #fff;
  background: var(--green);
  border: 2px solid rgba(39, 36, 31, .1);
  border-radius: 999px;
  box-shadow: 8px 8px 0 var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: lowercase;
  transition: .2s ease;
}

.button:hover {
  background: var(--orange);
  box-shadow: 8px 8px 0 var(--pink);
  transform: translateY(-3px);
}

.button span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--cream-soft);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(70px) scale(.96);
  filter: blur(10px);
  transition:
    opacity .95s ease,
    transform .95s cubic-bezier(.16, 1, .3, 1),
    filter .95s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.therapy {
  padding: 110px max(32px, calc((100vw - 1176px) / 2));
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(252, 202, 89, .48) 0 90px, transparent 91px),
    radial-gradient(circle at 92% 10%, rgba(153, 183, 245, .38) 0 110px, transparent 111px),
    linear-gradient(135deg, #fff6e5 0%, #ffe6d7 56%, #ffe0ef 100%);
}

.therapy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    radial-gradient(circle, var(--pink) 0 6px, transparent 7px) 22px 28px / 120px 120px,
    linear-gradient(45deg, transparent 47%, var(--green) 48% 52%, transparent 53%) 0 0 / 220px 220px;
}

.therapy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border-radius: 46% 54% 62% 38%;
  background: rgba(242, 150, 189, .62);
}

.therapy__heading,
.therapy__body,
.therapy-gallery {
  position: relative;
  z-index: 1;
}

.therapy__heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.therapy__heading h2,
.faq__intro h2,
.contact h2 {
  max-width: 650px;
  font-size: clamp(36px, 4vw, 60px);
  text-wrap: balance;
}

.therapy__heading h2,
.faq__intro h2 {
  color: var(--plum);
}

.therapy__heading h2 {
  margin: 0 auto;
  max-width: 760px;
  padding: 0;
  color: var(--plum);
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(54px, 7vw, 96px);
  line-height: .95;
}

.therapy__heading h2 em {
  display: inline-block;
  margin-left: 8px;
  padding: 8px 20px 14px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 30px 30px 30px 8px;
  box-shadow: 10px 10px 0 var(--pink);
  font-size: .72em;
}

.therapy__heading .eyebrow {
  margin-inline: auto;
  margin-bottom: 18px;
  color: var(--plum);
  background: rgba(255, 249, 236, .9);
}

.therapy__body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
  margin-top: 64px;
}

.therapy__side {
  display: contents;
}

.therapy__side .therapy-block {
  min-height: 100%;
}

.therapy-block {
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 249, 236, .95);
  border: 3px solid rgba(39, 36, 31, .09);
  border-radius: 30px;
  box-shadow: 12px 12px 0 rgba(39, 36, 31, .09);
}

.therapy-block--featured {
  background: rgba(255, 249, 236, .96);
  border-top-color: var(--orange);
}

.therapy__side .therapy-block:nth-child(1) {
  border-top-color: var(--green);
}

.therapy__side .therapy-block:nth-child(2) {
  border-top-color: var(--blue);
}

.therapy-block span {
  width: fit-content;
  padding: 7px 13px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.therapy-block h3 {
  margin: 0 0 6px;
  color: var(--plum);
  font-size: clamp(25px, 2vw, 32px);
  letter-spacing: -.03em;
}

.therapy-block p {
  margin: 0;
  color: #51483f;
  font-size: 14.5px;
  line-height: 1.68;
}

.therapy-gallery {
  width: min(100%, 1080px);
  margin: 58px auto 0;
  padding: 12px;
  overflow: hidden;
  background: rgba(255, 249, 236, .82);
  border: 2px solid rgba(39, 36, 31, .08);
  border-radius: 34px;
  box-shadow: 12px 12px 0 rgba(77, 36, 71, .1);
}

.therapy-gallery__track {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: therapy-marquee 32s linear infinite;
}

.therapy-gallery:hover .therapy-gallery__track {
  animation-play-state: paused;
}

.therapy-gallery img {
  width: clamp(230px, 30vw, 390px);
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(77, 36, 71, .16);
}

@keyframes therapy-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.testimonials {
  padding: 112px max(32px, calc((100vw - 1176px) / 2));
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(252, 202, 89, .9) 0 84px, transparent 85px),
    radial-gradient(circle at 88% 18%, rgba(242, 150, 189, .78) 0 96px, transparent 97px),
    linear-gradient(135deg, var(--cream-soft), #ffe8c8);
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .33;
  background:
    linear-gradient(45deg, transparent 44%, var(--blue) 45% 55%, transparent 56%) 0 0 / 160px 160px,
    radial-gradient(circle, var(--green) 0 6px, transparent 7px) 30px 40px / 120px 120px,
    radial-gradient(circle at 50% 50%, transparent 0 18px, var(--orange) 19px 22px, transparent 23px) 20px 20px / 150px 150px;
}

.testimonials__heading,
.testimonials__grid,
.testimonials__notice {
  position: relative;
  z-index: 1;
}

.testimonials__heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.testimonials__heading h2 {
  max-width: 740px;
  color: var(--plum);
  font-size: clamp(54px, 7vw, 96px);
  line-height: .95;
  text-wrap: balance;
}

.testimonials__heading h2 em {
  display: inline-block;
  margin-left: 8px;
  padding: 8px 20px 14px;
  color: var(--ink);
  background: var(--pink);
  border-radius: 30px 30px 30px 8px;
  box-shadow: 10px 10px 0 var(--yellow);
  font-size: .72em;
}

.testimonials__heading > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: #5a5147;
  font-size: 17px;
  line-height: 1.65;
}

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

.testimonial-card {
  min-height: 270px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 249, 236, .94);
  border: 3px solid rgba(39, 36, 31, .08);
  border-radius: 34px;
  box-shadow: 12px 12px 0 rgba(77, 36, 71, .1);
}

.testimonial-card:nth-child(1) {
  border-top-color: var(--orange);
}

.testimonial-card:nth-child(2) {
  border-top-color: var(--pink);
  transform: translateY(26px);
}

.testimonial-card:nth-child(3) {
  border-top-color: var(--green);
}

.testimonial-card:nth-child(4) {
  border-top-color: var(--blue);
  transform: translateY(26px);
}

.testimonial-card span {
  width: fit-content;
  padding: 7px 13px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.testimonial-card p {
  margin: 0;
  color: #4f463d;
  font-size: 15.5px;
  line-height: 1.72;
}

.testimonials__notice {
  max-width: 920px;
  margin: 62px auto 0;
  padding: 22px 26px;
  color: #554c43;
  background: rgba(255, 249, 236, .9);
  border: 2px dashed rgba(77, 36, 71, .22);
  border-radius: 26px;
  font-size: 13.5px;
  line-height: 1.65;
}

.quote {
  padding: 126px 32px;
  text-align: center;
  background: var(--cream-soft);
  position: relative;
}

.quote::before,
.quote::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.quote::before {
  width: 92px;
  height: 92px;
  left: 12%;
  top: 42px;
  background: var(--yellow);
}

.quote::after {
  width: 80px;
  height: 80px;
  right: 14%;
  bottom: 36px;
  background: var(--blue);
}

.quote p {
  max-width: 760px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.18;
}

.quote span {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.faq {
  padding: 112px max(24px, calc((100vw - 1120px) / 2));
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(252, 202, 89, .9) 0 92px, transparent 93px),
    radial-gradient(circle at 92% 84%, rgba(153, 183, 245, .8) 0 105px, transparent 106px),
    linear-gradient(135deg, #fff8e9 0%, #ffe7d3 48%, #ffe0ef 100%);
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background:
    radial-gradient(circle, var(--green) 0 7px, transparent 8px) 32px 28px / 150px 150px,
    linear-gradient(45deg, transparent 44%, var(--orange) 45% 55%, transparent 56%) 12px 24px / 180px 180px,
    radial-gradient(circle at 50% 50%, transparent 0 22px, var(--pink) 23px 26px, transparent 27px) 50px 70px / 170px 170px;
}

.faq::after {
  content: "";
  position: absolute;
  left: -45px;
  bottom: -52px;
  width: 210px;
  height: 210px;
  border-radius: 46% 54% 62% 38%;
  background: var(--orange);
  opacity: .7;
}

.faq__intro,
.faq__list {
  position: relative;
  z-index: 1;
}

.faq__intro {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.faq__intro .eyebrow {
  margin-inline: auto;
  color: var(--plum);
  background: var(--yellow);
}

.faq__intro h2 {
  margin: 0 auto;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px auto 0;
  color: #5a5147;
  font-size: 17px;
}

.faq__list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq__item {
  background: rgba(255, 249, 236, .94);
  border: 2px solid rgba(39, 36, 31, .1);
  border-radius: 26px;
  box-shadow: 8px 8px 0 rgba(77, 36, 71, .1);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.faq__item:nth-child(3n + 1) {
  border-left: 8px solid var(--orange);
}

.faq__item:nth-child(3n + 2) {
  border-left: 8px solid var(--green);
}

.faq__item:nth-child(3n + 3) {
  border-left: 8px solid var(--blue);
}

.faq__item[open] {
  border-color: rgba(77, 36, 71, .18);
  box-shadow: 10px 10px 0 rgba(242, 150, 189, .32);
  transform: translateY(-2px);
}

.faq__item summary {
  min-height: 70px;
  padding: 21px 66px 21px 24px;
  position: relative;
  color: var(--plum);
  cursor: pointer;
  list-style: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

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

.faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  transition: .2s ease;
}

.faq__item[open] summary::after {
  content: "–";
  background: var(--orange);
  transform: translateY(-50%) rotate(180deg);
}

.faq__item p {
  margin: 0;
  padding: 0 24px 24px;
  color: #51483f;
  font-size: 15.5px;
  line-height: 1.72;
}

.contact {
  padding: 112px 32px;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 18% 22%, var(--yellow) 0 68px, transparent 69px),
    radial-gradient(circle at 83% 75%, var(--pink) 0 82px, transparent 83px),
    var(--green);
}

.contact .eyebrow {
  margin-inline: auto;
  color: var(--ink);
  background: var(--yellow);
}

.contact h2 {
  margin: 0 auto;
}

.contact em {
  color: var(--yellow);
}

.contact > p:not(.eyebrow) {
  margin: 25px auto 30px;
  color: rgba(255, 255, 255, .9);
}

.contact__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.contact__socials {
  display: flex;
  justify-content: center;
  gap: 13px;
}

.button--light {
  color: var(--ink);
  background: var(--cream-soft);
  box-shadow: 8px 8px 0 var(--orange);
}

.button--light:hover {
  color: white;
  background: var(--orange);
  box-shadow: 8px 8px 0 var(--yellow);
}

.social-link {
  width: 52px;
  height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: white;
  background: rgba(255, 249, 236, .16);
  border: 2px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  transition: .2s ease;
}

.social-link:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  background: #25d366;
  border: 4px solid var(--cream-soft);
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(37, 211, 102, .36), 6px 6px 0 rgba(77, 36, 71, .16);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: whatsapp-breathe 2.6s ease-in-out infinite;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(37, 211, 102, .45);
  border-radius: 50%;
  animation: whatsapp-pulse 2.1s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(37, 211, 102, .42), 6px 6px 0 rgba(77, 36, 71, .2);
  animation-play-state: paused;
}

.whatsapp-float:hover::before {
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  position: relative;
  z-index: 1;
  animation: whatsapp-wiggle 2.6s ease-in-out infinite;
}

@keyframes whatsapp-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.03);
  }
}

@keyframes whatsapp-pulse {
  0% {
    opacity: .8;
    transform: scale(.86);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes whatsapp-wiggle {
  0%,
  64%,
  100% {
    transform: rotate(0);
  }

  70% {
    transform: rotate(-11deg);
  }

  76% {
    transform: rotate(10deg);
  }

  82% {
    transform: rotate(-7deg);
  }

  88% {
    transform: rotate(5deg);
  }
}

footer {
  width: min(1240px, 100%);
  min-height: 112px;
  margin: auto;
  padding: 25px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #655b4e;
  font-size: 12px;
}

footer .brand {
  color: var(--ink);
}

footer p {
  margin: 0;
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 0 9%, rgba(153, 183, 245, .42) 0 66px, transparent 67px),
      radial-gradient(circle at 100% 35%, rgba(242, 150, 189, .4) 0 76px, transparent 77px),
      linear-gradient(135deg, var(--cream-soft), var(--cream));
  }

  body::before {
    opacity: .24;
    background-size: 150px 150px, 170px 170px, 135px 135px, 155px 155px;
  }

  .header {
    width: calc(100% - 28px);
    height: 70px;
    margin-top: 12px;
    padding: 0 18px;
    top: 10px;
  }

  .brand {
    font-size: 24px;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    transition: .2s;
  }

  .nav {
    display: none;
    position: absolute;
    z-index: 10;
    top: 78px;
    left: 0;
    width: 100%;
    padding: 18px;
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(89, 55, 24, .12);
    flex-direction: column;
    gap: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    background: rgba(252, 202, 89, .22);
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: stretch;
    padding: 48px 20px 76px;
  }

  .hero::before {
    width: 88px;
    height: 88px;
    left: -24px;
    bottom: 22px;
  }

  .hero::after {
    width: 74px;
    height: 74px;
    right: -22px;
    top: 150px;
  }

  .hero__mobile-title {
    display: block;
    order: 0;
    font-size: clamp(36px, 11vw, 46px);
  }

  .hero__mobile-title em {
    margin-top: 14px;
    font-size: .48em;
    box-shadow: 7px 7px 0 var(--yellow);
  }

  .hero__visual {
    height: 430px;
    order: 1;
  }

  .hero__visual::before {
    width: 82px;
    height: 82px;
    left: 2px;
    top: 42px;
  }

  .hero__visual::after {
    width: 70px;
    height: 70px;
    right: 0;
    bottom: 70px;
    border-width: 13px;
  }

  .hero__shape {
    width: 242px;
    height: 255px;
    right: 22px;
    top: -12px;
    box-shadow: 20px 22px 0 var(--yellow);
  }

  .hero__visual img {
    width: min(300px, 78%);
    border-width: 8px;
  }

  .hero__note {
    left: 4px;
    bottom: 16px;
    padding: 15px 18px;
    font-size: 16px;
  }

  .hero__content {
    order: 2;
  }

  .hero__content::before,
  .hero__content > h1 {
    display: none;
  }

  .hero__credential {
    margin-bottom: 22px;
    flex-wrap: wrap;
    border-radius: 24px;
    box-shadow: 6px 6px 0 rgba(252, 202, 89, .62);
  }

  .hero__credential strong {
    font-size: 18px;
  }

  .hero__mobile-about {
    display: block;
    margin-bottom: 20px;
    font-size: 48px;
  }

  .hero__text {
    font-size: 16px;
  }

  .hero__text--long {
    margin: 0 0 28px;
    padding: 24px 21px;
    border-left-width: 7px;
    border-radius: 28px;
    font-size: 15px;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .therapy {
    padding: 76px 20px;
  }

  .therapy__heading {
    display: block;
    text-align: left;
  }

  .therapy__heading .eyebrow {
    margin-inline: 0;
  }

  .therapy__heading h2 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .therapy__heading h2 em {
    margin: 8px 0 0;
    padding: 7px 16px 12px;
    box-shadow: 7px 7px 0 var(--pink);
  }

  .therapy__body {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 42px;
  }

  .therapy__side {
    display: grid;
    gap: 16px;
  }

  .therapy-block {
    min-height: 0;
    padding: 24px 21px;
    border-radius: 28px;
    gap: 18px;
  }

  .therapy-block h3 {
    margin: 24px 0 12px;
  }

  .therapy-block p {
    font-size: 14.7px;
    line-height: 1.68;
  }

  .therapy-gallery {
    margin-top: 34px;
    padding: 9px;
    border-radius: 26px;
  }

  .therapy-gallery__track {
    gap: 10px;
    animation-duration: 24s;
  }

  .therapy-gallery img {
    width: 260px;
    height: 170px;
    border-radius: 20px;
  }

  .testimonials {
    padding: 78px 20px;
  }

  .testimonials::before {
    opacity: .22;
  }

  .testimonials__heading {
    margin-bottom: 34px;
  }

  .testimonials__heading h2 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .testimonials__heading h2 em {
    margin: 8px 0 0;
    padding: 7px 16px 12px;
    box-shadow: 7px 7px 0 var(--yellow);
  }

  .testimonials__heading > p:not(.eyebrow) {
    font-size: 16px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card,
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(4) {
    min-height: 0;
    padding: 24px 21px;
    border-radius: 28px;
    transform: none;
  }

  .testimonial-card p {
    font-size: 14.7px;
    line-height: 1.68;
  }

  .testimonials__notice {
    margin-top: 30px;
    padding: 20px;
    font-size: 13px;
  }

  .quote {
    padding: 88px 20px;
  }

  .quote::before {
    left: -25px;
  }

  .quote::after {
    right: -30px;
  }

  .faq {
    padding: 78px 20px;
  }

  .faq::before {
    opacity: .26;
  }

  .faq::after {
    width: 150px;
    height: 150px;
    left: -70px;
  }

  .faq__intro {
    margin-bottom: 34px;
    text-align: left;
  }

  .faq__intro .eyebrow {
    margin-inline: 0;
  }

  .faq__intro h2 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .faq__intro > p:not(.eyebrow) {
    margin-left: 0;
    font-size: 16px;
  }

  .faq__list {
    gap: 12px;
  }

  .faq__item {
    border-radius: 22px;
    box-shadow: 6px 6px 0 rgba(77, 36, 71, .1);
  }

  .faq__item summary {
    min-height: 64px;
    padding: 18px 58px 18px 18px;
    font-size: 15.5px;
  }

  .faq__item summary::after {
    right: 15px;
    width: 31px;
    height: 31px;
    font-size: 22px;
  }

  .faq__item p {
    padding: 0 18px 20px;
    font-size: 14.5px;
    line-height: 1.68;
  }

  .contact {
    padding: 84px 20px;
  }

  .contact__links {
    align-items: stretch;
    flex-direction: column;
  }

  .contact__socials {
    align-self: center;
  }

  .social-link {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    border-width: 3px;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }

  footer {
    padding: 25px 20px;
    flex-wrap: wrap;
  }

  footer p:last-child {
    margin-left: auto;
  }
}

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