:root {
  --ivory: #f5f0e8;
  --paper: #fcfaf6;
  --sand: #e8ddcf;
  --nude: #d5c1ae;
  --brown: #3b271f;
  --brown-2: #563c31;
  --ink: #2b211d;
  --muted: #766961;
  --champagne: #b79267;
  --line: rgba(59, 39, 31, 0.16);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 72px rgba(43, 33, 29, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --header-height: 80px;
  --container: 1200px;
  --transition: 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #916b42;
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--brown-2);
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  color: #fff;
  background: var(--brown);
  border-radius: var(--radius-xs);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brown-2);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--champagne);
}

.eyebrow--light {
  color: #e8d9c8;
}

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

h1,
h2,
h3 {
  color: var(--brown);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--champagne);
  font-weight: 500;
}

.section {
  padding-block: clamp(88px, 10vw, 128px);
}

.section-heading {
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section-heading h2,
.contact-heading h2,
.professional-copy h2,
.clinic-copy h2,
.closing-inner h2 {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
}

.section-heading--split > p {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--muted);
}

.section-heading--center {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  color: #fff;
  background: var(--brown);
  border: 1px solid var(--brown);
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: color 350ms ease, background 350ms ease, border-color 350ms ease, transform 350ms ease;
}

.button:hover {
  color: #fff;
  background: var(--brown-2);
  border-color: var(--brown-2);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.68rem;
}

.button--light {
  color: var(--brown);
  background: var(--ivory);
  border-color: var(--ivory);
}

.button--light:hover {
  color: var(--brown);
  background: #fff;
  border-color: #fff;
}

.text-link,
.treatment-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--champagne);
  color: var(--brown);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: gap 350ms ease, color 350ms ease;
}

.text-link:hover,
.treatment-link:hover {
  gap: 24px;
  color: #7f5c3f;
}

.text-link--light {
  color: #f6ede4;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 400ms ease, background 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(245, 240, 232, 0.96);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(43, 33, 29, 0.05);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  height: 72px;
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #5b3b2c;
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(59, 39, 31, 0.16);
}

.brand-mark img {
  position: absolute;
  inset: -8% -27%;
  width: 154%;
  max-width: none;
  height: 116%;
  object-fit: cover;
  object-position: 50% 15%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  padding: 0;
  color: var(--brown);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 300ms ease, opacity 300ms ease;
}

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

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

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

