/* =========================================================
   HOME
   ========================================================= */

.hero{
  min-height: 100vh;
  display:flex; align-items:center;
  padding: 150px var(--pad) 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items:center;
  width:100%;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-copy h1{
  font-size: clamp(46px, 6.6vw, 92px);
  margin-top: 22px;
}
.hero-copy p{
  font-size: 17px;
  max-width: 440px;
  margin-top: 26px;
}
.hero-actions{ display:flex; gap:18px; margin-top:42px; flex-wrap: wrap; }
.hero-stats{
  display:flex; gap: 44px;
  margin-top: 68px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  row-gap: 20px;
}
.hero-stats div strong{
  display:block;
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--ivory);
}
.hero-stats div span{
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

/* --- vanity mirror interactive panel (now hosts a photo slider) --- */
.mirror{
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 50% / 42%;
  border: 10px solid var(--bg-elevated-2);
  background: #150C12;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7), inset 0 0 60px rgba(0,0,0,0.5);
  overflow: hidden;
  cursor: none;
}
.hero-slider{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s var(--ease-soft), transform 6s linear;
}
.hero-slide.is-active{ opacity: 1; transform: scale(1); z-index:1; }
.mirror-glow{
  position:absolute;
  width: 340px; height: 340px;
  border-radius:50%;
  left: 50%; top: 50%;
  background: radial-gradient(circle, rgba(255,143,184,0.35) 0%, rgba(255,46,126,0.12) 40%, transparent 70%);
  transform: translate(-50%,-50%);
  pointer-events:none;
  transition: left .06s linear, top .06s linear;
  mix-blend-mode: screen;
  z-index: 2;
}
.mirror-content{
  position:absolute; left:0; right:0; bottom:0;
  z-index: 3;
  display:flex; flex-direction:column; align-items:center; justify-content:flex-end;
  text-align:center;
  gap: 6px;
  padding: 60px 34px 30px;
  background: linear-gradient(0deg, rgba(9,5,8,0.82) 0%, rgba(9,5,8,0.25) 60%, transparent 100%);
  pointer-events: none;
}
.mirror-content .eyebrow{ justify-content:center; }
.mirror-content .eyebrow::before{ display:none; }
.mirror-content h3{
  font-size: clamp(22px, 2.6vw, 28px);
  font-style: italic; font-weight: 400;
}
.slider-dots{
  position:absolute; left:0; right:0; bottom: 16px;
  z-index: 4;
  display:flex; align-items:center; justify-content:center; gap: 8px;
}
.slider-dots button{
  width: 6px; height:6px; border-radius:50%;
  background: rgba(248,243,239,0.35);
  transition: all .35s var(--ease);
}
.slider-dots button.is-active{ width:20px; border-radius:4px; background: var(--pink); }
.slider-arrow{
  position:absolute; top:50%; transform: translateY(-50%);
  z-index: 4;
  width: 38px; height:38px; border-radius:50%;
  background: rgba(18,11,16,0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(248,243,239,0.18);
  display:flex; align-items:center; justify-content:center;
  color: var(--ivory);
  opacity: 0;
  transition: opacity .35s, background .3s;
}
.mirror:hover .slider-arrow{ opacity: 1; }
.slider-arrow:hover{ background: rgba(255,46,126,0.5); }
.slider-arrow.prev{ left: 14px; }
.slider-arrow.next{ right: 14px; }
.mirror-bulbs{
  position:absolute; inset: 14px;
  border-radius: 50%/42%;
  pointer-events:none;
  z-index: 3;
}
.mirror-bulbs span{
  position:absolute;
  width:7px; height:7px; border-radius:50%;
  background: var(--gold-soft);
  box-shadow: 0 0 10px 2px rgba(231,203,152,0.55);
  animation: bulbflicker 2.6s ease-in-out infinite;
}
.hero-frame-tag{
  position:absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  z-index: 5;
}

/* --- category teaser cards --- */
.cat-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card{
  position: relative;
  padding: 40px 30px 34px;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg) 100%);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s;
  min-height: 300px;
  display:flex; flex-direction:column; justify-content:space-between;
}
.cat-card:hover{ transform: translateY(-10px); border-color: var(--pink); }
.cat-card .cat-num{
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
}
.cat-card h3{ font-size: 30px; margin-top: 60px; }
.cat-card p{ margin-top: 10px; font-size: 14px; }
.cat-card .cat-link{
  margin-top: 26px;
  display:inline-flex; align-items:center; gap:8px;
  font-size: 13px; color: var(--pink-soft);
}
.cat-card::before{
  content:"";
  position:absolute; right:-40px; top:-40px;
  width: 160px; height:160px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(255,46,126,0.18), transparent 70%);
  opacity:0; transition: opacity .5s;
}
.cat-card:hover::before{ opacity:1; }

/* --- process strip --- */
.process{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow:hidden;
}
.process-step{
  background: var(--bg);
  padding: 38px 28px;
  transition: background .4s;
}
.process-step:hover{ background: var(--bg-elevated); }
.process-step .step-index{
  font-family: var(--f-display); font-style: italic;
  font-size: 34px; color: var(--pink-soft);
}
.process-step h4{ font-size: 18px; margin-top: 18px; font-weight: 600; font-family: var(--f-body); }
.process-step p{ font-size: 13.5px; margin-top: 8px; }

