/* ============================================================
   Fonts — self-hosted variable faces
   Fraunces: display serif, used large + restrained (headlines only)
   Public Sans: body/UI workhorse — legible, civic-grade
   ============================================================ */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("fonts/manrope-var.woff2") format("woff2");
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/publicsans-var.woff2") format("woff2");
}

/* ============================================================
   Tokens — palette overridden per-doctor via inline block in <head>
   ============================================================ */
:root {
  --ink: #10181a;
  --ink-soft: #4a5a58;
  --mist: #eef2f0;
  --mist-line: #d8e1de;
  --paper: #ffffff;
  --jade: #0f6d5c;
  --jade-deep: #0a4b40;
  --ember: #a8792f;

  --font-display: "Manrope", "Public Sans", -apple-system, sans-serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1220px;
  --edge: clamp(24px, 5vw, 64px);

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -24px rgba(8, 16, 18, 0.35);
  --shadow-sm: 0 10px 26px -12px rgba(8, 16, 18, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
.icon { width: 1em; height: 1em; flex-shrink: 0; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }

h1, h2, h3 {
  margin: 0; font-family: var(--font-display); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.02em; text-wrap: balance;
  color: var(--ink);
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--edge); position: relative; z-index: 1; }
.label {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--jade);
}
.label.on-dark { color: #8fd9c4; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: 100px; font-weight: 700; font-size: 14.5px;
  font-family: var(--font-body); letter-spacing: 0.01em;
  border: 1.5px solid transparent; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-solid { background: var(--ember); color: #fff; box-shadow: 0 14px 28px -10px color-mix(in srgb, var(--ember) 55%, transparent); }
.btn-solid:hover { background: color-mix(in srgb, var(--ember) 88%, black); transform: translateY(-2px); }
.btn-solid, .btn-solid:hover, .btn-solid:focus-visible, .btn-solid span { color: #fff; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-ink { background: transparent; border-color: var(--mist-line); color: var(--ink); }
.btn-outline-ink:hover { border-color: var(--jade); color: var(--jade); }
.btn .icon { width: 17px; height: 17px; }

/* ============================================================
   Utility bar (desktop only) — location, phone, hours, social
   ============================================================ */
.util-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101; background: var(--ink);
  font-size: 12.5px; transition: transform .3s ease, opacity .3s ease;
}
.util-bar.is-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.util-bar-inner { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; gap: 24px; }
.util-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.util-left a, .util-static { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.78); }
.util-left a:hover { color: #fff; }
.util-left .icon { width: 14px; height: 14px; color: #8fd9c4; flex-shrink: 0; }
.util-right { display: flex; align-items: center; gap: 14px; }
.util-right a { color: rgba(255,255,255,0.65); display: flex; transition: color .2s ease; }
.util-right a:hover { color: #fff; }
.util-right .icon { width: 15px; height: 15px; }
@media (max-width: 900px) { .util-bar { display: none; } }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 100;
  padding: 22px 0; transition: top .35s ease, padding .4s ease, background .4s ease, box-shadow .4s ease;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-mark { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); min-width: 0; }
.nav-mark .glyph {
  width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid color-mix(in srgb, var(--ink) 18%, transparent);
  display: flex; align-items: center; justify-content: center; color: var(--jade); flex-shrink: 0;
}
.nav-mark .glyph .icon { width: 19px; height: 19px; }
.nav-mark > span:last-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: currentColor; transform: scaleX(0); transition: transform .3s ease; transform-origin: left; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; border: none; padding: 6px; color: var(--ink); }
.nav-toggle .icon { width: 24px; height: 24px; }

.nav.is-scrolled { top: 0; background: rgba(238,242,240,0.86); backdrop-filter: blur(14px) saturate(140%); padding: 14px 0; box-shadow: 0 8px 30px -16px rgba(0,0,0,0.16); }

.nav-links-cta { display: none; }

@media (max-width: 900px) {
  .nav { top: 0; padding: 16px 14px 0; }
  .nav .container {
    background: rgba(255,255,255,0.92); backdrop-filter: blur(16px) saturate(160%);
    border-radius: 100px; padding: 8px 8px 8px 18px; box-shadow: var(--shadow-sm);
  }
  .nav.is-scrolled { background: rgba(255,255,255,0.92); padding: 16px 14px 0; box-shadow: var(--shadow-sm); }
  .nav.is-scrolled .container { box-shadow: none; }

  .nav-links {
    position: fixed; left: 14px; right: 14px; top: 76px; bottom: auto; max-height: 72vh;
    padding: 10px; background: #fff; border-radius: 22px; box-shadow: var(--shadow);
    flex-direction: column; align-items: stretch; gap: 2px; overflow-y: auto;
    transform: translateY(-10px) scale(0.98); opacity: 0; pointer-events: none;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
  }
  .nav-links.is-open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
  .nav-links a {
    font-size: 16px; padding: 15px 16px; width: 100%; border-radius: 14px;
    color: var(--ink); border-bottom: 1px solid var(--mist-line);
  }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-links-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 8px; padding: 15px; border-radius: 14px;
  }
  .nav-toggle {
    display: flex; align-items: center; justify-content: center; width: 42px; height: 42px;
    border-radius: 50%; background: var(--ink); color: #fff; flex-shrink: 0;
  }
  .nav-mark { font-size: 15px; }
  .nav-mark > span:last-child { max-width: 40vw; }
  .nav-mark .glyph { width: 34px; height: 34px; }
  .nav-right .btn span { display: none; }
  .nav-right .btn { padding: 12px; border-radius: 50%; }
  .nav-right .btn .icon { width: 18px; height: 18px; }
}

/* ============================================================
   HERO — split layout: copy left, photo right. Fits one screen.
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  background: var(--mist); overflow: hidden;
}
.field-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.field-blob {
  position: absolute; filter: blur(32px); opacity: 0.3;
  animation: blob-float 18s ease-in-out infinite;
}
.field-blob svg { width: 100%; height: 100%; }
@keyframes blob-float {
  0%, 100% { transform: translate(0,0) rotate(0deg) scale(1); }
  33% { transform: translate(-3%,4%) rotate(6deg) scale(1.05); }
  66% { transform: translate(3%,-3%) rotate(-5deg) scale(0.97); }
}

.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-photo--slideshow img {
  --hero-slide-y: 0px;
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(var(--hero-slide-y)) scale(1.035);
  transform-origin: center top;
  animation: hero-crossfade 8s ease-in-out infinite;
}
.hero-photo--slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-photo--slideshow img:nth-child(2) { animation-delay: 4s; }
@keyframes hero-crossfade {
  0%, 42% { opacity: 1; transform: translateY(var(--hero-slide-y)) scale(1); }
  50%, 92% { opacity: 0; transform: translateY(var(--hero-slide-y)) scale(1.035); }
  100% { opacity: 1; transform: translateY(var(--hero-slide-y)) scale(1); }
}
.hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--mist) 0%, color-mix(in srgb, var(--mist) 55%, transparent) 20%, transparent 40%);
}
.site-waqas-khan .hero-photo img {
  object-position: 61% top;
  transform: translateY(clamp(84px, 9vh, 104px));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
}
.site-asma-malik .hero-photo img {
  object-position: 62% top;
  transform: translateY(clamp(88px, 9vh, 112px));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
}
.site-asma-malik .hero-photo--slideshow img { --hero-slide-y: clamp(88px, 9vh, 112px); }
.site-arshad-joiya .hero-photo img {
  object-position: 62% top;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
}
.site-arshad-joiya .hero-photo--slideshow img { --hero-slide-y: clamp(132px, 13vh, 154px); }
.site-farrukh-tasleem .hero-photo img {
  object-position: 62% top;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
}
.site-farrukh-tasleem .hero-photo--slideshow img { --hero-slide-y: clamp(108px, 11vh, 128px); }
.site-hammad-yasir .hero-photo img {
  object-position: 62% top;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
}
.site-hammad-yasir .hero-photo--slideshow img { --hero-slide-y: clamp(118px, 12vh, 136px); }

.hero .container.hero-inner { position: relative; z-index: 1; flex: 1; width: 100%; display: flex; align-items: center; padding-top: 132px; padding-bottom: 40px; }

.hero-copy { max-width: 520px; text-align: left; }
.hero-copy .label, .hero-copy .hero-kicker, .hero-copy .hero-statement, .hero-copy .hero-lead, .hero-copy .hero-actions {
  opacity: 0; transform: translateY(36px); filter: blur(4px);
  transition: opacity 1s cubic-bezier(.16,.8,.2,1), transform 1s cubic-bezier(.16,.8,.2,1), filter 1s ease;
}
.hero-copy.in .label { opacity: 1; transform: none; filter: blur(0); transition-delay: 0s; }
.hero-copy.in .hero-kicker { opacity: 1; transform: none; filter: blur(0); transition-delay: .18s; }
.hero-copy.in .hero-statement { opacity: 1; transform: none; filter: blur(0); transition-delay: .36s; }
.hero-copy.in .hero-lead { opacity: 1; transform: none; filter: blur(0); transition-delay: .54s; }
.hero-copy.in .hero-actions { opacity: 1; transform: none; filter: blur(0); transition-delay: .72s; }

.hero-kicker { margin-top: 16px; color: var(--ink-soft); font-weight: 600; font-size: clamp(14.5px, 1.5vw, 17px); }
.hero-mobile-summary { display: none; }
.hero-statement {
  margin-top: 14px; color: var(--ink); font-weight: 800;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.08;
}
.hero-statement .accent { color: var(--jade); }
.hero-lead { margin-top: 20px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); max-width: 480px; }
.hero-actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.hero-actions .btn-outline { border-color: var(--mist-line); color: var(--ink); }
.hero-actions .btn-outline:hover { border-color: var(--jade); color: var(--jade); background: color-mix(in srgb, var(--jade) 6%, transparent); }

.floating-badge {
  position: absolute; z-index: 2; border-radius: 16px; padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); max-width: 210px;
  animation: bob 6s ease-in-out infinite;
  opacity: 0; transition: opacity .8s ease .7s;
}
.hero.is-in .floating-badge { opacity: 1; }
.floating-badge .icon-wrap {
  width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--jade) 14%, white); color: var(--jade); flex-shrink: 0;
}
.floating-badge .icon-wrap .icon { width: 19px; height: 19px; }
.floating-badge strong { display: block; font-size: 14px; font-family: var(--font-display); color: var(--ink); }
.floating-badge span { font-size: 11px; color: var(--ink-soft); }
.badge-1 { top: 16%; right: 7%; }
.badge-2 { bottom: 13%; right: 34%; animation-delay: -3s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    display: flex;
    padding-top: 0;
    background: var(--ink);
    overflow: hidden;
  }
  .field-blobs { display: none; }
  .hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: auto;
    width: 100%;
    overflow: hidden;
    background: var(--mist);
  }
  .hero-photo::before { display: none; }
  .hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,14,16,0.02) 0%, rgba(6,14,16,0.08) 38%, rgba(6,14,16,0.72) 72%, rgba(6,14,16,0.94) 100%);
    pointer-events: none;
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 73% top;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-photo--slideshow img {
    --hero-slide-y: 0px;
    transform-origin: center top;
  }
  .site-waqas-khan .hero-photo img {
    width: 112%;
    object-position: 80% top;
    transform: translateX(-7%);
  }
  .site-asma-malik .hero-photo img {
    object-position: 70% top;
    transform: none;
  }
  .site-asma-malik .hero-photo--slideshow img,
  .site-arshad-joiya .hero-photo--slideshow img,
  .site-farrukh-tasleem .hero-photo--slideshow img,
  .site-hammad-yasir .hero-photo--slideshow img { --hero-slide-y: 0px; }
  .site-arshad-joiya .hero-photo img { object-position: 70% top; }
  .site-farrukh-tasleem .hero-photo img { object-position: 70% top; }
  .site-hammad-yasir .hero-photo img { object-position: 86% top; }
  .hero .container.hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: stretch;
    min-height: 100svh;
    flex: 1;
    padding-top: 118px;
    padding-bottom: 28px;
    margin-top: 0;
    width: 100%;
    z-index: 2;
  }
  .hero-copy {
    max-width: 100%;
    padding: 0 4px;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    text-shadow: 0 2px 18px rgba(0,0,0,0.36);
  }
  .hero-copy .label,
  .hero-copy .hero-kicker,
  .hero-copy .hero-statement,
  .hero-copy .hero-lead,
  .hero-copy .hero-actions {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .hero-copy .label {
    display: inline-flex;
    width: fit-content;
    padding: 6px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0,0,0,0.28);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
  }
  .hero-kicker,
  .hero-lead {
    display: none;
  }
  .hero-mobile-summary {
    display: block;
    margin-top: 9px;
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
    max-width: 30ch;
  }
  .hero-statement {
    margin-top: 10px;
    color: #fff;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.06;
    max-width: 10ch;
  }
  .hero-actions {
    margin-top: 22px;
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 1 1 145px;
    justify-content: center;
    min-height: 48px;
    padding: 13px 14px;
  }
  .hero-actions .btn-outline {
    border-color: rgba(255,255,255,0.46);
    color: #fff;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
  }
  .hero-actions .btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.14); }
  .floating-badge { display: none; }
}

/* ============================================================
   Seam divider — organic curve between chapters
   ============================================================ */
.seam { display: block; width: 100%; position: relative; z-index: 2; margin-bottom: -1px; line-height: 0; }
.seam svg { width: 100%; height: auto; display: block; }

/* ============================================================
   Stats — contained animated panel (not edge-to-edge)
   ============================================================ */
.stats-wrap { padding: 0 0 90px; background: var(--mist); }
.stats-panel {
  max-width: 980px; margin: 0 auto; background: var(--paper); border-radius: var(--radius);
  box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 6px; position: relative; top: -46px;
}
.stat-tile {
  padding: 30px 20px; text-align: center; position: relative;
}
.stat-tile:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 22%; bottom: 22%; width: 1px; background: var(--mist-line); }
.stat-tile .stat-icon {
  width: 40px; height: 40px; border-radius: 11px; margin: 0 auto 14px; color: var(--jade);
  background: color-mix(in srgb, var(--jade) 10%, white); display: flex; align-items: center; justify-content: center;
}
.stat-tile .stat-icon .icon { width: 20px; height: 20px; }
.stat-tile strong { display: block; font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-variant-numeric: tabular-nums; }
.stat-tile span { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
@media (max-width: 760px) {
  .stats-wrap { padding-top: 52px; }
  .stats-panel { grid-template-columns: repeat(2, 1fr); top: 0; }
  .stat-tile:nth-child(2)::after { display: none; }
  .stat-tile:nth-child(3), .stat-tile:nth-child(4) { padding-top: 26px; }
  .stat-tile:nth-child(1), .stat-tile:nth-child(2) { border-bottom: 1px solid var(--mist-line); }
}

/* ============================================================
   Chapter sections
   ============================================================ */
.chapter { position: relative; padding: 0 0 110px; scroll-margin-top: 90px; }
.appt-chapter { scroll-margin-top: 90px; }
.chapter-light { background: var(--mist); }
.chapter-dark { background: var(--ink); color: #fff; }
.chapter-paper { background: var(--paper); }

.chapter-head { max-width: 640px; margin-bottom: 52px; }
.chapter-head .label { margin-bottom: 16px; display: inline-block; }
.chapter-head h2 { font-size: clamp(30px, 4vw, 44px); }
.chapter-head p { margin-top: 18px; font-size: 17px; color: var(--ink-soft); }
.chapter-dark .chapter-head p { color: rgba(255,255,255,0.68); }
.appt-chapter .chapter-head p { color: rgba(255,255,255,0.9); max-width: 720px; margin-left: auto; margin-right: auto; }
.chapter-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================================
   About — pull-quote + shaped frame + roadmap timeline
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 7vw; align-items: center; }
.about-visual { position: relative; min-width: 0; }
.about-copy { min-width: 0; }
.about-photo {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/3.5; position: relative; box-shadow: var(--shadow);
  z-index: 1;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-frame {
  position: absolute; inset: 18px -18px -18px 18px; border: 2px solid color-mix(in srgb, var(--jade) 40%, transparent);
  border-radius: var(--radius); z-index: 0;
}
.about-credential-tag {
  position: absolute; left: 20px; bottom: -20px; background: var(--paper); z-index: 2;
  border-radius: var(--radius-sm); padding: 12px 16px; box-shadow: var(--shadow-sm);
}
.about-credential-tag strong { display: block; font-family: var(--font-display); font-size: 15px; }
.about-credential-tag span { font-size: 11.5px; color: var(--ink-soft); }

.about-copy .pull-quote {
  font-family: var(--font-display); font-weight: 700; color: var(--jade-deep);
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4; max-width: 32ch; letter-spacing: -0.01em;
}
.about-copy .credentials { margin-top: 20px; color: var(--ink-soft); font-size: 14.5px; font-weight: 600; }
.about-copy p.lead { margin-top: 16px; font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); max-width: 60ch; }

.roadmap { position: relative; margin-top: 46px; min-width: 0; }
.roadmap-line {
  position: absolute; left: 0; right: 0; top: 10px; height: 2px; background: var(--mist-line);
  transform: scaleX(0); transform-origin: left; transition: transform 1.1s cubic-bezier(.2,.8,.2,1) .15s;
}
.roadmap.in-view .roadmap-line { transform: scaleX(1); }

.roadmap-track {
  position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; min-width: 0;
}
.roadmap-node { position: relative; text-align: center; padding-top: 30px; }
.roadmap-node .dot {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, 0) scale(0); width: 15px; height: 15px; border-radius: 50%;
  background: var(--jade); border: 3px solid var(--paper); box-shadow: 0 0 0 1.5px var(--jade); z-index: 1;
  transition: transform .45s cubic-bezier(.2,1.4,.4,1);
}
.roadmap-track.in-view .roadmap-node .dot { transform: translate(-50%, 0) scale(1); }
.roadmap-node .yr { font-family: var(--font-display); color: var(--jade); font-size: 14px; font-variant-numeric: tabular-nums; display: block; margin-bottom: 5px; }
.roadmap-node h4 { margin: 0 0 4px; font-size: 12.5px; font-weight: 700; line-height: 1.3; }
.roadmap-node p { font-size: 11.5px; color: var(--ink-soft); line-height: 1.4; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px 0; }
  .about-visual { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .roadmap-track { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
  .roadmap-node p { display: none; }

  .site-waqas-khan .roadmap {
    margin-top: 34px;
    padding: 16px 0 8px;
    overflow: hidden;
  }
  .site-waqas-khan .roadmap-line { display: none; }
  .site-waqas-khan .roadmap-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 6px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .site-waqas-khan .roadmap-track::-webkit-scrollbar { display: none; }
  .site-waqas-khan .roadmap-node {
    flex: 0 0 min(74vw, 260px);
    scroll-snap-align: start;
    text-align: left;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background:
      linear-gradient(135deg, color-mix(in srgb, var(--jade) 10%, white), #fff 54%),
      var(--paper);
    border: 1px solid color-mix(in srgb, var(--jade) 18%, var(--mist-line));
    box-shadow: 0 18px 40px -32px rgba(8,16,18,0.45);
  }
  .site-waqas-khan .roadmap-node .dot {
    position: static;
    transform: none;
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 8px;
    border: 0;
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--jade) 12%, transparent);
    vertical-align: middle;
  }
  .site-waqas-khan .roadmap-track.in-view .roadmap-node .dot { transform: none; }
  .site-waqas-khan .roadmap-node .yr {
    display: inline-flex;
    align-items: center;
    margin: 0 0 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--jade) 11%, white);
    color: var(--jade-deep);
    font-size: 13px;
    font-weight: 800;
  }
  .site-waqas-khan .roadmap-node h4 {
    font-size: 14px;
    line-height: 1.28;
  }
  .site-waqas-khan .roadmap-node p {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
  }
}
@media (max-width: 380px) {
  .roadmap-track { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Services — accordion grid (interactive, explains itself)
   ============================================================ */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.services-more { margin-top: 30px; text-align: center; }
.services-more .btn { white-space: normal; max-width: 100%; }
.service-acc {
  background: var(--paper); border: 1px solid var(--mist-line); border-radius: var(--radius-sm); overflow: hidden;
}
.service-acc-head {
  display: flex; align-items: center; gap: 18px; padding: 22px 22px; width: 100%; background: none; border: none;
  text-align: left; cursor: pointer;
}
.service-acc-icon {
  width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--jade) 10%, white); color: var(--jade); flex-shrink: 0;
}
.service-acc-icon .icon { width: 23px; height: 23px; }
.service-acc-head h3 { flex: 1; font-family: var(--font-body); font-weight: 700; font-size: 16px; }
.service-acc-head h3 small { display: block; font-weight: 500; font-size: 13px; color: var(--ink-soft); margin-top: 3px; }
.service-acc-chevron { color: var(--ink-soft); transition: transform .3s ease; flex-shrink: 0; }
.service-acc-chevron .icon { width: 20px; height: 20px; }
.service-acc.is-open .service-acc-chevron { transform: rotate(180deg); color: var(--jade); }
.service-acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.service-acc-body-inner { padding: 0 22px 24px 88px; }
.service-acc-body-inner p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.service-acc-body-inner .signs { margin-top: 12px; font-size: 12.5px; color: var(--jade); font-weight: 600; }
.service-acc-body-inner .book-mini {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  color: var(--jade); border-bottom: 1.5px solid color-mix(in srgb, var(--jade) 40%, transparent); padding-bottom: 2px;
}
.service-acc-body-inner .book-mini .icon { width: 14px; height: 14px; }
@media (max-width: 760px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-acc-body-inner { padding-left: 22px; }
}