.main-nav {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  display: none;
  width: 100%;
  padding: 20px;
  background: rgba(245, 240, 232, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(43, 33, 29, 0.08);
}

.main-nav.is-open {
  display: grid;
}

.main-nav > a:not(.button) {
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.main-nav .button {
  margin-top: 18px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 88% 18%, rgba(183, 146, 103, 0.14), transparent 28%),
    var(--ivory);
}

.hero::before {
  position: absolute;
  top: 15%;
  left: -150px;
  width: 300px;
  height: 560px;
  border: 1px solid rgba(183, 146, 103, 0.28);
  border-radius: 50%;
  content: "";
  transform: rotate(24deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  gap: 56px;
  padding-block: 54px 72px;
}

.hero-copy {
  max-width: 670px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.85rem, 14.5vw, 7.3rem);
}

.hero h1 em {
  display: inline-block;
  margin-left: clamp(12px, 6vw, 72px);
}

.hero-lead {
  max-width: 580px;
  margin: clamp(28px, 5vw, 42px) 0 0;
  color: #5f534d;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note span {
  width: 6px;
  height: 6px;
  background: var(--champagne);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  width: min(88%, 460px);
  margin-inline: auto;
}

.hero-image {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
  border-radius: 210px 210px var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover .hero-image img {
  transform: scale(1.025);
}

.hero-arch {
  position: absolute;
  inset: -18px 18px 42px -18px;
  border: 1px solid var(--champagne);
  border-radius: 230px 230px var(--radius-md) var(--radius-md);
}

.hero-seal {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 38px;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  padding: 14px;
  color: #fff;
  background: var(--brown);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  text-align: center;
}

.hero-seal span {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.hero-seal small {
  margin-top: -16px;
  color: #d8c6b4;
  font-size: 0.48rem;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(calc(100% - 40px), var(--container));
  height: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

/* Principles */
.principles {
  color: #eadfd3;
  background: var(--brown);
}

.principles-grid {
  display: grid;
}

.principles p {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 16px;
  margin: 0;
  border-bottom: 1px solid var(--white-line);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.25;
}

.principles p:last-child {
  border-bottom: 0;
}

.principles span {
  color: var(--champagne);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

/* Treatments */
.treatments {
  background: var(--paper);
}

.treatments-grid {
  display: grid;
  gap: 48px 24px;
}

.treatment-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.treatment-media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0 0 26px;
  overflow: hidden;
  background: #f1ece5;
  border: 1px solid rgba(59, 39, 31, 0.09);
  border-radius: var(--radius-sm);
}

.treatment-media img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 500ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.treatment-card:hover .treatment-media img {
  filter: saturate(0.88) contrast(1.02);
  transform: scale(1.025);
}

.treatment-photo-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 3px;
  color: rgba(59, 39, 31, 0.35);
  text-align: center;
}

.treatment-photo-label b {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  opacity: 0.48;
}

.treatment-photo-label small {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.treatment-index {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--brown);
  background: rgba(252, 250, 246, 0.92);
  border: 1px solid rgba(59, 39, 31, 0.08);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.treatment-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.treatment-type {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.treatment-body h3 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.03;
}

.treatment-body > p:not(.treatment-type) {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.treatment-link {
  margin-top: auto;
}

/* Clinic */
.clinic {
  position: relative;
  overflow: hidden;
  color: #e8ddd2;
  background: var(--brown);
}

.clinic::after {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 500px;
  height: 700px;
  border: 1px solid rgba(183, 146, 103, 0.22);
  border-radius: 50%;
  content: "";
  transform: rotate(38deg);
}

.clinic-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 64px;
}

.clinic-visual {
  position: relative;
  margin: 0;
  padding: 18px 18px 0;
  isolation: isolate;
}

/* Moldura externa */
.clinic-visual::before {
  position: absolute;
  inset: 0 0 46px 0;
  z-index: 0;

  content: "";

  border: 1px solid rgba(199, 155, 104, 0.42);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0)
    );

  box-shadow:
    0 24px 60px rgba(20, 10, 6, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

/* Glow sutil atrás da logo */
.clinic-visual::after {
  position: absolute;
  top: 8%;
  left: 10%;
  z-index: -1;

  width: 78%;
  height: 72%;

  content: "";

  background:
    radial-gradient(
      circle,
      rgba(200, 153, 99, 0.14) 0%,
      rgba(200, 153, 99, 0.07) 35%,
      rgba(200, 153, 99, 0) 72%
    );

  filter: blur(24px);
  pointer-events: none;
}

/* Logo */
.clinic-visual img {
  position: relative;
  z-index: 1;

  display: block;

  width: 100%;
  height: auto;

  max-width: 100%;

  margin: 0 auto;

  object-fit: contain;
  object-position: center;

  border-radius: 14px;

  box-shadow:
    0 16px 34px rgba(20, 10, 6, 0.16);

  transition:
    transform 700ms ease,
    box-shadow 700ms ease;
}

/* Hover premium e discreto */
.clinic-visual:hover img {
  transform: scale(1.012);

  box-shadow:
    0 22px 46px rgba(20, 10, 6, 0.22);
}

/* Legenda */
.clinic-visual figcaption {
  position: relative;
  z-index: 2;

  width: min(82%, 360px);

  /* Centralizado abaixo da logo */
  margin: 20px auto 0;
  padding: 18px 24px;

  color: var(--brown);
  background: var(--ivory);

  border: 1px solid rgba(183, 146, 103, 0.22);
  border-radius: 10px;

  box-shadow:
    0 12px 30px rgba(20, 10, 6, 0.10);

  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.4;
  letter-spacing: 0.01em;

  text-align: center;
}

/* Pequeno detalhe editorial na legenda */
.clinic-visual figcaption::before {
  display: block;

  width: 34px;
  height: 1px;

  margin-bottom: 10px;

  content: "";

  background: rgba(183, 146, 103, 0.75);
}

/* Responsividade */
@media (max-width: 1023px) {
  .clinic-visual {
    padding: 14px 14px 0;
  }

  .clinic-visual::before {
    inset: 0 0 40px 0;
    border-radius: 18px;
  }

  .clinic-visual figcaption {
    width: min(88%, 340px);

    margin: -18px 16px 0 auto;
    padding: 16px 20px;

    font-size: 1.05rem;
  }
}

@media (max-width: 639px) {
  .clinic-visual {
    padding: 10px 10px 0;
  }

  .clinic-visual::before {
    inset: 0 0 32px 0;
    border-radius: 16px;
  }

  .clinic-visual img {
    border-radius: 10px;
  }

  .clinic-visual figcaption {
    width: calc(100% - 24px);

    margin: -12px 12px 0;
    padding: 15px 18px;

    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clinic-visual img {
    transition: none;
  }

  .clinic-visual:hover img {
    transform: none;
  }
}
.clinic-copy h2 {
  color: #f7f1e9;
}

.clinic-lead {
  max-width: 610px;
  margin: 34px 0;
  color: #d0c1b4;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.75;
}

.clinic-detail {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  max-width: 560px;
  margin: 0 0 38px;
  padding-block: 24px;
  border-block: 1px solid var(--white-line);
}

.clinic-detail > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--brown);
  background: var(--sand);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.clinic-detail p {
  margin: 0;
  color: #d0c1b4;
  font-size: 0.9rem;
}

/* Professional */
.professional {
  background: var(--ivory);
}

.professional-grid {
  display: grid;
  align-items: center;
  gap: 72px;
}

.professional-copy {
  max-width: 590px;
}

.professional-role {
  display: inline-block;
  margin: 26px 0 30px;
  padding: 7px 13px;
  color: var(--brown);
  background: #e6dbcf;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.professional-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 30px;
}

.professional-meta .professional-role {
  margin: 0;
}

.professional-copy > p:not(.eyebrow, .professional-role) {
  color: var(--muted);
}

.professional-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 36px;
}

.professional-areas span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brown-2);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.professional-photo {
  position: relative;
  width: min(82%, 440px);
  margin: 0 auto;
}

.professional-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: center top;
  border-radius: 190px 190px var(--radius-sm) var(--radius-sm);
  filter: saturate(0.86) contrast(1.02);
}

.photo-frame {
  position: absolute;
  inset: 24px -18px -18px 18px;
  border: 1px solid var(--champagne);
  border-radius: 190px 190px var(--radius-md) var(--radius-md);
}

.professional-photo figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  width: calc(100% - 28px);
  flex-direction: column;
  margin: -22px 0 0 -18px;
  padding: 18px 22px;
  color: #eadfd4;
  background: var(--brown);
  border-radius: var(--radius-xs);
}

