:root {
  --font-display: "Fairplay Display", "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", Arial, sans-serif;
  --color-graphite: #424143;
  --color-sand: #b89d82;
  --color-sand-deep: #987b62;
  --color-sand-light: #dbc8ad;
  --color-porcelain: #f7f3ee;
  --color-pearl: #e9e1d8;
  --color-white: #fffefd;
  --color-charcoal: #242326;
  --color-charcoal-soft: #343337;
  --color-text: #424143;
  --color-text-strong: #242326;
  --color-text-muted: rgba(66, 65, 67, 0.7);
  --color-border: rgba(66, 65, 67, 0.16);
  --color-border-light: rgba(255, 254, 253, 0.18);
  --color-focus: #7e624b;
  --color-success: #38624b;
  --color-error: #8a3e3e;
  --cta-light-background: #242326;
  --cta-light-foreground: #fffefd;
  --cta-dark-background: #fffefd;
  --cta-dark-foreground: #242326;
  --cta-hover-background: #b89d82;
  --cta-hover-foreground: #242326;
  --cta-disabled-background: #e9e1d8;
  --cta-disabled-foreground: rgba(36, 35, 38, 0.42);
  --page-gutter: clamp(1.25rem, 4.3vw, 5rem);
  --section-space: clamp(5.5rem, 9vw, 9rem);
  --frame-space: clamp(0.45rem, 1.2vw, 0.95rem);
  --radius-shell: clamp(1.2rem, 2vw, 2rem);
  --radius-card: 1.35rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 1.5rem 4rem rgba(36, 35, 38, 0.1);
  --brand-lockup-width: 20rem;
  --brand-lockup-height: 5rem;
  --brand-symbol-size: 4rem;
  --brand-wordmark-size: 2.2rem;
  --brand-support-size: 0.75rem;
  --brand-support-offset: 0.58rem;
}

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

html {
  min-width: 20rem;
  scroll-behavior: smooth;
  background: var(--color-porcelain);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-porcelain);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--color-text-strong);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6.2vw, 6.3rem);
  line-height: 0.93;
}

h2 {
  font-size: clamp(2.6rem, 4.65vw, 5.25rem);
  line-height: 0.97;
}

h3 {
  font-size: clamp(1.5rem, 2.1vw, 2.25rem);
  line-height: 1.05;
}

::selection {
  color: var(--color-white);
  background: var(--color-sand-deep);
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-charcoal);
  font-size: 0.875rem;
  font-weight: 700;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-progress {
  position: fixed;
  z-index: 990;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-sand);
}

.site-frame {
  padding: var(--frame-space);
}

.section-space {
  padding: var(--section-space) var(--page-gutter);
}

.surface-section,
.dark-section {
  border-radius: var(--radius-shell);
}

.surface-section {
  background: var(--color-white);
}

.dark-section {
  color: var(--color-white);
  background:
    radial-gradient(circle at 80% 12%, rgba(184, 157, 130, 0.14), transparent 28rem),
    var(--color-charcoal);
}

.dark-section h2,
.dark-section h3 {
  color: var(--color-white);
}

.brand-lockup {
  display: grid;
  grid-template-columns: var(--brand-symbol-size) minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  width: var(--brand-lockup-width);
  height: var(--brand-lockup-height);
  color: inherit;
}

.brand-lockup > img {
  width: var(--brand-symbol-size);
  height: var(--brand-symbol-size);
  object-fit: contain;
}

.brand-lockup > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.brand-lockup strong {
  color: inherit;
  font-family: var(--font-display);
  font-size: var(--brand-wordmark-size);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  white-space: nowrap;
}

.brand-lockup small {
  margin-top: var(--brand-support-offset);
  color: inherit;
  font-size: var(--brand-support-size);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 1221px) {
  .brand-lockup strong {
    transform: translateY(-0.25rem);
  }
}

