

:root {
  /* Color */
  --ink:        #16332B;   /* deep pine — headings, dark sections */
  --ink-soft:   #3E4C47;   /* body text on light backgrounds */
  --mist:       #EFF3EE;   /* page background — soft sage porcelain */
  --surface:    #FFFFFF;   /* cards */
  --line:       #DCE3DC;   /* hairlines / borders */
  --gold:       #C79A44;   /* primary accent — CTAs, highlights */
  --gold-deep:  #A67F34;
  --plum:       #7A3B4E;   /* secondary accent — hair transplant, specialist */
  --plum-soft:  #F3E7EA;
  --cream-on-ink: #E8EDE7;

  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;

  /* Scale */
  --step--1: clamp(0.85rem, 0.82rem + 0.15vw, 0.95rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1:  clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.6rem, 1.4rem + 1vw, 2.1rem);
  --step-3:  clamp(2.1rem, 1.7rem + 1.8vw, 3rem);
  --step-4:  clamp(2.6rem, 2rem + 3vw, 4.2rem);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--mist);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0 0 0.5em; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: var(--step-4); line-height: 1.05; font-weight: 500; }
h2 { font-size: var(--step-3); line-height: 1.1; }
h3 { font-size: var(--step-2); line-height: 1.2; }
p { margin: 0 0 1em; }
button { font-family: inherit; }

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

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 9vw, 112px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section--ink { background: var(--ink); color: var(--cream-on-ink); }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--gold { background: var(--gold); color: var(--ink); }
.section--gold h2, .section--gold h3 { color: var(--ink); }
.section--gold .eyebrow { color: var(--ink); }
.section--gold .eyebrow::before { background: var(--ink); }
.section--gold .form-note { color: rgba(22, 51, 43, 0.72); }
.section--plum { background: var(--plum); color: var(--plum-soft); }
.section--plum h2 { color: #fff; }
.hair-restoration-section {
  background: linear-gradient(90deg, rgba(122, 59, 78, 0.88), rgba(122, 59, 78, 0.72)),
    url('/assets/images/hairtransplant.png') center/cover no-repeat;
}
.hair-restoration-section .split { position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold-deep);
}
.section--ink .eyebrow, .section--plum .eyebrow { color: var(--gold); }
.section--ink .eyebrow::before, .section--plum .eyebrow::before { background: var(--gold); }

.lede { font-size: var(--step-1); color: var(--ink-soft); max-width: 62ch; }
.section--ink .lede, .section--plum .lede { color: var(--cream-on-ink); opacity: 0.88; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-deep); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--ink); }
.section--ink .btn-outline, .section--plum .btn-outline { color: #fff; }
.btn-outline:hover { background: rgba(0,0,0,0.06); }
.section--ink .btn-outline:hover, .section--plum .btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-ghost { padding: 0; border-radius: 0; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(239, 243, 238, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 40px; max-height: 58px; height: auto; object-fit: contain; flex-shrink: 0; }
.brand-text { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); line-height: 1.15; }
.brand-text small { display: block; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); margin-top: 2px; }

