/* =========================================================
   Aesthetic Derm Clinic — Premium Aesthetic Luxury
   Ivory base · magenta-pink primary · antique-gold accent
   serif display + clean sans body
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Colour */
  --clr-ivory:   #FBF6F1;
  --clr-cream:   #F4E9E1;
  --clr-ink:     #25141C;
  --clr-ink-soft:#6E5C63;
  --clr-pink:    #D6157F;
  --clr-pink-d:  #B01066;
  --clr-pink-l:  #FBE3F0;
  --clr-gold:    #C29A52;
  --clr-gold-d:  #A07E37;
  --clr-gold-l:  #ECDCB8;
  --clr-line:    #EADFD6;
  --clr-white:   #FFFFFF;

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Fluid spacing */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1.25rem);
  --space-md: clamp(1.25rem, 3vw, 2rem);
  --space-lg: clamp(2.5rem, 6vw, 5rem);
  --space-xl: clamp(4rem, 10vw, 9rem);

  --radius: 14px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -28px rgba(37, 20, 28, 0.34);
  --shadow-sm: 0 10px 30px -18px rgba(37, 20, 28, 0.38);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--clr-ink);
  background: var(--clr-ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-md); }
.section { padding-block: var(--space-xl); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; color: var(--clr-pink-d); font-weight: 500; }
.display-2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clr-gold-d);
  margin-bottom: var(--space-sm);
}
.eyebrow-light { color: var(--clr-gold-l); }
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--clr-ink-soft);
  max-width: 48ch;
  margin-block: var(--space-md);
}
.lede strong { color: var(--clr-ink); font-weight: 600; }
.section-head { text-align: center; max-width: 64ch; margin-inline: auto; margin-bottom: var(--space-lg); }
.section-sub { color: var(--clr-ink-soft); margin-top: var(--space-sm); font-size: 1.05rem; }
.section-sub.light { color: rgba(255,255,255,0.85); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 0.72em 1.5em; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 0.95em 2em; font-size: 1rem; }
.btn-accent { background: var(--clr-pink-d); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--clr-ink); }
.btn-outline { border-color: var(--clr-ink); color: var(--clr-ink); }
.btn-outline:hover { background: var(--clr-ink); color: #fff; }
.btn-ghost { color: var(--clr-ink); padding-inline: 0.9em; }
.btn-ghost:hover { color: var(--clr-pink-d); transform: none; }
.btn-light { background: #fff; color: var(--clr-ink); }
.btn-light:hover { background: var(--clr-pink-l); }

.link-arrow { color: var(--clr-pink-d); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.03em; }
.link-arrow span { transition: transform .3s var(--ease); display: inline-block; }
.link-arrow:hover span { transform: translateX(5px); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--clr-ink); color: #fff; padding: 0.7em 1.2em; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Brand logo image ---------- */
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 56px; width: auto; display: block; }
.footer-brand .brand-logo { height: 78px; margin-bottom: var(--space-sm); }

/* ---------- Card icon (visuals on cards) ---------- */
.card-icon {
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px; background: var(--clr-pink-l); color: var(--clr-pink-d);
  margin-bottom: var(--space-sm); flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.offer-card .card-icon { margin-inline: auto; }

/* ---------- Brand lockup (legacy text, kept as fallback) ---------- */
.brand-text { display: inline-flex; flex-direction: column; line-height: 0.95; }
.brand-name {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 600;
  letter-spacing: 0.01em; color: var(--clr-gold-d);
}
.brand-a { color: var(--clr-pink); }
.brand-sub {
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--clr-gold-d);
  margin-top: 2px; padding-left: 1px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(251, 246, 241, 0.0);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: var(--space-sm);
}
.site-header.scrolled {
  background: rgba(251, 246, 241, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--clr-line);
}
.header-inner { display: flex; align-items: center; gap: var(--space-md); }
.primary-nav { margin-inline: auto; }
.primary-nav ul { display: flex; gap: clamp(1rem, 2.4vw, 2.4rem); }
.primary-nav a { font-size: 0.92rem; color: var(--clr-ink); position: relative; padding-block: 0.3em; }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--clr-pink-d); transition: width .3s var(--ease);
}
.primary-nav a:hover::after { width: 100%; }
.header-cta { display: flex; gap: 0.5rem; }

