/* ============================================================
   AI Aesthetics by Dr. Aakriti Mehra — design system (spec §7)
   Premium, clean, warm, clinical, modern.
   Warm ivory base · deep charcoal text · champagne gold accent ·
   soft rose-gold secondary · blue-grey information blocks.
   ============================================================ */

:root {
  --ivory: #FAF7F2;
  --ivory-2: #F3EDE3;
  --charcoal: #26221E;
  --charcoal-soft: #4C453E;
  --gold: #A9853B;          /* champagne gold — primary accent */
  --gold-deep: #8A6B2C;
  --rose: #C29B8D;          /* soft rose-gold — secondary accent */
  --rose-tint: #F4E9E4;
  --info-blue: #5B6B75;     /* blue-grey for information blocks */
  --info-tint: #EDF1F4;
  --sand: #E9DFCE;
  --line: #E5DCCC;
  --white: #FFFFFF;
  --success: #4C7A5C;
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 1.0625rem; /* 17px — spec §7 typography */
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--charcoal); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.14; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); margin-bottom: .6em; }
h3 { font-size: 1.22rem; margin: 1.4em 0 .4em; }

.container { max-width: var(--max); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container.narrow { max-width: 860px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }

.lede { font-size: 1.16rem; color: var(--charcoal-soft); max-width: 62ch; margin-block: .9rem; }

/* ---------- buttons (§7: filled primary, outline secondary) ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .97rem;
  padding: .74em 1.5em;
  border-radius: 12px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: .9em 1.8em; font-size: 1.04rem; }
.btn-block { display: block; text-align: center; width: 100%; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--charcoal); color: var(--charcoal); }
.btn-light { background: var(--ivory); color: var(--charcoal); }
.btn-light:hover { background: var(--white); color: var(--charcoal); }
.btn-outline-light { background: transparent; color: var(--ivory); border-color: rgba(250, 247, 242, .55); }
.btn-outline-light:hover { border-color: var(--ivory); color: var(--white); }

.cta-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-block: 1.3rem; }

/* ---------- header + dropdown nav (§3) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.4rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--charcoal); }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--charcoal); color: var(--ivory);
  border-radius: 10px;
  font-family: var(--font-display); font-size: 1rem;
  flex: none;
}
.brand-text { display: grid; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 1.12rem; white-space: nowrap; }
.brand-sub { font-size: .72rem; color: var(--charcoal-soft); letter-spacing: .04em; white-space: nowrap; }
@media (max-width: 420px) { .brand-sub { display: none; } }
.brand-logo { height: 46px; width: auto; display: block; }
@media (max-width: 560px) { .brand-logo { height: 40px; } }

.main-nav { display: flex; align-items: center; gap: 1.25rem; margin-left: auto; }
.main-nav > a, .nav-drop-toggle {
  color: var(--charcoal-soft);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem 0;
}
.main-nav > a:hover, .nav-drop-toggle:hover { color: var(--charcoal); }
.nav-drop-toggle svg { width: 10px; height: 7px; transition: transform .18s; }
.nav-drop { position: relative; }
.nav-drop.open .nav-drop-toggle svg { transform: rotate(180deg); }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-38%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(38, 34, 30, .16);
  padding: 1.4rem 1.6rem;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 1.6rem;
  width: min(860px, calc(100vw - 2rem));
}
.nav-drop.open .nav-drop-menu { display: grid; }
.nav-drop-head {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold); margin-bottom: .55rem;
}
.nav-drop-col a {
  display: block;
  color: var(--charcoal-soft);
  text-decoration: none;
  font-size: .92rem;
  padding: .22rem 0;
}
.nav-drop-col a:hover { color: var(--gold-deep); }

.header-actions { display: flex; gap: .6rem; }
.header-actions .btn { white-space: nowrap; }
.nav-toggle { display: none; }

@media (max-width: 1080px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: .5rem 1.2rem 1.1rem;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: .7rem 0; border-bottom: 1px solid var(--ivory-2); }
  .nav-drop-toggle { width: 100%; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--ivory-2); }
  .nav-drop-menu {
    position: static;
    transform: none;
    display: none;
    grid-template-columns: 1fr;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: .3rem 0 .6rem .8rem;
    width: auto;
    gap: .9rem;
  }
  .header-actions .btn { padding: .55em 1em; font-size: .88rem; }
  .brand { margin-right: auto; } /* logo left, actions + menu button right */
  .nav-toggle {
    display: grid; gap: 5px;
    background: none; border: none; padding: .6rem .2rem; cursor: pointer;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--charcoal); transition: transform .2s; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
}
/* On phones the sticky bottom bar already carries Book/Call/WhatsApp,
   so drop the header CTA to keep the top bar clean: logo + menu only. */
@media (max-width: 620px) {
  .header-actions { display: none; }
}

/* ---------- page hero ---------- */
.page-hero {
  position: relative;
  background: var(--ivory-2);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.4rem, 5.5vw, 4.6rem);
  overflow: hidden;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.6rem; align-items: center; }
.hero-copy { max-width: 780px; }
.page-hero h1 { margin-bottom: .35em; }