.nav-links { display: flex; align-items: center; justify-content: center; gap: 24px; flex: 1; min-width: 0; margin: 0 22px; }
.nav-links a {
  font-size: var(--step--1); font-weight: 600; color: var(--ink-soft);
  position: relative; padding: 6px 0; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-dropdown { position: relative; }
.nav-dropdown summary { list-style: none; cursor: pointer; font-size: var(--step--1); font-weight: 600; color: var(--ink-soft); padding: 6px 0; white-space: nowrap; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: '▾'; margin-left: 6px; font-size: 0.7em; color: var(--gold-deep); }
.nav-submenu { position: absolute; top: calc(100% + 14px); left: -16px; min-width: 230px; display: none; gap: 2px; padding: 10px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(22, 51, 43, 0.12); }
.nav-submenu a { display: block; padding: 9px 10px; white-space: nowrap; }
.nav-submenu a:hover { background: var(--sage); }
.nav-dropdown[open] .nav-submenu,
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu { display: grid; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-cta .btn { padding: 9px 14px; font-size: 0.86rem; gap: 7px; white-space: nowrap; }
.nav-toggle { display: none; }

@media (max-width: 1100px) {
  .nav-links { position: fixed; top: 84px; right: 0; bottom: 0; left: 0; width: 100%; height: calc(100vh - 84px); box-sizing: border-box; z-index: 49; background:white; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 40px 24px; gap: 18px; overflow-y: auto; transform: translateX(100%); transition: transform .35s var(--ease); }
  .nav-links.is-open { transform: translateX(0); }
  .nav-dropdown { width: 100%; }
  .nav-submenu { position: static; min-width: 0; margin-top: 8px; padding: 4px 0 4px 12px; border: 0; box-shadow: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: transparent; }
  .header-cta .btn-outline { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(18px, 4vw, 40px) 0 clamp(24px, 5vw, 56px);
  overflow: hidden;
  background: #f1eee8;
}
.hero-slideshow {
  position: relative;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease, transform 8s ease;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  transform: scale(1.04);
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-page-hair {
  background:
    linear-gradient(90deg, rgba(234, 223, 203, 0.9) 0%, rgba(234, 223, 203, 0.8) 24%, rgba(234, 223, 203, 0.45) 42%, rgba(234, 223, 203, 0.2) 58%, rgba(234, 223, 203, 0) 100%),
    url('/assets/images/HairTransplant-Hero.jpg') center 28% / cover no-repeat;
}
.hero-page-plastic {
  background:
    linear-gradient(90deg, rgba(234, 223, 203, 0.9) 0%, rgba(234, 223, 203, 0.8) 24%, rgba(234, 223, 203, 0.45) 42%, rgba(234, 223, 203, 0.2) 58%, rgba(234, 223, 203, 0) 100%),
    url('/assets/images/Plasticsurgery-hero.jpg') center 38% / cover no-repeat;
}
.hero-page-skin {
  background:
    linear-gradient(90deg, rgba(234, 223, 203, 0.9) 0%, rgba(234, 223, 203, 0.8) 24%, rgba(234, 223, 203, 0.45) 42%, rgba(234, 223, 203, 0.2) 58%, rgba(234, 223, 203, 0) 100%),
    url('/assets/images/SkinTreatment-hero.jpg') center 45% / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(122, 91, 57, 0.28) 0%, rgba(122, 91, 57, 0.10) 30%, rgba(122, 91, 57, 0) 62%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  min-height: 470px;
  height: auto;
  padding: 30px 0;
}
.hero-copy {
  max-width: 660px;
  position: relative; z-index: 1;
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy > .eyebrow { display: inline-block; margin-bottom: 10px; }
.hero-eyebrow {
  color: var(--plum);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.hero-eyebrow::before {
  background: var(--plum);
}
.hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 1.7rem + 1.6vw, 3.4rem);
  line-height: 1.08;
}
.hero-copy h1 em { font-style: italic; color: var(--plum); }
.hero-copy .lede { margin: 0 0 18px; }
.hero-copy p:not(.lede) { margin-top: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 20px 0 18px; }
.hero-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(18px, 2.5vw, 52px);
  border-top: 1px solid rgba(22,51,43,0.12);
  padding-top: 26px;
}
.hero-stat {
  flex: 0 0 auto;
  min-width: 0;
}
.hero-stat .num { font-family: var(--font-mono); font-size: var(--step-2); color: var(--ink); display: block; white-space: nowrap; }
.hero-stat .label { font-size: var(--step--1); color: var(--ink-soft); white-space: nowrap; }

.about-hero {
  position: relative;
  padding: clamp(18px, 4vw, 40px) 0 clamp(24px, 5vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(240, 239, 234, 0.96) 0%, rgba(240, 239, 234, 0.88) 23%, rgba(240, 239, 234, 0.62) 42%, rgba(240, 239, 234, 0.15) 60%, rgba(240, 239, 234, 0) 100%),
    url('/assets/images/DrAdil.png') center center / cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15, 20, 18, 0.20) 0%, rgba(15, 20, 18, 0.05) 35%, rgba(15, 20, 18, 0) 70%);
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(270px, 0.7fr);
  gap: 28px;
  align-items: center;
}
.about-hero-copy {
  max-width: 720px;
  padding-top: 6px;
}
.about-hero-copy h1 {
  margin: 0 0 12px;
}
.about-hero-copy .lede {
  margin: 0 0 14px;
}
.about-hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.about-hero-visual img {
  width: min(100%, 420px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(22, 51, 43, 0.12));
}

.hero-badge {
  position: absolute; right: 54px; bottom: 20px;
  background: rgba(255,255,255,0.9); border: 1px solid rgba(22,51,43,0.18);
  border-radius: 999px; padding: 10px 18px; font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.04em; color: var(--ink);
  box-shadow: 0 12px 28px -14px rgba(22,51,43,0.35);
}

@media (max-width: 900px) {
  .hero-inner { min-height: 420px; }
  .hero-copy { max-width: 100%; }
  .hero-badge { right: 20px; bottom: 14px; }
  .about-hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .about-hero-copy { max-width: 100%; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat, .hero-stat .num, .hero-stat .label { white-space: normal; }
}

@media (max-width: 768px) {
  .site-header .container {
    height: auto;
    min-height: 84px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .brand {
    max-width: calc(100% - 62px);
  }
  .brand-text {
    font-size: 1rem;
  }
  .brand-text small {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }
  .hero,
  .about-hero {
    background-position: center center;
    background-size: cover;
  }
  .hero {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .hero-inner {
    min-height: auto;
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-slide {
    background-size: contain;
    background-position: top right;
    transform: scale(1.02);
  }
  .hero-slider {
    opacity: 0.88;
  }
  .review-track {
    display: block;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-auto-columns: unset;
    overflow-x: hidden;
    scroll-snap-type: none;
  }
  .section-head {
    margin-bottom: 28px;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .site-header .container {
    min-height: 76px;
  }
  .brand-mark {
    width: 32px;
  }
  .brand-text small {
    display: none;
  }
  .nav-links {
    padding: 28px 18px;
  }
  .nav-links a,
  .nav-dropdown summary {
    font-size: 0.98rem;
  }
  .hero-actions .btn,
  .btn {
    width: 100%;
    justify-content: center;
  }
  .hero {
    padding-top: 40px;
    padding-bottom: 52px;
  }
  .hero-copy h1 {
    margin-bottom: 14px;
  }
  .hero-stat .num {
    font-size: 1.5rem;
  }
  .card,
  .testimonial {
    padding: 22px;
  }
  .review-track {
    grid-auto-flow: row;
    grid-auto-columns: minmax(0, 1fr);
    overflow-x: hidden;
  }
  .faq-item summary {
    font-size: 0.96rem;
  }
  .site-footer {
    padding-top: 52px;
  }
  .float-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 14px;
    right: 14px;
  }
}

/* ==========================================================================
   Cards / Grids
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(22,51,43,0.28); border-color: transparent; }
.treatment-card {
  overflow: hidden;
  padding: 0;
}
.treatment-image-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef1ec;
}
.treatment-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}
.card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--plum-soft); color: var(--plum);
  display: flex; align-items: center; justify-content: center;
  margin: 22px 24px 18px;
}
.card h3 { font-size: var(--step-1); margin: 0 24px 8px; }
.card p { color: var(--ink-soft); font-size: var(--step--1); margin: 0 24px 0; }
.card-link { margin: 16px 24px 24px; display: inline-flex; align-items: center; gap: 6px; font-size: var(--step--1); font-weight: 700; color: var(--plum); }

/* Section header pattern */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head .lede { margin-bottom: 0; }

.before-after-section { background: rgba(255,255,255,0.28); }
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.before-after-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 38px -28px rgba(22, 51, 43, 0.28);
}
.before-after-visual {
  position: relative;
  min-height: 260px;
  background-size: cover;
  background-position: center;
}
.before-after-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 51, 43, 0.12), rgba(22, 51, 43, 0.18));
}
.before-after-visual--tall { background-position: center 30%; }
.before-after-visual--wide { background-position: center 48%; }
.before-after-visual span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(22, 51, 43, 0.72);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.before-after-meta { padding: 18px 22px 22px; }
.before-after-meta h3 { font-size: var(--step-1); margin-bottom: 8px; }
.before-after-meta p { margin: 0; color: var(--ink-soft); }

.video-section { background: var(--surface); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}
.video-card { min-width: 0; }
.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 44px -28px rgba(22, 51, 43, 0.42);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-card-meta { padding-top: 14px; }
.video-card-meta h3 { font-size: var(--step-1); margin-bottom: 6px; }
.video-link {
  display: inline-flex;
  color: var(--plum);
  font-size: var(--step--1);
  font-weight: 700;
}
.video-link:hover { color: var(--gold-deep); }

@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .video-grid { grid-template-columns: 1fr; }
}