/* --- gallery teaser strip (home) --- */
.gallery-strip{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.gallery-strip a{
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-m);
  overflow:hidden;
  border: 1px solid var(--line);
}
.gallery-strip a:nth-child(2), .gallery-strip a:nth-child(4){ margin-top: 32px; }
.swatch{
  width:100%; height:100%;
  transition: transform .7s var(--ease);
}
.gallery-strip a:hover .swatch{ transform: scale(1.08); }
.gallery-strip a .tag{
  position:absolute; left:12px; bottom:12px;
  font-size: 11px; letter-spacing:.05em;
  color: var(--ivory);
  background: rgba(18,11,16,0.55);
  backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 999px;
  opacity:0; transform: translateY(6px);
  transition: opacity .35s, transform .35s;
}
.gallery-strip a:hover .tag{ opacity:1; transform: translateY(0); }

/* --- testimonials --- */
.testi-track-wrap{ overflow:hidden; }
.testi-track{ display:flex; gap: 24px; }
.testi-card{
  flex: 0 0 clamp(280px, 32vw, 380px);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 34px;
}
.testi-stars{ color: var(--gold); letter-spacing: 3px; font-size: 13px; }
.testi-card p.quote{
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ivory);
  line-height: 1.5;
  margin-top: 18px;
}
.testi-who{ display:flex; align-items:center; gap:12px; margin-top:24px; }
.testi-avatar{
  width: 40px; height:40px; border-radius:50%;
  background: var(--grad-signature);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--f-display); font-size: 14px; color:#17090F;
}
.testi-who span{ display:block; font-size: 12.5px; color: var(--muted-2); }
.testi-who strong{ font-size: 14px; font-weight:600; color: var(--ivory); }

/* --- CTA banner --- */
.cta-banner{
  border-radius: var(--radius-l);
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  padding: 70px var(--pad);
  text-align:center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 260px at 50% 0%, rgba(255,46,126,0.16), transparent 70%);
}
.cta-banner h2{ font-size: clamp(30px,4vw,48px); position:relative; }
.cta-banner p{ margin: 18px auto 0; max-width: 480px; position:relative; }
.cta-banner .hero-actions{ justify-content:center; position:relative; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .mirror{ max-width: 380px; margin: 0 auto; }
  .cat-grid{ grid-template-columns: 1fr; }
  .process{ grid-template-columns: 1fr 1fr; }
  .gallery-strip{ grid-template-columns: repeat(2,1fr); }
  .gallery-strip a:nth-child(2), .gallery-strip a:nth-child(4){ margin-top:0; }
}
@media (max-width: 640px){
  .process{ grid-template-columns: 1fr; }
}

/* =========================================================
   BOOKING MODAL (shared, launched from any page)
   ========================================================= */
.booking-overlay{
  position: fixed; inset:0;
  background: rgba(9,5,8,0.72);
  backdrop-filter: blur(6px);
  z-index: 800;
  opacity:0; visibility:hidden;
  transition: opacity .4s var(--ease), visibility .4s;
  display:flex; align-items:center; justify-content:center;
  padding: 24px;
}
.booking-overlay.is-open{ opacity:1; visibility:visible; }
.booking-modal{
  width: 100%; max-width: 620px;
  max-height: 88vh;
  overflow-y:auto;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-l);
  padding: 46px;
  position: relative;
  transform: translateY(24px) scale(.98);
  transition: transform .45s var(--ease);
}
.booking-overlay.is-open .booking-modal{ transform: translateY(0) scale(1); }
.booking-close{
  position:absolute; top:22px; right:22px;
  width: 36px; height:36px; border-radius:50%;
  border: 1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  color: var(--muted); transition: all .3s;
}
.booking-close:hover{ color: var(--ivory); border-color: var(--pink-soft); transform: rotate(90deg); }

.booking-steps{ display:flex; gap:8px; margin: 26px 0 30px; }
.booking-steps span{ height:2px; flex:1; background: var(--line-strong); border-radius:2px; overflow:hidden; position:relative; }
.booking-steps span::after{ content:""; position:absolute; inset:0; background: var(--grad-signature); transform: scaleX(0); transform-origin:left; transition: transform .5s var(--ease); }
.booking-steps span.is-done::after, .booking-steps span.is-active::after{ transform: scaleX(1); }

.b-step{ display:none; }
.b-step.is-active{ display:block; animation: fadein .45s var(--ease); }
@keyframes fadein{ from{ opacity:0; transform: translateX(10px);} to{ opacity:1; transform: translateX(0);} }

.option-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:12px; margin-top:18px; }
.option-card{
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  padding: 16px 18px;
  transition: all .3s;
}
.option-card:hover{ border-color: var(--pink-soft); }
.option-card.is-selected{ border-color: var(--pink); background: rgba(255,46,126,0.08); }
.option-card strong{ display:block; font-size: 14.5px; color: var(--ivory); }
.option-card span{ font-size: 12px; color: var(--muted-2); }

.field{ margin-top: 18px; }
.field label{ display:block; font-size: 12px; letter-spacing:.06em; text-transform:uppercase; color: var(--muted-2); margin-bottom:8px; font-family: var(--f-mono); }
.field input, .field select, .field textarea{
  width:100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  padding: 13px 16px;
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: 14.5px;
  transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--pink-soft); outline:none; }
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }

.b-nav{ display:flex; justify-content:space-between; align-items:center; margin-top: 34px; }
.b-summary{
  margin-top: 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-m);
  padding: 18px 20px;
  font-size: 13.5px;
  color: var(--muted);
  display:flex; flex-direction:column; gap:6px;
}
.b-summary strong{ color: var(--ivory); }

.b-success{ text-align:center; padding: 20px 0; }
.b-success .check{
  width:64px; height:64px; border-radius:50%;
  background: var(--grad-signature);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 22px;
  color:#17090F; font-size: 28px;
}

@media (max-width: 560px){
  .field-row, .option-grid{ grid-template-columns: 1fr; }
  .booking-modal{ padding: 32px 22px; }
}
