:root {
  --cream: #f4ebe3;
  --cream-2: #efe4da;
  --brown: #3a2a20;
  --ink: #1a1512;
  --muted: #6b5d53;
  --gold: #b8945a;
  --white: #ffffff;
  --radius: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Archivo', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  transition: top .4s var(--ease);
}
.nav__inner {
  width: min(1180px, 100%);
  background: var(--white);
  border-radius: 60px;
  padding: 14px 18px 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(58, 42, 32, 0.12);
}
.logo { display: flex; align-items: baseline; gap: 3px; text-decoration: none; }
.logo__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.logo__word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1;
}
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  cursor: pointer;
}
.btn--dark {
  background: var(--ink);
  color: var(--white);
  padding: 15px 26px;
}
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.28); }
.btn--light {
  background: var(--white);
  color: var(--ink);
  padding: 16px 30px;
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.18); }
.btn--sm { padding: 12px 24px; }

/* ---------- 1. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 clamp(24px, 6vw, 90px) clamp(50px, 8vh, 90px);
}
.hero__bg {
  position: absolute;
  inset: -8% 0 0 0;
  background: url('https://images.unsplash.com/photo-1616683693504-3ea7e9ad6fec?auto=format&fit=crop&w=1600&q=80') center 30%/cover no-repeat;
  will-change: transform;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.05) 45%, rgba(0,0,0,.45) 100%);
  z-index: 1;
}
.hero__content { position: relative; z-index: 2; max-width: 620px; }
.hero__title {
  color: var(--white);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: clamp(56px, 12vw, 150px);
  margin-bottom: 26px;
}
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
.reveal-line.is-in > span { transform: translateY(0); }
.reveal-line:nth-child(2) > span { transition-delay: .12s; }

/* typing effect */
.hero__title--type {
  display: flex;
  align-items: center;
  min-height: 1.1em;
}
.typed { white-space: pre; }
.type-cursor {
  display: inline-block;
  width: .06em;
  min-width: 4px;
  height: .95em;
  margin-left: .06em;
  background: var(--white);
  animation: caret 1s step-end infinite;
}
@keyframes caret { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero__sub {
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 30px;
}
.hero__cta {
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 20px 44px;
  border-radius: 50px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hero__cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,.3); }

.hero__badge {
  position: absolute;
  right: clamp(24px, 6vw, 90px);
  bottom: clamp(120px, 20vh, 200px);
  z-index: 2;
  width: 260px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  color: var(--white);
}
.hero__badge-num {
  display: inline-block;
  font-size: 34px;
  font-weight: 800;
}
.hero__badge-plus {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  margin-left: 4px;
}
.hero__badge p { font-size: 13px; opacity: .8; margin: 8px 0 16px; line-height: 1.5; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  background-size: cover;
}
.hero__avatars span:first-child { margin-left: 0; background: #c8a98c url('https://i.pravatar.cc/60?img=32') center/cover; }
.hero__avatars span:nth-child(2) { background: #a98c72 url('https://i.pravatar.cc/60?img=45') center/cover; }
.hero__avatars span:nth-child(3) { background: #8c7258 url('https://i.pravatar.cc/60?img=12') center/cover; }

/* ---------- Section shared ---------- */
.section-title {
  text-align: center;
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
  font-size: clamp(30px, 5vw, 58px);
  padding: 0 20px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 14px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

/* ---------- 2. Expertise ---------- */
.expertise { padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 70px) clamp(40px, 6vh, 70px); }
.section-title { margin-bottom: clamp(40px, 6vh, 70px); }
.expertise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}
.xcard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.xcard__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.1s var(--ease);
  z-index: -2;
}
.xcard::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.75) 100%);
  z-index: -1;
}
.xcard:hover .xcard__img { transform: scale(1.06); }
.xcard__img--dental { background-image: url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?auto=format&fit=crop&w=1200&q=80'); }
.xcard__img--skin { background-image: url('https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?auto=format&fit=crop&w=1200&q=80'); }
.xcard__body { padding: 40px; color: var(--white); }
.xcard__icon { font-size: 26px; }
.xcard__body h3 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 10px 0 18px;
}
.xcard__body .tags { margin-bottom: 26px; }

