/* ============================================
   Derma Clinic Group — Design Tokens v2
   Inspired by mesoestetic.co.uk: dark navy header/footer,
   bold geometric sans type, image-card grids, tabbed carousels.
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root{
  --navy:        #262B33;
  --navy-deep:   #1B1F25;
  --ink:         #14161A;
  --body:        #5B5F66;
  --body-light:  #8B8F95;
  --line:        #E6E6E6;
  --line-dark:   rgba(255,255,255,0.14);
  --bg:          #FFFFFF;
  --bg-alt:      #F5F5F4;
  --olive:       #B8935A;
  --olive-dark:  #96733E;

  --sans:  'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --body-font: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container: 1320px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
p{ margin: 0 0 1em; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 700px){ .container{ padding: 0 22px; } }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

.eyebrow{
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 14px;
}
.eyebrow.on-dark{ color: #E8CDA0; }

.section{ padding: 100px 0; }
.section--tight{ padding: 64px 0; }
.section--alt{ background: var(--bg-alt); }
@media (max-width: 780px){
  .section{ padding: 64px 0; }
  .section--tight{ padding: 44px 0; }
}

h1{ font-size: clamp(38px, 5.4vw, 64px); }
h2{ font-size: clamp(28px, 3.6vw, 42px); }
h3{ font-size: 22px; }
.lede{
  font-size: 18px;
  color: var(--body);
  max-width: 560px;
  line-height: 1.7;
}
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-dark{ background: var(--ink); color:#fff; border-color: var(--ink); }
.btn-dark:hover{ background: #000; }
.btn-outline{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: #fff; }
.btn-outline-light{ background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover{ background:#fff; color: var(--ink); border-color:#fff; }
.btn-olive{ background: var(--olive); color:#fff; border-color: var(--olive); }
.btn-olive:hover{ background: var(--olive-dark); border-color: var(--olive-dark); }
.btn-arrow{ transition: transform .22s ease; }
.btn:hover .btn-arrow{ transform: translateX(3px); }

/* ============ Header ============ */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: var(--sans);
  color:#fff;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.logo-mark{
  width: 34px; height:34px;
  border: 1.5px solid #fff;
  display:flex; align-items:center; justify-content:center;
  font-size: 13px;
  font-weight:700;
  flex-shrink:0;
  color:#fff;
}
.logo-text{ line-height:1; }
.logo-text .tag{
  display:block;
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #A9AEB5;
  margin-top: 4px;
}
.logo-img{ height: 38px; width: auto; display:block; }
@media (max-width: 700px){ .logo-img{ height: 32px; } }
.footer-logo-img{ height: 46px; width: auto; display:block; margin-bottom: 18px; }