/* home hero — dark, with optional desktop video + skin-scan panel */
.page-hero-home {
  background: linear-gradient(115deg, #2B2118, #4A3B28 55%, #6B5535);
  border-bottom: none;
  color: var(--ivory);
  padding-block: clamp(3.4rem, 8vw, 7rem);
}
.page-hero-home .hero-grid { grid-template-columns: 1.2fr .8fr; }
.page-hero-home h1 { color: var(--white); }
.page-hero-home .lede, .page-hero-home p { color: rgba(250, 247, 242, .87); }
.page-hero-home .verified-badge { color: var(--sand); }
.page-hero-home .verified-badge a { color: var(--sand); }
.page-hero-home .btn-ghost { color: var(--ivory); border-color: rgba(250, 247, 242, .45); }
.page-hero-home .btn-ghost:hover { border-color: var(--ivory); color: var(--white); }

.hero-media { position: absolute; inset: 0; display: none; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30, 23, 16, .86) 20%, rgba(30, 23, 16, .55) 58%, rgba(30, 23, 16, .25));
}
/* video is desktop-only (spec §9: no autoplay hero video on mobile) */
@media (min-width: 1080px) { .hero-media { display: block; } }
@media (max-width: 1079px) {
  .page-hero-home .hero-grid { grid-template-columns: 1fr; }
  /* AI analysis panel stays visible on mobile, stacked below the copy (owner request) */
  .page-hero-home .skin-scan { max-width: 460px; margin-top: .4rem; }
}

/* ---------- breadcrumbs ---------- */
.breadcrumbs { font-size: .86rem; margin-bottom: 1rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; }
.breadcrumbs li + li::before { content: "›"; margin-right: .4rem; color: var(--charcoal-soft); }
.breadcrumbs a { color: var(--charcoal-soft); }
.breadcrumbs [aria-current] { color: var(--charcoal); font-weight: 600; }

/* ---------- verified badge (§4A / §11) ---------- */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(169, 133, 59, .1);
  border: 1px solid rgba(169, 133, 59, .35);
  border-radius: 999px;
  padding: .34em 1em;
  margin-block: .7rem;
}
.verified-badge svg { width: 17px; height: 17px; flex: none; }
.verified-badge a { color: inherit; font-weight: 700; }

/* ---------- sections & prose ---------- */
.section { padding-block: clamp(2.4rem, 5.5vw, 4.2rem); }
.section-alt { background: var(--ivory-2); border-block: 1px solid var(--line); }
.section-tint { background: var(--rose-tint); border-block: 1px solid #EAD6CD; }
.section-info .prose {
  background: var(--info-tint);
  border: 1px solid #DAE2E8;
  border-left: 4px solid var(--info-blue);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.8rem;
}
.section-info h2 { color: var(--info-blue); font-size: 1.35rem; }
.section-cost .prose {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  box-shadow: 0 14px 40px rgba(38, 34, 30, .06);
}
.section-cost h2 { color: var(--gold-deep); }

.prose > p { margin-bottom: 1.05em; color: var(--charcoal-soft); max-width: 72ch; }
.prose h2 { color: var(--charcoal); }
.prose h3 { color: var(--charcoal); }
.inline-link { margin-block: .4em; }
.inline-link a { font-weight: 600; text-decoration: none; }
.inline-link a:hover { text-decoration: underline; }

/* ---------- related-treatment link cards (§10) ---------- */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: .8rem;
  margin-block: 1.2rem;
}
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .95rem 1.15rem;
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: .95rem;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.link-card:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 12px 28px rgba(38, 34, 30, .08); color: var(--charcoal); }
.link-card-arrow { color: var(--gold); flex: none; }

/* ---------- tables → stacked cards on mobile (§4G, §9) ---------- */
.table-wrap { overflow-x: auto; margin-block: 1.3rem; }
.content-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.content-table th, .content-table td { text-align: left; padding: .85rem 1.1rem; border-bottom: 1px solid var(--ivory-2); vertical-align: top; }
.content-table th {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--charcoal-soft);
  background: var(--ivory-2);
}
.content-table tr:last-child td { border-bottom: none; }
/* Price/numeric columns are tagged by header in the table partial. */
.content-table td.col-price { font-weight: 600; color: var(--gold-deep); }
.content-table th.col-link, .content-table td.col-link { white-space: nowrap; width: 1%; text-align: right; }
.content-table a.table-link { color: var(--gold-deep); font-weight: 600; text-decoration: none; white-space: nowrap; }
.content-table a.table-link:hover { text-decoration: underline; }
.content-table a.table-link em { font-style: normal; }
@media (max-width: 640px) {
  .content-table td.col-link { text-align: left; width: auto; }
}

@media (max-width: 640px) {
  .content-table thead { display: none; }
  .content-table, .content-table tbody, .content-table tr, .content-table td { display: block; width: 100%; }
  .content-table tr { border-bottom: 6px solid var(--ivory-2); }
  .content-table td { border-bottom: 1px dashed var(--ivory-2); padding: .7rem 1rem; }
  .content-table td::before {
    content: attr(data-label);
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--charcoal-soft);
    margin-bottom: .15rem;
  }
  .content-table td:empty { display: none; }
  .section-cost .content-table td:last-child { white-space: normal; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { margin-top: 1.4rem; display: grid; gap: .7rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 2.7rem 1rem 1.3rem;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem; color: var(--gold);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item div { padding: 0 1.3rem 1.2rem; }
.faq-item p { color: var(--charcoal-soft); margin-bottom: .7em; }

/* ---------- assessment stepper (§4E) ---------- */
.stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid #EAD6CD;
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.3rem 1.4rem;
  counter-increment: step;
}
.step h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.step h3::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  margin-right: .55rem;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  vertical-align: 2px;
}
.step p { font-size: .92rem; color: var(--charcoal-soft); }

