/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --cream:      #F5F0E8;
  --cream-soft: #FAF6EE;
  --beige:      #E8E0D4;
  --sand:       #C8B89A;
  --gold:       #C8A96E;
  --gold-light: #E2C98A;
  --gold-deep:  #A88848;
  --peach:      #F1C9B0;
  --peach-soft: #FBE6D7;
  --dark:       #1A1714;
  --dark-mid:   #2C2420;
  --dark-soft:  #3A2F26;
  --mid:        #6B5E54;
  --mid-light:  #9B8C80;
  --white:      #FFFFFF;
  --green-wa:   #25D366;
  --green-wa-d: #128C7E;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --section-pad: clamp(2.8rem, 6vw, 5rem);
  --container:   min(1200px, 100% - 2.5rem);
  --container-wide: min(1400px, 100% - 2.5rem);
  --radius:      2px;

  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.container { width: var(--container); margin-inline: auto; }
.container-wide { width: var(--container-wide); margin-inline: auto; }
.eyebrow {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.h2 em {
  font-style: italic;
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.h2 em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -.05em;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.1s var(--ease-out) .3s;
}
.reveal.in-view .h2 em::after,
.h2.in-view em::after { transform: scaleX(1); }

/* ══════════════════════════════════════════
   MOTION SYSTEM
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem clamp(1rem, 4vw, 2.5rem);
  transition: background .35s, backdrop-filter .35s, box-shadow .35s, padding .25s;
}
nav.site-nav.scrolled {
  background: rgba(26,23,20,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(200,169,110,.2);
  padding-block: .8rem;
}
nav.site-nav.scrolled .nav-logo { color: var(--white); }
nav.site-nav.scrolled .nav-logo-role { color: rgba(255,255,255,.55); }
nav.site-nav.scrolled .nav-monogram { background: transparent; color: var(--gold-light); }
nav.site-nav.scrolled .nav-links a { color: rgba(255,255,255,.78); }
nav.site-nav.scrolled .nav-links a:hover { color: var(--gold-light); }
nav.site-nav.scrolled .nav-burger span { background: var(--white); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--white);
  line-height: 1;
  transition: color .35s;
}
.nav-logo-img {
  height: 160px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .nav-logo-img { height: 120px; }
}
.nav-monogram {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--gold-light);
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  background: transparent;
  transition: color .35s, background .35s;
}
.nav-logo-text { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: clamp(.88rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-logo-role {
  font-size: .53rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color .35s;
}
.nav-links {
  display: flex;
  gap: clamp(1.1rem, 2vw, 2rem);
  list-style: none;
}
.nav-links a {
  font-size: .66rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: .9rem; }
.nav-cta {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: .65rem 1.2rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, transform .25s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform .3s, opacity .3s, background .35s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(26,23,20,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color .2s, color .2s;
}
.nav-mobile-close:hover { border-color: var(--gold); color: var(--gold-light); }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .04em;
  padding: .4rem 1rem;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .nav-cta {
  margin-top: 1rem;
  font-size: .75rem;
  padding: .9rem 1.6rem;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta:not(.nav-mobile .nav-cta) { padding: .55rem 1rem; font-size: .6rem; }
  .nav-logo-role { display: none; }
}
@media (max-width: 480px) {
  nav.site-nav { padding-inline: 1rem; }
  .nav-logo-name { font-size: .85rem; }
  .nav-monogram { width: 32px; height: 32px; font-size: 1.15rem; }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1rem 1.7rem;
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background .25s, transform .25s, border-color .25s, color .25s;
  white-space: nowrap;
  min-height: 48px;
  line-height: 1.2;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-ghost-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(26,23,20,.2);
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-wa { background: var(--gold); color: var(--dark); }
.btn-wa:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   HERO — SPLIT EDITORIAL
══════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--dark);
  overflow: hidden;
  isolation: isolate;
}

/* Text side */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem clamp(1.5rem, 5vw, 4rem) 4rem;
  position: relative;
  z-index: 2;
  color: var(--white);
}
.hero-content::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 80%; height: 120%;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,169,110,.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: 150ms;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero.loaded .hero-eyebrow { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin-bottom: 1.4rem;
  color: var(--white);
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 300; }

.word-reveal { display: inline-block; overflow: hidden; vertical-align: top; }
.word-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.hero.loaded .word-reveal > span { transform: translateY(0); }