.home-map-section { background: rgba(255,255,255,0.28); }
.home-map-frame { max-width: var(--container); }
.home-map-frame iframe { height: 390px; }

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.reviews-summary {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 26px;
}
.rating-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.stars,
.review-stars {
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 1rem;
}
.rating-block p,
.review-copy p,
.review-card p {
  color: rgba(232,237,231,0.8);
}
.review-copy p {
  margin: 0;
  font-size: var(--step-1);
}
.review-carousel {
  position: relative;
}
.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.review-track::-webkit-scrollbar { display: none; }
.review-slide {
  scroll-snap-align: start;
  min-width: 0;
}
.review-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 22px 22px 18px;
  box-shadow: 0 18px 34px -28px rgba(0, 0, 0, 0.56);
  height: 100%;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.review-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 7px 10px;
  background: rgba(245, 204, 128, 0.12);
  border: 1px solid rgba(245, 204, 128, 0.35);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}
.review-card p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  min-height: 150px;
}
.review-meta {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.review-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,237,231,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 7px 10px;
}
.review-card cite {
  font-style: normal;
  color: rgba(232,237,231,0.7);
  font-size: var(--step--1);
}
.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}
.review-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.review-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 204, 128, 0.6);
  background: rgba(245, 204, 128, 0.08);
}
.review-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
  transition: transform .2s ease, background .2s ease;
}
.review-dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}
.review-empty {
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  color: rgba(232,237,231,0.7);
  background: rgba(255,255,255,0.02);
}