/* ---------- Dropdown / mega-menu ---------- */
.has-dropdown { position: relative; }
.has-dropdown > a::before { content: ""; }
.dd-toggle::after { content: " \25BE"; font-size: 0.7em; opacity: 0.7; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  border: 1px solid var(--clr-line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: var(--space-md);
  display: grid; grid-template-columns: repeat(3, minmax(155px, 1fr)); gap: var(--space-md);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease);
  width: max-content; max-width: 90vw; margin-top: 6px;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dd-col h5 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--clr-gold-d); margin-bottom: 0.7em; }
.dd-col a { display: block; font-size: 0.9rem; color: var(--clr-ink); padding: 0.32em 0; }
.dd-col a:hover { color: var(--clr-pink-d); }
.dd-col a::after { display: none; }

/* mobile submenu */
.mobile-nav .m-group > span { display: block; padding: 0.9em 0 0.3em; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--clr-gold-d); }
.mobile-nav .m-sub a { padding: 0.5em 0 0.5em 1rem !important; font-size: 0.96rem !important; border: 0 !important; }
.mobile-nav .m-sub .m-sub-h { padding: 0.7em 0 0.2em; margin: 0; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--clr-pink-d); font-weight: 700; }
.mobile-nav .m-sub .m-sub-h:first-child { padding-top: 0.2em; }
.mobile-nav .m-acc { border-bottom: 1px solid var(--clr-line); }
.mobile-nav .m-acc:last-child { border-bottom: 0; }
.mobile-nav .m-acc > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 0.75em 0; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--clr-pink-d); }
.mobile-nav .m-acc > summary::-webkit-details-marker { display: none; }
.mobile-nav .m-acc > summary::after { content: "+"; font-size: 1.25rem; font-weight: 400; line-height: 1; color: var(--clr-gold-d); }
.mobile-nav .m-acc[open] > summary::after { content: "\2212"; }
.mobile-nav .m-acc[open] > summary { color: var(--clr-gold-d); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--clr-ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(7rem, 14vw, 11rem); padding-bottom: var(--space-lg); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg); align-items: center;
}
.hero-stats {
  display: flex; gap: var(--space-md); margin-block: var(--space-md);
  border-top: 1px solid var(--clr-line); padding-top: var(--space-md);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats .num { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--clr-ink); font-weight: 600; }
.hero-stats .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--clr-ink-soft); margin-top: 0.4em; }
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

.hero-media { position: relative; }
.media-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 5; will-change: transform;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero carousel ---------- */
.hero-carousel { position: relative; }
.carousel-track { position: relative; width: 100%; height: 100%; }
.carousel-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden; transform: scale(1.04);
  transition: opacity .9s var(--ease), transform 6s linear, visibility 0s linear .9s;
}
.carousel-slide.is-active {
  opacity: 1; visibility: visible; transform: scale(1);
  transition: opacity .9s var(--ease), transform 6s linear;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4em 1.2em 1em; color: #fff; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: linear-gradient(to top, rgba(40,12,28,0.78), rgba(40,12,28,0));
}
.carousel-dots {
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2;
  display: flex; justify-content: center; gap: 8px;
}
.carousel-dots .dot {
  width: 9px; height: 9px; padding: 0; border: none; border-radius: 100px; cursor: pointer;
  background: rgba(255,255,255,0.55); box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
  transition: width .3s var(--ease), background .3s var(--ease);
}
.carousel-dots .dot.is-active { width: 26px; background: var(--clr-gold); }

.float-badge {
  position: absolute; left: -18px; bottom: 32px;
  background: #fff; color: var(--clr-ink); font-weight: 600; font-size: 0.85rem;
  padding: 0.8em 1.2em; border-radius: 100px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-gold-l);
}