/* ---------- concern cards (§6) ---------- */
.concern-section { background: var(--ivory); }
.concern-heading { margin-bottom: .2em; }
.concern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  margin-top: 1.8rem;
}
.concern-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  text-decoration: none;
  color: var(--charcoal);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.concern-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 18px 40px rgba(38, 34, 30, .1); color: var(--charcoal); }
.concern-card h3 { margin: 0 0 .35rem; font-size: 1.16rem; }
.concern-card p { color: var(--charcoal-soft); font-size: .94rem; }
.concern-links { display: block; margin-top: .9rem; font-size: .8rem; color: var(--gold-deep); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background: #33291D;
  color: var(--ivory);
  padding-block: clamp(2.6rem, 6vw, 4.4rem);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(250, 247, 242, .82); max-width: 62ch; margin-bottom: .9em; }
.cta-band .verified-badge { color: var(--sand); border-color: rgba(233, 223, 206, .4); background: rgba(233, 223, 206, .08); }
.cta-band .verified-badge a { color: var(--sand); }
.cta-band .inline-link a { color: var(--sand); }

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(250, 247, 242, .8); padding-block: 3.4rem 6.5rem; font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.4rem; }
.site-footer .brand-name { color: var(--ivory); font-size: 1.3rem; margin-bottom: .5rem; }
.footer-note { margin-bottom: .9rem; }
.footer-head { font-weight: 700; color: var(--ivory); margin-bottom: .8rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; }
.site-footer nav a, .footer-contact { display: block; color: rgba(250, 247, 242, .8); text-decoration: none; padding-block: .22rem; }
.site-footer a:hover { color: var(--white); }
.site-footer .footer-note a { display: inline; color: var(--sand); }
.footer-contact { margin-top: .7rem; font-weight: 600; }
.footer-legal { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(250, 247, 242, .14); font-size: .84rem; display: grid; gap: .4rem; }
.footer-legal a { color: rgba(250, 247, 242, .75); }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- sticky mobile action bar (§9 — two actions only) ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr 1.5fr;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(38, 34, 30, .12);
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  padding: .7rem .3rem;
  font-weight: 700;
  font-size: .82rem;
  text-decoration: none;
  color: var(--charcoal);
}
.mobile-bar a svg { opacity: .85; }
.mobile-bar a + a { border-left: 1px solid var(--line); }
.mobile-bar-primary { background: var(--gold); color: var(--white) !important; font-size: .95rem; }
@media (max-width: 920px) { .mobile-bar { display: grid; } body { padding-bottom: 62px; } }

/* ---------- floating WhatsApp button (desktop only) ---------- */
.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 55;
  display: none;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.1rem .7rem .9rem;
  border-radius: 999px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.whatsapp-float:hover { transform: translateY(-2px); color: var(--white); box-shadow: 0 16px 38px rgba(37, 211, 102, .5); }
.whatsapp-float svg { flex: none; }
/* desktop only — mobile has WhatsApp in the sticky bar */
@media (min-width: 921px) { .whatsapp-float { display: inline-flex; } }