.hero-sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .9s var(--ease-out) 900ms, transform .9s var(--ease-out) 900ms;
}
.hero.loaded .hero-sub { opacity: 1; transform: translateY(0); }
.hero-clinic { color: var(--gold-light); font-style: italic; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .9s var(--ease-out) 1100ms, transform .9s var(--ease-out) 1100ms;
}
.hero.loaded .hero-ctas { opacity: 1; transform: translateY(0); }
.hero .btn-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.hero .btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-scroll {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 3rem;
  opacity: 0;
  transition: opacity .9s var(--ease-out) 1400ms;
}
.hero.loaded .hero-scroll { opacity: 1; }
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: .7; }
  50% { transform: scaleY(.6); opacity: .3; }
}
.hero-scroll-text {
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  writing-mode: vertical-rl;
}

/* Visual / photo side */
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  transition: transform 10s ease-out;
}
.hero.loaded .hero-visual img { transform: scale(1.04); }
.hero-visual-tint {
  position: absolute; inset: 0;
  background: linear-gradient(270deg,
    rgba(26,23,20,0) 60%,
    rgba(26,23,20,.35) 100%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-title { font-size: clamp(2rem, 4.5vw, 3.2rem); }
}
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 100svh;
    min-height: 100vh;
  }
  .hero-visual {
    grid-row: 1; grid-column: 1;
    height: 100svh; height: 100vh;
    max-height: unset;
  }
  .hero-visual img { object-position: center 10%; }
  .hero-visual-tint {
    background: linear-gradient(180deg,
      rgba(26,23,20,.18) 0%,
      rgba(26,23,20,0) 22%,
      rgba(26,23,20,.55) 55%,
      rgba(26,23,20,.93) 100%);
  }
  .hero-content {
    grid-row: 1; grid-column: 1;
    z-index: 2;
    align-self: end;
    justify-content: flex-end;
    padding: 2rem clamp(1.4rem, 5vw, 2rem) 3.2rem;
    background: transparent;
  }
  .hero-scroll { display: none; }
  .hero-title { font-size: clamp(1.85rem, 6vw, 2.6rem); }
  .hero-sub { font-size: .95rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.1rem); }
  .hero-sub { font-size: .88rem; max-width: 38ch; }
  .hero-ctas .btn { flex: 1; min-width: 0; padding-inline: .8rem; font-size: .62rem; }
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: var(--dark-mid);
  color: var(--white);
  border-top: 1px solid rgba(200,169,110,.18);
  border-bottom: 1px solid rgba(200,169,110,.18);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--container);
  margin-inline: auto;
}
.stat {
  padding: 1.6rem .8rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .54rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.stat.in-view .stat-num { animation: stat-pop .9s var(--ease-out); }
@keyframes stat-pop {
  0%   { opacity: 0; transform: translateY(10px) scale(.96); }
  60%  { opacity: 1; transform: translateY(-2px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.07); }
}

/* ══════════════════════════════════════════
   SECTION GENERIC
══════════════════════════════════════════ */
section { padding: var(--section-pad) 0; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.2rem, 5vw, 3.5rem);
}
.section-head .h2 { margin-bottom: .8rem; }
.section-head p {
  font-size: .98rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   ABOUT — doble imagen + texto
══════════════════════════════════════════ */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 600px;
    margin-inline: auto;
  }
}

/* Double-image stack */
.about-imgs {
  position: relative;
  min-height: 420px;
}
.about-img-main {
  position: relative;
  width: 80%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--beige);
  z-index: 1;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about-img-main::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(200,169,110,.35);
  pointer-events: none;
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 56%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--dark);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(26,23,20,.3);
}
.about-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.about-img-accent::before {
  content: '';
  position: absolute;
  top: 1rem; left: 1rem; right: -1rem; bottom: -1rem;
  border: 1px solid rgba(200,169,110,.25);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 880px) {
  .about-imgs { min-height: unset; padding-bottom: 3rem; }
  .about-img-main { width: 75%; aspect-ratio: 4/5; }
  .about-img-accent { bottom: 0; right: 0; width: 52%; aspect-ratio: 1/1; }
}
@media (max-width: 480px) {
  .about-imgs { padding-bottom: 2rem; min-height: 280px; }
  .about-img-main { width: 72%; }
  .about-img-accent { width: 50%; }
}

