:root {
  --ivory: #fffaf5;
  --cream: #fbf2e9;
  --sand: #f1dfcf;
  --blush: #edd4c1;
  --gold: #bd8423;
  --gold-light: #d9ad5e;
  --gold-dark: #875714;
  --brown: #4d382c;
  --brown-soft: #765d4c;
  --white: #ffffff;
  --shadow: 0 24px 65px rgba(91, 61, 38, 0.13);
  --soft-shadow: 0 14px 38px rgba(91, 61, 38, 0.09);
  --container: 1180px;
  --radius-large: 34px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--brown);
  background: var(--ivory);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 6.8vw, 6.65rem);
  letter-spacing: -0.045em;
}

h1 em {
  display: block;
  color: var(--gold-dark);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.5vw, 4.45rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

p {
  color: var(--brown-soft);
}

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

.section {
  position: relative;
  padding: 110px 0;
}

.skip-link {
  position: fixed;
  z-index: 5000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--brown);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 250, 245, 0.9);
  border-bottom: 1px solid rgba(189, 132, 35, 0.12);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header.scrolled {
  background: rgba(255, 250, 245, 0.98);
  box-shadow: 0 8px 30px rgba(77, 56, 44, 0.08);
}

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

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

.brand img {
  width: 65px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 7px 12px rgba(135, 87, 20, 0.16));
}

.brand > span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  color: var(--gold-dark);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.15rem;
  font-weight: 400;
}

.brand small {
  margin-top: 5px;
  color: var(--brown-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 27px;
}

.navigation > a:not(.nav-button) {
  position: relative;
  padding: 10px 0;
  color: var(--brown-soft);
  font-size: 0.93rem;
  font-weight: 650;
}

.navigation > a:not(.nav-button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.navigation > a:hover::after,
.navigation > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-button,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 12px 28px rgba(135, 87, 20, 0.22);
}

.nav-button {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nav-button:hover,
.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(135, 87, 20, 0.28);
}

.menu-button {
  width: 46px;
  height: 46px;
  padding: 11px;
  display: none;
  border: 1px solid rgba(189, 132, 35, 0.24);
  background: var(--white);
  border-radius: 14px;
  cursor: pointer;
}

.menu-button span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--gold-dark);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 17%, rgba(237, 212, 193, 0.9), transparent 31%),
    radial-gradient(circle at 89% 70%, rgba(241, 223, 207, 0.95), transparent 34%),
    linear-gradient(135deg, #fffaf5 0%, #fbf2e9 55%, #fffaf5 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 90px;
  left: -130px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(189, 132, 35, 0.17);
  border-radius: 50%;
}

.hero::after {
  right: -100px;
  bottom: 80px;
  width: 290px;
  height: 520px;
  border: solid rgba(189, 132, 35, 0.17);
  border-width: 1px 0 0 1px;
  border-radius: 100% 0 0 0;
  transform: rotate(-18deg);
}

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

.hero-glow-one {
  top: 18%;
  right: 8%;
  width: 210px;
  height: 210px;
  background: rgba(215, 170, 88, 0.13);
}

.hero-glow-two {
  bottom: 8%;
  left: 37%;
  width: 160px;
  height: 160px;
  background: rgba(237, 212, 193, 0.42);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  align-items: center;
  gap: 65px;
}