.professional-photo figcaption strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.professional-photo figcaption span {
  color: #c8b9ac;
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Journey */
.journey {
  background: var(--paper);
}

.journey-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  width: 1px;
  content: "";
  background: var(--line);
}

.journey-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  padding: 0 0 42px;
}

.journey-timeline li:last-child {
  padding-bottom: 0;
}

.journey-timeline li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--paper);
  background: var(--brown);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.journey-timeline h3 {
  margin: 3px 0 9px;
  font-size: 1.85rem;
}

.journey-timeline p {
  max-width: 250px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Contact */
.contact {
  background: #e9dfd4;
}

.contact-heading {
  display: grid;
  margin-bottom: 56px;
}

.contact-heading > p:last-child {
  max-width: 440px;
  margin: 28px 0 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  gap: 24px;
}

.contact-info,
.map-wrap {
  background: var(--paper);
  border-radius: var(--radius-md);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 5vw, 48px);
}

.contact-info address {
  margin: 0 0 32px;
  font-style: normal;
}

.contact-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row > span {
  color: var(--champagne);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row p,
.contact-row a {
  margin: 0;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.35;
}

.map-wrap {
  min-height: 440px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: sepia(0.22) saturate(0.7) contrast(0.92);
}

/* Closing and footer */
.closing-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(88px, 10vw, 128px);
  color: #fff;
  background: var(--brown-2);
  text-align: center;
}

.closing-cta::before,
.closing-cta::after {
  position: absolute;
  width: 300px;
  height: 500px;
  border: 1px solid rgba(225, 194, 158, 0.2);
  border-radius: 50%;
  content: "";
}