/* ---------- Trust bar (looping marquee) ---------- */
.trust-bar { background: var(--clr-ink); color: #fff; padding-block: var(--space-md); overflow: hidden; }
.marquee { position: relative; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: flex; width: max-content; will-change: transform;
  animation: marquee-scroll 32s linear infinite; }
.trust-bar:hover .marquee-track { animation-play-state: paused; }
.marquee .chip {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 0.5em;
  margin-right: var(--space-md);
  padding: 0.7em 1.3em; border-radius: 100px; white-space: nowrap;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; color: #fff;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(220,170,90,0.45);
}
.marquee .chip::before { content: "✦"; color: var(--clr-gold); font-size: 0.85em; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-lg); align-items: center; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-copy p { color: var(--clr-ink-soft); margin-top: var(--space-sm); max-width: 54ch; }
.about-copy p strong { color: var(--clr-ink); }
.about-copy .display-2 { margin-bottom: var(--space-sm); }
.about-copy .mission {
  font-family: var(--font-display); font-style: italic; font-size: 1.35rem; line-height: 1.4;
  color: var(--clr-ink); border-left: 3px solid var(--clr-gold); padding-left: var(--space-md);
  margin-block: var(--space-md);
}
.about-copy .btn { margin-top: var(--space-sm); }

/* ---------- Doctor ---------- */
.doctor { background: linear-gradient(180deg, var(--clr-ivory), var(--clr-cream)); }
.doctor-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-lg); align-items: center; }
.doctor-copy p { color: var(--clr-ink-soft); margin-top: var(--space-sm); max-width: 54ch; }
.doctor-role { font-weight: 600; color: var(--clr-pink-d) !important; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; margin-top: 0.4em !important; }
.doctor-facts { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-md); border-top: 1px solid var(--clr-line); padding-top: var(--space-md); }
.doctor-facts li { font-size: 0.92rem; color: var(--clr-ink-soft); }
.doctor-facts strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--clr-ink); font-weight: 600; }
.doctor-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/6; position: relative; }
.doctor-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--clr-gold-l); border-radius: var(--radius-lg); pointer-events: none; }
.doctor-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.service-card {
  background: #fff; border: 1px solid var(--clr-line); border-radius: var(--radius);
  padding: var(--space-md); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-art { height: 120px; border-radius: 10px; margin-bottom: var(--space-sm); }
.card-thumb { display: block; width: 100%; height: 150px; object-fit: cover; border-radius: 10px;
  margin-bottom: var(--space-sm); background: linear-gradient(135deg, #FBE3F0, #ECC4DA); }
.service-card .card-thumb { height: 120px; }
.offer-card .card-thumb { height: 165px; }
.section-photo { display: block; width: 100%; max-width: 960px; margin: 0 auto; height: auto;
  border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; }
.section-photo.tall { max-height: 460px; }

/* ---------- Photo gallery (e.g. laser areas we treat) ---------- */
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: var(--space-md); }
.photo-gallery figure { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); aspect-ratio: 1 / 1; }
.photo-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.photo-gallery figure:hover img { transform: scale(1.06); }
.photo-gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 1.4em 1em 0.9em;
  color: #fff; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
  background: linear-gradient(to top, rgba(40,12,28,0.82), rgba(40,12,28,0)); }