/* ---------- 3. Confidence ---------- */
.confidence { padding: clamp(60px, 9vh, 110px) clamp(24px, 5vw, 70px); }
.confidence__title { line-height: 1.1; }
.confidence__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.confidence__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.confidence__img { border-radius: 20px; background-size: cover; background-position: center; }
.confidence__img--tall { grid-row: 1 / 3; min-height: 420px; background-image: url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=800&q=80'); }
.confidence__img--a { min-height: 200px; background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=800&q=80'); }
.confidence__img--b { min-height: 200px; background-image: url('https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?auto=format&fit=crop&w=800&q=80'); }
.confidence__list { list-style: none; }
.confidence__list li {
  padding: 26px 0;
  border-bottom: 1px solid rgba(58,42,32,.15);
}
.confidence__list li:first-child { padding-top: 0; }
.confidence__list .num { display: block; font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .1em; margin-bottom: 10px; }
.confidence__list p { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55; color: var(--brown); max-width: 460px; }

/* ---------- 3b. Common Concerns (pinned scroll-reveal) ---------- */
.concerns {
  position: relative;
  /* tall track = 6 reveal steps of scroll; sticky child pins inside */
  height: 320vh;
  background: var(--cream);
}
.concerns__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 90px clamp(24px, 5vw, 70px) 40px;
}
.concerns__title { margin-bottom: clamp(20px, 4vh, 46px); }

.concerns__stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 70px);
  width: min(1200px, 100%);
  flex: 1;
  min-height: 0;
}

.concerns__col { list-style: none; display: flex; flex-direction: column; justify-content: space-around; height: 100%; }
.concerns__col--left { text-align: right; align-items: flex-end; }
.concerns__col--right { text-align: left; align-items: flex-start; }

.concern {
  opacity: .12;
  filter: blur(1px);
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), filter .6s var(--ease);
  max-width: 320px;
}
.concern.is-active {
  opacity: 1;
  filter: none;
  transform: none;
}
.concern__num {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color .6s var(--ease);
}
.concern.is-active .concern__num { color: var(--gold); }
.concern p {
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--brown);
}

.concerns__face {
  position: relative;
  width: clamp(260px, 28vw, 420px);
  align-self: center;
}
.concerns__face img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.dot {
  position: absolute;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(184,148,90,.6);
  opacity: 0;
  transform: scale(0);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.dot.is-active {
  opacity: 1;
  transform: scale(1);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(184,148,90,.55); }
  70% { box-shadow: 0 0 0 12px rgba(184,148,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,148,90,0); }
}

.concerns__progress {
  width: min(240px, 60%);
  height: 3px;
  border-radius: 3px;
  background: rgba(58,42,32,.15);
  margin-top: 26px;
  overflow: hidden;
}
.concerns__progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width .3s var(--ease);
}

@media (max-width: 760px) {
  .concerns { height: 300vh; }
  .concerns__stage { grid-template-columns: 1fr auto 1fr; gap: 10px; }
  .concern { max-width: 150px; }
  .concern p { font-size: 11px; letter-spacing: .03em; }
  .concerns__face { width: 40vw; }
}

/* ---------- 4. Treatments (horizontal scroll-jack) ---------- */
.eyebrow {
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}
.treatments {
  position: relative;
  /* tall track drives the horizontal pan while pinned */
  height: 320vh;
  background: var(--cream);
}
.treatments__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.treatments__topbar { padding: clamp(60px, 8vh, 90px) clamp(24px, 5vw, 70px) clamp(20px, 3vh, 34px); }
.treatments__title { text-align: left; margin: 0; }
.treatments__viewport { overflow: hidden; width: 100%; }
.treatments__track {
  display: flex;
  gap: 22px;
  padding: 0 clamp(24px, 5vw, 70px);
  width: max-content;
  will-change: transform;
}
.tcard {
  position: relative;
  flex: 0 0 clamp(280px, 30vw, 400px);
  height: min(60vh, 560px);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}