.hero-description {
  margin-bottom: 25px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.therapy-tags {
  max-width: 720px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.therapy-tags span {
  padding: 10px 15px;
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(189, 132, 35, 0.2);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(91, 61, 38, 0.05);
  font-size: 0.87rem;
  font-weight: 700;
}

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

.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button-secondary {
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(189, 132, 35, 0.28);
}

.button-secondary:hover,
.button-light:hover {
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-frame {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-card {
  position: relative;
  z-index: 3;
  width: 78%;
  aspect-ratio: 1;
  padding: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(189, 132, 35, 0.25);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(189, 132, 35, 0.27);
  border-radius: 50%;
}

.orbit-one {
  inset: 3%;
  border-left-color: transparent;
  transform: rotate(25deg);
}

.orbit-two {
  inset: 11%;
  border-right-color: transparent;
  transform: rotate(-25deg);
}

.floating-label {
  position: absolute;
  z-index: 4;
  padding: 10px 16px;
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(189, 132, 35, 0.2);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  font-size: 0.78rem;
  font-weight: 750;
}

.floating-label-one {
  left: 0;
  bottom: 24%;
}

.floating-label-two {
  top: 21%;
  right: 0;
}

.contact-strip {
  position: relative;
  z-index: 3;
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(189, 132, 35, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(10px);
}

.contact-strip > a {
  min-width: 0;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s ease;
}

.contact-strip > a:hover {
  background: rgba(241, 223, 207, 0.34);
}

.contact-strip > a:not(:last-child) {
  border-right: 1px solid rgba(189, 132, 35, 0.14);
}

.contact-strip-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  background: var(--cream);
  border-radius: 50%;
}

.contact-strip-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.contact-strip-icon svg path:not([d*="M12.04"]) {
  fill: none;
}

.contact-strip > a:nth-child(2) .contact-strip-icon svg,
.contact-card:first-child .contact-card-icon svg {
  fill: currentColor;
  stroke: none;
}

.contact-strip a > span:last-child {
  min-width: 0;
  display: grid;
}

.contact-strip small,
.online-data small,
.contact-card small {
  color: var(--brown-soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-strip strong {
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.presentation {
  background: var(--ivory);
}

.presentation-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 90px;
}

.presentation-art {
  display: flex;
  justify-content: center;
}

.decorative-card {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: 0.9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(237, 212, 193, 0.7), transparent 30%),
    linear-gradient(145deg, #fffdf9, #f8eadf);
  border: 1px solid rgba(189, 132, 35, 0.18);
  border-radius: 180px 180px 34px 34px;
  box-shadow: var(--shadow);
}

.decorative-card::before,
.decorative-card::after {
  position: absolute;
  width: 140px;
  height: 240px;
  content: "";
  border: 1px solid rgba(189, 132, 35, 0.23);
  border-radius: 50%;
}

.decorative-card::before {
  left: -80px;
  bottom: -75px;
  transform: rotate(28deg);
}

.decorative-card::after {
  top: -80px;
  right: -85px;
  transform: rotate(-25deg);
}

.decorative-circle {
  position: absolute;
  width: 64%;
  aspect-ratio: 1;
  border: 1px solid rgba(189, 132, 35, 0.32);
  border-radius: 50%;
}

.decorative-branch {
  position: absolute;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 6rem;
  font-weight: 300;
}

.branch-left {
  left: 10px;
  bottom: 25px;
  transform: rotate(63deg);
}

.branch-right {
  top: 35px;
  right: 10px;
  transform: rotate(-115deg);
}

.decorative-card .heart {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-size: 3.5rem;
}

.decorative-card strong {
  position: relative;
  z-index: 2;
  color: var(--gold-dark);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
}

.decorative-card small {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: var(--brown);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.presentation-copy {
  max-width: 690px;
}

.profession {
  margin: -4px 0 25px;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.large-copy {
  max-width: 650px;
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.65;
}

.signature-line {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--gold-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.signature-line span {
  width: 62px;
  height: 1px;
  background: var(--gold);
}

.therapies {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(237, 212, 193, 0.5), transparent 27%),
    linear-gradient(180deg, var(--cream), #fffaf5);
}

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

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .eyebrow::before {
  display: none;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  font-size: 1.07rem;
}

.therapy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.therapy-card {
  position: relative;
  min-height: 315px;
  padding: 32px 27px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(189, 132, 35, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.therapy-card::before {
  position: absolute;
  top: -75px;
  right: -65px;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(189, 132, 35, 0.18);
  border-radius: 50%;
}

.therapy-card::after {
  position: absolute;
  right: 27px;
  bottom: 24px;
  left: 27px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.therapy-card:hover {
  transform: translateY(-8px);
  border-color: rgba(189, 132, 35, 0.34);
  box-shadow: var(--shadow);
}

.therapy-card:hover::after {
  transform: scaleX(1);
}

.therapy-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: rgba(135, 87, 20, 0.35);
  font-family: Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.therapy-icon {
  width: 69px;
  height: 69px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  background: var(--cream);
  border: 1px solid rgba(189, 132, 35, 0.18);
  border-radius: 50%;
}

.therapy-icon svg {
  width: 41px;
  height: 41px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.therapy-card h3 {
  position: relative;
  z-index: 2;
  padding-bottom: 22px;
  overflow-wrap: anywhere;
}

.online {
  background: var(--ivory);
}

.online-panel {
  position: relative;
  padding: 58px 60px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  color: var(--brown);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.94), rgba(248,233,220,0.9)),
    var(--cream);
  border: 1px solid rgba(189, 132, 35, 0.2);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.online-panel::before {
  position: absolute;
  top: -120px;
  right: -110px;
  width: 300px;
  height: 300px;
  content: "";
  border: 1px solid rgba(189, 132, 35, 0.19);
  border-radius: 50%;
}

.online-symbol {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  background: var(--white);
  border: 1px solid rgba(189, 132, 35, 0.2);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
}

.online-symbol svg {
  width: 55px;
  height: 55px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

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

.online-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.online-copy > p:not(.eyebrow) {
  margin-bottom: 22px;
}

.online-data {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.online-data a {
  min-width: 210px;
  padding: 11px 15px;
  display: grid;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(189, 132, 35, 0.15);
  border-radius: 13px;
}

.online-data strong {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.online-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.button-light {
  color: var(--gold-dark);
  background: rgba(255,255,255,0.82);
  border-color: rgba(189, 132, 35, 0.24);
}

.phrase {
  min-height: 590px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.9), transparent 43%),
    linear-gradient(135deg, #f3dfcf, #fffaf5 54%, #ecd0bb);
}

.phrase-circle {
  position: absolute;
  width: min(72vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(189, 132, 35, 0.31);
  border-radius: 50%;
}

.phrase-circle::before,
.phrase-circle::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(189, 132, 35, 0.2);
  border-radius: 50%;
}

.phrase-circle::before {
  inset: 8%;
  border-left-color: transparent;
}

.phrase-circle::after {
  inset: 16%;
  border-right-color: transparent;
}

.phrase-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.phrase-inner > span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 3.5rem;
  line-height: 1;
}

.phrase-inner p {
  margin-bottom: 0;
  color: var(--brown);
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  font-style: italic;
}

.phrase-inner h2 {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(3.7rem, 9vw, 7.8rem);
  font-weight: 400;
}

.phrase-inner i {
  width: 80px;
  height: 1px;
  display: block;
  margin: auto;
  background: var(--gold);
}

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

.contact-grid {
  max-width: 970px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  min-width: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 19px;
  background: var(--white);
  border: 1px solid rgba(189, 132, 35, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  background: var(--cream);
  border-radius: 50%;
}

.contact-card-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-card > span:last-child {
  min-width: 0;
  display: grid;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.contact-card em {
  margin-top: 8px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 750;
}

.closing {
  padding-top: 25px;
  background: var(--ivory);
}

.closing-panel {
  padding: 36px 42px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #fff, #f7e8dc);
  border: 1px solid rgba(189, 132, 35, 0.18);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.closing-panel img {
  width: 132px;
  height: 116px;
  object-fit: contain;
}

.closing-panel p {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.closing-panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.3vw, 3rem);
}

.footer {
  padding: 72px 0 25px;
  color: rgba(255,255,255,0.86);
  background: #49352a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 92px;
  height: 81px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand > span {
  display: grid;
}

.footer-brand strong {
  color: #f1d49d;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.4rem;
  font-weight: 400;
}

.footer-brand small {
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-data,
.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-data span {
  color: #f1d49d;
  font-weight: 750;
}

.footer-data a,
.footer-nav a {
  color: rgba(255,255,255,0.76);
  overflow-wrap: anywhere;
}

.footer-data a:hover,
.footer-nav a:hover {
  color: #f1d49d;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 4px solid rgba(255,255,255,0.88);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(24, 112, 58, 0.32);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(24, 112, 58, 0.39);
}

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

@media (max-width: 1040px) {
  .navigation {
    gap: 17px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 38px;
  }

  .therapy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .online-panel {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .online-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 78px;
  }

  .brand img {
    width: 58px;
    height: 51px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .navigation {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    width: min(88vw, 390px);
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    background: rgba(255, 250, 245, 0.99);
    box-shadow: -18px 20px 45px rgba(77, 56, 44, 0.14);
    transform: translateX(105%);
    transition: transform 0.28s ease;
  }

  .navigation.is-open {
    transform: translateX(0);
  }

  .navigation > a:not(.nav-button) {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(189, 132, 35, 0.12);
  }

  .nav-button {
    margin-top: 15px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero-grid,
  .presentation-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .presentation-copy .eyebrow {
    justify-content: center;
  }

  .hero-copy .eyebrow::before,
  .presentation-copy .eyebrow::before {
    display: none;
  }

  .therapy-tags,
  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .logo-frame {
    width: min(100%, 430px);
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .contact-strip > a:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(189, 132, 35, 0.14);
  }

  .presentation-grid {
    gap: 55px;
  }

  .presentation-copy {
    margin: auto;
    text-align: center;
  }

  .signature-line {
    justify-content: center;
  }

  .presentation-art {
    order: 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .closing-panel {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .closing-panel .button {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-nav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, auto);
    justify-content: start;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-large: 25px;
    --radius: 18px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .header .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand strong {
    font-size: 0.97rem;
  }

  .brand small {
    font-size: 0.57rem;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 28px;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.25rem);
  }

  h1 em {
    margin-top: 6px;
  }

  .floating-label {
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  .floating-label-one {
    left: -2%;
  }

  .floating-label-two {
    right: -2%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .contact-strip {
    margin-top: 28px;
  }

  .contact-strip > a {
    padding: 18px;
  }

  .therapy-grid {
    grid-template-columns: 1fr;
  }

  .therapy-card {
    min-height: 270px;
  }

  .online-panel {
    padding: 36px 23px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .online-symbol {
    margin-inline: auto;
  }

  .online-copy .eyebrow {
    justify-content: center;
  }

  .online-copy .eyebrow::before {
    display: none;
  }

  .online-data a {
    width: 100%;
    min-width: 0;
  }

  .online-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .phrase {
    min-height: 475px;
  }

  .phrase-circle {
    width: 105vw;
  }

  .phrase-inner h2 {
    font-size: clamp(3.2rem, 17vw, 5.3rem);
  }

  .contact-card {
    padding: 23px 20px;
    align-items: flex-start;
  }

  .contact-card-icon {
    width: 54px;
    height: 54px;
  }

  .closing {
    padding-top: 18px;
  }

  .closing-panel {
    padding: 30px 22px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .closing-panel img {
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-column: auto;
    grid-template-columns: repeat(2, auto);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 55px;
    height: 55px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