.button-link {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.82rem 0.85rem 0.82rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.button-link i,
.text-action i,
.circle-action i,
.treatment-card > i,
.story-grid a i {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
}

.button-link i {
  width: 2.15rem;
  height: 2.15rem;
  background: var(--color-charcoal);
  color: var(--color-white);
}

.button-link i::before,
.text-action i::before,
.circle-action i::before,
.treatment-card > i::before,
.story-grid a i::before {
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translate(-0.08rem, 0.08rem);
}

.button-link i::after,
.text-action i::after,
.circle-action i::after,
.treatment-card > i::after,
.story-grid a i::after {
  position: absolute;
  width: 0.9rem;
  height: 1.5px;
  content: "";
  background: currentColor;
  transform: rotate(-45deg);
}

.button-link--gold {
  color: var(--cta-light-foreground);
  border-color: rgba(36, 35, 38, 0.12);
  background: var(--cta-light-background);
  box-shadow: 0 0.85rem 2rem rgba(36, 35, 38, 0.18);
}

.button-link--gold i {
  color: var(--color-charcoal);
  background: var(--cta-dark-background);
}

.button-link--gold:hover,
.button-link--gold:focus-visible {
  color: var(--cta-hover-foreground);
  border-color: var(--cta-hover-background);
  background: var(--cta-hover-background);
  box-shadow: 0 1rem 2.35rem rgba(36, 35, 38, 0.22);
  transform: translateY(-2px);
}

.button-link--gold:hover i,
.button-link--gold:focus-visible i {
  color: var(--color-white);
  background: var(--color-charcoal);
}

.hero-shell .button-link--gold,
.procedure-hero-v2 .button-link--gold,
.club-hero .button-link--gold,
.club-page .site-header:not(.is-scrolled) .header-booking,
.dark-section .button-link--gold,
.procedure-conversion .button-link--gold,
.site-footer .button-link--gold {
  color: var(--cta-dark-foreground);
  border-color: rgba(255, 254, 253, 0.7);
  background: var(--cta-dark-background);
  box-shadow: 0 0.95rem 2.25rem rgba(0, 0, 0, 0.22);
}

.hero-shell .button-link--gold i,
.procedure-hero-v2 .button-link--gold i,
.club-hero .button-link--gold i,
.club-page .site-header:not(.is-scrolled) .header-booking i,
.dark-section .button-link--gold i,
.procedure-conversion .button-link--gold i,
.site-footer .button-link--gold i {
  color: var(--color-white);
  background: var(--color-charcoal);
}

.hero-shell .button-link--gold:hover,
.hero-shell .button-link--gold:focus-visible,
.procedure-hero-v2 .button-link--gold:hover,
.procedure-hero-v2 .button-link--gold:focus-visible,
.club-hero .button-link--gold:hover,
.club-hero .button-link--gold:focus-visible,
.club-page .site-header:not(.is-scrolled) .header-booking:hover,
.club-page .site-header:not(.is-scrolled) .header-booking:focus-visible,
.dark-section .button-link--gold:hover,
.dark-section .button-link--gold:focus-visible,
.procedure-conversion .button-link--gold:hover,
.procedure-conversion .button-link--gold:focus-visible,
.site-footer .button-link--gold:hover,
.site-footer .button-link--gold:focus-visible {
  color: var(--cta-hover-foreground);
  border-color: var(--cta-hover-background);
  background: var(--cta-hover-background);
}

.site-header.is-scrolled .header-booking {
  color: var(--cta-light-foreground);
  border-color: rgba(36, 35, 38, 0.12);
  background: var(--cta-light-background);
  box-shadow: 0 0.75rem 1.8rem rgba(36, 35, 38, 0.16);
}

.site-header.is-scrolled .header-booking i {
  color: var(--color-charcoal);
  background: var(--cta-dark-background);
}

.site-header.is-scrolled .header-booking:hover,
.site-header.is-scrolled .header-booking:focus-visible {
  color: var(--cta-hover-foreground);
  border-color: var(--cta-hover-background);
  background: var(--cta-hover-background);
}

.text-action {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.text-action i {
  width: 2.9rem;
  height: 2.9rem;
  color: var(--color-white);
  background: rgba(184, 157, 130, 0.9);
  transition: transform 220ms var(--ease), background 220ms ease;
}

.text-action:hover i,
.text-action:focus-visible i {
  background: var(--color-sand-light);
  transform: rotate(45deg);
}

.text-action--light {
  color: var(--color-white);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(18rem, 0.94fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
}

.split-heading > div {
  display: grid;
  justify-items: start;
  gap: 1.65rem;
}

.split-heading p,
.center-heading p {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
}

.center-heading {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  text-align: center;
}

.center-heading p {
  width: min(100%, 48rem);
}

.announcement-bar {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem var(--page-gutter);
  color: var(--color-charcoal);
  background: var(--color-sand);
  font-size: 0.8125rem;
  font-weight: 600;
}

.announcement-bar p {
  min-width: 0;
}

.announcement-bar a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18rem;
}

.announcement-bar nav {
  display: flex;
  gap: 1.5rem;
}

.site-header {
  position: absolute;
  z-index: 40;
  top: 3.1rem;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 7rem;
  align-items: center;
  gap: 2rem;
  padding: 0 var(--page-gutter);
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: min-height 260ms var(--ease), color 260ms ease, background 260ms ease, box-shadow 260ms ease, transform 260ms var(--ease);
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  min-height: 5.6rem;
  color: var(--color-charcoal);
  border-bottom-color: transparent;
  background: rgba(247, 243, 238, 0.93);
  box-shadow: 0 0.75rem 2.5rem rgba(36, 35, 38, 0.1);
  backdrop-filter: blur(20px);
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.4rem);
}

.site-navigation a {
  position: relative;
  padding: 0.55rem 0;
  font-size: 0.875rem;
  font-weight: 700;
}

.site-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-booking {
  justify-self: end;
}

.menu-toggle {
  display: none;
  min-width: 3.6rem;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 700;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: currentColor;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before,
.menu-toggle i::after {
  position: absolute;
  content: "";
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle i::before {
  top: -0.3rem;
}

.menu-toggle i::after {
  top: 0.3rem;
}

.menu-toggle[aria-expanded="true"] i {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] i::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero-shell {
  position: relative;
  min-height: max(47rem, calc(100svh - (var(--frame-space) * 2)));
  max-height: 66rem;
  overflow: hidden;
  border-radius: var(--radius-shell);
  color: var(--color-white);
  background: var(--color-charcoal);
  isolation: isolate;
}

.hero-compare {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
}

.compare-picture {
  position: absolute;
  inset: 0;
}

.compare-picture--before {
  z-index: 0;
}

.compare-picture--after {
  z-index: 1;
  clip-path: inset(0 0 0 var(--compare-position));
}

.compare-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.015);
  transition: transform 1.2s var(--ease);
}

.hero-shell:hover .compare-picture img {
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1);
}

.compare-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 18, 19, 0.24) 0%, rgba(20, 18, 19, 0.04) 32%, rgba(20, 18, 19, 0.82) 100%),
    linear-gradient(90deg, rgba(20, 18, 19, 0.35), transparent 55%);
}

.compare-divider {
  position: absolute;
  z-index: 3;
  top: 10.1rem;
  bottom: 0;
  left: var(--compare-position);
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.86);
  pointer-events: none;
}