.about-name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: .6rem;
  letter-spacing: .02em;
}
.about-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-mid);
  margin-bottom: 1.4rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.8rem;
}
.about-tag {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid rgba(200,169,110,.3);
  padding: .35rem .8rem;
  background: rgba(200,169,110,.05);
  transition: border-color .25s, color .25s;
}
.about-tag:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ══════════════════════════════════════════
   SERVICES OVERVIEW (home)
══════════════════════════════════════════ */
.services-overview {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
}
.services-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 760px) { .services-overview-grid { grid-template-columns: 1fr; gap: 1.2rem; } }

.svc-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: 2.4rem;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.svc-hero:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -10px rgba(26,23,20,.35);
}
.svc-hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
}
.svc-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 1.2s var(--ease-out);
  opacity: .55;
  filter: saturate(.9) brightness(.85);
}
.svc-hero:hover .svc-hero-bg img { transform: scale(1.07); }
.svc-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,23,20,.5) 0%, rgba(26,23,20,.88) 65%, rgba(26,23,20,.97) 100%);
}
.svc-hero-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  opacity: .75;
}
.svc-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: .8rem;
  letter-spacing: -.01em;
  color: var(--white);
}
.svc-hero-title em { color: var(--gold-light); font-style: italic; }
.svc-hero-tag {
  font-size: .82rem;
  letter-spacing: .03em;
  color: rgba(255,255,255,.72);
  font-weight: 300;
  line-height: 1.65;
  max-width: 38ch;
  margin-bottom: 2rem;
}
.svc-hero-list { list-style: none; margin-bottom: 2rem; }
.svc-hero-list li {
  font-size: .82rem;
  letter-spacing: .04em;
  padding: .55rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  display: flex;
  align-items: center;
}
.svc-hero-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.svc-hero-list li > span::before { content: '— '; color: var(--gold); margin-right: .5rem; font-weight: 500; }
.svc-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-top: auto;
  transition: gap .3s, color .3s;
}
.svc-hero-cta::after { content: '→'; font-size: 1.05rem; transition: transform .3s; }
.svc-hero:hover .svc-hero-cta { gap: 1rem; color: var(--white); }
.svc-hero:hover .svc-hero-cta::after { transform: translateX(4px); }
@media (max-width: 480px) { .svc-hero { padding: 1.8rem 1.4rem; min-height: 420px; } }

/* ══════════════════════════════════════════
   EN CLÍNICA — nueva sección
══════════════════════════════════════════ */
.clinic-life {
  background: var(--dark);
  color: var(--white);
  padding: var(--section-pad) 0;
}
.clinic-life .section-head .h2 { color: var(--white); }
.clinic-life .section-head p { color: rgba(255,255,255,.6); }
.clinic-life .section-head .h2 em::after { background: var(--gold-light); }

.clinic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 880px) {
  .clinic-grid { grid-template-columns: 1fr; gap: 1rem; max-width: 520px; margin-inline: auto; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .clinic-grid { gap: .9rem; }
}

.clinic-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.clinic-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark-mid);
}
.clinic-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .9s var(--ease-out);
  filter: brightness(.88) saturate(.85);
}
.clinic-card:hover .clinic-img img { transform: scale(1.06); }
.clinic-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,23,20,.7));
  pointer-events: none;
}
.clinic-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 .2rem;
}
.clinic-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
  flex-shrink: 0;
  opacity: .7;
}
.clinic-label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .01em;
  margin-bottom: .3rem;
}
.clinic-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}
@media (max-width: 880px) {
  .clinic-img { aspect-ratio: 16/9; }
  .clinic-img img { object-position: center 25%; }
}

/* ══════════════════════════════════════════
   GALERÍA EDITORIAL + LIGHTBOX
══════════════════════════════════════════ */
.gallery-section { background: var(--cream-soft); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; gap: .6rem; }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--beige);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,23,20,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
  padding: .5rem 1rem;
  backdrop-filter: blur(4px);
  transition: border-color .25s;
}
.gallery-item:hover .gallery-overlay span { border-color: var(--gold); }

/* CTA card dentro del grid */
.gallery-cta-card {
  aspect-ratio: 1/1;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
}
.gallery-cta-inner {
  text-align: center;
  color: var(--white);
}
.gallery-cta-inner h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.gallery-cta-inner h3 em { font-style: italic; color: var(--gold-light); }
.gallery-cta-inner .btn { font-size: .62rem; padding: .75rem 1.2rem; }