.closing-cta::before {
  top: -220px;
  left: -80px;
  transform: rotate(45deg);
}

.closing-cta::after {
  right: -90px;
  bottom: -250px;
  transform: rotate(-45deg);
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing-inner .eyebrow {
  justify-content: center;
}

.closing-inner h2 {
  margin-bottom: 42px;
  color: #fff;
}

.site-footer {
  padding-block: 52px;
  color: #cbbeb2;
  background: #281c17;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-brand img {
  width: 128px;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: var(--radius-xs);
}

.footer-brand p,
.footer-legal {
  margin: 16px 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.055em;
  line-height: 1.8;
}

.footer-brand p span {
  color: var(--champagne);
}

.contact-socials {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 16px;
  margin: 0 0 30px;
}

.contact-socials-label {
  color: var(--champagne);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-socials-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brown-2);
  background: transparent;
  border: 1px solid rgba(59, 39, 31, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.social-link:hover {
  color: var(--paper);
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
}

.social-link.professional-social-link {
  width: 36px;
  height: 36px;
}

.professional-social-link svg {
  width: 16px;
  height: 16px;
}

.social-link[aria-disabled="true"] {
  cursor: default;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.social-link .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.social-link--facebook svg {
  fill: currentColor;
  stroke: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Chat */
.chat-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  color: #fff;
  background: var(--brown);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(43, 33, 29, 0.24);
  cursor: pointer;
  transition: background 250ms ease, transform 250ms ease;
}

.chat-toggle:hover {
  background: var(--brown-2);
  transform: translateY(-2px);
}

.chat-toggle svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.chat-toggle span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-widget {
  position: fixed;
  right: 12px;
  bottom: 78px;
  z-index: 950;
  width: min(calc(100vw - 24px), 380px);
  visibility: hidden;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transform-origin: right bottom;
  transition: visibility 0s 250ms, opacity 250ms ease, transform 250ms ease;
}

.chat-widget.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.chat-widget-box {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(43, 33, 29, 0.22);
}

.chat-widget-header {
  display: grid;
  grid-template-columns: 42px 1fr 36px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background: var(--brown);
}

.chat-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brown);
  background: var(--sand);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
}

.chat-widget-header strong,
.chat-widget-header span {
  display: block;
}

.chat-widget-header strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}

.chat-widget-header span {
  color: #cdbdb0;
  font-size: 0.66rem;
}

.chat-close {
  width: 36px;
  height: 36px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.chat-widget-body {
  max-height: min(66vh, 530px);
  overflow-y: auto;
  padding: 18px;
}

.chat-message {
  margin-bottom: 14px;
  padding: 15px;
  color: var(--muted);
  background: var(--ivory);
  border-radius: var(--radius-xs) var(--radius-md) var(--radius-md);
  font-size: 0.82rem;
}

.chat-message p {
  margin-bottom: 8px;
}

.chat-message p:last-child {
  margin-bottom: 0;
}

.chat-actions {
  display: grid;
  gap: 8px;
}

.chat-option,
.chat-back,
.chat-submit {
  min-height: 46px;
  cursor: pointer;
}

.chat-option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  color: var(--brown);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: left;
  transition: background 250ms ease, border-color 250ms ease;
}

.chat-option:hover {
  background: var(--ivory);
  border-color: rgba(59, 39, 31, 0.3);
}

.chat-option--accent {
  color: #fff;
  background: var(--brown);
  border-color: var(--brown);
}

.chat-option--accent:hover {
  color: #fff;
  background: var(--brown-2);
}

.chat-form {
  display: grid;
  gap: 7px;
}

.chat-form label {
  margin-top: 6px;
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 600;
}

.chat-form input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  font-size: 0.82rem;
}

.chat-form input:focus {
  border-color: var(--champagne);
  outline: 2px solid rgba(183, 146, 103, 0.25);
}

.chat-form-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
  margin-top: 12px;
}

.chat-back,
.chat-submit {
  border-radius: var(--radius-xs);
  font-size: 0.72rem;
  font-weight: 600;
}

.chat-back {
  color: var(--brown);
  background: transparent;
  border: 1px solid var(--line);
}