.compare-divider span {
  position: absolute;
  top: 46%;
  left: 50%;
  display: grid;
  width: 3.7rem;
  height: 3.7rem;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(36, 35, 38, 0.62);
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.compare-divider span::before,
.compare-divider span::after {
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
}

.compare-divider span::before {
  transform: translateX(-0.2rem) rotate(-135deg);
}

.compare-divider span::after {
  position: absolute;
  transform: translateX(0.2rem) rotate(45deg);
}

.compare-control {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.hero-proof {
  position: absolute;
  z-index: 4;
  top: 31%;
  right: var(--page-gutter);
  display: grid;
  width: min(24rem, 30vw);
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.25rem;
  background: rgba(63, 58, 57, 0.42);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.hero-proof p {
  display: grid;
  gap: 0.25rem;
}

.hero-proof p + p {
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof strong {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  line-height: 1.35;
}

.hero-content {
  position: absolute;
  z-index: 4;
  right: var(--page-gutter);
  bottom: clamp(4.6rem, 8vw, 7rem);
  left: var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.72fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 9rem);
}

.hero-message {
  display: grid;
  gap: 1.1rem;
}

.hero-message > p {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-message h1 {
  color: var(--color-white);
  text-wrap: balance;
}

.hero-copy {
  display: grid;
  gap: 2rem;
  padding-bottom: 0.35rem;
}

.hero-copy > p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
}

.simulation-note {
  position: absolute;
  z-index: 4;
  right: var(--page-gutter);
  bottom: 1.15rem;
  display: grid;
  justify-items: end;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
  line-height: 1.35;
  text-align: right;
}

.about-section,
.why-section,
.care-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.about-collage {
  position: relative;
  min-height: clamp(34rem, 52vw, 48rem);
}

.about-collage figure {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.about-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.about-collage:hover img {
  transform: scale(1.025);
}

.about-collage__portrait {
  inset: 3% 32% 20% 0;
}

.about-collage__portrait img {
  object-position: center 15%;
}

.about-collage__clinic {
  right: 0;
  bottom: 0;
  width: 54%;
  height: 48%;
  border: 0.55rem solid var(--color-porcelain);
}

.about-rating {
  position: absolute;
  z-index: 2;
  top: 12%;
  right: 4%;
  display: grid;
  width: 30%;
  min-height: 13rem;
  align-content: center;
  justify-items: center;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: var(--radius-card);
  color: var(--color-white);
  background: var(--color-sand);
  text-align: center;
}

.about-rating strong {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 0.9;
}

.about-rating span {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
}

.about-mark {
  position: absolute;
  right: 9%;
  bottom: 5%;
  width: 7rem;
  height: 7rem;
  border: 1px solid var(--color-sand);
  border-radius: 50%;
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: var(--color-sand);
}

.about-mark::before {
  width: 1px;
  height: 2.2rem;
  transform: translate(-50%, -50%);
}

.about-mark::after {
  width: 2.2rem;
  height: 1px;
  transform: translate(-50%, -50%);
}

.about-content,
.why-content {
  display: grid;
  justify-items: start;
  gap: clamp(1.5rem, 2.5vw, 2.3rem);
}

.about-content > p,
.why-content > p {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.about-principles {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-principles article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
}

.about-principles article > i {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-pearl);
}

.about-principles article > i::before {
  width: 0.9rem;
  height: 0.55rem;
  content: "";
  border-bottom: 2px solid var(--color-sand-deep);
  border-left: 2px solid var(--color-sand-deep);
  transform: translateY(-0.1rem) rotate(-45deg);
}

.about-principles h3 {
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.about-principles p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.about-progress {
  display: grid;
  width: 100%;
  gap: 1.2rem;
  padding: 1.35rem;
  border-radius: 1rem;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.about-progress > div {
  display: grid;
  gap: 0.6rem;
}

.about-progress p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
}

.about-progress > div > i {
  display: block;
  height: 3px;
  overflow: hidden;
  background: var(--color-pearl);
}

.about-progress > div > i span {
  display: block;
  width: var(--progress);
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-sand);
  transition: transform 1.15s var(--ease);
}

.about-progress.is-visible > div > i span {
  transform: scaleX(1);
}

.circle-action {
  display: inline-grid;
  width: 4.6rem;
  height: 4.6rem;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-charcoal);
  background: var(--color-porcelain);
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.circle-action i {
  width: 2.5rem;
  height: 2.5rem;
}

.circle-action:hover,
.circle-action:focus-visible {
  color: var(--color-white);
  background: var(--color-charcoal);
  transform: rotate(45deg);
}

.services-section {
  overflow: hidden;
}

.services-section .split-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.carousel-controls,
.care-controls {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.carousel-controls button,
.care-controls button {
  position: relative;
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-charcoal);
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible,
.care-controls button:hover,
.care-controls button:focus-visible {
  color: var(--color-white);
  background: var(--color-charcoal);
  transform: translateY(-2px);
}

.carousel-controls button i,
.care-controls button i {
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.carousel-controls button:first-child i,
.care-controls button:first-child i {
  transform: rotate(-135deg);
}

.carousel-controls button:last-child i,
.care-controls button:last-child i {
  transform: rotate(45deg);
}

.treatment-carousel {
  overflow: hidden;
}

.treatment-track {
  display: flex;
  gap: 1.35rem;
  width: max-content;
  transform: translate3d(0, 0, 0);
  transition: transform 560ms var(--ease);
}

.treatment-card {
  position: relative;
  display: grid;
  width: clamp(18.5rem, 26vw, 24.5rem);
  min-height: 29rem;
  align-content: start;
  gap: 1rem;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-card);
  background: var(--color-porcelain);
  transition: color 300ms ease, background 300ms ease, transform 300ms var(--ease);
}

.treatment-card__number {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-sand);
  font-size: 0.8125rem;
  font-weight: 700;
}

.treatment-card h3 {
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.treatment-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  transition: color 300ms ease;
}

.treatment-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 600ms var(--ease), filter 300ms ease;
}

.treatment-card > i {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 10.8rem;
  width: 3rem;
  height: 3rem;
  color: var(--color-charcoal);
  background: var(--color-white);
  box-shadow: 0 0.6rem 1.5rem rgba(36, 35, 38, 0.12);
}

.treatment-card:hover,
.treatment-card:focus-visible {
  color: var(--color-white);
  background: var(--color-charcoal);
  transform: translateY(-0.45rem);
}

.treatment-card:hover h3,
.treatment-card:focus-visible h3 {
  color: var(--color-white);
}

.treatment-card:hover p,
.treatment-card:focus-visible p {
  color: rgba(255, 255, 255, 0.72);
}

.treatment-card:hover img,
.treatment-card:focus-visible img {
  filter: saturate(1);
  transform: scale(1.045);
}

.section-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9375rem;
}

.section-trust strong {
  color: var(--color-sand-deep);
}

.section-trust a {
  border-bottom: 1px solid currentColor;
}

.why-collage {
  position: relative;
  min-height: clamp(36rem, 54vw, 50rem);
}

.why-collage figure {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.why-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-collage__main {
  inset: 0 42% 8% 0;
}

.why-collage__main img {
  object-position: center 12%;
}

.why-collage__detail {
  top: 0;
  right: 0;
  width: 39%;
  height: 42%;
}

.why-collage__device {
  right: 0;
  bottom: 0;
  width: 47%;
  height: 50%;
  padding: 1rem;
  border: 0.45rem solid var(--color-porcelain);
  background: var(--color-pearl);
}

.why-collage__device img {
  object-fit: contain;
}

.why-stamp {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: 48%;
  display: grid;
  width: 8rem;
  height: 8rem;
  place-items: center;
  transform: translate(-50%, -50%) rotate(-8deg);
  border: 0.35rem solid var(--color-porcelain);
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-sand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.content-accordion {
  width: 100%;
}

.content-accordion article {
  border-top: 1px solid var(--color-border);
}

.content-accordion article:last-child {
  border-bottom: 1px solid var(--color-border);
}

.content-accordion button {
  display: flex;
  width: 100%;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  color: var(--color-text-strong);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.content-accordion button span {
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 700;
}

.content-accordion button i {
  position: relative;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.content-accordion button i::before,
.content-accordion button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1px;
  content: "";
  transform: translate(-50%, -50%);
  background: currentColor;
  transition: transform 220ms ease;
}

.content-accordion button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.content-accordion button[aria-expanded="true"] i {
  color: var(--color-white);
  background: var(--color-sand);
}

.content-accordion button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.content-accordion article > div {
  padding: 0 4rem 1.5rem 0;
}

.content-accordion article > div p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

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

.expertise-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.08;
  background:
    repeating-radial-gradient(ellipse at 50% 120%, transparent 0 2.4rem, rgba(255, 255, 255, 0.55) 2.45rem 2.5rem);
}

.expertise-section > header {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.expertise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.65fr) minmax(0, 0.75fr);
  gap: 1.5rem;
}

.expertise-grid > * {
  min-height: 33rem;
  border-radius: var(--radius-card);
}

.expertise-fact,
.expertise-contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 2.8vw, 2.5rem);
  background: rgba(255, 255, 255, 0.1);
}

.expertise-avatar {
  position: absolute;
  top: 2rem;
  display: block;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  border: 0.3rem solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.expertise-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.expertise-fact strong {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 0.9;
}

.expertise-fact h3,
.expertise-contact h3 {
  margin-top: 1.2rem;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

.expertise-fact p,
.expertise-contact p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.expertise-image {
  position: relative;
  overflow: hidden;
}

.expertise-image::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(24, 23, 25, 0.88));
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}

.expertise-image figcaption {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.08;
}

.expertise-contact img {
  width: 100%;
  margin-bottom: auto;
  transform: scale(1.1);
  object-fit: contain;
}

.expertise-contact .button-link {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.stories-section .split-heading,
.special-section .split-heading,
.studio-section .split-heading,
.insights-section .split-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.story-grid,
.insight-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.story-grid a {
  position: relative;
  min-height: clamp(29rem, 43vw, 41rem);
  overflow: hidden;
  border-radius: var(--radius-card);
}

.story-grid a::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(20, 19, 20, 0.9));
}