.nav{ display:flex; align-items:center; gap: 38px; }
.nav a{
  font-size: 14px;
  font-weight: 500;
  color: #E7E8EA;
  padding: 4px 0;
  position:relative;
}
.nav a::after{
  content:'';
  position:absolute; left:0; right:100%; bottom:-3px;
  height:2px; background:#fff;
  transition: right .22s ease;
}
.nav a:hover::after, .nav a.is-active::after{ right:0; }
.nav a.is-active{ color:#fff; }

/* Treatments dropdown */
.nav-drop{ position: relative; }
.nav-drop > a::before{
  content:'▾';
  font-size: 9px;
  margin-left: 6px;
  vertical-align: 2px;
}
.nav-drop-menu{
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--navy-deep);
  border: 1px solid var(--line-dark);
  min-width: 230px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 110;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu::before{
  content:'';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.nav-drop-menu a{
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #FFFFFF;
  white-space: nowrap;
}
.nav-drop-menu a::after{ display: none; }
.nav-drop-menu a:hover{ background: rgba(255,255,255,0.08); color: #fff; }
.nav-drop-menu a.drop-all{
  border-top: 1px solid var(--line-dark);
  margin-top: 8px;
  padding-top: 12px;
  color: #E8CDA0;
}
@media (max-width: 900px){
  .nav-drop-menu{
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255,255,255,0.07);
    border: none;
    border-left: 2px solid #E8CDA0;
    min-width: 0;
    padding: 8px 0;
    margin-top: 10px;
    display: none;
  }
  .nav-drop.is-open .nav-drop-menu{ display: block; }
  .nav-drop-menu a{
    padding: 11px 16px;
    font-size: 15px;
    color: #FFFFFF !important;
    white-space: normal;
  }
  .nav-drop-menu a.drop-all{ color: #E8CDA0 !important; }
}

.header-cta{ display:flex; align-items:center; gap: 22px; }
.header-cta .btn{ padding: 12px 22px; }

.nav-toggle{
  display:none;
  flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:8px;
}
.nav-toggle span{ width:24px; height:2px; background:#fff; display:block; transition: all .25s ease; }

@media (max-width: 900px){
  .nav{
    position: fixed; top:0; right:0; height:100vh; width: min(320px,82vw);
    background: var(--navy);
    flex-direction: column; justify-content:center; align-items:flex-start;
    padding: 40px; gap: 28px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.25);
  }
  .nav.is-open{ transform: translateX(0); }
  .nav a{ font-size:17px; color:#FFFFFF; }
  .nav a.is-active{ color:#E8CDA0; }
  .header-cta .btn-outline-light{ display:none; }
  .nav-toggle{ display:flex; }
  body.nav-open{ overflow:hidden; }
}

/* ============ Hero (dark carousel style) ============ */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  color: #fff;
  overflow:hidden;
  background: var(--navy-deep);
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position:center 30%; opacity: 0.55; transition: opacity 1s ease; }
.hero-media::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(20,17,20,0.88) 0%, rgba(20,17,20,0.55) 45%, rgba(20,17,20,0.25) 100%);
}
.hero-content{ position:relative; z-index:1; padding: 150px 0 90px; width:100%; }
.hero .eyebrow{ color:#E8CDA0; display:flex; align-items:center; gap:10px; }
.hero .eyebrow .dot{ width:7px; height:7px; border:1.5px solid #E8CDA0; border-radius:50%; display:inline-block; }
.hero h1{ color:#fff; max-width: 760px; font-weight:700; }
.hero-sub{ font-size:18px; color:rgba(255,255,255,0.78); max-width:480px; margin:22px 0 38px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }

.hero-dots{
  position:absolute; left:40px; bottom: 34px; z-index:2;
  display:flex; gap:9px;
}
@media (max-width:700px){ .hero-dots{ left:22px; } }
.hero-dots button{
  width:8px; height:8px; border-radius:50%; border:1px solid rgba(255,255,255,0.6);
  background: transparent; padding:0; cursor:pointer;
}
.hero-dots button.is-active{ background:#fff; }

/* Page header (non-home) */
.page-header{
  padding: 178px 0 64px;
  background: var(--navy);
  color:#fff;
}
.page-header .eyebrow{ color:#E8CDA0; }
.page-header h1{ color:#fff; max-width: 760px; }
.page-header .lede{ color: rgba(255,255,255,0.72); margin-top:16px; }

/* ============ Centered statement + icon row ============ */
.statement{ text-align:center; max-width: 760px; margin: 0 auto; }
.statement h2{ margin-bottom: 14px; }
.statement p{ color: var(--body); font-size:17px; margin:0 auto; }

.icon-row{
  display:grid;
  grid-template-columns: repeat(6,1fr);
  gap: 26px;
  margin-top: 66px;
}
@media (max-width: 900px){ .icon-row{ grid-template-columns: repeat(3,1fr); row-gap:40px; } }
@media (max-width: 520px){ .icon-row{ grid-template-columns: repeat(2,1fr); } }
.icon-item{ text-align:center; }
.icon-item .icon{
  width:56px; height:56px; margin:0 auto 14px;
  border-radius:50%; border:1.4px solid var(--ink);
  display:flex; align-items:center; justify-content:center;
}
.icon-item .icon svg{ width:24px; height:24px; stroke:var(--ink); fill:none; stroke-width:1.4; }
.icon-item span{ font-size:13px; font-weight:600; color: var(--ink); }

/* ============ Three image cards w/ label overlay ============ */
.card-row{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
  margin-top: 60px;
}
@media (max-width: 900px){ .card-row{ grid-template-columns:1fr; } }
.img-card{
  position:relative;
  aspect-ratio: 4/3;
  overflow:hidden;
  display:block;
  background: var(--bg-alt);
}
.img-card img{ width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.img-card:hover img{ transform: scale(1.05); }
.img-card::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 46%);
}
.img-card-label{
  position:absolute; left:0; right:0; bottom:0;
  padding: 20px 24px;
  z-index:1;
  display:flex; align-items:center; justify-content:space-between;
}
.img-card-label span{
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color:#fff;
}
.img-card-label span.is-active{ text-decoration: underline; text-underline-offset:5px; }
.img-card-label .arrow{ color:#fff; font-size:16px; }

/* ============ Split scroll (what's new style) ============ */
.split-scroll{ display:grid; grid-template-columns: 260px 1fr; gap: 50px; align-items:flex-start; }
@media (max-width: 900px){ .split-scroll{ grid-template-columns:1fr; gap:30px; } }
.split-scroll-head h2{ font-size: 34px; margin-bottom:14px; }
.split-scroll-head p{ color: var(--body); font-size:15px; }

.hscroll{
  display:flex;
  gap: 22px;
  overflow-x:auto;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.hscroll::-webkit-scrollbar{ height:5px; }
.hscroll::-webkit-scrollbar-thumb{ background: var(--line); }
.hscroll-item{
  flex: 0 0 300px;
  scroll-snap-align:start;
  position:relative;
  aspect-ratio: 4/5;
  overflow:hidden;
  background: var(--navy);
}
.hscroll-item img{ width:100%; height:100%; object-fit:cover; opacity:0.82; }
.hscroll-item .cap{
  position:absolute; left:0; right:0; bottom:0; padding:22px;
  color:#fff;
}
.hscroll-item .cap h4{ color:#fff; font-size:18px; margin-bottom:6px; }
.hscroll-item .cap p{ color: rgba(255,255,255,0.78); font-size:13px; margin:0; }

/* ============ Tabbed carousel (best sellers style) ============ */
.tabs{
  display:flex; justify-content:center; gap: 50px;
  border-bottom: 1px solid var(--line);
  margin: 40px 0 50px;
}
.tab-btn{
  background:none; border:none; cursor:pointer;
  font-family: var(--body-font);
  font-size: 13px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  color: var(--body-light);
  padding: 0 0 18px;
  border-bottom: 2px solid transparent;
  margin-bottom:-1px;
}
.tab-btn.is-active{ color: var(--ink); border-bottom-color: var(--ink); }

.tab-panel{ display:none; }
.tab-panel.is-active{ display:block; }

.prod-row{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 980px){ .prod-row{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .prod-row{ grid-template-columns: 1fr; } }
.prod-card{ text-align:center; }
.prod-card .thumb{
  aspect-ratio: 4/5;
  overflow:hidden;
  margin-bottom: 20px;
  background: var(--bg-alt);
}
.prod-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.prod-card h4{ font-size:17px; margin-bottom:8px; }
.prod-card .price-tag{
  display:inline-block;
  font-family:var(--sans); font-weight:600; font-size:14px; color: var(--olive);
  margin-bottom:10px;
}
.prod-card p{ color: var(--body); font-size:14px; margin:0; }

/* ============ Team / feature cards ============ */
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
@media (max-width: 900px){
  .grid-2{ grid-template-columns:1fr; gap:36px; }
  .grid-3{ grid-template-columns:1fr; gap:44px; }
}
.team-card{ text-align:left; }
.team-photo{ aspect-ratio: 4/5; overflow:hidden; margin-bottom:20px; background: var(--bg-alt); }
.team-photo img{ width:100%; height:100%; object-fit:cover; object-position: top center; }
.team-card h3{ font-size:20px; margin-bottom:4px; }
.team-role{
  font-family: var(--body-font); font-size:12px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  color: var(--olive); margin-bottom:12px; display:block;
}

.feature{ }
.feature .num{ font-family: var(--sans); font-weight:700; font-size:34px; color: var(--line); margin-bottom:14px; }
.feature h3{ margin-bottom:10px; }

/* ============ CTA bar (dark, full width) ============ */
.cta-bar{
  background: var(--navy);
  color:#fff;
  padding: 30px 0;
}
.cta-bar .container{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
}
.cta-bar-text{
  font-family: var(--sans);
  font-size: 15px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  display:flex; align-items:center; gap:12px;
}
.cta-bar-text .chev{ font-size:14px; }

/* Full CTA banner variant (image bg) */
.cta-banner{ position:relative; padding: 100px 0; text-align:center; color:#fff; overflow:hidden; background: var(--navy-deep); }
.cta-banner img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; opacity:0.4; }
.cta-banner::before{ content:''; position:absolute; inset:0; background: rgba(20,17,20,0.55); z-index:0; }
.cta-banner .container{ position:relative; z-index:1; }
.cta-banner h2{ color:#fff; max-width:700px; margin:0 auto 28px; }
.cta-banner .eyebrow{ text-align:center; color:#E8CDA0; }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ============ Pricing tables ============ */
.price-section{ padding: 56px 0; border-bottom: 1px solid var(--line); }
.price-section:last-child{ border-bottom:none; }
.price-section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom: 28px; }
.price-section-head h2{ font-size: 30px; }
.price-note{ color: var(--body-light); font-size:14px; max-width:320px; text-align:right; }
@media (max-width:700px){ .price-section-head{ flex-direction:column; align-items:flex-start; } .price-note{ text-align:left; } }

.price-table{ width:100%; border-collapse:collapse; }
.price-table thead th{
  text-align:left; font-family: var(--body-font); font-size:11px; letter-spacing:0.12em; text-transform:uppercase;
  color: var(--body-light); font-weight:600; padding-bottom:12px; border-bottom:1px solid var(--line);
}
.price-table thead th.num-col{ text-align:right; }
.price-table tbody tr{ border-bottom:1px solid var(--line); }
.price-table tbody tr:hover{ background: var(--bg-alt); }
.price-table td{ padding:15px 0; vertical-align:top; }
.price-table td.num-col{ text-align:right; font-family:var(--sans); font-weight:600; font-size:15px; color:var(--ink); white-space:nowrap; padding-left:12px; }
.price-table td.num-col.package{ color: var(--olive); }
.price-table .t-name{ font-family: var(--sans); font-weight:500; font-size:15px; color: var(--ink); }
.price-table .t-note{ display:block; font-size:12px; font-style:italic; color: var(--body-light); margin-top:2px; font-family: var(--body-font); }
.price-subhead td{ padding-top:24px; font-family: var(--sans); font-weight:700; font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color: var(--olive); border-bottom:none; }
.price-subhead:first-child td{ padding-top:4px; }

.how-to-read{ display:grid; grid-template-columns: repeat(3,1fr); gap:36px; margin-top:44px; }
@media (max-width:780px){ .how-to-read{ grid-template-columns:1fr; } }

/* ============ Contact ============ */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; gap:40px; } }
.info-row{ display:flex; gap:20px; padding:22px 0; border-bottom:1px solid var(--line); }
.info-row:first-child{ padding-top:0; }
.info-row .label{ width:120px; flex-shrink:0; font-size:12px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color: var(--olive); padding-top:3px; }
.info-row .value{ color: var(--ink); font-size:16px; }
.info-row .value a:hover{ color: var(--olive); }
.map-wrap{ border:1px solid var(--line); overflow:hidden; }
.map-wrap iframe{ width:100%; height:100%; min-height:420px; border:0; display:block; }

/* ============ Footer ============ */
.site-footer{ background: var(--bg-alt); color: var(--body); }
.footer-band{ background: var(--navy); padding: 22px 0; }
.footer-band .container{ display:flex; align-items:center; justify-content:center; gap:12px; }
.footer-band-text{ color:#fff; font-family:var(--sans); font-weight:700; font-size:14px; letter-spacing:0.1em; text-transform:uppercase; }
.footer-main{ padding: 64px 0 30px; }
.footer-top{ display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap:40px; padding-bottom:46px; }
@media (max-width:900px){ .footer-top{ grid-template-columns:1fr 1fr; } }
.footer-brand-badge{
  width:64px; height:64px; border:1.5px solid var(--ink); display:flex; align-items:center; justify-content:center;
  font-family:var(--sans); font-weight:700; font-size:20px; color:var(--ink); margin-bottom:16px;
}
.footer-brand p{ font-size:14px; max-width:260px; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:34px; height:34px; border-radius:50%; background: var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:14px;
  transition: background .2s ease;
}
.footer-social a:hover{ background: var(--olive); }
.footer-col h4{ font-family: var(--sans); font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color: var(--ink); margin-bottom:18px; border-bottom:1px solid var(--line); padding-bottom:10px; }
.footer-col li{ margin-bottom:12px; font-size:14px; }
.footer-col a:hover{ color: var(--ink); }
.footer-bottom{ border-top:1px solid var(--line); padding-top:24px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:12px; color: var(--body-light); }

/* Reveal animation */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

.mt-30{ margin-top:30px; }
.mt-40{ margin-top:40px; }
.mt-60{ margin-top:60px; }

/* ============ Booking modal ============ */
.booking-modal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20,17,20,0.62);
  padding: 20px;
}
.booking-modal.is-open{ display: flex; }
.booking-modal-inner{
  background: #fff;
  width: min(560px, 100%);
  height: min(760px, 92vh);
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
  animation: modalPop .25s ease;
}
@keyframes modalPop{
  from{ opacity: 0; transform: scale(0.97); }
  to{ opacity: 1; transform: scale(1); }
}
.booking-modal-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.booking-modal-header h3{ font-size: 16px; margin: 0; }
.booking-modal-close{
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: var(--body);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-modal-close:hover{ color: var(--ink); }
.booking-modal-body{
  flex: 1;
  position: relative;
  background: var(--bg-alt);
}
.booking-modal-body iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.booking-modal-footer{
  padding: 10px 20px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
  text-align: center;
}
.booking-modal-footer a{
  font-size: 12px;
  color: var(--body-light);
  text-decoration: underline;
}
.booking-modal-footer a:hover{ color: var(--olive); }
body.modal-open{ overflow: hidden; }

/* ============ Mobile icon carousel (home page) ============ */
@media (max-width: 700px){
  .icon-row{
    display: block;
    position: relative;
    min-height: 128px;
    margin-top: 44px;
  }
  .icon-row .icon-item{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease;
  }
  .icon-row .icon-item.is-active{
    opacity: 1;
    pointer-events: auto;
  }
  .icon-dots{
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
  }
  .icon-dots button{
    width: 8px; height: 8px; border-radius: 50%;
    border: 1px solid var(--ink);
    background: transparent;
    padding: 0;
    cursor: pointer;
  }
  .icon-dots button.is-active{ background: var(--ink); }
}
.icon-dots{ display: none; }

/* ============ Video gallery (homepage) ============ */
.video-scroll{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.video-scroll::-webkit-scrollbar{ height: 5px; }
.video-scroll::-webkit-scrollbar-thumb{ background: var(--line); }
.video-card{
  flex: 0 0 280px;
  scroll-snap-align: start;
  aspect-ratio: 9/16;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.video-card video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px){
  .video-card{ flex: 0 0 78vw; }
}

/* ============ Quiz pinned button ============ */
.quiz-fab{
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 15px 22px 15px 17px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.quiz-fab:hover{ transform: scale(1.04); background:#000; box-shadow: 0 8px 26px rgba(0,0,0,0.32); }
.quiz-fab svg{ width: 19px; height: 19px; flex-shrink: 0; }
.quiz-fab-text{ white-space: nowrap; }
@media (max-width: 700px){
  .quiz-fab{
    left: 16px; bottom: 16px;
    width: 52px; height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .quiz-fab-text{ display: none; }
  .quiz-fab svg{ width: 21px; height: 21px; }
}

/* ============ Quiz modal ============ */
.quiz-modal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20,17,20,0.62);
  padding: 20px;
}
.quiz-modal.is-open{ display: flex; }
.quiz-modal-inner{
  background: #fff;
  width: min(540px, 100%);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
  animation: modalPop .25s ease;
}
.quiz-modal-header{
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}
.quiz-eyebrow{
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 12px;
}
.quiz-progress{ width: 220px; max-width: 46vw; height: 4px; background: var(--line); border-radius: 4px; overflow: hidden; }
.quiz-progress span{ display: block; height: 100%; width: 0%; background: var(--olive); transition: width .35s ease; }
.quiz-modal-body{ padding: 30px 26px; overflow-y: auto; flex: 1; }
.quiz-step{ display: none; }
.quiz-step.is-active{ display: block; animation: fadeStep .3s ease; }
@keyframes fadeStep{ from{ opacity: 0; transform: translateY(6px); } to{ opacity: 1; transform: none; } }
.quiz-step h3{ font-size: 21px; margin-bottom: 22px; line-height: 1.3; }
.quiz-options{ display: flex; flex-direction: column; gap: 10px; }
.quiz-options button{
  text-align: left;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.quiz-options button:hover{ border-color: var(--ink); }
.quiz-options button.is-selected{ border-color: var(--olive); background: rgba(184,147,90,0.10); font-weight: 600; }
.quiz-modal-footer{
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-shrink: 0;
}
.quiz-modal-footer .btn:disabled{ opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.quiz-dots{ display: flex; gap: 7px; }
.quiz-dots span{ width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: background .2s ease; }
.quiz-dots span.is-active{ background: var(--olive); }

.quiz-result{ text-align: center; }
.quiz-result .eyebrow{ justify-content: center; }
.quiz-result h3{ font-size: 26px; margin-bottom: 14px; }
.quiz-result p{ color: var(--body); margin-bottom: 26px; }
.quiz-result-actions{ display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.quiz-result-actions .btn{ justify-content: center; }
.quiz-retake{
  margin-top: 22px;
  background: none;
  border: none;
  text-decoration: underline;
  color: var(--body-light);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--body-font);
}
.quiz-retake:hover{ color: var(--ink); }

/* ============ FAQ ============ */
.faq-list{ max-width: 760px; }
.faq-item{ padding: 26px 0; border-bottom: 1px solid var(--line); }
.faq-item:first-child{ padding-top:0; }
.faq-item h4{ font-size:17px; margin-bottom:10px; color: var(--ink); }
.faq-item p{ color: var(--body); font-size:15px; margin:0; }

/* ============ 5-up treatment hub grid ============ */
.card-grid-5{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 60px;
}
.img-card .from-price{
  font-family: var(--body-font);
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  display:block;
  margin-top: 4px;
}

/* Breadcrumb-style back link */
.back-link{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
  color:#E8CDA0; margin-bottom:22px;
}
.back-link:hover{ color:#fff; }

/* ============ WhatsApp pinned button ============ */
.whatsapp-fab{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-fab:hover{
  transform: scale(1.07);
  box-shadow: 0 8px 26px rgba(0,0,0,0.32);
}
.whatsapp-fab svg{ width: 30px; height: 30px; fill: #fff; }
.whatsapp-fab .wa-ping{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: waPing 2.2s ease-out infinite;
}
@keyframes waPing{
  0%{ transform: scale(1); opacity: 0.5; }
  100%{ transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-fab .wa-ping{ animation: none; display:none; }
}
@media (max-width: 700px){
  .whatsapp-fab{ right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg{ width: 26px; height: 26px; }
}