@media (min-width: 700px) {
  .review-track { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (min-width: 980px) {
  .review-track { grid-auto-columns: calc((100% - 48px) / 3); }
}
@media (max-width: 1100px) {
  .before-after-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .before-after-grid { grid-template-columns: 1fr; }
  .reviews-summary { grid-template-columns: 1fr; }
}

/* ---- Process / journey (legitimate numbered sequence) ---- */
.journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 980px) { .journey { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .journey { grid-template-columns: 1fr; } }
.journey-step { position: relative; padding-top: 18px; border-top: 2px solid var(--gold); }
.journey-step .n { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold-deep); letter-spacing: 0.08em; }
.journey-step h4 { font-size: 1.05rem; margin: 10px 0 6px; font-family: var(--font-body); font-weight: 700; color: var(--ink); }
.journey-step p { font-size: var(--step--1); color: var(--ink-soft); margin: 0; }
.section--ink .journey-step { border-top-color: var(--gold); }
.section--ink .journey-step h4 { color: #fff; }

/* ---- Testimonials ---- */
.testimonial { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; }
.testimonial p { font-size: var(--step-0); color: var(--ink); font-family: var(--font-display); font-style: italic; }
.testimonial cite { font-style: normal; font-size: var(--step--1); color: var(--ink-soft); display: block; margin-top: 14px; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 0; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: var(--step-0);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-mono); font-size: 1.4rem; color: var(--gold-deep); transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 22px; color: var(--ink-soft); max-width: 65ch; }

/* ---- Follicle dot-grid pattern (signature motif, reused) ---- */
.dot-field {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(var(--line) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}

/* ---- Divider with loupe ---- */
.loupe-divider { display: flex; align-items: center; gap: 18px; margin: 8px 0 40px; color: var(--gold-deep); }
.loupe-divider .line { flex: 1; height: 1px; background: var(--line); }
.loupe-divider svg { width: 26px; height: 26px; }

/* ==========================================================================
   Forms
   ========================================================================== */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: var(--step--1); font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface);
  font-family: var(--font-body); font-size: var(--step-0); color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--plum); box-shadow: 0 0 0 3px var(--plum-soft); }
.field-error { color: var(--plum); font-size: 0.82rem; margin-top: 6px; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 12px; }
.alert-success {
  background: #E4EEE6; border: 1px solid #BBD8C2; color: var(--ink);
  padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-weight: 600;
}

/* ==========================================================================
   Contact info / map
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: grid; gap: 20px; margin-bottom: 30px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--plum-soft); color: var(--plum); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--cream-on-ink); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.site-footer a, .site-footer p { color: rgba(232,237,231,0.78); font-size: var(--step--1); }
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul li a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(232,237,231,0.6); }
.social-row { display: flex; gap: 12px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease), border-color .25s var(--ease); }
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ---- Sticky WhatsApp button ---- */
.float-whatsapp {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 32px -14px rgba(22,51,43,0.55);
  transition: transform .25s var(--ease);
}
.float-whatsapp:hover { transform: scale(1.08); }

/* ---- Icon sizing across contexts ---- */
.btn svg { width: 17px; height: 17px; }
.card-icon svg { width: 22px; height: 22px; }
.info-list .ico svg { width: 19px; height: 19px; }
.social-row a svg { width: 17px; height: 17px; }
.badge svg { width: 20px; height: 20px; }
.float-whatsapp svg { width: 27px; height: 27px; }
.nav-toggle svg { width: 20px; height: 20px; }
.faq-item summary svg { width: 18px; height: 18px; }
.card-link svg { width: 15px; height: 15px; }

/* ---- Utility ---- */
.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 0.8rem; color: var(--ink-soft); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.badge { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--ink-soft); }
.badge svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; }