.story-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.story-grid a:hover img,
.story-grid a:focus-visible img {
  transform: scale(1.045);
}

.story-grid a > div {
  position: absolute;
  z-index: 2;
  right: 1.6rem;
  bottom: 1.6rem;
  left: 1.6rem;
  color: var(--color-white);
}

.story-grid a span {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-grid a h3 {
  padding-right: 3.5rem;
  color: var(--color-white);
}

.story-grid a i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3rem;
  height: 3rem;
  color: var(--color-charcoal);
  background: var(--color-white);
}

.treatment-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem clamp(1rem, 2.5vw, 2.2rem);
  padding: 1rem 0;
}

.treatment-pills a {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 1.25rem 0.4rem 0.4rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.treatment-pills img {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  object-fit: cover;
}

.treatment-pills a:hover,
.treatment-pills a:focus-visible {
  color: var(--color-white);
  background: var(--color-charcoal);
  transform: translateY(-2px);
}

.booking-panel {
  position: relative;
  display: grid;
  min-height: 20rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(17rem, 0.6fr);
  align-items: center;
  gap: 2rem;
  margin: 0 var(--page-gutter);
  padding: clamp(2.5rem, 5vw, 5rem);
  overflow: hidden;
}

.booking-panel > div {
  position: relative;
  z-index: 2;
}

.booking-panel > div:first-child {
  display: grid;
  gap: 1rem;
}

.booking-panel > div:first-child .button-link {
  width: fit-content;
  justify-self: start;
}

.booking-panel > div:first-child p {
  width: min(100%, 38rem);
  color: rgba(255, 255, 255, 0.7);
}

.booking-panel > div:nth-child(2) {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
}

.booking-panel > img {
  position: absolute;
  right: 8%;
  bottom: -48%;
  width: min(29rem, 31vw);
  opacity: 0.2;
  filter: grayscale(1);
}

.transformation-section {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
}

.transformation-compare {
  position: relative;
  min-height: clamp(30rem, 52vw, 44rem);
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-pearl);
}

.transformation-before,
.transformation-after,
.transformation-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transformation-before {
  position: absolute;
  inset: 0;
}

.transformation-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--compare-position));
}

.compare-divider--light span {
  background: rgba(255, 255, 255, 0.9);
}

.compare-divider--light {
  top: 0;
}

.compare-divider--light span::before,
.compare-divider--light span::after {
  border-color: var(--color-charcoal);
}

.compare-caption {
  position: absolute;
  z-index: 4;
  bottom: 1.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  color: var(--color-charcoal);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.compare-caption--before {
  left: 1.5rem;
}

.compare-caption--after {
  right: 1.5rem;
}

.technology-marquee {
  overflow: hidden;
  padding: 1.65rem 0;
  color: var(--color-white);
  background: var(--color-sand);
}

.technology-marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  animation: marquee 26s linear infinite;
}

.technology-marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600;
  white-space: nowrap;
}

.technology-marquee i {
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  transform: rotate(45deg);
  background: var(--color-white);
}

.studio-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.studio-benefits span {
  display: grid;
  min-height: 5rem;
  place-items: center;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}

.studio-benefits span + span {
  border-left: 1px solid var(--color-border);
}

.studio-feature {
  display: grid;
  min-height: clamp(30rem, 44vw, 40rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border-radius: var(--radius-card);
  color: var(--color-white);
  background: var(--color-charcoal);
}

.studio-feature > div {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.4rem;
  padding: clamp(2rem, 5vw, 5rem);
}

.studio-feature h3 {
  color: var(--color-white);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.studio-feature p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.studio-feature figure {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 157, 130, 0.42), transparent 40%),
    var(--color-charcoal-soft);
}