/* ---------- forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}
.form-sub { color: var(--charcoal-soft); margin-block: .4rem 1rem; }
.form-card label { display: block; font-weight: 600; font-size: .92rem; margin: 1rem 0 .3rem; }
.form-card input, .form-card textarea {
  width: 100%;
  font: inherit;
  padding: .72em .95em;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
}
.form-card input:focus, .form-card textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
.form-card .btn { margin-top: 1.4rem; }
.form-success { background: #E7F0E9; border: 1px solid var(--success); border-radius: 10px; padding: .9rem 1.1rem; color: var(--success); margin-bottom: .6rem; }
.form-success p { margin: 0; }
.bc-wa-lead { margin-top: .7rem !important; color: var(--charcoal); font-size: .92rem; }
.bc-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: .7rem;
  padding: .72rem 1.15rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px -10px rgba(37, 211, 102, .8);
  transition: background .12s ease, transform .12s ease;
}
.bc-wa-btn:hover { background: #1EBE5A; transform: translateY(-1px); }
.bc-wa-btn svg { flex: 0 0 auto; }
.form-error { color: #A03A2A; font-size: .86rem; margin-top: .25rem; }
.form-note { margin-top: 1rem; font-size: .92rem; color: var(--charcoal-soft); }

/* ---------- [CONFIRM] flag (placeholders awaiting client data) ---------- */
.confirm { background: rgba(216, 169, 64, .18); outline: 1px dashed #B98A2E; border-radius: 4px; padding-inline: .15em; }
.confirm sup { color: #8A6210; font-size: .62em; font-weight: 700; letter-spacing: .04em; margin-left: .2em; }

/* ---------- skin-scan panel (home hero) ---------- */
.skin-scan {
  background: rgba(28, 23, 17, .45);
  border: 1px solid rgba(233, 223, 206, .3);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 24px 60px rgba(20, 15, 10, .4);
  color: var(--ivory);
  position: relative;
}
.skin-scan-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(194, 155, 141, .25), rgba(169, 133, 59, .2));
  margin-bottom: 1rem;
}
.scan-corner { position: absolute; width: 18px; height: 18px; border: 2px solid var(--sand); opacity: .85; }
.scan-corner.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; border-radius: 4px 0 0 0; }
.scan-corner.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; border-radius: 0 4px 0 0; }
.scan-corner.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; border-radius: 0 0 0 4px; }
.scan-corner.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; border-radius: 0 0 4px 0; }
.scan-line {
  position: absolute; left: 0; right: 0; top: 0; height: 36%;
  background: linear-gradient(180deg, rgba(233,223,206,0) 0%, rgba(233,223,206,.18) 70%, rgba(233,223,206,.65) 100%);
  border-bottom: 1.5px solid rgba(233, 223, 206, .9);
  animation: scan-sweep 3.4s cubic-bezier(.45,0,.55,1) infinite;
}
.scan-dot {
  position: absolute; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px;
  border-radius: 50%; background: var(--sand);
  box-shadow: 0 0 0 0 rgba(233, 223, 206, .6);
  animation: scan-ping 2.6s ease-out infinite;
}
.scan-dot:nth-child(7) { animation-delay: .4s; }
.scan-dot:nth-child(8) { animation-delay: .8s; }
.scan-dot:nth-child(9) { animation-delay: 1.2s; }
.scan-dot:nth-child(10) { animation-delay: 1.6s; }
.scan-status {
  position: absolute; left: 10px; bottom: 10px;
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(20, 15, 10, .5); padding: .25rem .55rem; border-radius: 999px;
}
.scan-pulse { width: 7px; height: 7px; border-radius: 50%; background: #7CD0A0; animation: scan-blink 1.4s ease-in-out infinite; }
.skin-scan-title { font-weight: 700; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--sand); margin-bottom: .8rem; }
.skin-scan-meters { list-style: none; display: grid; gap: .7rem; }
.skin-scan-meters li { display: grid; grid-template-columns: 1fr 1.1fr auto; align-items: center; gap: .7rem; font-size: .9rem; }
.skin-scan-meters b { font-variant-numeric: tabular-nums; font-weight: 600; min-width: 2.6em; text-align: right; }
.meter { height: 6px; border-radius: 99px; background: rgba(250, 247, 242, .22); overflow: hidden; display: block; }
.meter i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--rose), var(--gold)); width: 0; transition: width 1.1s cubic-bezier(.22,.61,.36,1); }
.page-hero.is-analysing .meter i { width: var(--w); }
.skin-scan-note { margin-top: .9rem; font-size: .78rem; color: rgba(250, 247, 242, .72); }

@keyframes scan-sweep {
  0% { transform: translateY(-100%); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateY(280%); opacity: 0; }
}
@keyframes scan-ping {
  0% { box-shadow: 0 0 0 0 rgba(233, 223, 206, .55); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(233, 223, 206, 0); }
}
@keyframes scan-blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media video { display: none; }
  .scan-line, .scan-dot, .scan-pulse { animation: none; }
  .meter i, .page-hero.is-analysing .meter i { width: var(--w); transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .link-card, .concern-card { transition: none; }
}

/* ---------- real clinic photography slots (spec §8) ---------- */
.hero-grid:has(.hero-photo) { grid-template-columns: 1.1fr .9fr; align-items: center; }
.hero-photo { margin: 0; }
.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(38, 34, 30, .14);
}
@media (max-width: 920px) {
  .hero-grid:has(.hero-photo) { grid-template-columns: 1fr; }
  .hero-photo { max-width: 520px; }
}

.report-gallery {
  display: flex;
  gap: 1.2rem;
  margin-block: 1.8rem 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}
.report-gallery::-webkit-scrollbar { height: 8px; }
.report-gallery::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.report-gallery::-webkit-scrollbar-track { background: rgba(169,133,59,.12); border-radius: 999px; }
.report-gallery .report-page {
  flex: 0 0 clamp(230px, 40vw, 290px);
  scroll-snap-align: start;
}
.report-page { margin: 0; }
.report-page img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(38, 34, 30, .1);
  background: var(--white);
}
.report-page figcaption {
  margin-top: .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  text-align: center;
}

/* ---------- skin-analysis hero: framed sample report ----------
   Inherits .hero-photo placement (sits exactly where the room photo did);
   only the white document backing is added here. */
.report-hero img { background: var(--white); }

/* ---------- back-to-top button (appears after scrolling) ---------- */
.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 55;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(38, 34, 30, .18);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background .15s ease, color .15s ease;
}
.back-to-top.is-visible { opacity: 1; transform: none; }
.back-to-top:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
/* desktop: sit above the floating WhatsApp pill */
@media (min-width: 921px) { .back-to-top { bottom: calc(clamp(1rem, 3vw, 2rem) + 62px); } }
/* mobile: keep clear of the Call/WhatsApp/Book bar */
@media (max-width: 920px) { .back-to-top { bottom: calc(62px + 1rem); } }
@media (prefers-reduced-motion: reduce) { .back-to-top { transition: opacity .2s ease; transform: none; } }