@media (max-width: 540px) { .photo-gallery { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .photo-gallery figcaption { font-size: 0.78rem; padding: 1em 0.7em 0.6em; } }
.art-skin  { background: linear-gradient(135deg, #FBE3F0, #ECC4DA); }
.art-laser { background: linear-gradient(135deg, #F4E9E1, #E0C79E); }
.art-body  { background: linear-gradient(135deg, #F6E7EF, #D7B7C9); }
.art-hair  { background: linear-gradient(135deg, #F3E4EC, #D4B0C4); }
.service-card h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; margin-bottom: 0.4em; color: var(--clr-pink); }
.service-list li { color: var(--clr-ink-soft); font-size: 0.92rem; padding-left: 1.1em; position: relative; margin-bottom: 0.3em; }
.service-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; border-radius: 50%; background: var(--clr-pink); }

.stat-band {
  margin-top: var(--space-lg); text-align: center;
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.3;
  color: var(--clr-ink); max-width: 32ch; margin-inline: auto;
}
.stat-band .num, .stat-band span { color: var(--clr-pink-d); font-weight: 600; font-style: italic; }
.band-soft { color: var(--clr-ink); }

/* ---------- Results / Before-After ---------- */
.results { background: linear-gradient(180deg, var(--clr-cream), var(--clr-ivory)); }
.ba-carousel {
  position: relative; margin: 0 auto; max-width: 440px; width: 100%;
  aspect-ratio: 9 / 16; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--clr-cream); user-select: none;
}
.ba-carousel .carousel-track { position: relative; width: 100%; height: 100%; }
.ba-carousel .carousel-slide img { object-fit: contain; }

/* ---------- Video testimonials slider ---------- */
.testimonials-vid { background: linear-gradient(180deg, var(--clr-ivory), var(--clr-cream)); }
.vid-slider { position: relative; margin-top: var(--space-lg); }
.vid-rail {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 4px 12px; -ms-overflow-style: none; scrollbar-width: none;
}
.vid-rail::-webkit-scrollbar { display: none; }
.vid-card { flex: 0 0 auto; width: 250px; margin: 0; scroll-snap-align: center; }
.vid-card video, .vid-card img {
  width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow); background: #000; cursor: pointer;
}
.vid-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; color: var(--clr-ink); box-shadow: var(--shadow);
  font-size: 1.6rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.vid-nav:hover { background: var(--clr-gold); color: #fff; }
.vid-prev { left: -10px; } .vid-next { right: -10px; }
@media (max-width: 640px) {
  .vid-card { width: 70vw; max-width: 280px; }
  .vid-prev { left: -4px; } .vid-next { right: -4px; }
}

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.why-card {
  background: #fff; border: 1px solid var(--clr-line); border-radius: var(--radius);
  padding: var(--space-md); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border-top: 3px solid var(--clr-gold);
  display: flex; flex-direction: column; align-items: flex-start;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.3em; }
.why-card p { color: var(--clr-ink-soft); font-size: 0.95rem; }
.why-photo {
  order: -1; width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: 10px; margin-bottom: var(--space-md); display: block;
}

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.review-card {
  background: #fff; border: 1px solid var(--clr-line); border-radius: var(--radius);
  padding: var(--space-md);
}
.review-card p { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.45; font-style: italic; color: var(--clr-ink); margin-bottom: var(--space-sm); }
.review-card cite { font-style: normal; font-weight: 600; display: flex; flex-direction: column; }
.review-card cite span { font-weight: 400; font-size: 0.82rem; color: var(--clr-ink-soft); margin-top: 2px; }

/* ---------- Elfsight Google Reviews widget ---------- */
.elf-reviews { width: 100%; margin-inline: auto; }
.elf-reviews .elfsight-app-0a58fdb6-5b15-4c5d-9e62-32ca0e3080fb {
  min-height: 440px;                 /* reserve height to avoid CLS while loading */
  content-visibility: auto;
  contain-intrinsic-size: 440px;
}
@media (max-width: 600px) {
  .elf-reviews .elfsight-app-0a58fdb6-5b15-4c5d-9e62-32ca0e3080fb {
    min-height: 520px; contain-intrinsic-size: 520px;
  }
}

/* ---------- Branches ---------- */
.branches { background: linear-gradient(180deg, var(--clr-ivory), var(--clr-cream)); }
.branch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.branch-card {
  background: #fff; border: 1px solid var(--clr-line); border-radius: var(--radius);
  padding: var(--space-lg); border-left: 4px solid var(--clr-pink);
}
.branch-card h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; margin-bottom: var(--space-sm); }
.branch-card address { font-style: normal; color: var(--clr-ink-soft); line-height: 1.7; margin-bottom: 0.5em; }
.branch-hours { font-size: 0.9rem; font-weight: 600; color: var(--clr-gold-d); margin-bottom: var(--space-md); }
.branch-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.branch-actions .btn { font-size: 0.88rem; }

/* ---------- Final CTA ---------- */
.cta-final {
  background:
    linear-gradient(rgba(37,20,28,0.66), rgba(37,20,28,0.78)),
    url("images/cta-beauty-model.jpg") center 28%/cover fixed;
  color: #fff; text-align: center;
}
.cta-box { max-width: 60ch; margin-inline: auto; }
.cta-final .display-2 { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--clr-cream); padding-top: var(--space-lg); border-top: 1px solid var(--clr-line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: var(--space-md); padding-bottom: var(--space-lg); }
.footer-brand p { color: var(--clr-ink-soft); margin-top: var(--space-sm); max-width: 36ch; font-size: 0.95rem; }
.site-footer h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--clr-gold-d); margin-bottom: var(--space-sm); }
.site-footer nav li { margin-bottom: 0.55em; }
.site-footer nav a, .footer-contact a { font-size: 0.95rem; transition: color .25s var(--ease); }
.site-footer nav a:hover, .footer-contact a:hover { color: var(--clr-pink-d); }
.footer-brand p a { color: var(--clr-pink-d); font-weight: 600; }
.footer-insta { display: inline-block; margin-top: 0.5em; font-size: 0.9rem; }
.footer-brand p a:hover { color: var(--clr-gold-d); }

/* ---------- Instagram icon + links ---------- */
.ig-ic { width: 1.05em; height: 1.05em; fill: currentColor; vertical-align: -0.18em; flex-shrink: 0; }
.insta-link { display: inline-flex; align-items: center; gap: 0.35em; color: var(--clr-pink-d); font-weight: 600; }
.insta-link:hover { color: var(--clr-gold-d); }
.btn-icon { padding-inline: 0.85em; }
.btn-icon .ig-ic { width: 1.3em; height: 1.3em; vertical-align: middle; }
.footer-contact p { margin-bottom: 0.5em; font-size: 0.95rem; color: var(--clr-ink-soft); }
.footer-contact p strong { color: var(--clr-ink); }
.footer-contact a { overflow-wrap: anywhere; }
/* stacked branch block — name, phone, email, instagram each on their own line */
.footer-branch { margin-bottom: var(--space-sm); }
.footer-branch p { margin-bottom: 0.18em; line-height: 1.5; }
.footer-branch .fb-name { margin-bottom: 0.3em; }
.footer-branch .fb-name strong { color: var(--clr-ink); }
.footer-links { margin-top: var(--space-sm); }
.footer-policies { font-size: 0.88rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm); padding-block: var(--space-md); border-top: 1px solid var(--clr-line); font-size: 0.85rem; color: var(--clr-ink-soft); }
.footer-credit { background: var(--clr-ink); color: rgba(255,255,255,0.82); text-align: center; padding-block: 0.95em; font-size: 0.84rem; letter-spacing: 0.01em; }
.footer-credit a { color: var(--clr-gold); font-weight: 600; transition: color .25s var(--ease); }
.footer-credit a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 600px) {
  .footer-bottom { justify-content: center; text-align: center; gap: 0.4em var(--space-md); }
}

/* ---------- Service / inner pages ---------- */
.subhero { padding-top: clamp(7.5rem, 14vw, 10.5rem); padding-bottom: var(--space-lg); background: linear-gradient(180deg, var(--clr-cream), var(--clr-ivory)); }
.breadcrumb { font-size: 0.8rem; letter-spacing: 0.03em; color: var(--clr-ink-soft); margin-bottom: var(--space-md); }
.breadcrumb a { color: var(--clr-gold-d); }
.breadcrumb a:hover { color: var(--clr-pink-d); }
.breadcrumb span { margin-inline: 0.4em; opacity: 0.5; }
.subhero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-lg); align-items: center; }
.subhero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.04; letter-spacing: -0.02em; margin-bottom: var(--space-sm); }
.subhero-media .media-frame { aspect-ratio: 4 / 3.2; }