.studio-feature figure > span {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.studio-feature figure > span::before,
.studio-feature figure > span::after {
  position: absolute;
  inset: 9%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.studio-feature figure > span::after {
  inset: 19%;
}

.studio-feature figure img {
  position: relative;
  z-index: 2;
  width: 82%;
  filter: drop-shadow(0 2rem 2rem rgba(0, 0, 0, 0.28));
}

.care-content {
  display: grid;
  align-content: center;
  gap: 2rem;
}

.care-slider {
  position: relative;
  min-height: 10rem;
}

.care-slider article {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 1rem;
  visibility: hidden;
  transform: translateY(1rem);
  opacity: 0;
  transition: opacity 380ms ease, transform 380ms var(--ease), visibility 380ms;
}

.care-slider article.is-active {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.care-slider p {
  color: var(--color-text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.care-slider strong {
  color: var(--color-sand-deep);
  font-size: 0.875rem;
}

.care-controls span {
  min-width: 4.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
}

.care-mosaic {
  display: grid;
  min-height: clamp(34rem, 52vw, 48rem);
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 0.86fr;
  gap: 1rem;
}

.care-mosaic > * {
  overflow: hidden;
  border-radius: var(--radius-card);
}

.care-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.care-mosaic__portrait {
  grid-row: 1 / 3;
}

.care-mosaic__portrait img {
  object-position: center 12%;
}

.care-mosaic__score {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--color-white);
  background: var(--color-sand);
  text-align: center;
}

.care-mosaic__score strong {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}

.care-mosaic__score span {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
}

.care-mosaic__clinic {
  display: none;
}

.care-mosaic__device {
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--color-pearl);
}

.care-mosaic__device img {
  object-fit: contain;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-collage {
  position: relative;
  min-height: clamp(34rem, 50vw, 46rem);
}

.faq-collage figure {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.faq-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-collage__main {
  inset: 0 22% 10% 0;
}

.faq-collage__detail {
  right: 0;
  bottom: 0;
  width: 55%;
  height: 48%;
  border: 0.45rem solid var(--color-white);
}

.faq-collage__detail img {
  object-position: center 15%;
}

.faq-collage > span {
  position: absolute;
  z-index: 2;
  top: 9%;
  right: 6%;
  width: 6rem;
  height: 6rem;
  border: 1px solid var(--color-sand);
  border-radius: 50%;
}

.faq-content {
  display: grid;
  gap: 2.5rem;
}

.insight-grid > a {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: 0 1.1rem 3rem rgba(36, 35, 38, 0.06);
  transition: transform 280ms var(--ease), box-shadow 280ms ease;
}

.insight-grid figure {
  aspect-ratio: 1.38;
  overflow: hidden;
}

.insight-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.insight-grid > a > div {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.5rem;
}

.insight-grid span {
  color: var(--color-sand-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-grid h3 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.insight-grid p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 700;
}

.insight-grid > a:hover,
.insight-grid > a:focus-visible {
  transform: translateY(-0.45rem);
  box-shadow: var(--shadow-soft);
}

.insight-grid > a:hover img,
.insight-grid > a:focus-visible img {
  transform: scale(1.045);
}

.contact-section {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.6fr);
  align-items: end;
  gap: 3rem;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
}

.contact-grid > a {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  padding: 1.6rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
}

.contact-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.28;
  object-fit: cover;
  transition: opacity 300ms ease, transform 650ms var(--ease);
}

.contact-grid a::after {
  position: absolute;
  inset: 25% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(20, 19, 20, 0.94));
}

.contact-grid h3,
.contact-grid p,
.contact-grid span {
  position: absolute;
  z-index: 2;
  right: 1.6rem;
  left: 1.6rem;
}

.contact-grid h3 {
  bottom: 7.6rem;
  color: var(--color-white);
}

.contact-grid p {
  bottom: 4.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.55;
}

.contact-grid span {
  bottom: 1.5rem;
  color: var(--color-sand-light);
  font-size: 0.8125rem;
  font-weight: 700;
}

.contact-grid a:hover img,
.contact-grid a:focus-visible img {
  opacity: 0.5;
  transform: scale(1.045);
}

.site-footer {
  margin-top: var(--frame-space);
  overflow: hidden;
  border-radius: var(--radius-shell);
}

.footer-lead {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  padding: clamp(4rem, 8vw, 7rem) var(--page-gutter);
  border-bottom: 1px solid var(--color-border-light);
  text-align: center;
}

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

.footer-lead > p {
  width: min(100%, 43rem);
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.footer-lead > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 5vw, 4.5rem) var(--page-gutter);
}

.footer-main > div,
.footer-main nav {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.75rem;
}

.footer-main p,
.footer-main a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-main strong {
  margin-bottom: 0.4rem;
  color: var(--color-white);
  font-size: 0.875rem;
}

.footer-main a {
  transition: color 180ms ease;
}

.footer-main a:hover,
.footer-main a:focus-visible {
  color: var(--color-sand-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem var(--page-gutter);
  border-top: 1px solid var(--color-border-light);
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.mobile-conversion {
  position: fixed;
  z-index: 80;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 1rem;
  display: none;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  transform: translateY(150%);
  border-radius: 999px;
  color: var(--cta-light-foreground);
  background: var(--cta-light-background);
  box-shadow: 0 1rem 2.4rem rgba(36, 35, 38, 0.28);
  font-size: 0.875rem;
  font-weight: 700;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 280ms var(--ease);
}

.mobile-conversion.is-visible {
  transform: translateY(0);
}

.mobile-conversion:hover,
.mobile-conversion:focus-visible {
  color: var(--cta-hover-foreground);
  background: var(--cta-hover-background);
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: max(1.5rem, env(safe-area-inset-right));
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--color-white);
  background: #25d366;
  box-shadow: 0 0.9rem 2.2rem rgba(18, 140, 76, 0.28);
  transition:
    bottom 280ms var(--ease),
    transform 280ms var(--ease),
    background-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.whatsapp-float svg {
  display: block;
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-0.2rem) scale(1.03);
  background: #1fbd5c;
  box-shadow: 0 1.15rem 2.8rem rgba(18, 140, 76, 0.38);
}

body.chat-widget-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem) scale(0.92);
}

.chat-widget {
  position: fixed;
  z-index: 3000;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  width: min(28rem, calc(100vw - 2rem));
  height: min(46rem, calc(100svh - 2rem));
  max-height: none;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  transform-origin: right bottom;
  border: 1px solid rgba(66, 65, 67, 0.15);
  border-radius: 1.35rem;
  background: var(--color-porcelain);
  box-shadow: 0 2rem 5rem rgba(20, 19, 20, 0.3);
}

.chat-widget[hidden] {
  display: none;
}

.chat-widget.is-open {
  animation: widget-in 320ms var(--ease) both;
}

.chat-widget__header {
  display: grid;
  grid-row: 1;
  grid-template-columns: 3rem 1fr auto auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 5rem;
  padding: 0.75rem;
  color: var(--color-white);
  background: var(--color-charcoal);
}

.chat-widget__avatar {
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--color-sand);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
}

