:root{
  --bg: #FBFAF8;
  --soft: #F3F0EA;
  --nude: #CDBFAE;
  --sage: #2F3B36;
  --ink: #1C1C1C;
  --muted: #5B5B5B;
  --line: rgba(0,0,0,.08);

  --radius: 18px;
  --shadow: 0 16px 44px rgba(0,0,0,.08);
  --shadow2: 0 10px 24px rgba(0,0,0,.06);
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height:1.5;
}

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

a{
  color:inherit;
  text-decoration:none;
}
a:hover{
  opacity:.92;
}

.container{
  width:min(var(--max), 92vw);
  margin-inline:auto;
}

.skip{
  position:absolute;
  left:-999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  background:#fff;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:12px;
  z-index:999;
}

/* Announcement */
.announce{
  background: var(--sage);
  color:#fff;
  font-size:14px;
}
.announce__inner{
  padding:10px 0;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
}
.announce__link{
  border-bottom:1px solid rgba(255,255,255,.55);
  white-space:nowrap;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(251,250,248,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:240px;
}

.mark{
  width:54px;
  height:54px;
  border-radius:999px;
  background: var(--soft);
  border:1px solid rgba(0,0,0,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex-shrink:0;
}
.mark img{
  width:58%;
  height:58%;
  object-fit:contain;
  display:block;
  mix-blend-mode:multiply;
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand__name{
  font-family: "Playfair Display", serif;
  font-weight:600;
  letter-spacing:.02em;
  font-size:18px;
}
.brand__sub{
  font-size:12px;
  color: var(--muted);
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-top:4px;
}

/* Nav */
.nav{
  display:flex;
  gap:18px;
  color: var(--muted);
  font-size:15px;
}
.nav a{
  padding:8px 10px;
  border-radius:12px;
}
.nav a[aria-current="page"]{
  color: var(--ink);
  background: rgba(0,0,0,.03);
  border:1px solid var(--line);
}
.nav a:hover{
  background: rgba(0,0,0,.03);
  color: var(--ink);
}

.header__cta{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.nav__toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:12px;
  font-weight:600;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:600;
  letter-spacing:.01em;
  transition: .2s ease;
  text-align:center;
}
.btn--primary{
  background: var(--sage);
  color:#fff;
  box-shadow: 0 10px 25px rgba(47,59,54,.18);
  border-color: rgba(255,255,255,.08);
}
.btn--primary:hover{
  opacity:1;
  filter: brightness(1.03);
}
.btn--ghost{
  background: transparent;
  color: var(--ink);
  box-shadow:none;
}
.btn--dark{
  background: var(--ink);
  color:#fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.16);
  border-color: rgba(255,255,255,.06);
}
.btn--full{
  width:100%;
  border-radius:14px;
}

/* Mobile nav */
.mobileNav{
  border-top:1px solid var(--line);
  background: rgba(251,250,248,.92);
  backdrop-filter: blur(10px);
}
.mobileNav__inner{
  padding:14px 0 18px;
  display:grid;
  gap:10px;
}
.mobileNav__inner a{
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
}

/* Page head */
.pagehead{
  padding:40px 0 10px;
}
.kicker{
  color: var(--muted);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 10px;
}
h1{
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.06;
  margin:0 0 12px;
}
h2{
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 36px);
  line-height:1.1;
}
.lede{
  color: var(--muted);
  font-size:17px;
  max-width:62ch;
  margin:0;
}

/* Sections */
.section{
  padding:54px 0;
}
.section--soft{
  background: var(--soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  margin-bottom:22px;
  flex-wrap:wrap;
}
.section__head h2{
  margin:0;
}
.section__head p{
  color: var(--muted);
  margin:0;
  max-width:62ch;
}

/* Hero */
.hero{
  padding:26px 0 12px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 20px;
}
.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.trust__item{
  padding:14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
}
.trust__item strong{
  display:block;
  font-size:14px;
}
.trust__item span{
  color: var(--muted);
  font-size:13px;
}

.hero__visual{
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height:420px;
  display:grid;
  place-items:center;
  color: var(--muted);
  text-align:center;
  padding:0;
  background:#fff;
}
.hero__visual img{
  width:100%;
  height:480px;
  object-fit:cover;
  display:block;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.card h3{
  margin:0 0 8px;
  font-size:18px;
}
.card h4{
  font-size:15px;
  margin:0 0 8px;
  color: var(--ink);
}
.card p{
  color: var(--muted);
  margin:0 0 12px;
}
.bullets{
  margin:0 0 12px 16px;
  color: var(--muted);
}
.link{
  color: var(--sage);
  font-weight:700;
}
.cards .card .btn{
  margin-top:auto;
}

/* Split / panels */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.pillRow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}
.pill{
  background: var(--soft);
  border:1px solid var(--line);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  color: var(--muted);
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.gallery__item{
  min-height:220px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:#fff;
  display:grid;
  place-items:center;
  overflow:hidden;
  padding:10px;
}
.gallery__item img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition: transform .4s ease;
  background:#fff;
}
.gallery__item:hover img{
  transform: scale(1.03);
}

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.quote{
  margin:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
}
.quote blockquote{
  margin:0 0 10px;
  font-weight:500;
}
.quote figcaption{
  color: var(--muted);
  font-size:14px;
}

/* Contact / form */
.contactCard{
  margin-top:12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow2);
}
.form{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
}
.form label{
  display:block;
  font-weight:600;
  font-size:14px;
  margin-bottom:10px;
}
.form input,
.form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(243,240,234,.55);
  outline:none;
}
.form input:focus,
.form textarea:focus{
  border-color: rgba(47,59,54,.35);
}
.fineprint{
  color: var(--muted);
  font-size:12px;
  margin:10px 0 0;
}

/* Provider photo */
.provider-photo{
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  border: 6px solid #F3F0EA;
}
.provider-photo img{
  width:100%;
  height:auto;
  display:block;
  transition: transform .6s ease;
}
.provider-photo:hover img{
  transform: scale(1.03);
}
.provider-photo::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:24px;
  border:1px solid rgba(205,191,174,.7);
  pointer-events:none;
}