/* ---------- media slots (real image or premium labeled placeholder) ---------- */
.media-slot {
  margin: 0;
  aspect-ratio: var(--ratio, 4 / 3);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ivory-2);
}
.media-slot img { width: 100%; height: 100%; object-fit: cover; }
.media-slot-empty {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.4rem;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(194, 155, 141, .16), transparent 60%),
    linear-gradient(150deg, var(--ivory-2), var(--sand));
  border: 1.5px dashed rgba(169, 133, 59, .5);
}
.media-slot-inner { max-width: 32ch; }
.media-slot-icon {
  display: inline-grid; place-items: center;
  width: 58px; height: 58px; margin: 0 auto .7rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  box-shadow: 0 8px 22px rgba(38, 34, 30, .1);
}
.media-slot-label { font-family: var(--font-display); font-size: 1.05rem; color: var(--charcoal); margin-bottom: .3rem; }
.media-slot-suggest { font-size: .86rem; color: var(--charcoal-soft); line-height: 1.5; }
.media-slot-file { font-size: .74rem; color: var(--gold-deep); margin-top: .5rem; letter-spacing: .01em; }
.media-slot-file code { background: rgba(169, 133, 59, .12); padding: .1em .4em; border-radius: 4px; font-family: ui-monospace, monospace; }

/* two-column media + copy band */
.media-band .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.media-band.reverse .media-slot { order: 2; }
@media (max-width: 820px) {
  .media-band .container { grid-template-columns: 1fr; }
  .media-band.reverse .media-slot { order: 0; }
}

/* ---------- home showcase ---------- */
.media-band h2 { margin-bottom: .3em; }
.prose-note { font-size: .92rem; color: var(--charcoal-soft); font-style: italic; border-left: 3px solid var(--rose); padding-left: .9rem; margin-block: 1rem; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}
.showcase-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: transform .16s ease, box-shadow .16s ease;
}
.showcase-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(38, 34, 30, .12); }
.showcase-card .media-slot { border-radius: 0; }
.showcase-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem .9rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  background: linear-gradient(to top, rgba(20, 15, 10, .8), transparent);
  display: flex; align-items: center; justify-content: space-between;
}
.showcase-card .media-slot-empty + .showcase-cap { color: var(--charcoal); background: none; }
.showcase-cap em { color: var(--gold); font-style: normal; }
@media (max-width: 820px) { .showcase-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .showcase-grid { grid-template-columns: 1fr 1fr; gap: .7rem; } }

/* ---------- checklist grid (suitability/benefits/causes lists) §4 ---------- */
.check-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.6rem;
  margin: 1.2rem 0;
}
.check-grid li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--charcoal-soft);
}
.check-grid li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
@media (max-width: 640px) { .check-grid { grid-template-columns: 1fr; } }

/* ---------- NAP / location lines ---------- */
.nap-lines {
  font-style: normal;
  display: grid;
  gap: .15rem;
  margin: 1rem 0;
  padding: 1.1rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--charcoal-soft);
  max-width: 46ch;
}
.nap-lines span:first-child { font-weight: 700; color: var(--charcoal); }

/* ---------- tertiary text-link button ---------- */
.btn-text {
  background: none;
  border: none;
  color: var(--gold-deep);
  padding: .74em .4em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-text:hover { color: var(--charcoal); background: none; }

/* content-table cells must wrap, never clip (§5) */
.content-table td, .content-table th { white-space: normal; word-break: break-word; }

/* ---------- clinic image placements (image doc) ---------- */
.location-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem;
  align-items: center;
  margin: 1.2rem 0;
}
.location-block .nap-lines { margin: 0; max-width: none; }
.location-photo { margin: 0; }
@media (max-width: 700px) { .location-block { grid-template-columns: 1fr; } }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

/* showcase cards hold landscape clinic images */
.showcase-card .media-slot { aspect-ratio: 4 / 3; }

/* real brand face-mark icon in the header */
.brand-icon { height: 44px; width: auto; display: block; }
@media (max-width: 560px) { .brand-icon { height: 38px; } }

/* ---------- AI scan video inside the skin-scan frame ---------- */
.skin-scan-frame.has-video { background: #0d1420; }
.scan-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* subtle brand veil so the overlay reads and colours stay on-brand */
.scan-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(60,78,67,.18), rgba(169,133,59,.14));
  mix-blend-mode: multiply;
}
.skin-scan-frame.has-video .scan-corner,
.skin-scan-frame.has-video .scan-line,
.skin-scan-frame.has-video .scan-dot,
.skin-scan-frame.has-video .scan-status { z-index: 2; }