/* ══════════════════════════════════════════
   GALLERY CAROUSEL
══════════════════════════════════════════ */
.gallery-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-slide .gallery-item {
  aspect-ratio: unset;
  height: clamp(280px, 52vw, 500px);
  width: 100%;
  background: var(--dark);
}

.carousel-slide .gallery-item img {
  object-fit: contain;
}

/* Before / After compare slider */
.ba-compare {
  position: relative;
  overflow: hidden;
  height: clamp(280px, 52vw, 500px);
  background: var(--dark);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-compare-after,
.ba-compare-before {
  position: absolute;
  inset: 0;
}

.ba-compare-after { z-index: 1; }

.ba-compare-before {
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.ba-compare-after img,
.ba-compare-before img {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  will-change: transform;
}

.ba-compare-before img {
  /* width set by JS to match full slider width */
}

.ba-compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
}

.ba-compare-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,.85);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-compare-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(200,169,110,.7);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
  position: relative;
  z-index: 1;
  color: var(--dark);
  transition: transform .15s;
}

.ba-compare-btn:hover { transform: scale(1.08); }

.ba-clabel {
  position: absolute;
  bottom: 1rem;
  background: rgba(26,23,20,.75);
  color: var(--white);
  font-size: .5rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 4;
  pointer-events: none;
}
.ba-clabel--l { left: 1rem; }
.ba-clabel--r { right: 1rem; }

.carousel-slide--cta .gallery-cta-card {
  aspect-ratio: unset;
  height: clamp(280px, 52vw, 500px);
  width: 100%;
}

.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(26,23,20,.65);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s, border-color .25s;
  z-index: 10;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.carousel-arrow:hover {
  background: rgba(200,169,110,.2);
  border-color: var(--gold);
}

.carousel-arrow--prev { left: .9rem; }
.carousel-arrow--next { right: .9rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.1rem;
}

.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .3;
  cursor: pointer;
  transition: opacity .25s, transform .25s;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  opacity: 1;
  transform: scale(1.3);
}

@media (max-width: 480px) {
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-arrow--prev { left: .4rem; }
  .carousel-arrow--next { right: .4rem; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 500;
  background: rgba(26,23,20,.96);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease-out);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-close {
  position: fixed;
  top: 1.2rem; right: 1.2rem;
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  transition: border-color .2s, color .2s, background .2s;
  z-index: 2;
}
.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(200,169,110,.1);
}
.lightbox-img-wrap {
  max-width: min(90vw, 820px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  transform: scale(.9);
  opacity: 0;
  transition: transform .45s var(--ease-out), opacity .35s;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}
.lightbox.open .lightbox-img-wrap img { transform: scale(1); opacity: 1; }

/* ══════════════════════════════════════════
   SERVICES V2 — paneles digestibles
══════════════════════════════════════════ */
.services-v2 {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
}
.services-v2 .section-head p {
  font-size: .98rem;
  color: var(--mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.services-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 800px) { .services-v2-grid { grid-template-columns: 1fr; gap: 1.2rem; } }

.svc-panel {
  background: var(--white);
  border: 1px solid rgba(26,23,20,.07);
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 20px rgba(26,23,20,.04);
  transition: box-shadow .4s, transform .4s var(--ease-out);
}
.svc-panel:hover {
  box-shadow: 0 12px 40px rgba(200,169,110,.12);
  transform: translateY(-2px);
}

.svc-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26,23,20,.06);
  margin-bottom: 0;
}
.svc-panel-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: .55;
  flex-shrink: 0;
  padding-top: .1rem;
}
.svc-panel-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: .45rem;
  letter-spacing: -.01em;
}
.svc-panel-title em { font-style: italic; color: var(--gold); }
.svc-panel-sub {
  font-size: .86rem;
  color: var(--mid);
  line-height: 1.6;
}

.svc-item-list {
  list-style: none;
  margin: 0;
  padding: .4rem 0 1.4rem;
}
.svc-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(26,23,20,.05);
  transition: background .2s;
}
.svc-item:last-child { border-bottom: none; }