/* Footer */
.footer{
  padding:22px 0;
  color: var(--muted);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid var(--line);
  padding-top:18px;
  gap:12px;
  flex-wrap:wrap;
}

/* Sticky book button */
.stickyBook{
  position:fixed;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  background: var(--ink);
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  z-index:60;
  display:none;
}

/* Vagaro embed */
.booking-embed{
  max-width:980px;
  margin:0 auto;
  padding:8px 0 16px;
}
.booking-embed .vagaro{
  width:100% !important;
  margin:0 auto !important;
  text-align:center;
}
.booking-embed iframe{
  width:100% !important;
  min-height:820px;
  border:0 !important;
}
.booking-embed .embedded-widget-title{
  font-family: "Playfair Display", serif !important;
  letter-spacing:.01em;
}

/* Popup fix */
.consult-popup-overlay[hidden]{
  display:none !important;
}

/* Consultation popup */
.consult-popup-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.consult-popup{
  background: #fff;
  max-width: 520px;
  width: 100%;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  position: relative;
  max-height:90vh;
  overflow:auto;
}
.popup-close{
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #555;
  z-index: 10000;
}
.consult-popup form{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.consult-popup input,
.consult-popup textarea{
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
}
.consult-popup button{
  margin-top: 8px;
}

/* Facial quiz */
.quiz-shell{
  max-width: 760px;
  margin: 0 auto;
}
.quiz-top{
  margin-bottom: 20px;
}
.quiz-step-label{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}
.quiz-progress{
  width: 100%;
  height: 10px;
  background: rgba(0,0,0,.08);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress__bar{
  width: 14.285%;
  height: 100%;
  background: var(--sage);
  transition: width .3s ease;
}
.quiz-step{
  display: none;
}
.quiz-step.is-active{
  display: block;
}
.quiz-lede{
  margin-bottom: 18px;
}
.quiz-option,
.quiz-check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 10px;
  cursor: pointer;
}
.quiz-option input,
.quiz-check input{
  margin-top: 4px;
}
.quiz-form label{
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
.quiz-form input[type="text"],
.quiz-form input[type="email"],
.quiz-form input[type="tel"],
.quiz-form textarea{
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(243,240,234,.55);
  outline: none;
}
.quiz-actions{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap:wrap;
}
.quiz-result-card{
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fbfaf8);
}
.quiz-result-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:16px;
}
.quiz-result-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
}

/* Tablet */
@media (max-width: 1024px){
  .hero__grid{
    grid-template-columns: 1fr;
  }

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

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

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

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

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

/* Mobile */
@media (max-width: 900px){
  .nav{ display:none; }
  .nav__toggle{ display:inline-flex; }

  .header__inner{
    align-items:flex-start;
  }

  .hero__visual{
    min-height:300px;
  }

  .hero__visual img{
    height:320px;
  }

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

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

  .stickyBook{
    display:inline-flex;
  }
}

@media (max-width: 700px){
  .section{
    padding:40px 0;
  }

  .container{
    width:min(var(--max), 94vw);
  }

  .brand{
    min-width:auto;
  }

  .brand__name{
    font-size:16px;
  }

  .brand__sub{
    font-size:11px;
  }

  .hero__actions,
  .header__cta{
    gap:8px;
  }

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

  .gallery__item{
    min-height:260px;
  }

  .quiz-result-grid{
    grid-template-columns: 1fr;
  }

  .quiz-actions{
    flex-direction:column;
  }

  .quiz-actions .btn{
    width:100%;
  }

  .consult-popup{
    padding:22px 18px;
  }

  .footer__inner{
    flex-direction:column;
    align-items:flex-start;
  }
}