.chat-widget__identity {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.chat-widget__identity strong {
  overflow: hidden;
  font-size: 0.9375rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-widget__identity span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
}

.chat-widget__identity i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #97b691;
  box-shadow: 0 0 0 0.2rem rgba(151, 182, 145, 0.16);
}

.chat-widget__header > small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  white-space: nowrap;
}

.chat-widget__close {
  min-height: 2.5rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--color-white);
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
}

.chat-widget__navigation {
  grid-row: 2;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.chat-widget__navigation[hidden] {
  display: none;
}

.chat-widget__navigation button {
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
}

.evaluation-form {
  display: grid;
  min-height: 0;
  grid-row: 3;
  grid-template-rows: minmax(8rem, 1fr) auto auto auto;
}

.chat-transcript {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.chat-message {
  width: fit-content;
  max-width: 86%;
  padding: 0.85rem 1rem;
  border-radius: 1.15rem;
  background: var(--color-white);
  box-shadow: 0 0.4rem 1.2rem rgba(36, 35, 38, 0.05);
}

.chat-message--patient,
.chat-message--user {
  align-self: flex-end;
  color: var(--color-white);
  background: var(--color-graphite);
}

.chat-message p {
  font-size: 0.875rem;
  line-height: 1.45;
}

.chat-message small {
  display: block;
  margin-top: 0.35rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.chat-message--patient small,
.chat-message--user small {
  color: rgba(255, 255, 255, 0.65);
}

.chat-message--typing {
  display: flex;
  gap: 0.25rem;
}

.chat-message--typing span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-sand);
  animation: typing 900ms ease infinite;
}

.chat-message--typing span:nth-child(2) {
  animation-delay: 120ms;
}

.chat-message--typing span:nth-child(3) {
  animation-delay: 240ms;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 0.85rem;
}

.chat-suggestions[hidden] {
  display: none;
}

.chat-suggestions button {
  min-height: 2.7rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(184, 157, 130, 0.5);
  border-radius: 999px;
  color: var(--color-charcoal);
  background: var(--color-white);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.chat-suggestions button:hover,
.chat-suggestions button:focus-visible {
  color: var(--color-white);
  background: var(--color-charcoal);
}

.chat-suggestions--mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.chat-suggestions--mode button {
  min-height: 3.4rem;
  border-radius: 1rem;
}

.chat-composer-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  padding: 0.75rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}

.chat-composer-bar[hidden] {
  display: none;
}

.chat-composer-bar input {
  min-width: 0;
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-porcelain);
  font-size: 0.875rem;
}

.chat-composer-bar button,
.chat-primary-action {
  min-height: 3rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--cta-light-foreground);
  background: var(--cta-light-background);
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 700;
  transition: color 220ms ease, background-color 220ms ease;
}

.chat-composer-bar button:hover,
.chat-composer-bar button:focus-visible,
.chat-primary-action:hover,
.chat-primary-action:focus-visible {
  color: var(--cta-hover-foreground);
  background: var(--cta-hover-background);
}

.chat-primary-action:disabled {
  cursor: wait;
  color: var(--cta-disabled-foreground);
  background: var(--cta-disabled-background);
  opacity: 1;
}

.chat-photo-controls,
.chat-consent-controls,
.chat-in-person-controls {
  display: grid;
  gap: 0.75rem;
  padding: 0 1rem 1rem;
}

.chat-transcript > .chat-consent-controls,
.chat-transcript > .chat-in-person-controls {
  width: 100%;
  flex: 0 0 auto;
  padding: 1rem;
  border-radius: 1.15rem;
  background: var(--color-white);
  box-shadow: 0 0.4rem 1.2rem rgba(36, 35, 38, 0.05);
}

.chat-transcript > .chat-photo-controls {
  width: 100%;
  flex: 0 0 auto;
  padding: 0;
}

.chat-photo-controls[hidden],
.chat-consent-controls[hidden],
.chat-in-person-controls[hidden] {
  display: none;
}

.photo-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.photo-guide span {
  padding: 0.55rem 0.35rem;
  border-radius: 0.75rem;
  background: var(--color-pearl);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.photo-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.upload-button {
  display: grid;
  min-height: 3rem;
  place-items: center;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-message,
.form-message,
.chat-consent-controls > p,
.chat-in-person-controls > p {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.file-message.error,
.form-message.error {
  color: var(--color-error);
}

.form-message.working {
  color: var(--color-success);
}

.photo-preview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.35rem;
}

.photo-preview article {
  overflow: hidden;
  border-radius: 0.6rem;
  background: var(--color-pearl);
}

.photo-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.photo-preview article > div {
  display: grid;
  justify-items: center;
  padding: 0.25rem;
}

.photo-preview span {
  font-size: 0.75rem;
}

.photo-preview button {
  color: var(--color-error);
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.75rem;
  line-height: 1.45;
}

.consent-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--color-charcoal);
}

.chat-request-summary {
  display: grid;
  gap: 0.65rem;
}

.chat-request-summary > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.85fr) 1.4fr;
  gap: 0.75rem;
  align-items: baseline;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--color-border);
}

.chat-request-summary span {
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.chat-request-summary strong {
  font-size: 0.8125rem;
  line-height: 1.4;
}

.chat-payment-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border: 1px solid rgba(186, 157, 127, 0.45);
  border-radius: 0.9rem;
  background: var(--color-pearl);
}

.chat-payment-card strong {
  color: var(--color-charcoal);
  font-size: 0.875rem;
}

.chat-payment-card p {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.chat-payment-card a {
  display: grid;
  min-height: 2.8rem;
  place-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--color-charcoal);
  background: var(--color-gold);
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
}

.chat-payment-card a:hover,
.chat-payment-card a:focus-visible {
  color: var(--color-charcoal);
  background: var(--color-white);
}

.chat-integration-note {
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  background: var(--color-pearl);
}

.turnstile-holder {
  min-height: 4rem;
}

[data-reveal],
[data-split-reveal] {
  transform: translateY(1.75rem);
  opacity: 0;
  transition: transform 720ms var(--ease), opacity 720ms ease;
}