/* ============================================================
   Reviews — auto-scrolling marquee, pauses on interaction
   ============================================================ */
.reviews-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reviews-rail {
  display: flex; gap: 22px; width: max-content;
  animation: marquee 34s linear infinite;
}
.reviews-viewport:hover .reviews-rail, .reviews-viewport:focus-within .reviews-rail { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
  flex: 0 0 min(400px, 82vw);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 30px;
}
.review-card .icon-quote { width: 24px; height: 24px; color: #8fd9c4; margin-bottom: 18px; }
.review-card p.quote { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.92); }
.review-who { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--jade); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.review-who strong { font-size: 14px; display: block; color: #fff; }
.review-who span { font-size: 12px; color: rgba(255,255,255,0.55); }
@media (prefers-reduced-motion: reduce) { .reviews-rail { animation: none; } }

/* ============================================================
   Appointment — dark chapter, real booking flow
   ============================================================ */
.appt-chapter {
  position: relative; background: var(--ink); color: #fff; overflow: hidden; padding-top: 100px;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
}
.appt-chapter::before {
  content: ""; position: absolute; inset: -20%; z-index: 0;
  background: radial-gradient(circle at 18% 30%, color-mix(in srgb, var(--jade) 45%, transparent), transparent 55%),
              radial-gradient(circle at 85% 75%, color-mix(in srgb, var(--ember) 30%, transparent), transparent 50%);
}
.appt-card {
  position: relative; z-index: 1; border-radius: var(--radius); padding: 30px 32px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.appt-card-solo { max-width: 640px; margin: 0 auto; }
.appt-card h3 { font-family: var(--font-display); font-size: 21px; }
.appt-card > p.sub { color: var(--ink-soft); font-size: 13.5px; margin-top: 4px; }

.type-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.type-option {
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--mist-line); font-size: 13.5px; font-weight: 700; color: var(--ink-soft); cursor: pointer;
  transition: all .2s ease;
}
.type-option .icon { width: 17px; height: 17px; }
.type-option input { position: absolute; opacity: 0; pointer-events: none; }
.type-option.is-active { border-color: var(--jade); background: color-mix(in srgb, var(--jade) 8%, white); color: var(--jade-deep); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--mist-line); border-radius: var(--radius-sm); padding: 12px 14px;
  font-family: inherit; font-size: 14px; color: var(--ink); background: var(--mist);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--jade); background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--jade) 14%, transparent);
}
.form-field textarea { resize: vertical; min-height: 70px; }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; margin-top: 4px; }
.slot-btn {
  padding: 9px 6px; border-radius: 9px; border: 1.5px solid var(--mist-line); background: var(--mist);
  font-size: 12.5px; font-weight: 700; color: var(--ink); cursor: pointer; transition: all .2s ease;
  font-variant-numeric: tabular-nums;
}
.slot-btn:hover:not(:disabled) { border-color: var(--jade); color: var(--jade-deep); }
.slot-btn.is-selected { background: var(--jade); border-color: var(--jade); color: #fff; }
.slot-btn:disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.slot-hint { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }

.payment-panel {
  margin-top: 4px; padding: 16px 18px; border-radius: var(--radius-sm); background: color-mix(in srgb, var(--ember) 8%, white);
  border: 1px dashed color-mix(in srgb, var(--ember) 40%, transparent);
}
.payment-panel h4 { margin: 0 0 10px; font-size: 13.5px; font-weight: 700; display: flex; align-items: center; gap: 8px; color: color-mix(in srgb, var(--ember) 80%, black); }
.payment-panel h4 .icon { width: 16px; height: 16px; }
.payment-rows { display: grid; gap: 6px; font-size: 13px; color: var(--ink-soft); }
.payment-rows strong { color: var(--ink); }
.upload-field {
  margin-top: 12px; border: 1.5px dashed var(--mist-line); border-radius: var(--radius-sm); padding: 14px;
  display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-soft); cursor: pointer; background: #fff;
  transition: border-color .2s ease;
}
.upload-field:hover { border-color: var(--jade); }
.upload-field .icon { width: 18px; height: 18px; color: var(--jade); flex-shrink: 0; }
.upload-field input { display: none; }
.upload-field .file-name { font-weight: 700; color: var(--ink); }

