:root {
  --wine: #48112f;
  --wine-deep: #2e0b20;
  --wine-soft: #6c2547;
  --gold: #d5a619;
  --gold-soft: #ead38a;
  --ivory: #fbf8f2;
  --paper: #fffdf9;
  --rose: #efe3e5;
  --rose-deep: #ddc5ca;
  --ink: #24191f;
  --muted: #73666d;
  --line: rgba(72, 17, 47, 0.16);
  --shadow: 0 24px 70px rgba(46, 11, 32, 0.12);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --container: min(1240px, calc(100vw - 48px));
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.lucide-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.14em;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
}

h2 {
  max-width: 740px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  letter-spacing: -0.045em;
}

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

[hidden] {
  display: none !important;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

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

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

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.93);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(46, 11, 32, 0.06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

/* Menu aberto: o header não pode criar bloco de contenção (backdrop-filter),
   senão a nav fixed fica presa na faixa do topo e perde o fundo. */
body.menu-open .site-header,
body.menu-open .site-header.is-scrolled {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

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

.brand {
  position: relative;
  z-index: 2;
  width: 216px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #4e4147;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  color: white;
  background: var(--wine);
  border: 1px solid var(--wine);
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  color: var(--wine);
  background: transparent;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: var(--wine);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.menu-toggle[aria-expanded="true"] {
  background: var(--paper);
  border-color: var(--wine);
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.hero {
  position: relative;
  min-height: 900px;
  padding-top: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 30%, rgba(213, 166, 25, 0.09), transparent 30%),
    linear-gradient(125deg, #fbf8f2 0%, #f8f1ed 58%, #efe3e5 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -13vw;
  bottom: -33vw;
  width: 66vw;
  height: 66vw;
  border-radius: 50%;
  border: 1px solid rgba(72, 17, 47, 0.1);
}

.hero-inner {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(280px, 0.62fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 65px 0 40px;
}

.eyebrow {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--wine);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 35px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 900px;
  color: var(--wine-deep);
  font-size: clamp(2.87rem, 5.32vw, 5.67rem);
  letter-spacing: -0.064em;
}

.hero h1 em {
  display: block;
  color: var(--wine-soft);
  font-weight: 400;
}

.hero-lead {
  max-width: 645px;
  margin-top: 32px;
  color: #5f5158;
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.button {
  min-height: 54px;
  padding: 14px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--wine);
}

.button-primary:hover {
  background: var(--wine-deep);
}

.button-outline {
  color: var(--wine);
  border-color: var(--wine);
}

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

.button-gold {
  color: var(--wine-deep);
  background: var(--gold);
}

.button-gold:hover {
  background: #e0b52f;
}

.text-link,
.social-link {
  padding: 8px 0 6px;
  color: var(--wine);
  border-bottom: 1px solid rgba(72, 17, 47, 0.35);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-signature {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 100%;
  max-width: 450px;
  justify-self: end;
  aspect-ratio: 0.78;
  overflow: hidden;
  border: 1px solid rgba(72, 17, 47, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(46, 11, 32, 0.12);
}

.hero-signature img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-art span {
  position: absolute;
  z-index: -1;
  display: block;
}

.hero-ring {
  border: 1px solid rgba(72, 17, 47, 0.08);
  border-radius: 50%;
}

.hero-ring-one {
  top: 16%;
  left: -120px;
  width: 330px;
  height: 330px;
}

.hero-ring-two {
  top: 8%;
  right: 20%;
  width: 80px;
  height: 80px;
}

.hero-leaf {
  width: 2px;
  height: 150px;
  background: linear-gradient(transparent, var(--gold), transparent);
  transform: rotate(34deg);
}

.hero-leaf-one {
  top: 21%;
  right: 8%;
}

.hero-leaf-two {
  right: 35%;
  bottom: 22%;
  height: 90px;
  transform: rotate(-25deg);
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border: 1px solid rgba(72, 17, 47, 0.1);
  box-shadow: var(--shadow);
}

.proof-item {
  min-height: 142px;
  padding: 32px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.8vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
}

.proof-item span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section {
  padding: 150px 0;
}

.clinic-section {
  padding-top: 190px;
}

.clinic-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.clinic-grid h2 {
  color: var(--wine);
}

.clinic-intro {
  min-width: 0;
}

.clinic-image {
  margin-top: 42px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(72, 17, 47, 0.12);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(46, 11, 32, 0.1);
}

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

.clinic-content {
  padding-top: 66px;
}

.clinic-content > p {
  max-width: 690px;
  color: var(--muted);
}

.clinic-content .lead-paragraph {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.42;
}

.values-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.values-grid article {
  padding: 28px 25px 10px 0;
}

.values-grid article + article {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.values-grid span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.values-grid h3 {
  margin: 25px 0 12px;
  color: var(--wine);
  font-size: 1.6rem;
}

.values-grid p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.treatments-section {
  background: var(--paper);
  border-top: 1px solid rgba(72, 17, 47, 0.07);
  border-bottom: 1px solid rgba(72, 17, 47, 0.07);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: end;
}

.section-heading h2 {
  color: var(--wine);
}

.section-heading > p {
  padding-bottom: 8px;
  color: var(--muted);
  line-height: 1.8;
}

.treatment-tabs {
  margin-top: 80px;
}

.tab-list {
  display: flex;
  align-items: center;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.tab-list::-webkit-scrollbar {
  display: none;
}

.tab-button {
  position: relative;
  min-width: max-content;
  padding: 0 30px 20px 0;
  margin-right: 30px;
  color: #95888e;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.tab-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: calc(100% - 30px);
  height: 2px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.tab-button.is-active {
  color: var(--wine);
}

.tab-button.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tab-button sup {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 700;
}

.tab-panel {
  padding-top: 48px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 36px;
}

.treatment-grid-single {
  grid-template-columns: minmax(280px, 1fr) 2fr;
}

.treatment-card {
  min-height: 205px;
  padding: 28px 8px 32px 0;
  border-bottom: 1px solid var(--line);
}

.treatment-card > span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.treatment-card h3 {
  margin: 24px 0 13px;
  color: var(--wine);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.treatment-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* Grouped treatment cards */
.treatment-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 26px;
  margin-top: 72px;
}

.treatment-card-group {
  padding: 34px 30px 38px;
  background: #ffffff;
  border: 1px solid rgba(72, 17, 47, 0.18);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(46, 11, 32, 0.08);
}

.treatment-card-group h3 {
  color: var(--wine);
  font-size: clamp(1.5rem, 1.8vw, 1.75rem);
}

.treatment-card-group .group-rule {
  display: block;
  height: 1px;
  margin: 18px 0 22px;
  background: var(--line);
}

.treatment-card-group ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-card-group li {
  position: relative;
  padding-left: 24px;
  color: var(--wine);
  font-size: 1rem;
  line-height: 1.4;
}

.treatment-card-group li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

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

.statement::before,
.statement::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(213, 166, 25, 0.25);
  border-radius: 50%;
}

.statement::before {
  top: -300px;
  right: -80px;
  width: 650px;
  height: 650px;
}

.statement::after {
  left: -180px;
  bottom: -350px;
  width: 580px;
  height: 580px;
}

.statement-inner {
  position: relative;
  z-index: 1;
  min-height: 470px;
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  align-items: center;
}

.statement-inner > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 12rem;
  line-height: 0.5;
  opacity: 0.8;
}

.statement-inner p {
  max-width: 880px;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 5.1rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.results-section {
  background: #f7f0ec;
}

.results-heading {
  margin-bottom: 58px;
}

.gallery-filters {
  margin-bottom: 44px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  padding: 9px 22px;
  color: var(--wine);
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover {
  border-color: var(--gold);
}

.filter-button.is-active {
  color: white;
  background: var(--wine);
  border-color: var(--wine);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ba-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 2px 12px rgba(72, 17, 47, 0.06);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 400ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 400ms ease;
}

.ba-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: #eee6e2;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ba-card:hover {
  box-shadow: var(--shadow);
}

.ba-card:hover img {
  transform: none;
}

.ba-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 15px;
  color: var(--ivory);
  background: rgba(72, 17, 47, 0.88);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.ba-card[hidden] {
  display: none;
}

.results-disclaimer {
  max-width: 850px;
  margin: 42px auto 0;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  line-height: 1.7;
  text-align: center;
}

/* ---------- Avaliações ---------- */
.reviews-heading {
  margin-bottom: 58px;
}

.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
}

.reviews-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.reviews-rating-text {
  color: var(--ink);
  font-size: 1.05rem;
}

.reviews-rating-text strong {
  color: var(--wine);
}

.testimonials {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial {
  position: relative;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(72, 17, 47, 0.06);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 20px;
  color: rgba(213, 166, 25, 0.35);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.testimonial-quote {
  position: relative;
  margin: 18px 0;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.45;
}

.testimonial-author {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonials-note {
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.testimonials-note a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--wine);
  font-weight: 700;
  border-bottom: 1px solid rgba(72, 17, 47, 0.35);
}

.location-section {
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(70px, 11vw, 160px);
  align-items: center;
}

.location-copy h2 {
  color: var(--wine);
}

.location-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 30px 0 32px;
  color: var(--muted);
}

.location-copy address {
  margin-bottom: 38px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-style: normal;
  line-height: 1.5;
}

.hours-card {
  position: relative;
  min-height: 550px;
  padding: 66px 58px;
  overflow: hidden;
  color: white;
  background: var(--wine);
}

.card-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
  color: var(--gold-soft);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hours-card dl {
  position: relative;
  z-index: 1;
}

.hours-card dl > div {
  padding: 19px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.hours-card dt,
.hours-card dd {
  font-size: 0.88rem;
}

.hours-card dd {
  color: var(--gold-soft);
}

.hours-card > a {
  position: absolute;
  z-index: 1;
  left: 58px;
  bottom: 58px;
  padding-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.83rem;
  font-weight: 600;
}

.map-motif span {
  position: absolute;
  border: 1px solid rgba(213, 166, 25, 0.16);
  border-radius: 50%;
}

.map-motif span:first-child {
  width: 470px;
  height: 470px;
  right: -250px;
  bottom: -190px;
}

.map-motif span:nth-child(2) {
  width: 330px;
  height: 330px;
  right: -180px;
  bottom: -120px;
}

.map-motif i {
  position: absolute;
  right: 78px;
  bottom: 100px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border: 3px solid var(--gold-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(213, 166, 25, 0.13);
}

.contact-section {
  position: relative;
  min-height: 680px;
  padding: 140px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: linear-gradient(120deg, var(--wine-deep), var(--wine) 65%, #602342);
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.eyebrow-light {
  color: var(--gold-soft);
}

.contact-inner h2 {
  max-width: 940px;
  color: white;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.social-link {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  text-transform: none;
}

.contact-art span {
  position: absolute;
  border: 1px solid rgba(213, 166, 25, 0.2);
  border-radius: 50% 50% 42% 58% / 54% 37% 63% 46%;
}

.contact-art span:first-child {
  width: 600px;
  height: 700px;
  right: -180px;
  top: -50px;
  transform: rotate(20deg);
}

.contact-art span:last-child {
  width: 460px;
  height: 560px;
  right: -120px;
  top: 20px;
  transform: rotate(33deg);
}

.site-footer {
  padding: 72px 0 26px;
  background: var(--ivory);
}

.footer-main {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  width: 270px;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--wine);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #877a80;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
}

.footer-bottom > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  min-height: 48px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  background: #237e50;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  box-shadow: 0 12px 34px rgba(26, 86, 56, 0.25);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  background: #1a6840;
  transform: translateY(-3px);
}

.floating-whatsapp img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .tab-panel:not([data-active="true"]) {
  display: none;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
    gap: 24px;
  }

  .hero-signature {
    width: 100%;
    max-width: 360px;
  }

  .clinic-grid,
  .location-grid {
    gap: 70px;
  }

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

@media (max-width: 900px) {
  :root {
    --container: min(100% - 36px, 760px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: 185px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    padding: 120px 28px 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    color: var(--wine-deep);
    background: var(--ivory);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 9vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
  }

  .nav-cta {
    margin-top: 18px;
  }

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

  .hero-inner {
    min-height: 720px;
    display: block;
  }

  .hero-copy {
    padding-top: 110px;
  }

  .hero-copy h1 {
    max-width: 780px;
  }

  .hero-signature {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: -40px;
    width: 330px;
    opacity: 0.16;
  }

  .proof-strip {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    border-left: 0;
    border-right: 0;
  }

  .proof-item {
    padding: 26px 22px;
  }

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

  .clinic-grid,
  .section-heading,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .clinic-content {
    padding-top: 0;
  }

  .clinic-image {
    max-width: 620px;
  }

  .section-heading > p {
    max-width: 610px;
  }

  .statement-inner {
    min-height: 430px;
    grid-template-columns: 120px 1fr;
  }

  .hours-card {
    min-height: 500px;
  }

  .testimonials {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 30px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .hero {
    padding-top: 78px;
  }

  h2 {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
  }

  .brand {
    width: 166px;
  }

  .hero-inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
    padding-bottom: 12px;
  }

  .hero-signature {
    position: relative;
    right: auto;
    bottom: auto;
    order: initial;
    width: 100%;
    max-width: none;
    margin: 0 auto 24px;
    aspect-ratio: 1.12 / 1;
    opacity: 1;
  }

  .hero-signature img {
    object-position: center top;
  }

  .hero h1 {
    font-size: clamp(2.345rem, 11.9vw, 3.92rem);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 0.96rem;
  }

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

  .button {
    width: 100%;
  }

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

  .proof-item {
    min-height: 105px;
    padding: 22px 30px;
  }

  .proof-item + .proof-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-item strong {
    font-size: 2.7rem;
  }

  .section,
  .clinic-section {
    padding: 88px 0;
  }

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

  .values-grid article,
  .values-grid article + article {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .values-grid h3 {
    margin-top: 12px;
  }

  .treatment-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 52px;
  }

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

  .statement-inner {
    min-height: 510px;
    display: block;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .statement-inner > span {
    display: block;
    height: 76px;
    font-size: 9rem;
  }

  .statement-inner p {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .results-heading {
    margin-bottom: 40px;
  }

  .ba-card img {
    height: auto;
  }

  .hours-card {
    min-height: 470px;
    padding: 48px 28px;
  }

  .hours-card > a {
    left: 28px;
    bottom: 42px;
  }

  .contact-section {
    min-height: 650px;
    padding: 95px 0;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .social-link {
    align-self: flex-start;
    font-size: 0.72rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 48px;
    padding: 0;
    justify-content: center;
    gap: 0;
    font-size: 0;
    line-height: 0;
  }

  .floating-whatsapp img {
    width: 24px;
    height: 24px;
  }
}

@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;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