[data-reveal].is-visible,
[data-split-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes widget-in {
  from {
    transform: translateY(1rem) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes typing {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-0.2rem);
    opacity: 1;
  }
}

@media (max-width: 1220px) {
  :root {
    --page-gutter: clamp(1.25rem, 3.6vw, 3.25rem);
    --brand-lockup-width: 16.5rem;
    --brand-lockup-height: 4.35rem;
    --brand-symbol-size: 3.45rem;
    --brand-wordmark-size: 1.85rem;
    --brand-support-size: 0.75rem;
    --brand-support-offset: 0.46rem;
  }

  .site-header {
    gap: 1rem;
  }

  .site-navigation {
    gap: 1.25rem;
  }

  .header-booking {
    min-height: 3.2rem;
    padding-left: 1.1rem;
  }

  .header-booking i {
    width: 1.95rem;
    height: 1.95rem;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
    gap: 3.2rem;
  }

  .expertise-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.35fr) minmax(0, 0.82fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-space: clamp(4.8rem, 8vw, 6.5rem);
  }

  h1 {
    font-size: clamp(3.1rem, 7.6vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-navigation {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.35rem;
    padding: 7rem var(--page-gutter) 3rem;
    transform: translateY(-1rem);
    color: var(--color-white);
    background: rgba(36, 35, 38, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: visibility 260ms, opacity 260ms ease, transform 260ms var(--ease);
  }

  .site-navigation.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-navigation a {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.8rem);
    font-weight: 600;
    line-height: 1.08;
  }

  .site-header .site-brand,
  .site-header .header-booking,
  .site-header .menu-toggle {
    position: relative;
    z-index: 102;
  }

  .site-header.menu-visible,
  .site-header.menu-visible.is-scrolled {
    color: var(--color-white);
    background: transparent;
    box-shadow: none;
  }

  .header-booking {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-proof {
    top: 28%;
    width: min(23rem, 39vw);
  }

  .hero-content {
    grid-template-columns: 1fr 0.78fr;
    gap: 2.5rem;
  }

  .about-section,
  .why-section,
  .care-section,
  .faq-section {
    gap: 3.5rem;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr 1.35fr;
  }

  .expertise-contact {
    grid-column: 1 / 3;
    min-height: 21rem;
  }

  .expertise-contact img {
    position: absolute;
    right: 2rem;
    width: 40%;
  }

  .expertise-contact h3,
  .expertise-contact p,
  .expertise-contact a {
    width: 54%;
  }

  .story-grid,
  .insight-grid {
    gap: 1rem;
  }

  .story-grid a {
    min-height: 32rem;
  }

  .booking-panel {
    grid-template-columns: 1fr 0.58fr;
  }

  .studio-feature {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .contact-grid > a:last-child {
    grid-column: 1 / 3;
    min-height: 18rem;
  }

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

  .footer-main > div:last-child {
    grid-column: 1 / 4;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
  }
}

@media (max-width: 820px) {
  :root {
    --page-gutter: clamp(1rem, 4.8vw, 2rem);
    --section-space: clamp(4.5rem, 14vw, 6rem);
    --brand-lockup-width: 13.8rem;
    --brand-lockup-height: 3.7rem;
    --brand-symbol-size: 2.9rem;
    --brand-wordmark-size: 1.5rem;
    --brand-support-size: 0.75rem;
    --brand-support-offset: 0.36rem;
  }

  .site-frame {
    padding: 0.4rem;
  }

  h1 {
    font-size: clamp(2.9rem, 12.5vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .announcement-bar {
    min-height: 2.8rem;
    justify-content: center;
    padding-block: 0.55rem;
    text-align: center;
  }

  .announcement-bar nav {
    display: none;
  }

  .site-header {
    top: 2.8rem;
    min-height: 5.4rem;
    grid-template-columns: 1fr auto;
  }

  .site-header.is-scrolled {
    top: 0;
    min-height: 4.9rem;
  }

  .header-booking {
    display: none;
  }

  .hero-shell {
    min-height: max(48rem, calc(100svh - 0.8rem));
    max-height: none;
  }

  .hero-compare > .compare-divider {
    top: 8.2rem;
  }

  .hero-compare > .compare-divider--light {
    top: 0;
  }

  .compare-picture img {
    object-position: center 30%;
  }

  .compare-divider span {
    top: 42%;
    width: 3.25rem;
    height: 3.25rem;
  }

  .hero-proof {
    top: 7.9rem;
    right: var(--page-gutter);
    left: var(--page-gutter);
    width: auto;
    padding: 0.85rem 1rem;
  }

  .hero-proof strong {
    font-size: 1.4rem;
  }

  .hero-content {
    right: var(--page-gutter);
    bottom: 4.75rem;
    left: var(--page-gutter);
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-message {
    gap: 0.75rem;
  }

  .hero-message > p {
    font-size: 0.75rem;
  }

  .hero-copy {
    gap: 1.2rem;
  }

  .hero-copy > p {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.7rem 1rem;
  }

  .simulation-note {
    right: var(--page-gutter);
    bottom: 0.65rem;
    left: var(--page-gutter);
    justify-items: start;
    text-align: left;
  }

  .simulation-note span {
    display: inline;
  }

  .split-heading,
  .about-section,
  .why-section,
  .care-section,
  .faq-section,
  .contact-intro {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    gap: 1.5rem;
  }

  .about-collage,
  .why-collage,
  .care-mosaic,
  .faq-collage {
    min-height: 35rem;
  }

  .about-content,
  .why-content,
  .care-content,
  .faq-content {
    align-content: start;
  }

  .why-collage {
    order: 2;
  }

  .why-content {
    order: 1;
  }

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

  .expertise-grid > * {
    min-height: 28rem;
  }

  .expertise-contact {
    grid-column: auto;
  }

  .expertise-contact img {
    position: static;
    width: 100%;
  }

  .expertise-contact h3,
  .expertise-contact p,
  .expertise-contact a {
    width: auto;
  }

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

  .story-grid a {
    min-height: 31rem;
  }

  .story-grid a:nth-child(2),
  .story-grid a:nth-child(3) {
    min-height: 25rem;
  }

  .booking-panel {
    min-height: 30rem;
    grid-template-columns: 1fr;
    margin-inline: 0;
  }

  .booking-panel > div:nth-child(2) {
    align-self: end;
  }

  .booking-panel > img {
    right: -5%;
    bottom: -20%;
    width: 21rem;
  }

  .studio-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .studio-benefits span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }

  .studio-benefits span:nth-child(4) {
    border-top: 1px solid var(--color-border);
  }

  .studio-feature {
    grid-template-columns: 1fr;
  }

  .studio-feature > div {
    padding-bottom: 1rem;
  }

  .studio-feature figure {
    min-height: 25rem;
  }

  .care-content {
    order: 1;
  }

  .care-mosaic {
    order: 2;
  }

  .faq-collage {
    order: 2;
  }

  .faq-content {
    order: 1;
  }

  .contact-grid > a:last-child {
    grid-column: auto;
    min-height: 23rem;
  }

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

  .footer-main > div:first-child {
    grid-column: 1 / 3;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border-light);
  }

  .footer-main > div:last-child {
    grid-column: 1 / 3;
  }

  .mobile-conversion {
    display: flex;
  }

  .whatsapp-float {
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: 3.5rem;
    height: 3.5rem;
  }

  .mobile-conversion.is-visible + .whatsapp-float {
    bottom: calc(5.6rem + env(safe-area-inset-bottom));
  }

  .whatsapp-float svg {
    width: 1.85rem;
    height: 1.85rem;
  }

  .chat-widget {
    inset: 0;
    width: 100%;
    height: 100svh;
    max-height: 100svh;
    border: 0;
    border-radius: 0;
  }

  .chat-widget__header {
    grid-template-columns: 2.8rem 1fr auto;
  }

  .chat-widget__header > small {
    display: none;
  }

  .chat-widget__close {
    grid-column: 3;
  }
}

@media (max-width: 520px) {
  :root {
    --page-gutter: 1rem;
    --brand-lockup-width: 12rem;
    --brand-lockup-height: 3.35rem;
    --brand-symbol-size: 2.6rem;
    --brand-wordmark-size: 1.3rem;
    --brand-support-size: 0.75rem;
    --brand-support-offset: 0.3rem;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.35rem);
  }

  .site-header {
    padding-inline: 0.8rem;
  }

  .menu-toggle {
    min-width: 3.1rem;
    padding: 0;
  }

  .menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .hero-shell {
    min-height: max(47rem, calc(100svh - 0.8rem));
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .hero-proof p + p {
    padding-left: 0.7rem;
  }

  .hero-proof span {
    font-size: 0.75rem;
  }

  .hero-content {
    bottom: 5.5rem;
  }

  .hero-copy > p {
    display: none;
  }

  .button-link {
    min-height: 3.25rem;
    padding-left: 1.05rem;
    font-size: 0.8125rem;
  }

  .button-link i {
    width: 1.95rem;
    height: 1.95rem;
  }

  .text-action {
    min-height: 3.15rem;
    font-size: 0.8125rem;
  }

  .text-action i {
    width: 2.55rem;
    height: 2.55rem;
  }

  .about-collage {
    min-height: 29rem;
  }

  .about-collage__portrait {
    inset: 0 25% 16% 0;
  }

  .about-rating {
    top: 4%;
    width: 29%;
    min-height: 9rem;
  }

  .about-collage__clinic {
    width: 55%;
    height: 42%;
  }

  .about-mark {
    display: none;
  }

  .about-principles article {
    grid-template-columns: 2.6rem 1fr;
  }

  .about-principles article > i {
    width: 2.6rem;
    height: 2.6rem;
  }

  .treatment-card {
    width: calc(100vw - 3rem);
    min-height: 27rem;
    padding: 1.5rem;
  }

  .section-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .why-collage {
    min-height: 30rem;
  }

  .why-collage__main {
    inset: 0 30% 14% 0;
  }

  .why-collage__detail {
    width: 38%;
    height: 36%;
  }

  .why-collage__device {
    width: 54%;
    height: 45%;
  }

  .why-stamp {
    left: 66%;
    width: 6.2rem;
    height: 6.2rem;
  }

  .content-accordion button {
    min-height: 4.7rem;
  }

  .content-accordion article > div {
    padding-right: 0;
  }

  .expertise-grid > * {
    min-height: 24rem;
  }

  .expertise-image {
    min-height: 32rem;
  }

  .story-grid a,
  .story-grid a:nth-child(2),
  .story-grid a:nth-child(3) {
    min-height: 26rem;
  }

  .treatment-pills {
    justify-content: flex-start;
  }

  .treatment-pills a {
    width: calc(50% - 0.5rem);
    min-height: 3rem;
    padding-right: 0.7rem;
    font-size: 0.75rem;
  }

  .treatment-pills img {
    width: 2.3rem;
    height: 2.3rem;
  }

  .booking-panel {
    min-height: 33rem;
    padding: 2rem 1.25rem;
  }

  .transformation-compare {
    min-height: 27rem;
  }

  .transformation-before,
  .transformation-after img {
    object-position: center;
  }

  .studio-benefits span {
    min-height: 4.5rem;
    padding: 0.75rem;
    font-size: 0.75rem;
  }

  .studio-feature figure {
    min-height: 20rem;
  }

  .care-mosaic {
    min-height: 29rem;
  }

  .faq-collage {
    min-height: 28rem;
  }

  .insight-grid figure {
    aspect-ratio: 1.5;
  }

  .contact-grid > a,
  .contact-grid > a:last-child {
    min-height: 21rem;
  }

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

  .footer-main > div:first-child,
  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-main nav,
  .footer-main > div {
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border-light);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .chat-widget {
    border-radius: 0;
  }

  .chat-widget__header {
    min-height: 4.5rem;
    padding: 0.6rem;
  }

  .chat-widget__close {
    min-height: 2.35rem;
    padding-inline: 0.65rem;
  }

  .photo-guide {
    grid-template-columns: 1fr;
  }

  .photo-actions {
    grid-template-columns: 1fr;
  }

  .photo-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chat-suggestions--mode {
    grid-template-columns: 1fr;
  }

  .chat-request-summary > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .announcement-bar {
    font-size: 0.75rem;
  }

  .hero-shell {
    min-height: max(44rem, calc(100svh - 0.8rem));
  }

  .hero-content {
    bottom: 5.1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .simulation-note span:last-child {
    display: none;
  }

  .treatment-pills a {
    width: 100%;
  }

  .chat-widget__identity strong {
    font-size: 0.875rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  [data-split-reveal] {
    transform: none;
    opacity: 1;
  }

  .technology-marquee > div {
    transform: none;
  }
}


.treatment-pills__break {
  display: none;
}

.booking-panel > img {
  right: 3%;
  bottom: -18%;
  width: min(24rem, 25vw);
  opacity: 0.56;
  filter: none;
  pointer-events: none;
}

@media (min-width: 821px) {
  .treatment-pills__break {
    display: block;
    height: 0;
    flex-basis: 100%;
  }
}

@media (max-width: 820px) {
  .booking-panel > img {
    right: -2.5rem;
    bottom: -6%;
    width: 18rem;
    opacity: 0.34;
  }
}