.prose { max-width: 70ch; margin-inline: auto; }
.prose.left { margin-inline: 0; }
.prose p { color: var(--clr-ink-soft); margin-top: var(--space-sm); }
.prose p strong { color: var(--clr-ink); }
.prose .display-2 { margin-bottom: var(--space-xs); }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.benefit-card { background: #fff; border: 1px solid var(--clr-line); border-radius: var(--radius); padding: var(--space-md); border-top: 3px solid var(--clr-pink); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.25em; }
.benefit-card p { color: var(--clr-ink-soft); font-size: 0.93rem; }

.faq-list { max-width: 840px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--clr-line); border-radius: var(--radius); margin-bottom: var(--space-sm); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: var(--space-md); font-weight: 600; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--clr-pink-d); font-size: 1.5rem; line-height: 1; transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 var(--space-md) var(--space-md); color: var(--clr-ink-soft); }

.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.related-card { display: block; background: #fff; border: 1px solid var(--clr-line); border-radius: var(--radius); padding: var(--space-md); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.related-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.4em; }
.related-card .link-arrow span { display: inline-block; }

.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }

/* ---------- Timeline (About / Doctor) ---------- */
.timeline { max-width: 760px; margin-inline: auto; }
.timeline-item { position: relative; padding: 0 0 var(--space-lg) var(--space-lg); border-left: 2px solid var(--clr-gold-l); }
.timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--clr-pink); box-shadow: 0 0 0 4px var(--clr-pink-l); }
.timeline-item h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.2em; }
.timeline-item p { color: var(--clr-ink-soft); }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.blog-card { background: #fff; border: 1px solid var(--clr-line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card .blog-img { aspect-ratio: 16/10; overflow: hidden; background: var(--clr-pink-l); }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .blog-body { padding: var(--space-md); display: flex; flex-direction: column; gap: 0.5em; flex: 1; }
.blog-card .blog-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--clr-gold-d); font-weight: 600; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; line-height: 1.2; }
.blog-card p { color: var(--clr-ink-soft); font-size: 0.92rem; }
.blog-card .link-arrow { margin-top: auto; }