.form-note { font-size: 12px; color: var(--ink-soft); margin-top: 14px; display: flex; gap: 8px; align-items: flex-start; }
.form-note .icon { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; color: var(--jade); }
.form-submit { margin-top: 18px; width: 100%; }

.appt-success { display: none; text-align: center; padding: 20px 10px; }
.appt-success.show { display: block; animation: appt-success-in .7s cubic-bezier(.2,.8,.2,1); }
@keyframes appt-success-in {
  0% { opacity: 0; transform: translateY(22px) scale(.97); }
  100% { opacity: 1; transform: none; }
}
.appt-success .check-circle {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 20px; background: color-mix(in srgb, var(--jade) 12%, white);
  display: flex; align-items: center; justify-content: center; color: var(--jade);
  animation: pop-in .5s cubic-bezier(.2,1.4,.4,1) .15s backwards;
}
.appt-success .check-circle .icon { width: 34px; height: 34px; }
@keyframes pop-in { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.appt-success h3 { font-size: 21px; }
.appt-success p { margin-top: 10px; color: var(--ink-soft); font-size: 14.5px; max-width: 40ch; margin-left: auto; margin-right: auto; }
.appt-success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.appt-form-wrap.is-hidden { display: none; }

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

/* ============================================================
   Why Choose Us
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-tile {
  position: relative; overflow: hidden; min-height: 310px; padding: 168px 20px 22px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--mist-line); box-shadow: 0 18px 44px -30px rgba(8,16,18,0.45);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.why-tile:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--jade) 32%, var(--mist-line)); box-shadow: 0 28px 60px -34px rgba(8,16,18,0.55); }
.why-tile:not(.has-image) { min-height: 0; padding-top: 28px; }
.why-media { position: absolute; inset: 0 0 auto; height: 150px; overflow: hidden; background: var(--mist); }
.why-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(255,255,255,0.96) 100%);
}
.why-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.why-tile:hover .why-media img { transform: scale(1.06); }
.why-icon {
  position: relative; z-index: 1; width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--jade) 10%, white); color: var(--jade); margin-bottom: 18px; box-shadow: 0 10px 24px -18px rgba(8,16,18,0.45);
}
.why-icon .icon { width: 25px; height: 25px; }
.why-tile h3 { position: relative; z-index: 1; font-family: var(--font-body); font-size: 15px; line-height: 1.16; font-weight: 800; margin-bottom: 10px; }
.why-tile p { position: relative; z-index: 1; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { max-width: 780px; border-top: 1px solid var(--mist-line); }
.faq-item { border-bottom: 1px solid var(--mist-line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; background: none; border: none; text-align: left; font-size: 16px; font-weight: 700; color: var(--ink);
  cursor: pointer; font-family: var(--font-body);
}
.faq-q .icon { width: 20px; height: 20px; color: var(--ink-soft); flex-shrink: 0; transition: transform .3s ease; }
.faq-item.is-open .faq-q .icon { transform: rotate(180deg); color: var(--jade); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 4px 22px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; max-width: 68ch; }

/* ============================================================
   Contact Us section (map + clickable contact cards)
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; min-width: 0; }
.contact-cards { display: grid; gap: 12px; min-width: 0; }
.contact-card {
  display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: var(--radius-sm); min-width: 0;
  background: var(--paper); border: 1px solid var(--mist-line); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-card > span:not(.icon-wrap):not(.go) { min-width: 0; }
.map-col { min-width: 0; }
.contact-card:not(.is-static):hover { border-color: var(--jade); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-card .icon-wrap {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--jade) 10%, white); color: var(--jade); flex-shrink: 0;
}
.contact-card .icon-wrap .icon { width: 20px; height: 20px; }
.contact-card strong { display: block; font-size: 14.5px; }
.contact-card span span { font-size: 12.5px; color: var(--ink-soft); }
.contact-card .go { width: 15px; height: 15px; margin-left: auto; color: var(--mist-line); flex-shrink: 0; }
.contact-card:hover .go { color: var(--jade); }
.contact-social-row { display: flex; gap: 10px; margin-top: 6px; }
.contact-social-row a {
  width: 40px; height: 40px; border-radius: 11px; background: var(--paper); border: 1px solid var(--mist-line);
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft); transition: all .2s ease;
}
.contact-social-row a:hover { background: var(--jade); border-color: var(--jade); color: #fff; }
.contact-social-row .icon { width: 17px; height: 17px; }

.map-col { position: sticky; top: 100px; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--mist-line); }
.map-frame iframe { width: 100%; height: 360px; border: 0; display: block; filter: grayscale(0.15) contrast(1.05); }
.maps-btn { width: 100%; margin-top: 14px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-col { position: static; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 56px 0 26px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; }
.footer .nav-mark { color: #fff; }
.footer .nav-mark .glyph { border-color: rgba(255,255,255,0.3); color: #fff; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.footer-social a:hover { background: var(--jade); }
.footer-social .icon { width: 16px; height: 16px; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ============================================================
   Reveal on scroll — restrained: opacity + gentle rise only
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1); }
[data-reveal-stagger].in-view > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].in-view > *:nth-child(1) { transition-delay: .04s; }
[data-reveal-stagger].in-view > *:nth-child(2) { transition-delay: .1s; }
[data-reveal-stagger].in-view > *:nth-child(3) { transition-delay: .16s; }
[data-reveal-stagger].in-view > *:nth-child(4) { transition-delay: .22s; }
[data-reveal-stagger].in-view > *:nth-child(5) { transition-delay: .28s; }
[data-reveal-stagger].in-view > *:nth-child(6) { transition-delay: .34s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Conditions page
   ============================================================ */
.cond-hero { position: relative; overflow: hidden; background: var(--mist); padding: 150px 0 60px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; font-weight: 600; }
.breadcrumb a { color: var(--jade); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .icon { width: 13px; height: 13px; }
.cond-hero h1 { font-size: clamp(30px, 4.4vw, 48px); margin-top: 16px; }
.cond-hero .lead { margin-top: 18px; font-size: 17px; color: var(--ink-soft); max-width: 62ch; }

.cond-block { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 6vw; align-items: center; padding: 60px 0; }
.cond-block.is-reverse { grid-template-columns: 1.25fr 0.75fr; }
.cond-block.is-reverse .cond-visual { order: 2; }
.cond-divider { height: 1px; background: var(--mist-line); }

.cond-visual { display: flex; justify-content: center; }
.cond-diagram {
  position: relative; width: min(280px, 70vw); aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(150deg, color-mix(in srgb, var(--jade) 16%, white), color-mix(in srgb, var(--ember) 10%, white));
  display: flex; align-items: center; justify-content: center; color: var(--jade);
}
.cond-diagram .icon { width: 34%; height: 34%; }
.cond-diagram-ring {
  position: absolute; inset: -16px; border-radius: 50%; border: 1.5px dashed color-mix(in srgb, var(--jade) 35%, transparent);
}

.cond-icon-chip {
  width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--jade) 10%, white); color: var(--jade); margin-bottom: 18px;
}
.cond-icon-chip .icon { width: 22px; height: 22px; }
.cond-copy h2 { font-size: clamp(24px, 2.8vw, 32px); }
.cond-overview { margin-top: 16px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 62ch; }
.cond-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 26px 0 28px; }
.cond-meta-grid h4 {
  display: flex; align-items: center; gap: 8px; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em;
  font-weight: 700; color: var(--jade-deep); margin-bottom: 8px;
}
.cond-meta-grid h4 .icon { width: 14px; height: 14px; }
.cond-meta-grid p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

.cond-cta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }

@media (max-width: 860px) {
  .cond-block, .cond-block.is-reverse { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .cond-block.is-reverse .cond-visual { order: 0; }
  .cond-meta-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   WhatsApp FAB
   ============================================================ */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px -6px rgba(0,0,0,0.4);
}
.fab-whatsapp .icon { width: 27px; height: 27px; }