.svc-item[data-wa-item] {
  cursor: pointer;
  padding-left: .5rem;
  margin-left: -.5rem;
  border-radius: 4px;
}
.svc-item[data-wa-item]:hover {
  background: rgba(200,169,110,.1);
}
.svc-item[data-wa-item]:hover .svc-item-name {
  color: var(--gold-deep);
}
.svc-item-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: .75;
}
.svc-item-name {
  font-size: .9rem;
  color: var(--dark);
  font-weight: 400;
  flex: 1;
  letter-spacing: .01em;
  line-height: 1.4;
}
.svc-item-badge {
  font-size: .47rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--gold-light);
  padding: .28rem .6rem;
  flex-shrink: 0;
  font-weight: 500;
  white-space: nowrap;
}
.svc-item-badge--star {
  background: var(--gold-deep);
  color: var(--white);
}

.svc-panel-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(26,23,20,.06);
}
.svc-panel-wa {
  width: 100%;
  justify-content: center;
  gap: .6rem;
}
.svc-panel-more {
  display: block;
  text-align: center;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid-light);
  text-decoration: none;
  padding: .4rem 0;
  transition: color .2s;
}
.svc-panel-more:hover { color: var(--gold-deep); }

/* ══════════════════════════════════════════
   SERVICES DETAIL (subpages)
══════════════════════════════════════════ */
.services-detail {
  background: var(--cream);
  padding-top: calc(var(--section-pad) + 4rem);
}
.services-grid { display: grid; gap: 1.4rem; }
.services-grid--4 { grid-template-columns: 1fr 1fr; }
.services-grid--6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .services-grid--6 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) {
  .services-grid--4, .services-grid--6 { grid-template-columns: 1fr; }
}

.svc-card {
  position: relative;
  background: var(--white);
  padding: 2.2rem 1.8rem 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(26,23,20,.06);
  box-shadow: 0 2px 18px rgba(26,23,20,.04);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -10px rgba(200,169,110,.22), 0 2px 8px rgba(26,23,20,.04);
  border-color: rgba(200,169,110,.25);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-cat { font-size: .54rem; letter-spacing: .28em; text-transform: uppercase; color: var(--mid); margin-bottom: 1rem; font-weight: 500; }
.svc-icon-wrap {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(200,169,110,.08) 0%, rgba(200,169,110,.02) 100%);
  border: 1px solid rgba(200,169,110,.18);
  margin-bottom: 1.2rem;
  transition: transform .5s var(--ease-out), background .4s, border-color .4s;
  flex-shrink: 0;
}
.svc-card:hover .svc-icon-wrap {
  transform: rotate(-4deg) scale(1.05);
  background: linear-gradient(135deg, rgba(200,169,110,.15) 0%, rgba(200,169,110,.04) 100%);
  border-color: rgba(200,169,110,.4);
}
.svc-icon-wrap svg { width: 26px; height: 26px; }
.svc-name { font-family: var(--font-serif); font-size: clamp(1.15rem, 1.8vw, 1.35rem); font-weight: 400; color: var(--dark); margin-bottom: .55rem; line-height: 1.2; letter-spacing: -.005em; }
.svc-desc { font-size: .9rem; color: var(--mid); line-height: 1.65; margin-bottom: 1.1rem; }
.svc-benefits { list-style: none; margin-bottom: 1.4rem; flex-grow: 1; }
.svc-benefits li { position: relative; padding-left: 1.3rem; font-size: .8rem; color: var(--dark-mid); margin-bottom: .5rem; line-height: 1.5; }
.svc-benefits li::before { content: ''; position: absolute; left: 0; top: .55rem; width: 8px; height: 1px; background: var(--gold); }
.svc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid rgba(26,23,20,.06); gap: .5rem; flex-wrap: wrap; }
.svc-cta { display: inline-flex; align-items: center; gap: .5rem; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); text-decoration: none; font-weight: 500; transition: gap .3s, color .3s; }
.svc-card:hover .svc-cta { gap: .9rem; color: var(--dark); }
.svc-cta::after { content: '→'; font-size: 1rem; line-height: 1; transition: transform .3s; }
.svc-card:hover .svc-cta::after { transform: translateX(3px); }
.svc-meta { font-family: var(--font-serif); font-size: .76rem; font-style: italic; color: var(--mid); letter-spacing: .02em; }
.svc-badge { position: absolute; top: 1rem; right: 1rem; font-size: .5rem; letter-spacing: .22em; text-transform: uppercase; background: var(--dark); color: var(--gold-light); padding: .35rem .65rem; font-weight: 500; z-index: 2; }
.svc-badge::before { content: '★'; margin-right: .4rem; color: var(--gold); }