/* ---------- Gallery tiles ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile figcaption { position: absolute; left: 12px; bottom: 12px; background: rgba(37,20,28,0.62); color: #fff; font-size: 0.78rem; letter-spacing: 0.06em; padding: 0.35em 0.8em; border-radius: 100px; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--clr-line); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-sm); max-width: 560px; margin-inline: auto; }
.form-row { display: grid; gap: var(--space-sm); }
.form-row.two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.35em; margin-bottom: var(--space-sm); }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--clr-ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--clr-ink);
  padding: 0.75em 0.9em; border: 1px solid var(--clr-line); border-radius: 10px; background: var(--clr-ivory);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clr-pink); box-shadow: 0 0 0 3px var(--clr-pink-l); }
.field textarea { resize: vertical; min-height: 90px; }
.form-card .btn { width: 100%; margin-top: var(--space-xs); }
.form-note { font-size: 0.82rem; color: var(--clr-ink-soft); text-align: center; margin-top: var(--space-sm); }

/* ---------- Contact / split ---------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: start; }
.info-list li { padding: var(--space-sm) 0; border-bottom: 1px solid var(--clr-line); }
.info-list li strong { display: block; font-family: var(--font-display); font-size: 1.3rem; }
.info-list li a { color: var(--clr-pink-d); }

/* ---------- Offers ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.offer-card { background: #fff; border: 1px solid var(--clr-line); border-radius: var(--radius); padding: var(--space-lg); text-align: center; border-top: 4px solid var(--clr-gold); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.offer-card .tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--clr-pink-d); font-weight: 600; }
.offer-card h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; margin: 0.2em 0; }
.offer-card p { color: var(--clr-ink-soft); font-size: 0.92rem; margin-bottom: var(--space-sm); }


/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }

/* ---------- Page route transition ---------- */
.page-enter { animation: pageEnter .55s var(--ease) both; }
@keyframes pageEnter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- Extra hover micro-interactions ---------- */
.why-card .why-photo { transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.why-card:hover .why-photo { transform: scale(1.05); box-shadow: var(--shadow-sm); }
.offer-card, .review-card { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.offer-card:hover, .review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-thumb { transition: transform .5s var(--ease); }
.offer-card:hover .card-thumb { transform: scale(1.05); }
.hero-actions .btn, .cta-box .btn { transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease); }
.btn-accent:hover { box-shadow: 0 14px 30px -12px var(--clr-pink-d); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { justify-content: space-between; }
  .brand-logo { height: 46px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .media-frame { aspect-ratio: 16 / 12; }
  .about-grid, .doctor-grid { grid-template-columns: 1fr; }
  .doctor-media, .about-media { order: -1; max-width: 460px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery, .review-grid, .branch-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .subhero-grid { grid-template-columns: 1fr; }
  .subhero-media { order: -1; max-width: 520px; }
  .benefit-grid, .related-grid, .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; }
  .offer-grid, .blog-grid, .tile-grid { grid-template-columns: repeat(2, 1fr); }

  .mobile-nav {
    display: block; max-height: 0; overflow: hidden;
    background: rgba(251,246,241,0.98); backdrop-filter: blur(12px);
    transition: max-height .4s var(--ease);
  }
  .mobile-nav.open { max-height: 78vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .mobile-nav ul { padding: var(--space-md); }
  .mobile-nav li { border-bottom: 1px solid var(--clr-line); }
  .mobile-nav a { display: block; padding: 0.9em 0; font-size: 1.05rem; }

  .cta-final { background-attachment: scroll; }
}

@media (max-width: 540px) {
  .service-grid, .why-grid { grid-template-columns: 1fr; }
  .benefit-grid, .related-grid, .hub-grid { grid-template-columns: 1fr; }
  .offer-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-badge { left: 0; }

  /* --- Premium, airier mobile hero --- */
  .hero { padding-top: clamp(5.5rem, 19vw, 7.5rem); padding-bottom: var(--space-md); }
  .hero-grid { gap: var(--space-md); }
  .hero-media .media-frame { aspect-ratio: 4 / 5; box-shadow: 0 30px 60px -30px rgba(37,20,28,0.45); }
  .hero-copy .eyebrow { font-size: 0.6rem; letter-spacing: 0.15em; line-height: 1.6; }
  .hero-copy .display { font-size: clamp(2.6rem, 13vw, 3.2rem); line-height: 1.02; margin-bottom: 0.4em; }
  .hero-copy .lede { font-size: 1.02rem; line-height: 1.6; }
  .hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm) var(--space-md); margin-block: var(--space-md); padding-top: var(--space-md); }
  .hero-stats li { flex: 0 1 auto; align-items: center; text-align: center; min-width: 0; }
  .hero-stats .num { font-size: 1.8rem; }
  .hero-stats .lbl { font-size: 0.56rem; letter-spacing: 0.05em; line-height: 1.25; white-space: normal; }
  .hero .hero-actions { flex-direction: column; align-items: stretch; gap: 0.65rem; }
  .hero .hero-actions .btn { width: 100%; }
}

/* Very small phones (iPhone SE, Galaxy S, etc.) */
@media (max-width: 380px) {
  .container { padding-inline: 1.1rem; }
  .hero-stats { gap: 0.6rem; }
  .hero-stats .num { font-size: 1.7rem; }
  .hero-stats .lbl { font-size: 0.66rem; letter-spacing: 0.08em; }
  .btn { padding: 0.7em 1.15em; font-size: 0.9rem; }
  .btn-lg { padding: 0.85em 1.3em; }
  .display { font-size: clamp(2.4rem, 11vw, 2.9rem); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .btn:hover, .service-card:hover, .product-card:hover, .why-card:hover,
  .offer-card:hover, .review-card:hover { transform: none; }
  .why-card:hover .why-photo, .offer-card:hover .card-thumb { transform: none; }
  .page-enter { animation: none !important; }
  .media-frame { will-change: auto; }
  .wa-fab, .wa-popup:not([hidden]) { animation: none !important; }
}

/* ---------- Floating WhatsApp chat ---------- */
.wa-widget { position: fixed; right: 22px; bottom: 24px; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.wa-fab {
  position: relative; width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer;
  background: #25D366; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  display: grid; place-items: center; transition: transform .25s var(--ease);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 34px; height: 34px; fill: #fff; }
/* floating call button — sits directly above the WhatsApp button */
.call-fab {
  width: 60px; height: 60px; border-radius: 50%; cursor: pointer;
  background: var(--clr-pink-d); color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  display: grid; place-items: center; transition: transform .25s var(--ease), opacity .2s var(--ease), visibility .2s var(--ease);
}
.call-fab:hover { transform: scale(1.06); }
.call-fab svg { width: 30px; height: 30px; fill: #fff; }
/* hide the call button while the WhatsApp chat panel is open (avoids overlap) */
.wa-widget:has(.wa-fab.is-open) .call-fab { opacity: 0; visibility: hidden; transform: scale(.6); pointer-events: none; }
.wa-fab-badge {
  position: absolute; top: -3px; right: -3px; min-width: 20px; height: 20px;
  background: #ff3b30; color: #fff; border-radius: 100px; font-size: 0.72rem; font-weight: 700;
  display: grid; place-items: center; padding: 0 5px; box-shadow: 0 0 0 2px #fff;
}
.wa-fab.is-open { animation: none; }
.wa-fab.is-open .wa-fab-badge { display: none; }
@keyframes waPulse { 0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 0 0 12px rgba(37,211,102,0); } }

.wa-popup {
  position: absolute; right: 0; bottom: 76px; width: 300px; max-width: calc(100vw - 44px);
  background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.wa-popup[hidden] { display: none; }
.wa-popup:not([hidden]) { animation: waPop .22s var(--ease); }
@keyframes waPop { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }
.wa-popup-head { display: flex; align-items: center; gap: 10px; background: #075E54; color: #fff; padding: 14px 16px; }
.wa-popup-avatar { width: 38px; height: 38px; border-radius: 50%; background: #25D366; display: grid; place-items: center; flex: none; }
.wa-popup-avatar svg { width: 22px; height: 22px; fill: #fff; }
.wa-popup-meta strong { display: block; font-size: 0.95rem; line-height: 1.2; }
.wa-popup-status { font-size: 0.72rem; opacity: 0.85; }
.wa-popup-close { margin-left: auto; background: none; border: 0; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; opacity: 0.85; padding: 0 2px; }
.wa-popup-close:hover { opacity: 1; }
.wa-popup-body { background: #ECE5DD; padding: 18px 16px; }
.wa-bubble { background: #fff; border-radius: 0 12px 12px 12px; padding: 10px 13px; font-size: 0.9rem; line-height: 1.5; color: var(--clr-ink); box-shadow: 0 1px 2px rgba(0,0,0,0.12); }
.wa-faqs { display: flex; flex-direction: column; gap: 7px; margin-top: 12px; }
.wa-faq { text-align: left; background: #fff; border: 1px solid var(--clr-line); border-radius: 12px; padding: 9px 12px; font: inherit; font-size: 0.86rem; color: var(--clr-ink); cursor: pointer; transition: background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease); box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.wa-faq:hover { background: var(--clr-pink-l); border-color: var(--clr-pink); transform: translateY(-1px); }
.wa-popup-cta { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: #fff; font-weight: 600; padding: 13px; text-decoration: none; transition: background .2s var(--ease); }
.wa-popup-cta:hover { background: #1ebe5a; }
.wa-popup-cta svg { width: 20px; height: 20px; fill: #fff; }

@media (max-width: 720px) {
  .wa-widget { right: 16px; bottom: calc(18px + env(safe-area-inset-bottom)); gap: 12px; }
  .wa-fab { width: 54px; height: 54px; }
  .wa-fab svg { width: 30px; height: 30px; }
  .call-fab { width: 54px; height: 54px; }
  .call-fab svg { width: 28px; height: 28px; }
}

/* ---------- Book appointment modal ---------- */
.book-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: var(--space-md); }
.book-modal[hidden] { display: none; }
.book-modal-overlay { position: absolute; inset: 0; background: rgba(37,20,28,0.55); backdrop-filter: blur(2px); }
.book-modal-card {
  position: relative; z-index: 1; width: 100%; max-width: 420px; background: var(--clr-white);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.3rem); box-shadow: var(--shadow);
  max-height: 92vh; overflow-y: auto; animation: waPop .22s var(--ease);
}
.book-modal-x { position: absolute; top: 12px; right: 16px; background: none; border: 0; font-size: 1.8rem; line-height: 1; color: var(--clr-ink-soft); cursor: pointer; padding: 0 4px; }
.book-modal-x:hover { color: var(--clr-ink); }
.book-modal-card h3 { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.1rem); font-weight: 600; color: var(--clr-ink); }
.book-modal-sub { color: var(--clr-ink-soft); font-size: 0.95rem; margin: 0.35em 0 1.1em; }
.book-modal-card .btn { width: 100%; margin-top: var(--space-xs); }