/* ---------- 30-second quick-book form ---------- */
.quick-book .eyebrow { justify-content: flex-start; }
.quick-book h2 { margin-bottom: .2em; }
.qb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .qb-row { grid-template-columns: 1fr; } }
.qb-field label { margin-top: .6rem; }
.qb-chips { border: none; margin: 1.1rem 0 .2rem; padding: 0; }
.qb-chips legend { font-weight: 600; font-size: .95rem; margin-bottom: .5rem; padding: 0; }
.qb-chips legend span { color: var(--charcoal-soft); font-weight: 400; font-size: .85rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-block;
  padding: .5em 1em;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: .92rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  transition: border-color .12s ease, background .12s ease, color .12s ease;
}
.chip:hover span { border-color: var(--gold); }
.chip input:checked + span {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.chip input:focus-visible + span { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
.qb-reassure {
  display: flex; flex-wrap: wrap; gap: .4rem 1.1rem;
  justify-content: center;
  margin-top: .9rem;
  font-size: .86rem;
  color: var(--success);
}

/* ---------- AI scan panel on a light interior hero (e.g. /jaipur) ---------- */
.hero-grid:has(.skin-scan) { grid-template-columns: 1.15fr .85fr; align-items: center; }
.page-hero:not(.page-hero-home) .skin-scan {
  background: #2b2118;              /* solid device-screen card on light hero */
  border-color: rgba(233, 223, 206, .22);
}
@media (max-width: 1020px) {
  .hero-grid:has(.skin-scan) { grid-template-columns: 1fr; }
  .page-hero:not(.page-hero-home) .skin-scan { max-width: 480px; margin-top: .6rem; }
}

/* ================= stepped "Book in 30 seconds" card ================= */
.booking-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(38, 34, 30, .1);
  padding: clamp(1.3rem, 3vw, 1.9rem);
  max-width: 560px;
}
.bc-title { font-size: 1.5rem; margin-bottom: 1rem; }
.bc-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: .4rem;
  background: var(--ivory-2); border-radius: 12px; padding: .3rem;
}
.bc-seg { position: relative; cursor: pointer; }
.bc-seg input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.bc-seg span {
  display: block; text-align: center; padding: .6em .4em;
  border-radius: 9px; font-weight: 600; font-size: .92rem;
  color: var(--charcoal-soft); border: 1px solid transparent;
}
.bc-seg input:checked + span { background: var(--white); color: var(--charcoal); border-color: var(--line); box-shadow: 0 2px 6px rgba(38,34,30,.08); }
.bc-sub { color: var(--charcoal-soft); font-size: .95rem; margin: .9rem 0; }
.bc-badge {
  display: flex; align-items: center; gap: .5rem;
  background: var(--info-tint); border: 1px solid #DAE2E8;
  color: var(--info-blue); font-size: .9rem; font-weight: 500;
  padding: .6rem .8rem; border-radius: 10px; margin-bottom: 1.1rem;
}
.bc-check { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--info-blue); color: #fff; font-size: .7rem; flex: none; }

.bc-step { display: flex; align-items: center; gap: .55rem; margin: 1rem 0 .5rem; }
.bc-num { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--ivory-2); color: var(--charcoal-soft); font-size: .78rem; font-weight: 700; flex: none; }
.bc-label { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal-soft); }
.bc-input {
  width: 100%; font: inherit; padding: .8em .95em;
  border: 1px solid var(--line); border-radius: 10px; background: var(--white);
}
.bc-input:focus { outline: 2px solid var(--gold); border-color: transparent; }
.bc-datefield { margin-top: .5rem; }

.bc-times .chip span { display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
.bc-times .chip span small { font-size: .72rem; opacity: .8; font-weight: 400; }

.bc-note { display: flex; align-items: center; gap: .4rem; font-size: .84rem; color: var(--info-blue); margin: .9rem 0 1.1rem; }

.bc-phone-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: .6rem; }
@media (max-width: 480px) { .bc-phone-row { grid-template-columns: 1fr; } }
.bc-phone { display: flex; align-items: stretch; }
.bc-prefix {
  display: grid; place-items: center; padding: 0 .9em;
  background: var(--ivory-2); border: 1px solid var(--line); border-right: 0;
  border-radius: 10px 0 0 10px; font-weight: 600; color: var(--charcoal-soft);
}
.bc-phone .bc-input { border-radius: 0 10px 10px 0; }

.bc-submit {
  width: 100%; margin-top: 1.1rem; padding: 1em 1.2em;
  border: none; border-radius: 12px; cursor: pointer;
  background: var(--gold); color: #fff; font: inherit; font-weight: 700; font-size: 1.05rem;
  transition: background .15s ease, transform .15s ease;
}
.bc-submit:hover { background: var(--gold-deep); transform: translateY(-1px); }
.bc-alt { text-align: center; margin-top: .9rem; }

/* booking card sitting at the top of a page, in a tinted band */
.booking-top { background: var(--ivory-2); border-bottom: 1px solid var(--line); padding-block: clamp(1.6rem, 4vw, 2.6rem); }
.booking-top .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.booking-top .booking-card { max-width: none; }
.booking-aside .eyebrow { justify-content: flex-start; }
@media (max-width: 860px) {
  .booking-top .container { grid-template-columns: 1fr; }
  .booking-aside { order: -1; }
}