.treatments__progress {
  width: min(280px, 60%);
  height: 3px;
  border-radius: 3px;
  background: rgba(58,42,32,.15);
  margin: clamp(22px, 3vh, 34px) auto 0;
  overflow: hidden;
}
.treatments__progress span {
  display: block; height: 100%; width: 0%;
  background: var(--gold);
  transition: width .1s linear;
}
.tcard__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
  z-index: -2;
}
.tcard::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.7) 100%);
  z-index: -1;
}
.tcard:hover .tcard__img { transform: scale(1.07); }
.tcard--active { flex-basis: clamp(280px, 26vw, 340px); }
.tcard__img--hydra { background-image: url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=900&q=80'); }
.tcard__img--glass { background-image: url('https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?auto=format&fit=crop&w=900&q=80'); }
.tcard__img--implant { background-image: url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&w=900&q=80'); }
.tcard__img--aging { background-image: url('https://images.unsplash.com/photo-1596755389378-c31d21fd1273?auto=format&fit=crop&w=900&q=80'); }
.tcard__label {
  position: absolute;
  left: 26px; right: 26px; bottom: 30px;
  color: var(--white);
}
.tcard__label h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tcard__label .tags { margin: 14px 0 18px; }

/* ---------- 5. Meet Our Expert ---------- */
.expert { padding: clamp(70px, 10vh, 120px) clamp(24px, 5vw, 70px); }
.expert__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto clamp(30px, 5vh, 50px);
  flex-wrap: wrap;
}
.expert__title { text-align: left; margin: 0; }
.expert__lead { max-width: 380px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.expert__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.expert__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 48px);
  box-shadow: 0 20px 60px rgba(58,42,32,.08);
}
.expert__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.expert__card h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #23324a;
  margin: 12px 0 6px;
}
.expert__creds { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.expert__card h4 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin: 22px 0 8px; }
.expert__card > p { font-size: 15px; line-height: 1.6; color: var(--muted); }
.expert__skills { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 4px; }
.expert__skills li { position: relative; padding-left: 16px; font-size: 15px; color: var(--brown); }
.expert__skills li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }
.expert__quote { font-style: italic; color: var(--brown); border-top: 1px solid rgba(58,42,32,.12); margin-top: 26px; padding-top: 22px; }
.expert__btn { display: block; text-align: center; margin-top: 22px; background: var(--cream-2); }
.expert__photo {
  border-radius: var(--radius);
  min-height: 500px;
  background: #d8d4cf url('https://images.unsplash.com/photo-1594824476967-48c8b964273f?auto=format&fit=crop&w=1000&q=80') center/cover;
}