.chat-submit {
  color: #fff;
  background: var(--brown);
  border: 1px solid var(--brown);
}

.chat-message--success strong {
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

/* Availability notice */
.notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(32, 22, 18, 0.62);
  backdrop-filter: blur(8px);
}

.notice-box {
  position: relative;
  width: min(100%, 500px);
  padding: clamp(30px, 7vw, 52px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.notice-box::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(183, 146, 103, 0.3);
  border-radius: var(--radius-sm);
  content: "";
  pointer-events: none;
}

.notice-box h2 {
  margin: 0 0 22px;
  font-size: clamp(2.3rem, 8vw, 3.5rem);
}

.notice-box p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9rem;
}

.notice-box .button {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  cursor: pointer;
}

.notice-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  color: var(--brown);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

/* Progressive entrance */
.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--transition), transform var(--transition);
}

.reveal.reveal-ready[data-delay="1"] {
  transition-delay: 100ms;
}

.reveal.reveal-ready[data-delay="2"] {
  transition-delay: 200ms;
}

.reveal.reveal-ready[data-delay="3"] {
  transition-delay: 300ms;
}

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

@media (min-width: 640px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

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

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

  .principles p {
    padding-right: 24px;
  }

  .principles p:nth-child(odd) {
    border-right: 1px solid var(--white-line);
  }

  .principles p:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .principles p:nth-child(even) {
    padding-left: 24px;
  }

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

  .footer-links {
    grid-template-columns: repeat(4, max-content);
  }
}

@media (min-width: 768px) {
  .section-heading--split,
  .contact-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: 64px;
  }

  .section-heading--split > p,
  .contact-heading > p:last-child {
    margin: 0 0 4px;
  }

  .contact-layout {
    grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.2fr);
  }

  .contact-info .button {
    align-self: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .footer-legal {
    grid-column: 1 / -1;
    padding-top: 26px;
    border-top: 1px solid var(--white-line);
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 94px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav,
  .main-nav.is-open {
    position: static;
    display: flex;
    width: auto;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .main-nav > a:not(.button) {
    position: relative;
    padding: 8px 0;
    border: 0;
    font-size: 0.67rem;
  }

  .main-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--champagne);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 350ms ease;
  }

  .main-nav > a:not(.button):hover::after,
  .main-nav > a:not(.button).is-active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .main-nav .button {
    margin: 0 0 0 4px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    gap: 80px;
    padding-block: 34px 52px;
  }

  .hero h1 {
    font-size: clamp(5.8rem, 8.2vw, 8rem);
  }

  .hero-visual {
    width: min(100%, 490px);
  }

  .principles-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .principles p,
  .principles p:nth-child(even) {
    min-height: 120px;
    padding: 0 22px;
    border-right: 1px solid var(--white-line);
    border-bottom: 0;
  }

  .principles p:first-child {
    padding-left: 0;
  }

  .principles p:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .treatments-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 72px 30px;
  }

  .clinic-grid {
    grid-template-columns: minmax(400px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(80px, 9vw, 140px);
  }

  .clinic-visual {
    transform: translateY(18px);
  }

  .professional-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
    gap: 100px;
  }

  .professional-photo {
    width: min(86%, 440px);
  }

  .journey-timeline {
    grid-template-columns: repeat(4, 1fr);
  }

  .journey-timeline::before {
    top: 23px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .journey-timeline li {
    display: block;
    padding: 0 38px 0 0;
  }

  .journey-timeline li > span {
    margin-bottom: 28px;
    box-shadow: 0 0 0 8px var(--paper);
  }

  .journey-timeline h3 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr auto auto;
    align-items: end;
  }

  .footer-legal {
    grid-column: auto;
    margin: 0;
    padding: 0 0 0 38px;
    border-top: 0;
    border-left: 1px solid var(--white-line);
  }

  .chat-toggle {
    right: 24px;
    bottom: 24px;
  }

  .chat-widget {
    right: 24px;
    bottom: 88px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand-copy strong {
    font-size: 1.15rem;
  }

  .brand-copy small {
    font-size: 0.46rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 4.25rem);
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-seal {
    right: -14px;
    width: 84px;
    height: 84px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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

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

  .reveal.reveal-ready {
    opacity: 1;
    transform: none;
  }
}