/* ================= bespoke booking page ================= */
.book-hero { background: var(--ivory-2); border-bottom: 1px solid var(--line); padding-block: clamp(1.8rem, 4vw, 3rem); }
.book-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }
.book-hero-copy { padding-top: .4rem; }
.book-hero-copy h1 { margin-bottom: .25em; }
.book-trust { list-style: none; display: grid; gap: .55rem; margin-top: 1.3rem; }
.book-trust li { display: flex; align-items: center; gap: .6rem; color: var(--charcoal); font-weight: 500; }
.bt-ic { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(76,122,92,.14); color: var(--success); font-size: .75rem; font-weight: 700; flex: none; }
.book-hero-form .booking-card { max-width: none; }
@media (max-width: 900px) {
  .book-hero-grid { grid-template-columns: 1fr; }
  .book-hero-form { order: -1; } /* form first on mobile */
}

/* three-step how-it-works */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 1.8rem; }
.step-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem 1.4rem; }
.step-badge { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #fff; font-family: var(--font-display); font-size: 1.2rem; margin-bottom: .7rem; }
.step-card h3 { margin: 0 0 .3rem; }
.step-card p { color: var(--charcoal-soft); font-size: .96rem; }
@media (max-width: 760px) { .step-grid { grid-template-columns: 1fr; } }

/* location + map */
.book-location { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.6rem; align-items: start; margin-top: 1.6rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 10; background: var(--ivory-2); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.book-hours { margin: .9rem 0; color: var(--charcoal-soft); }
@media (max-width: 760px) { .book-location { grid-template-columns: 1fr; } }

/* map fallback (shown if the embed is blocked) */
.map-embed { position: relative; }
.map-embed::before {
  content: "📍  C-Scheme, Jaipur";
  position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center;
  color: var(--charcoal-soft); font-weight: 600;
}
.map-embed iframe { position: relative; z-index: 1; }

/* ---------- suitability / benefit chips (Jul-08 changes) ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1rem 0 1.2rem; }
.tag {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5em 1em;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal-soft);
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.3;
}
a.tag-link {
  text-decoration: none;
  border-color: rgba(169,133,59,.4);
  color: var(--charcoal);
  transition: border-color .12s ease, background .12s ease, transform .12s ease;
}
a.tag-link:hover { border-color: var(--gold); background: rgba(169,133,59,.08); transform: translateY(-1px); }
a.tag-link em { color: var(--gold); font-style: normal; font-weight: 700; }

/* ---------- clinic timings as a 2-column grid ---------- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem 1.6rem;
  max-width: 40ch;
  margin: 1rem 0;
  padding: 1.1rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--charcoal-soft);
  font-size: .95rem;
}
.hours-cell.hours-full { grid-column: 1 / -1; font-weight: 600; color: var(--charcoal); }
@media (max-width: 480px) { .hours-grid { grid-template-columns: 1fr; } }

/* ---------- cohesive clinic-location panel (§Jul-08) ---------- */
.section-location .section-lede { max-width: 60ch; margin: 0 0 1.6rem; color: var(--charcoal-soft); }
.location-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px -30px rgba(60, 46, 20, .5);
}
.location-card-media { position: relative; min-height: 320px; }
.location-card-photo,
.location-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin: 0;
}
.location-card-body { padding: 2rem 2.1rem; }
.location-name {
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 0 0 .5rem;
}
.location-address {
  font-style: normal;
  display: grid;
  gap: .1rem;
  color: var(--charcoal-soft);
  margin: 0 0 1.4rem;
}
.location-subhead {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 0 .55rem;
}
.location-contact {
  display: grid;
  gap: .45rem;
  margin: 0 0 1.5rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--ivory-2);
}
.location-contact-row { display: flex; gap: .8rem; align-items: baseline; }
.location-contact-row dt {
  flex: 0 0 5rem;
  font-size: .78rem;
  color: var(--charcoal-soft);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding-top: .1rem;
}
.location-contact-row dd { margin: 0; font-weight: 600; color: var(--charcoal); white-space: nowrap; }
.location-contact-row dd a { color: var(--gold-deep); text-decoration: none; }
.location-contact-row dd a:hover { text-decoration: underline; }
.location-hours { margin: 0 0 1.6rem; padding: 1rem 0 0; border-top: 1px solid var(--ivory-2); }
.location-hours-list { display: grid; gap: .35rem; margin: 0; }
.location-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .1rem 0;
}
.location-hours-row dt { color: var(--charcoal-soft); }
.location-hours-row dd { margin: 0; font-weight: 600; color: var(--charcoal); }
.location-hours-row.is-closed dd { color: var(--gold-deep); }
.location-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
@media (max-width: 760px) {
  .location-card { grid-template-columns: 1fr; }
  .location-card-media { min-height: 220px; }
  .location-card-body { padding: 1.5rem 1.3rem; }
}