/* ---------- 6. Smile Planner ---------- */
.planner { padding: clamp(60px, 9vh, 110px) clamp(24px, 5vw, 70px); }
.planner__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto clamp(30px, 5vh, 50px);
  flex-wrap: wrap;
}
.planner__title { text-align: left; margin: 0; line-height: .95; }
.planner__lead { max-width: 400px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.planner__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  max-width: 1300px;
  margin: 0 auto;
  align-items: stretch;
}
.planner__panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
}
.planner__step { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.goals { display: flex; flex-direction: column; gap: 14px; }
.goal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  border: none;
  border-radius: 16px;
  background: var(--cream-2);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.goal:hover { transform: translateX(4px); }
.goal__arrow { opacity: .5; transition: transform .35s var(--ease); }
.goal:hover .goal__arrow { transform: translateX(4px); }
.goal.is-active { background: var(--ink); color: var(--white); }
.goal.is-active .goal__arrow { opacity: 1; }
.planner__status {
  margin-top: auto;
  background: var(--cream-2);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.planner__status-label { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.planner__status-val { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.planner__status-val em { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #35c463; margin-right: 6px; }
.planner__stage {
  background: linear-gradient(160deg, #e9e0d6, #ded3c6);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 380px;
}
.planner__model {
  width: min(72%, 340px);
  aspect-ratio: 1.4;
  background-image: url('https://images.unsplash.com/photo-1609840114035-3c981b782dfe?auto=format&fit=crop&w=800&q=80');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  filter: saturate(1.15);
  animation: floatModel 4s ease-in-out infinite;
}
@keyframes floatModel { 0%,100% { transform: translateY(-8px) rotate(-2deg); } 50% { transform: translateY(8px) rotate(2deg); } }
.planner__caption { margin-top: 24px; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.planner__panel--summary { background: var(--white); }
.planner__sublabel { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.planner__treat { font-size: clamp(26px, 3vw, 38px); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 28px; transition: opacity .3s var(--ease); }
.planner__features { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: auto; }
.planner__features li { position: relative; padding-left: 22px; font-size: 16px; color: var(--brown); }
.planner__features li::before { content: '/'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.planner__btn { margin-top: 30px; text-align: center; }

/* ---------- 7. Our Services ---------- */
.services { padding: clamp(60px, 9vh, 110px) clamp(24px, 5vw, 70px); }
.services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto clamp(30px, 5vh, 50px);
  flex-wrap: wrap;
  gap: 20px;
}
.services__title { text-align: left; margin: 0; line-height: .95; }
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 70px);
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
.services__img {
  width: 100%;
  aspect-ratio: 1.05;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-image: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?auto=format&fit=crop&w=1000&q=80');
  transition: opacity .4s var(--ease);
}
.services__desc { margin-top: 20px; color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 460px; transition: opacity .3s var(--ease); }
.services__list { list-style: none; }
.svc {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: clamp(20px, 2.4vw, 30px) 0;
  border-top: 1px solid rgba(58,42,32,.14);
  cursor: pointer;
  opacity: .45;
  transition: opacity .35s var(--ease), padding-left .35s var(--ease);
}
.svc:last-child { border-bottom: 1px solid rgba(58,42,32,.14); }
.svc__num { font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--muted); }
.svc h3 { font-size: clamp(22px, 2.6vw, 34px); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.svc:hover, .svc.is-active { opacity: 1; padding-left: 10px; }
.svc.is-active .svc__num { color: var(--gold); }

/* ---------- 8. FAQ ---------- */
.faq { padding: clamp(60px, 9vh, 110px) clamp(24px, 5vw, 70px); }
.faq__head { max-width: 1300px; margin: 0 auto clamp(36px, 5vh, 56px); }
.faq__title { text-align: left; margin: 0 0 16px; }
.faq__lead { max-width: 520px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 26px);
  max-width: 1300px;
  margin: 0 auto;
}
.faq__item { background: var(--cream-2); border-radius: 18px; overflow: hidden; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 2.4vw, 30px);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 600;
  color: var(--ink);
}
.faq__q i { font-style: normal; font-size: 26px; font-weight: 400; transition: transform .35s var(--ease); flex: 0 0 auto; }
.faq__item.is-open .faq__q i { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq__a p { padding: 0 clamp(22px, 2.4vw, 30px) clamp(22px, 2.4vw, 30px); color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ---------- 8b. Skin Quiz ---------- */
.quiz { padding: clamp(60px, 9vh, 110px) clamp(24px, 5vw, 70px); }
.quiz__head { text-align: center; max-width: 640px; margin: 0 auto clamp(34px, 5vh, 50px); }
.quiz__title { text-align: center; margin: 10px 0 16px; }
.quiz__lead { color: var(--muted); font-size: 16px; line-height: 1.6; }
.quiz__card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 56px);
  box-shadow: 0 30px 80px rgba(58,42,32,.10);
  border: 1px solid rgba(58,42,32,.06);
  overflow: hidden;
  min-height: 360px;
}
.quiz__bar { height: 2px; background: rgba(58,42,32,.12); overflow: hidden; margin-bottom: clamp(28px, 3.5vh, 40px); }
.quiz__bar span { display: block; height: 100%; width: 25%; background: var(--gold); transition: width .5s var(--ease); }

.qstep { display: none; }
.qstep.is-active { display: block; animation: qfade .55s var(--ease); }
@keyframes qfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.qstep__count { display: block; font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.qstep h3 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
  margin-bottom: clamp(24px, 3vh, 34px);
  color: var(--ink);
}

.qopts { display: flex; flex-direction: column; }
.qopt {
  display: flex;
  align-items: baseline;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: clamp(18px, 2.2vw, 24px) 6px;
  border: none;
  border-top: 1px solid rgba(58,42,32,.14);
  background: none;
  cursor: pointer;
  transition: padding-left .35s var(--ease), color .35s var(--ease);
}
.qopts .qopt:last-child { border-bottom: 1px solid rgba(58,42,32,.14); }
.qopt__title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--ink);
  transition: color .35s var(--ease);
}
.qopt__desc { font-size: 14px; color: var(--muted); letter-spacing: .02em; }
.qopt__arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.qopt:hover { padding-left: 16px; }
.qopt:hover .qopt__title { color: var(--gold); }
.qopt:hover .qopt__arrow { opacity: 1; transform: translateX(0); }

.qback {
  margin-top: 28px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s var(--ease);
}
.qback:hover { color: var(--ink); }

.qresult { text-align: left; }
.qresult h3 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; }
.qresult > p { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 520px; margin: 0 0 26px; }
.qresult__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; }
.qresult__list li { position: relative; padding-left: 26px; color: var(--brown); font-size: 15px; }
.qresult__list li::before { content: '/'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.qresult__actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.qresult__actions .qback { margin-top: 0; }

/* ---------- 9. CTA ---------- */
.cta { padding: clamp(80px, 12vh, 150px) clamp(24px, 5vw, 70px); text-align: center; }
.cta__inner { max-width: 900px; margin: 0 auto; }
.cta__title {
  font-size: clamp(34px, 5.5vw, 66px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 14px 0 22px;
}
.cta__sub { color: var(--muted); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; max-width: 620px; margin: 0 auto 40px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn--outline { background: transparent; border: 1px solid rgba(58,42,32,.4); color: var(--ink); padding: 15px 34px; }
.btn--outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-2px); }
.cta__info {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid rgba(58,42,32,.14);
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 900px) {
  .expert__grid { grid-template-columns: 1fr; }
  .expert__photo { min-height: 360px; order: -1; }
  .planner__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: clamp(28px, 4vh, 40px) 24px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer__credit { letter-spacing: .06em; }
.site-footer__credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .3s var(--ease);
}
.site-footer__credit a:hover { opacity: .8; text-decoration: underline; }

/* ---------- Booking modal (slide-up sheet) ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}
.modal.is-open { visibility: visible; pointer-events: auto; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,21,18,.55);
  opacity: 0;
  transition: opacity .4s var(--ease);
  backdrop-filter: blur(3px);
}
.modal.is-open .modal__overlay { opacity: 1; }
.modal__sheet {
  position: relative;
  width: min(560px, 100%);
  max-height: 94vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 30px 30px 0 0;
  padding: clamp(30px, 4vw, 48px) clamp(24px, 4vw, 46px) clamp(28px, 4vw, 42px);
  transform: translateY(100%);
  transition: transform .55s var(--ease);
  box-shadow: 0 -20px 70px rgba(0,0,0,.3);
}
.modal.is-open .modal__sheet { transform: translateY(0); }
.modal__grip { display: block; width: 44px; height: 5px; border-radius: 5px; background: rgba(58,42,32,.22); margin: -8px auto 20px; }
.modal__close {
  position: absolute;
  top: 18px; right: 20px;
  width: 38px; height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(58,42,32,.08);
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.modal__close:hover { background: rgba(58,42,32,.16); transform: rotate(90deg); }

.modal__view { display: none; }
.modal .modal__form { display: block; }
.modal.is-success .modal__form { display: none; }
.modal.is-success .modal__success { display: flex; }

.modal__eyebrow { text-align: left; margin-bottom: 8px; color: var(--gold); letter-spacing: .28em; }
.modal__sheet h3 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: var(--ink);
}
.modal__sub { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 10px 0 26px; }

.field { display: block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.field input, .field select {
  display: block;
  width: 100%;
  margin-top: 9px;
  padding: 15px 4px;
  border: none;
  border-bottom: 1px solid rgba(58,42,32,.22);
  border-radius: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.field select { padding-left: 0; }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.modal__submit { width: 100%; text-align: center; margin-top: 14px; padding: 18px; }

.modal__success { flex-direction: column; align-items: center; text-align: center; padding: 20px 0 8px; }
.modal__success p { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 380px; margin: 10px 0 26px; }
.success-check { width: 84px; height: 84px; margin-bottom: 6px; }
.success-check svg { width: 100%; height: 100%; }
.success-check circle { stroke: var(--gold); stroke-width: 3; stroke-dasharray: 151; stroke-dashoffset: 151; animation: drawCircle .6s var(--ease) forwards; }
.success-check path { stroke: var(--gold); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: drawCheck .4s .5s var(--ease) forwards; }
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

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

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.wa-float__text {
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.wa-float__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal animations ---------- */
.reveal, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal { transform: translateY(40px); }
.reveal-right { transform: translateX(48px); }
.reveal-scale { transform: scale(.9) translateY(30px); }
.reveal.is-in, .reveal-right.is-in, .reveal-scale.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .reveal-right, .reveal-scale, .reveal-line > span { opacity: 1 !important; transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .expertise__grid { grid-template-columns: 1fr; }
  .confidence__grid { grid-template-columns: 1fr; }
  .confidence__gallery { order: 2; }
  .hero__badge { display: none; }
  .xcard { min-height: 400px; }
}
@media (max-width: 560px) {
  .nav__inner { padding: 12px 12px 12px 20px; }
  .btn--dark { padding: 12px 18px; font-size: 11px; }
  .wa-float__text { display: none; }
}