/* ══════════════════════════════════════════
   QUOTE
══════════════════════════════════════════ */
.quote-section {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(200,169,110,.08) 0%, transparent 60%);
  pointer-events: none;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: .4;
  color: var(--gold);
  opacity: .45;
  margin-bottom: 1.4rem;
  display: block;
  position: relative;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  max-width: 52ch;
  margin: 0 auto 1.4rem;
  letter-spacing: .005em;
  color: var(--white);
  position: relative;
}
.quote-text em { color: var(--gold-light); }
.quote-author {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  position: relative;
}

/* ══════════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════════ */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1100px;
  margin-inline: auto;
}
@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  padding: clamp(1.6rem, 4vw, 2.2rem) clamp(1.4rem, 3vw, 2rem);
  border-left: 2px solid var(--gold);
  transition: transform .4s var(--ease-out), box-shadow .4s;
  box-shadow: 0 2px 20px rgba(26,23,20,.05);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(200,169,110,.15);
}
.t-stars { color: var(--gold); font-size: .78rem; letter-spacing: 3px; margin-bottom: 1rem; }
.t-text {
  font-family: var(--font-serif);
  font-size: clamp(.98rem, 1.5vw, 1.08rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.68;
  color: var(--dark-mid);
  margin-bottom: 1.1rem;
}
.t-author { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--mid); }
.t-author strong { color: var(--dark); display: block; margin-bottom: .2rem; font-weight: 500; letter-spacing: .12em; }

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-final {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: 0;
}
.cta-final-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: stretch;
  min-height: 520px;
}
@media (max-width: 880px) { .cta-final-grid { grid-template-columns: 1fr; } }

.cta-final-img {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  order: 2;
}
.cta-final-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.cta-final-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(270deg, transparent 0%, rgba(26,23,20,.45) 100%);
}
.cta-final-body {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}
.cta-final-body .eyebrow { color: var(--gold-light); }
.cta-final-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  color: var(--white);
}
.cta-final-body h2 em { font-style: italic; color: var(--gold-light); }
.cta-final-body p { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.65; max-width: 440px; margin-bottom: 1.8rem; }
.cta-final-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.phone-link {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.phone-link:hover { color: var(--gold-light); border-color: var(--gold); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer.site-footer {
  background: var(--dark-mid);
  color: rgba(255,255,255,.65);
  padding: 3.5rem 0 1.8rem;
  font-size: .85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand .nav-monogram { color: var(--gold-light); margin-bottom: 1rem; background: transparent; }
.footer-logo-img { height: 80px; width: auto; display: block; }
.footer-name { font-family: var(--font-serif); color: var(--white); font-size: 1.1rem; letter-spacing: .08em; margin-bottom: .35rem; text-transform: uppercase; }
.footer-role { font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-text { line-height: 1.7; max-width: 320px; }
.footer-text a { color: var(--gold-light); text-decoration: none; }
.footer-text a:hover { color: var(--white); }
.footer-col h4 { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .65rem; }
.footer-col a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .7rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
}

/* ══════════════════════════════════════════
   FAB + STICKY MOBILE
══════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 1.4rem; right: 1.4rem;
  width: 58px; height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.7);
  animation: wa-pulse 2.4s infinite;
  z-index: 150;
  transition: transform .25s;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 28px; height: 28px; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.7); }
  70%  { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}


/* ══════════════════════════════════════════
   SUBPAGE HEADER
══════════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(200,169,110,.12) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero-eyebrow { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; }
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { font-size: clamp(.95rem, 1.6vw, 1.1rem); color: rgba(255,255,255,.78); line-height: 1.7; max-width: 560px; }
.breadcrumb { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 .5rem; opacity: .5; }
@media (max-width: 480px) { .page-hero { padding: 7.5rem 0 3rem; } }

/* ══════════════════════════════════════════
   MOBILE CLEANUP — less density on small phones
══════════════════════════════════════════ */
@media (max-width: 480px) {
  section { padding-top: 2.8rem; padding-bottom: 2.8rem; }
  .about-img-accent { display: none; }
  .about-img-main { width: 100%; }
  .about-imgs { padding-bottom: 0; min-height: unset; }
  .clinic-img { aspect-ratio: 21/9; }
  .svc-panel { padding: 1.6rem 1.4rem 1.4rem; }
  .svc-panel-num { font-size: 1.8rem; }
  .svc-item { padding: .65rem 0; }
  .testimonial-card { padding: 1.4rem 1.2rem; }
}