/* ---------- sticky on-page jump links (§8) — legible spacing ---------- */
.jump-links {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: rgba(250, 247, 242, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.jump-links .container {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: .55rem;
}
.jump-links .container::-webkit-scrollbar { display: none; }
.jump-links a {
  flex: none;
  padding: .5em 1.05em;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: background .12s ease, color .12s ease;
}
.jump-links a:hover { background: rgba(169,133,59,.12); color: var(--gold-deep); }
@media (max-width: 1080px) { .jump-links { top: 72px; } }

/* ---------- price tables: keep name/price on one line (Jul-08) ---------- */
.content-table { width: 100%; table-layout: fixed; }
/* keep the name + price columns on one line; let any description wrap */
.content-table th:first-child, .content-table td:first-child,
.content-table th:nth-child(2), .content-table td:nth-child(2) { white-space: nowrap; }
.content-table th:last-child, .content-table td:last-child { white-space: normal; }
/* cost section table can breathe full width */
.section-cost .prose { max-width: 980px; }
@media (max-width: 640px) {
  .content-table th, .content-table td { white-space: normal; }
}

/* ================= C-Scheme AI landing (PRD Jul-14) =================
   Mobile-first bespoke blocks for /jaipur/c-scheme only. Brand fonts and
   palette retained; two dark "tech" sections provide the colour break,
   with electric-cyan used sparingly against the existing gold. */
:root { --csl-cyan: #00E5FF; --csl-dark: #141310; --csl-darker: #100F0D; }

/* --- hero: full first viewport on mobile --- */
.csl-hero { padding-block: 2.2rem 3rem; }
.csl-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.6rem;
  align-items: center;
}
.csl-hero-copy h1 { margin-bottom: .4em; }
.csl-cta {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
  min-height: 48px;
}
@media (max-width: 820px) {
  .csl-hero { display: flex; align-items: stretch; }
  .csl-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    min-height: calc(100svh - 130px); /* header + breathing room: hero owns the first viewport */
    align-content: start;
    padding-block: .4rem 1rem;
  }
  .csl-hero-copy .lede { font-size: 1rem; }
  .csl-cta { width: 100%; justify-content: center; display: inline-flex; }
}

/* --- dark tech sections --- */
.csl-dark {
  background: var(--csl-dark);
  color: #EDE8DF;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.csl-dark h2 { color: #F7F3EA; }
.csl-darker { background: var(--csl-darker); }
.csl-eyebrow { color: var(--csl-cyan); }

/* --- Block 3: touch-swipe journey carousel --- */
.csl-journey {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1.6rem .2rem 1.2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}
.csl-journey::-webkit-scrollbar { height: 6px; }
.csl-journey::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.csl-step {
  flex: 0 0 82vw;
  max-width: 380px;
  scroll-snap-align: start;
  background: #1C1A16;
  border: 1px solid #2C2822;
  border-top: 2px solid var(--csl-cyan);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.4rem 1.6rem;
}
.csl-step:nth-child(even) { border-top-color: var(--gold); }
.csl-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--csl-cyan);
  display: block;
  margin-bottom: .5rem;
}
.csl-step:nth-child(even) .csl-step-num { color: var(--gold); }
.csl-step h3 { color: #F7F3EA; margin-bottom: .5rem; font-size: 1.15rem; }
.csl-step p { color: #C9C2B6; font-size: .95rem; margin: 0; }
.csl-swipe-hint { color: #8F877A; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin: 0; }
@media (min-width: 900px) { .csl-swipe-hint { display: none; } }

/* --- Block 4: offerings menu (asymmetric accent tabs) --- */
.csl-offers { display: grid; gap: 1rem; margin-top: 1.6rem; max-width: 760px; }
.csl-offer {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--csl-cyan);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--charcoal);
  transition: transform .15s ease, box-shadow .15s ease;
}
.csl-offer:nth-child(even) { border-left-color: var(--gold); }
.csl-offer:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -18px rgba(38,34,30,.4); }
.csl-offer-body { display: grid; gap: .2rem; }
.csl-offer-body strong { font-size: 1.02rem; }
.csl-offer-body span { color: var(--charcoal-soft); font-size: .92rem; }
.csl-offer-arrow { margin-left: auto; font-style: normal; color: var(--gold-deep); font-weight: 700; }
.csl-offer { position: relative; }
.csl-offer-title { color: inherit; text-decoration: none; }
.csl-offer-title:hover { color: var(--gold-deep); }
/* Stretch the title link over the whole card so the full tab is tappable
   (like the plain anchor cards)… */
.csl-offer-title::after { content: ""; position: absolute; inset: 0; }
/* …while the contextual in-copy link stays independently clickable above it */
.csl-inline-link { position: relative; z-index: 1; color: var(--gold-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.csl-inline-link:hover { color: var(--charcoal); }
.csl-badge {
  display: inline-block;
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #045A66;
  background: rgba(0,229,255,.14);
  border: 1px solid rgba(0,229,255,.4);
  border-radius: 999px;
  padding: .15rem .55rem;
  margin-left: .4rem;
  vertical-align: middle;
}

/* --- booking flow --- */
.csl-booking { display: grid; grid-template-columns: 1fr 1.05fr; gap: 2.4rem; align-items: start; }
.csl-booking-intro .btn { min-height: 44px; }
@media (max-width: 900px) { .csl-booking { grid-template-columns: 1fr; } }

/* --- Block 5: transparency (static, expanded) --- */
.csl-truth { display: grid; gap: 1.4rem; margin-top: 1.6rem; }
.csl-truth-item {
  background: #161616;
  border: 1px solid #2A2620;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.4rem 1.5rem;
}
.csl-truth-item h3 { color: var(--csl-cyan); font-size: 1.08rem; margin-bottom: .55rem; }
.csl-truth-item p { color: #D6CFC3; margin: 0; }
