/* ============================================================
   Local design clone — matched to voltcartel.com layouts
   Exact colors + sizes; original placeholder content.
   Fonts: Archivo Expanded / Inter / Space Grotesk
   ============================================================ */

:root {
  --red: #087e8b;
  --red-dark: #066570;
  --ink: #171313;
  --ink-2: #2c2622;
  --grey: #5c554f;
  --grey-2: #6f665c;
  --grey-3: #b7aca6;
  --cream: #f4efe9;
  --cream-2: #faf7f4;
  --sand: #efe8e0;
  --line: #e4ded5;
  --white: #ffffff;

  --font-display: "Archivo Expanded", "Arial Black", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-mono: "Space Grotesk", monospace;

  --wrap: 1440px;
  --pad: 51px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Clip stray horizontal overflow (off-canvas drawer, wide titles) without breaking position:sticky */
html, body { overflow-x: clip; max-width: 100%; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--white); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

.display { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.9; margin: 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.84px; text-transform: uppercase; text-decoration: none; padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; line-height: 1.1; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(23,19,19,0.28); }
.btn-ghost:hover { border-color: var(--ink); }
/* Hero ghost button sits over a photo — give it a solid frosted panel so it stays visible. */
.hero-cta .btn-ghost { background: rgba(255,255,255,0.92); color: var(--ink); border-color: rgba(255,255,255,0.92); box-shadow: 0 8px 22px rgba(23,19,19,0.14); backdrop-filter: blur(2px); }
.hero-cta .btn-ghost:hover { background: #fff; border-color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--cream); }
.btn-block { width: 100%; justify-content: center; }

.link-arrow { font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; text-decoration: none; color: var(--red); white-space: nowrap; }
.link-arrow:hover { color: var(--red-dark); }

/* ---------- Eyebrows ---------- */
.eyebrow, .section-eyebrow { font-family: var(--font-mono); font-weight: 500; font-size: 13px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 12px; margin: 0 0 24px; }
.eyebrow-dash { width: 30px; height: 2px; background: var(--red); display: inline-block; }
.section-eyebrow.light { color: #7fd4c6; }
.section-eyebrow.center { justify-content: center; }

/* ============ UTILITY BAR ============ */
.utility-bar { background: var(--ink); color: #cfc7c0; font-family: var(--font-mono); }
.utility-inner { display: flex; justify-content: space-between; align-items: center; height: 44px; font-size: 13px; letter-spacing: 0.02em; }
.utility-left { display: flex; gap: 24px; }
.u-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.utility-bar a.u-item { color: inherit; text-decoration: none; }
.utility-bar a.u-item:hover { color: #fff; }
.utility-social { display: inline-flex; align-items: center; gap: 16px; }
.utility-social a { color: #cfc7c0; display: inline-flex; }
.utility-social a:hover { color: #3fbfae; }
.utility-social svg { width: 15px; height: 15px; display: block; }
.u-ic { color: var(--red); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #d1a24a; display: inline-block; }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; gap: 22px; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img { height: 46px; width: auto; display: block; }
.logo-line { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; color: var(--red); font-size: 25px; letter-spacing: 0.01em; }
.main-nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.main-nav a { text-decoration: none; color: var(--ink); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; }
.main-nav a:hover { color: var(--red); }
.caret { color: var(--grey-3); font-size: 11px; }

/* ---- Dropdown + mega menu (desktop hover) ---- */
.main-nav li { position: relative; }
.has-dropdown > a .caret { transition: transform 0.2s ease; }
.has-dropdown:hover > a .caret { transform: rotate(180deg); color: var(--red); }
.dropdown, .mega {
  position: absolute; top: 100%; left: 0; z-index: 130;
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--red);
  box-shadow: 0 20px 44px rgba(23,19,19,0.13);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.dropdown { min-width: 250px; padding: 12px 0; }
.has-dropdown:hover > .dropdown,
.has-dropdown:hover > .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 18px; }
.dropdown a { display: block; padding: 11px 24px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); text-decoration: none; white-space: nowrap; }
.dropdown a:hover { color: var(--red); background: var(--cream); }
.mega { display: grid; grid-template-columns: repeat(auto-fit, 178px); gap: 24px 18px; padding: 26px 26px 22px; align-items: start; justify-content: center; }
.mega-col { min-width: 0; }
.mega-col h5 { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; color: var(--grey-2); margin: 0 0 8px; padding: 0 8px; }
.mega-col a { display: block; padding: 8px; font-size: 14px; font-weight: 500; color: var(--ink-2); text-decoration: none; border-radius: 4px; }
.mega-col a:hover { color: var(--red); background: var(--cream); }
.mega-all { color: var(--red); font-weight: 700 !important; margin-top: 8px; border-top: 1px solid var(--line); padding-top: 12px !important; }

/* Desktop: anchor the mega to the header container so it never overflows the right edge */
@media (min-width: 1041px) {
  .header-inner { position: relative; }
  .main-nav > ul { height: 88px; align-items: stretch; }
  .main-nav > ul > li { display: flex; align-items: center; }
  .main-nav li.has-mega { position: static; }
  .main-nav li.has-mega .mega { left: 0; right: 0; margin-left: auto; margin-right: auto; width: fit-content; max-width: min(96vw, 1250px); }
}
.header-actions { display: flex; align-items: center; gap: 16px; }
.icon-btn { background: none; border: none; cursor: pointer; color: var(--ink); line-height: 1; padding: 4px; display: inline-flex; align-items: center; justify-content: center; }
.icon-btn svg { width: 21px; height: 21px; display: block; }
.icon-btn:hover { color: var(--red); }
.btn-book { padding: 12px 20px; }
.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); display: block; transition: 0.25s; }

/* Off-canvas drawer backdrop + scroll lock (used on mobile) */
.nav-backdrop { position: fixed; inset: 0; background: rgba(20,16,16,0.55); z-index: 200; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
.nav-backdrop.open { opacity: 1; visibility: visible; }
.main-nav .nav-close,
.main-nav .nav-drawer-cta { display: none; }
body.nav-lock { overflow: hidden; }

/* ============ HERO ============ */
/* ---- Hero slider (full-bleed) ---- */
.hero-slider { position: relative; overflow: hidden; background: var(--cream); }
.hero-track { display: flex; will-change: transform; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-slide { position: relative; flex: 0 0 100%; min-width: 100%; height: min(84vh, 640px); background-size: cover; background-position: center; }
/* Light scrim, stronger on the left, so dark text stays readable over any banner */
.hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,243,237,0.96) 0%, rgba(247,243,237,0.86) 30%, rgba(247,243,237,0.35) 58%, rgba(247,243,237,0.05) 100%); }
.hero-slide-inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-slider .hero-copy { max-width: 560px; padding: 30px 0; }
.hero-title { font-size: clamp(38px, 4vw, 60px); color: var(--ink); line-height: 0.98; letter-spacing: -0.02em; font-weight: 900; margin: 6px 0 0; }
.hero-text { color: var(--grey); max-width: 480px; font-size: 16.5px; margin-top: 20px; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.85); color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.hero-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.hero-prev { left: 22px; }
.hero-next { right: 22px; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 22px; z-index: 3; display: flex; justify-content: center; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(23,19,19,0.28); transition: background 0.2s ease, transform 0.2s ease; }
.hero-dot.active { background: var(--red); transform: scale(1.25); }

/* ============ TRUST / TEAM STRIP ============ */
.trust { padding: 80px 0; background: var(--white); }
.trust-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.trust-head .section-eyebrow { margin: 0; }
.trust-doctors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid var(--line); }
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.stat-num { font-family: var(--font-display); font-weight: 900; color: var(--red); font-size: clamp(42px, 5vw, 58px); line-height: 1; letter-spacing: -0.02em; margin-bottom: 4px; }
.stat-item strong { display: block; font-size: 16px; color: var(--ink); }
.stat-item span { font-size: 13px; color: var(--grey-2); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value-card { padding-top: 4px; }
.value-ic { display: inline-flex; width: 46px; height: 46px; border-radius: 12px; background: rgba(8,126,139,0.09); color: var(--red); align-items: center; justify-content: center; margin-bottom: 16px; }
.value-ic svg { width: 23px; height: 23px; display: block; }
.value-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 15px; letter-spacing: -0.01em; margin: 0 0 10px; color: var(--ink); line-height: 1.15; }
.value-card p { margin: 0; color: var(--grey); font-size: 14.5px; }

/* ============ MANIFESTO (light two-column) ============ */
.manifesto { padding: 60px 0 20px; background: var(--cream-2); }
.manifesto-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.manifesto-title { font-size: clamp(40px, 5vw, 74px); color: var(--ink); }
.manifesto-rule { display: block; width: 60px; height: 3px; background: var(--red); margin-top: 30px; }
.manifesto-text { color: var(--grey); font-size: 18px; align-self: center; max-width: 520px; }

/* ============ BLOCK HEAD ============ */
.block-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.block-title { font-size: clamp(30px, 3.4vw, 50px); color: var(--ink); line-height: 0.92; }
.block-title.light { color: #fff; }
.block-title.center { text-align: center; }
.block-sub { color: var(--grey); font-size: 16px; max-width: 460px; justify-self: end; }
.block-sub.light { color: #c3bab2; }

/* ============ CONCERNS (pill tags) ============ */
.concerns { padding: 90px 0; background: var(--cream); }
.concerns-inner { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }
.concerns-head .section-eyebrow { margin-bottom: 24px; }
.concerns-head .block-title { margin-bottom: 22px; }
.concerns-sub { color: var(--grey); font-size: 16px; margin: 0 0 20px; }
.concern-groups { display: grid; gap: 30px; }
.concern-group h4 { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em; font-size: 12.5px; color: var(--grey-2); margin: 0 0 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.tag-row { display: flex; flex-wrap: wrap; gap: 12px; }
.tag { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 11px 12px 11px 20px; font-size: 15px; color: var(--ink); text-decoration: none; transition: all 0.15s; }
.tag:hover { border-color: var(--ink); }
.tag span { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); color: var(--red); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }

/* ============ TREATMENTS (centered, image cards) ============ */
.treatments { padding: 48px 0 64px; background: var(--cream-2); }
.treatments-head { text-align: center; margin-bottom: 40px; }
.treatments-head .section-eyebrow { margin-bottom: 20px; }
.treatments-sub { max-width: 620px; margin: 16px auto 0; color: var(--grey); font-size: 16.5px; line-height: 1.6; }
/* Split layout: intro on the left, scrolling cards on the right */
.treat-split { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; }
.treat-intro .section-eyebrow { margin-bottom: 18px; }
.treat-intro .block-title { font-size: clamp(30px, 3.2vw, 46px); }
.treat-intro-text { color: var(--grey); font-size: 16px; line-height: 1.6; margin: 20px 0 22px; }
.treat-scroll { min-width: 0; }
/* Homepage scroller cards: title only, no image, description or Read-more (whole card is clickable) */
.treat-scroll .treatment-card .t-photo { display: block; height: 160px; aspect-ratio: auto; background-size: cover; background-position: center; }
.treat-scroll .treatment-card p { display: none; }
.treat-scroll .treatment-card h3 { margin-bottom: 0; }
.treat-scroll .treatment-card .link-arrow { font-size: 0; padding: 0; border: 0; margin: 0; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; justify-content: center; }
.tab { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--grey); cursor: pointer; transition: all 0.18s; }
.tab:hover { border-color: var(--ink); color: var(--ink); }
.tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.treatment-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.treatment-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(23,19,19,0.08); }
.treatment-card:hover h3 { color: var(--red); }
/* Make the whole card (title, photo, anywhere) clickable via the Read-more link */
.treatment-card .link-arrow::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.t-photo { aspect-ratio: 3 / 2; background: linear-gradient(150deg, var(--sand), var(--grey-3)); }
.t-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.t-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 12px; }
.treatment-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 22px; margin: 0 0 12px; letter-spacing: -0.01em; color: var(--ink); line-height: 1.15; }
.treatment-card p { color: var(--grey); font-size: 14.5px; margin: 0 0 22px; flex-grow: 1; }
.treatment-card .link-arrow { border-bottom: 2px solid var(--red); padding-bottom: 3px; align-self: flex-start; }

/* ============ HORIZONTAL SCROLLER ============ */
.hscroll-wrap { position: relative; }
.hscroll { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; padding: 4px 2px 20px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--grey-3) transparent; }
.hscroll::-webkit-scrollbar { height: 8px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--grey-3); border-radius: 10px; }
.hscroll::-webkit-scrollbar-track { background: transparent; }
.hscroll > * { flex: 0 0 340px; max-width: 84vw; scroll-snap-align: start; }
.hscroll .testimonial { min-height: 100%; }
.hscroll-btn {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); font-size: 24px; line-height: 1; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(23,19,19,0.14); transition: background 0.15s, color 0.15s;
}
.hscroll-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.hscroll-btn.prev { left: -20px; }
.hscroll-btn.next { right: -20px; }
@media (min-width: 900px) { .hscroll-btn { display: flex; } }
.scroll-cta { text-align: center; margin-top: 10px; }

/* ============ FLOATING CONTACT (phone + whatsapp) ============ */
.floating-contact { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 150; display: flex; flex-direction: column; gap: 12px; }
.mobile-bar { display: none; }

/* ---- Inline header search ---- */
.hsearch { position: relative; display: flex; align-items: center; }
.hsearch-input {
  width: 0; min-width: 0; padding: 0; margin: 0; border: 1px solid transparent; outline: none;
  height: 42px; box-sizing: border-box; background: var(--cream); border-radius: 999px;
  font-family: inherit; font-size: 15px; color: var(--ink); opacity: 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease, padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s ease;
}
.hsearch.open .hsearch-input { width: 300px; opacity: 1; padding: 0 18px; margin-right: 6px; border-color: var(--line); }
.hsearch.open .hsearch-input:focus { border-color: var(--red); }
.hsearch-input::-webkit-search-cancel-button, .hsearch-input::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }
.hsearch .icon-btn .ic-close { display: none; }
.hsearch.open .icon-btn .ic-search { display: none; }
.hsearch.open .icon-btn .ic-close { display: block; }
.hsearch-panel {
  position: absolute; top: calc(100% + 16px); right: 0; width: min(440px, 92vw);
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 26px 64px rgba(23,19,19,0.18); overflow-y: auto; max-height: 70vh; z-index: 140;
  opacity: 0; visibility: hidden; transform: translateY(-10px) scale(0.98); transform-origin: top right;
  transition: opacity 0.26s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.26s;
}
.hsearch-panel.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.search-hint, .search-empty { padding: 20px; color: var(--grey-2); font-size: 15px; margin: 0; }
.search-result { display: grid; grid-template-columns: 1fr; gap: 3px; padding: 13px 20px; text-decoration: none; border-bottom: 1px solid var(--line); }
.search-result:last-child { border-bottom: 0; }
.search-result:hover { background: var(--cream); }
.search-result .sr-type { font-family: var(--font-mono, monospace); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.search-result .sr-title { font-size: 16px; font-weight: 600; color: var(--ink); }
.search-result .sr-desc { font-size: 13.5px; color: var(--grey); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (min-width: 1041px) {
  /* When search is open, remove the nav links so the field has room to expand */
  .site-header.search-open .main-nav { display: none; }
  .site-header.search-open .hsearch.open .hsearch-input { width: 460px; }
}
@media (max-width: 1040px) {
  .hsearch.open .hsearch-input { width: 56vw; }
  .hsearch-panel { position: fixed; top: 118px; left: 14px; right: 14px; width: auto; }
}
.fab { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; box-shadow: 0 6px 18px rgba(23,19,19,0.22); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.fab:hover { transform: scale(1.08); box-shadow: 0 10px 26px rgba(23,19,19,0.28); }
.fab svg { width: 26px; height: 26px; display: block; }
.fab-wa { background: #25d366; }
.fab-call { background: var(--red); }
.fab-call svg { width: 24px; height: 24px; }
@media (max-width: 600px) {
  .floating-contact { right: 12px; gap: 10px; }
  .fab { width: 48px; height: 48px; }
}

/* ============ WHY (dark, numbered 3x2 grid) ============ */
.why { padding: 96px 0; background: var(--ink); color: #efe8e0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; }
.why-item { padding: 34px 0 40px; border-top: 1px solid rgba(255,255,255,0.16); }
.why-num { font-family: var(--font-display); font-weight: 900; font-size: 42px; color: var(--red); display: block; margin-bottom: 22px; }
.why-item h3 { font-family: var(--font-body); font-weight: 600; font-size: 22px; margin: 0 0 12px; color: #fff; letter-spacing: -0.01em; }
.why-item p { margin: 0; color: #b3aaa2; font-size: 15px; }

/* ============ DOCTORS ============ */
.doctors { padding: 90px 0; background: var(--cream); }
.doctors-sub { color: var(--grey); max-width: 560px; margin: 18px auto 0; }
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.doctor-card { display: flex; flex-direction: column; }
.doctor-photo { width: 100%; aspect-ratio: 4 / 4.6; background: linear-gradient(160deg, var(--sand), var(--grey-3)); border-radius: 4px; margin-bottom: 20px; }
.doctor-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 24px; margin: 0 0 6px; letter-spacing: -0.01em; }
.doctor-role { color: var(--grey-2); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; margin: 0 0 16px; }

/* ============ HOW + CALLBACK ============ */
.how { padding: 90px 0; background: var(--cream-2); }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.how-text { color: var(--grey); margin: 22px 0 26px; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { padding: 14px 0 14px 34px; position: relative; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 12px; width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.callback { background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; padding: 40px; box-shadow: 0 24px 60px rgba(8,74,90,0.16); }
.callback h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 22px; margin: 0 0 24px; letter-spacing: -0.01em; }
.callback label { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-2); margin-bottom: 16px; }
.callback input, .callback select, .callback textarea { width: 100%; margin-top: 8px; padding: 13px 14px; border-radius: 6px; border: 1px solid var(--line); background: var(--cream-2); color: var(--ink); font-family: var(--font-body); font-size: 15px; }
.callback textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.callback input::placeholder, .callback textarea::placeholder { color: var(--grey-3); }
.callback input:focus, .callback select:focus, .callback textarea:focus { outline: none; border-color: var(--red); }
/* Clickable clinic address on the Contact page */
.loc-line a.loc-addr-link { color: var(--grey); font-weight: 400; text-decoration: none; }
.loc-line a.loc-addr-link:hover { color: var(--red); text-decoration: underline; }
.callback .btn { margin-top: 8px; }
.form-note { color: #2e7d43; font-size: 13px; margin: 14px 0 0; font-family: var(--font-mono); }

/* ============ LOCATION ============ */
.location { padding: 90px 0; background: var(--cream); }
.location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.transit { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0; }
.transit div { border-left: 2px solid var(--red); padding-left: 14px; }
.transit strong { display: block; font-size: 15px; }
.transit span { font-size: 13px; color: var(--grey-2); font-family: var(--font-mono); }
.clinic-address { font-style: normal; color: var(--ink-2); line-height: 1.7; margin-bottom: 16px; font-size: 15.5px; }
.location-map { aspect-ratio: 4 / 3.3; border-radius: 8px; background: repeating-linear-gradient(45deg, #e7e0d6, #e7e0d6 18px, #efe8e0 18px, #efe8e0 36px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--grey-2); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.map-pin { font-size: 34px; color: var(--red); }

/* ============ FAQ (two-column, icon cards) ============ */
.faq { padding: 90px 0; background: var(--cream-2); }
.faq-inner { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: start; }
.faq-list { display: grid; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ic { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: var(--cream); color: var(--red); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.faq-q { display: flex; flex-direction: column; gap: 3px; }
.faq-cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.faq-q { font-size: 17px; font-weight: 500; color: var(--ink); }
.faq-plus { margin-left: auto; font-size: 24px; color: var(--grey-2); transition: transform 0.2s; font-weight: 300; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 24px 24px 74px; color: var(--grey); }

/* ============ ABOUT DR. GUPTA ============ */
.about { padding: 96px 0; background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: center; }
.about-photo { position: relative; aspect-ratio: 4 / 4.7; border-radius: 6px; overflow: hidden; background: linear-gradient(160deg, var(--sand), var(--grey-3)); }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.about-copy .block-title { margin-bottom: 8px; }
.about-cred { font-family: var(--font-mono); color: var(--red); font-weight: 500; font-size: 13.5px; margin: 4px 0 22px; letter-spacing: 0.02em; }
.about-text { color: var(--grey); margin: 0 0 16px; }
.cred-list { list-style: none; margin: 24px 0 28px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.cred-list li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--ink); }
.cred-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.cred-list strong { color: var(--ink); }

/* ============ DIRECT LINES (in how section) ============ */
.direct-lines { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: 8px; padding: 22px 24px; margin-top: 28px; }
.direct-title { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; color: var(--red); margin: 0 0 12px; }
.direct-lines a { display: block; text-decoration: none; color: var(--ink); font-size: 14.5px; margin-bottom: 8px; font-weight: 600; }
.direct-lines a:hover { color: var(--red); }

/* ============ LOCATIONS (3 hospital cards) ============ */
.locations { padding: 90px 0; background: var(--cream); }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.loc-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 30px; border-top: 3px solid var(--red); }
.loc-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 17px; color: var(--ink); margin: 0 0 14px; letter-spacing: -0.01em; line-height: 1.15; }
.loc-addr { color: var(--grey); font-size: 14.5px; margin: 0 0 16px; }
.loc-hours { color: var(--ink); font-size: 14px; margin: 0 0 18px; line-height: 1.7; }
.loc-hours strong { color: var(--red-dark); }

/* ============ TESTIMONIALS (dark) ============ */
.testimonials { padding: 96px 0; background: var(--ink); color: #efe8e0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial { margin: 0; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 30px; display: flex; flex-direction: column; }
.stars { color: #e8a838; font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial p { color: #d3c9c1; font-size: 14.5px; margin: 0 0 22px; flex-grow: 1; }
.testimonial cite { font-style: normal; font-weight: 700; color: #fff; font-size: 15px; }
.testimonial cite span { display: block; font-weight: 400; color: #a99f97; font-size: 12px; margin-top: 4px; font-family: var(--font-mono); }
.testimonial cite .gbadge { display: flex; align-items: center; gap: 7px; margin-top: 7px; font-weight: 400; font-size: 12.5px; color: #c3d3e0; font-family: var(--font-body); }
.testimonial cite .gbadge svg { width: 16px; height: 16px; flex: none; }
.testimonial cite a.gbadge { text-decoration: none; transition: color 0.15s ease; }
.testimonial cite a.gbadge:hover { color: #fff; }
a.stat { text-decoration: none; transition: background 0.15s ease; }
a.stat:hover { background: var(--cream); }
a.stat:hover strong { color: var(--red-dark); }
.reviews-more { text-align: center; margin-top: 46px; }
.btn-google { background: #fff; border: 1px solid var(--line); color: var(--ink); gap: 10px; }
.btn-google:hover { border-color: var(--red); color: var(--ink); box-shadow: 0 10px 26px rgba(23,19,19,0.09); transform: translateY(-1px); }
.btn-google svg { width: 20px; height: 20px; flex: none; }

/* ============ BLOG ============ */
.blog { padding: 90px 0; background: var(--cream-2); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(23,19,19,0.08); }
.blog-thumb { aspect-ratio: 16 / 9; background: linear-gradient(150deg, var(--sand), var(--grey-3)); }
.blog-date { font-family: var(--font-mono); font-size: 11.5px; color: var(--red); letter-spacing: 0.1em; text-transform: uppercase; padding: 22px 26px 0; }
.blog-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 18px; color: var(--ink); margin: 10px 0 10px; padding: 0 26px; letter-spacing: -0.01em; line-height: 1.28; }
.blog-card p { color: var(--grey); font-size: 14px; margin: 0 0 20px; padding: 0 26px; flex-grow: 1; }
.blog-card .link-arrow { padding: 0 26px 26px; }

/* ============ INSTAGRAM STRIP ============ */
.insta { background: #100c0c; color: #efe8e0; padding: 96px 0; border-top: 3px solid var(--red); }
.insta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.insta-title { font-size: clamp(34px, 4.4vw, 62px); color: #fff; margin: 22px 0 30px; }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.insta-thumb { aspect-ratio: 9 / 16; border-radius: 8px; background: linear-gradient(160deg, #3a2f2f, #1c1616); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 24px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: #b3aaa2; padding: 64px 0 18px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-detail { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-detail h4 { color: #3fbfae; font-size: 18px; font-weight: 500; text-transform: none; letter-spacing: 0; font-family: var(--font-body); margin: 0 0 16px; }
.footer-detail p { margin: 0 0 14px; font-size: 13.5px; line-height: 1.65; color: #a9c1cf; }
.footer-detail strong { color: #fff; font-weight: 600; }
.footer-detail a { color: #a9c1cf; text-decoration: none; }
.footer-detail a:hover { color: #fff; }
.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover { color: #fff; }
.footer-bottom a { color: #9db6cc; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .logo-line { display: inline; font-size: 30px; line-height: 0.9; }
.footer-brand p { margin: 16px 0 0; max-width: 260px; font-size: 14px; }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); margin: 0 0 16px; }
.footer-col a { display: block; color: #b3aaa2; text-decoration: none; font-size: 14.5px; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-col p { margin: 0 0 10px; font-size: 14.5px; }
.footer-terms-wrap { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-terms { padding: 0; }
.footer-terms > summary { cursor: pointer; list-style: none; padding: 11px 0; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #8a8078; display: flex; align-items: center; }
.footer-terms > summary::-webkit-details-marker { display: none; }
.footer-terms > summary::after { content: "+"; margin-left: auto; font-size: 18px; line-height: 1; color: #8a8078; }
.footer-terms[open] > summary::after { content: "–"; }
.footer-terms > summary:hover { color: #b3aaa2; }
.footer-terms-list { display: flex; flex-wrap: wrap; gap: 7px 8px; padding: 4px 0 22px; }
.footer-terms-list a { color: #857c74; font-size: 12.5px; text-decoration: none; line-height: 1.3; padding: 3px 9px; border: 1px solid rgba(255,255,255,0.09); border-radius: 999px; transition: color 0.15s ease, border-color 0.15s ease; }
.footer-terms-list a:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 14px; font-size: 13px; font-family: var(--font-mono); color: #7a726b; flex-wrap: wrap; gap: 10px; }
.footer-legal a { color: #7a726b; text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* ============================================================
   INTERNAL PAGES (about / contact / services / service detail)
   ============================================================ */

/* ---- Page hero / breadcrumb ---- */
.page-hero { background: var(--cream); border-bottom: 1px solid var(--line); padding: 30px 0 28px; }
.page-hero .container { display: flex; flex-direction: column; align-items: flex-start; }
/* Breadcrumb sits at the bottom of the hero */
.page-hero .breadcrumb { order: 5; margin: 22px 0 0; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-2); margin: 0 0 22px; display: flex; gap: 10px; flex-wrap: wrap; }
.breadcrumb a { color: var(--red); text-decoration: none; }
.breadcrumb a:hover { color: var(--red-dark); }
.breadcrumb span { color: var(--grey-3); }
.page-hero .page-title { font-size: clamp(38px, 5vw, 68px); color: var(--ink); }
.page-hero .page-lede { color: var(--grey); font-size: 18px; max-width: 620px; margin: 20px 0 0; }
.page-hero .eyebrow { display: none; }
/* Blog post byline: category + published date, shown under the title */
.page-hero .post-meta { order: 1; margin: 14px 0 0; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--grey-2); }
.page-hero .post-meta .pm-cat { color: var(--red); font-weight: 600; }
.page-hero .post-meta .pm-sep { margin: 0 4px; color: var(--grey-3); }
.page-hero .post-meta .pm-date { color: var(--ink); }

/* ---- Article + sidebar layout ---- */
.article-wrap { padding: 76px 0; background: var(--white); }
.article-inner { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }

/* ---- Prose ---- */
.prose { color: var(--ink-2); font-size: 16.5px; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.01em; color: var(--ink); margin: 44px 0 16px; line-height: 1.05; }
.prose h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 30px 0 12px; }
.prose p { margin: 0 0 18px; color: var(--grey); }
.prose ul { margin: 0 0 20px; padding: 0; list-style: none; }
.prose ul li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.prose ul li::before { content: "✓"; position: absolute; left: 0; top: 10px; width: 20px; height: 20px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.prose .lead { font-size: 19px; color: var(--ink); line-height: 1.6; margin-bottom: 26px; }
.prose blockquote { margin: 26px 0; padding: 20px 26px; background: var(--cream); border-left: 3px solid var(--red); border-radius: 0 8px 8px 0; color: var(--ink-2); font-size: 16px; }
.prose img { border-radius: 8px; margin: 10px 0 22px; height: auto; }
.prose p a, .prose li a { color: var(--red); text-decoration: underline; text-decoration-color: rgba(8,126,139,0.42); text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: color 0.15s ease, text-decoration-color 0.15s ease; }
.prose p a:hover, .prose li a:hover { color: var(--red-dark); text-decoration-color: var(--red); }
.post-featured { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 10px; margin-bottom: 28px; display: block; }
.key-takeaways { background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 22px 26px 8px; margin: 0 0 30px; }
.key-takeaways .kt-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 14px; letter-spacing: 0.04em; color: var(--red); margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.key-takeaways ul { margin: 0; }
.key-takeaways ul li { border-bottom-color: var(--line); }
.key-takeaways ul li:last-child { border-bottom: none; }
.prose .faqs { margin: 34px 0 10px; }
.prose .qa { border: 1px solid var(--line); border-radius: 10px; margin: 0 0 12px; overflow: hidden; background: #fff; padding: 0; }
.prose .qa > summary { cursor: pointer; list-style: none; padding: 16px 46px 16px 20px; font-weight: 600; color: var(--ink); position: relative; font-size: 16px; }
.prose .qa > summary::-webkit-details-marker { display: none; }
.prose .qa > summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--red); line-height: 1; }
.prose .qa[open] > summary::after { content: "–"; }
.prose .qa[open] > summary { border-bottom: 1px solid var(--line); }
.prose .qa:not([open]) > *:not(summary) { display: none; }
.prose .qa > *:not(summary) { margin: 14px 20px; color: var(--grey); }

/* ---- Sidebar ---- */
.sidebar { display: grid; gap: 20px; align-content: start; align-self: stretch; }
/* Only the doctor card follows on scroll; the services/conditions list scrolls away */
.sidebar .doc-card { position: sticky; top: 100px; align-self: start; max-height: calc(100vh - 116px); overflow-y: auto; }
.sidebar .pop-card { position: sticky; top: 100px; align-self: start; }
.side-card { border: 1px solid var(--line); border-radius: 10px; padding: 26px; background: var(--cream-2); }
.side-card.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.side-card h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 17px; letter-spacing: -0.01em; margin: 0 0 14px; color: inherit; }
.side-card.dark h4 { color: #fff; }
.side-card p { margin: 0 0 16px; font-size: 14.5px; color: var(--grey); }
.side-card.dark p { color: #c3bab2; }
.side-list { list-style: none; margin: 0; padding: 0; }
.side-list li { border-top: 1px solid var(--line); }
.side-list li:first-child { border-top: none; }
.side-list a { display: flex; justify-content: space-between; gap: 10px; padding: 12px 0; text-decoration: none; color: var(--ink-2); font-size: 15px; }
.side-list a:hover { color: var(--red); }
.side-list a::after { content: "→"; color: var(--grey-3); }
.side-fact { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14.5px; }
.side-fact:first-of-type { border-top: none; }
/* Popular Blogs sidebar */
.pop-list { list-style: none; margin: 0; padding: 0; }
.pop-list li { border-top: 1px solid var(--line); }
.pop-list li:first-child { border-top: none; }
.pop-item { display: flex; gap: 13px; align-items: flex-start; padding: 14px 0; text-decoration: none; }
.pop-thumb { flex: none; width: 64px; height: 64px; border-radius: 8px; background: var(--line) center/cover no-repeat; }
.pop-body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.pop-title { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; line-height: 1.3; color: var(--ink); letter-spacing: -0.01em; }
.pop-item:hover .pop-title { color: var(--red); }
.pop-date { font-size: 12.5px; color: var(--grey-3); }
.side-fact strong { color: var(--ink); display: block; }
.side-fact span { color: var(--grey-2); font-size: 13px; }

/* ---- Sidebar: conditions/services list card ---- */
.side-list-card { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.side-list-head { background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 15px; letter-spacing: 0.01em; padding: 15px 20px; }
.side-nav-list { list-style: none; margin: 0; padding: 0; max-height: 420px; overflow-y: auto; }
.side-nav-list li { border-top: 1px solid var(--line); }
.side-nav-list li:first-child { border-top: none; }
.side-nav-list a { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 20px; text-decoration: none; color: var(--ink-2); font-size: 14.5px; line-height: 1.3; transition: background 0.12s, color 0.12s; }
.side-nav-list a::after { content: "›"; color: var(--grey-3); font-size: 18px; line-height: 1; flex: none; }
.side-nav-list a:hover { background: var(--cream); color: var(--red); }
.side-nav-list a.active { background: var(--cream); color: var(--red); font-weight: 600; border-left: 3px solid var(--red); padding-left: 17px; }
.side-nav-list a.active::after { color: var(--red); }

/* ---- Sidebar: doctor card ---- */
.doc-card { border: 1px solid var(--line); border-radius: 10px; padding: 20px 20px; text-align: center; }
.doc-photo { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; margin: 0 auto 11px; border: 3px solid var(--cream); background: var(--sand); }
.doc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.doc-card h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 16.5px; letter-spacing: -0.01em; margin: 0 0 3px; color: var(--ink); }
.doc-title { font-size: 13.5px; color: var(--grey); margin: 0 0 3px; }
.doc-cred { font-family: var(--font-mono); font-size: 11px; color: var(--red); letter-spacing: 0.03em; margin: 0 0 14px; }
.doc-loc { display: flex; gap: 9px; text-align: left; background: var(--cream-2); border: 1px solid var(--line); border-radius: 8px; padding: 9px 12px; margin-bottom: 8px; }
.doc-loc .pin { color: var(--red); flex: none; font-size: 14px; line-height: 1.4; }
.doc-loc strong { display: block; font-size: 13px; color: var(--ink); margin-bottom: 2px; }
.doc-loc span { font-size: 11.5px; color: var(--grey-2); line-height: 1.4; }
.doc-card .btn { width: 100%; margin-top: 6px; justify-content: center; }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info .info-row { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-row:first-child { padding-top: 0; }
.info-ic { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; background: var(--cream); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.info-row .info-label { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; color: var(--grey-2); margin: 0 0 4px; }
.info-row a, .info-row p { margin: 0; text-decoration: none; color: var(--ink); font-size: 16px; font-weight: 600; }
.info-row a:hover { color: var(--red); }

/* ---- Contact page (redesigned) ---- */
.contact-quick { padding: 48px 0 8px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 12px; background: #fff; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
a.contact-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(23,19,19,0.08); }
.cc-ic { width: 48px; height: 48px; flex: none; border-radius: 50%; background: var(--cream); color: var(--red); display: flex; align-items: center; justify-content: center; }
.cc-ic svg { width: 22px; height: 22px; display: block; }
.cc-text { display: flex; flex-direction: column; min-width: 0; }
.cc-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-2); margin-bottom: 3px; }
.cc-val { font-weight: 600; color: var(--ink); font-size: 15px; overflow: hidden; text-overflow: ellipsis; }

.loc-maps { padding: 44px 0 72px; }
.loc-map-list { display: grid; gap: 26px; }
.loc-map-card { display: grid; grid-template-columns: 1.1fr 1fr; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.loc-map { min-height: 300px; background: var(--cream-2); }
.loc-map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.loc-map-body { padding: 32px 34px; }
.loc-area { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin: 0 0 6px; }
.loc-map-body h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 22px; letter-spacing: -0.01em; margin: 0 0 18px; color: var(--ink); line-height: 1.1; }
.loc-line { display: flex; gap: 12px; align-items: flex-start; margin: 0 0 13px; color: var(--grey); font-size: 14.5px; line-height: 1.5; }
.loc-line a { color: var(--ink); font-weight: 600; text-decoration: none; }
.loc-line a:hover { color: var(--red); }
.loc-ic { flex: none; width: 20px; height: 20px; color: var(--red); margin-top: 1px; }
.loc-ic svg { width: 20px; height: 20px; display: block; }
.loc-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.loc-actions .btn { padding: 11px 20px; font-size: 14px; }

.enquiry-section { position: relative; background-image: linear-gradient(rgba(4,38,45,0.55), rgba(4,38,45,0.55)), url('assets/img/form-bg.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.enquiry-wrap { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.callback .callback-sub { font-family: var(--font-body); text-transform: none; letter-spacing: 0; color: var(--grey); font-size: 15px; margin: -12px 0 24px; font-weight: 400; }
.callback .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }

@media (max-width: 860px) {
  .contact-cards { grid-template-columns: 1fr; }
  .loc-map-card { grid-template-columns: 1fr; }
  .loc-map, .loc-map iframe { min-height: 240px; }
  .callback .form-row { grid-template-columns: 1fr; }
  .enquiry-section { background-attachment: scroll; }
}

/* ---- About page ---- */
.stats-band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 34px 26px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 2.6vw, 34px); color: var(--red); letter-spacing: -0.01em; line-height: 1; }
.stat span { display: block; margin-top: 9px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-2); }

.creds { padding: 64px 0; }
.creds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.cred-col { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 28px 30px 24px; }
.cred-h { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 16px; letter-spacing: 0.01em; color: var(--ink); margin: 0 0 20px; padding-bottom: 14px; border-bottom: 2px solid var(--red); }
.edu-list { list-style: none; margin: 0; padding: 0; }
.edu-list li { padding: 0 0 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.edu-list li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.edu-year { display: inline-block; font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--red); background: rgba(8,126,139,0.09); padding: 3px 11px; border-radius: 999px; margin-bottom: 11px; }
.edu-list strong { display: block; color: var(--ink); font-size: 16px; font-weight: 600; line-height: 1.3; }
.edu-place { display: block; margin-top: 5px; color: var(--grey); font-size: 14px; }
.tick-list { list-style: none; margin: 0; padding: 0; }
.tick-list li { position: relative; padding: 0 0 14px 26px; color: var(--ink-2); font-size: 15px; line-height: 1.45; }
.tick-list li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.tick-list li strong { color: var(--ink); font-weight: 600; }

.btn-outline-light { border: 1px solid rgba(255,255,255,0.55); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; }

@media (max-width: 860px) {
  .stat { padding: 26px 12px; }
  .creds-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- Timeline (about) ---- */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { position: relative; padding: 0 0 26px 30px; border-left: 2px solid var(--line); }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); }
.timeline .t-year { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--red); text-transform: uppercase; }
.timeline strong { display: block; color: var(--ink); margin: 2px 0; font-size: 16px; }
.timeline span { color: var(--grey); font-size: 14.5px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1040px) {
  :root { --pad: 28px; }
  .u-item:nth-child(n+2) { display: none; }
  .utility-right, .utility-social { display: none; }
  .main-nav {
    display: block; position: fixed; top: 0; right: 0;
    height: 100vh; height: 100dvh; width: min(330px, 84vw);
    background: var(--white); z-index: 210;
    transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(23,19,19,0.16);
    padding: 84px 0 24px; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  /* The drawer lives inside the sticky header (z-index:100), which traps it below
     the backdrop and the bottom bar (both z-index:200). Lift the header's stacking
     context above them while the menu is open so the drawer is on top and tappable. */
  body.nav-lock .site-header { z-index: 300; }
  /* Keep the last drawer items clear of the sticky bottom action bar. */
  .main-nav { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--line); }
  .main-nav li:first-child { border-top: 1px solid var(--line); }
  .main-nav a { padding: 16px 30px; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 500; }
  .main-nav a .caret { transform: rotate(-90deg); font-size: 13px; }
  /* Dropdowns become tap-to-expand accordions inside the drawer */
  .main-nav li { position: static; }
  .has-dropdown::after { display: none; }
  .has-dropdown.open > a .caret { transform: rotate(0deg); color: var(--red); }
  .dropdown, .mega {
    position: static; opacity: 1; visibility: visible; transform: none; display: none;
    box-shadow: none; border: 0; border-top: 0; padding: 0; width: auto; max-width: none;
    grid-template-columns: 1fr; background: var(--cream); min-width: 0;
  }
  .has-dropdown.open > .dropdown,
  .has-dropdown.open > .mega { display: block; }
  .dropdown a, .mega-col a { padding: 13px 30px 13px 46px; font-size: 15px; border-bottom: 1px solid var(--line); white-space: normal; border-radius: 0; }
  .mega { padding: 4px 0 8px; }
  .mega-col { padding: 0; }
  .mega-col h5 { padding: 14px 30px 6px; margin: 0; }
  .mega-all { border-top: 0; padding: 13px 30px 13px 46px !important; }
  .main-nav .nav-close { display: flex; position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); font-size: 22px; line-height: 1; align-items: center; justify-content: center; cursor: pointer; }
  .main-nav .nav-drawer-cta { display: flex; margin: 22px 30px 6px; justify-content: center; }
  /* Top-right keeps only the search icon; menu moves to the sticky bottom bar */
  .hamburger { display: none; }
  .btn-book { display: none; }
  /* Replace the floating side FABs with a sticky bottom action bar */
  .floating-contact { display: none; }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
  .mobile-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 -4px 18px rgba(23,19,19,0.10);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar > * {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    padding: 8px 4px 7px; background: none; border: 0; cursor: pointer;
    font-family: inherit; font-size: 11px; font-weight: 600; letter-spacing: 0.01em;
    color: var(--ink); text-decoration: none;
  }
  .mobile-bar > * + * { border-left: 1px solid var(--line); }
  .mobile-bar .mb-ic { width: 23px; height: 23px; display: block; }
  .mobile-bar .mb-call { color: var(--red); }
  .mobile-bar .mb-wa { color: #25d366; }
  .mobile-bar .mb-wa span, .mobile-bar .mb-call span { color: var(--ink); }
  .hero-slide { height: auto; min-height: 0; background-position: 78% center; }
  .hero-slide::before { background: linear-gradient(180deg, rgba(247,243,237,0.96) 0%, rgba(247,243,237,0.82) 46%, rgba(247,243,237,0.55) 78%, rgba(247,243,237,0.42) 100%); }
  .hero-slider .hero-copy { padding: 40px 0 78px; max-width: 100%; }
  .hero-dots { bottom: 14px; }
  .manifesto-inner, .concerns-inner, .how-inner, .location-inner, .faq-inner, .insta-inner, .about-inner, .treat-split { grid-template-columns: 1fr; gap: 28px; }
  .about-photo { max-width: 400px; }
  .value-grid, .treatment-grid, .doctor-grid, .why-grid, .location-grid, .testimonial-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .trust-doctors { grid-template-columns: 1fr; gap: 0; padding-bottom: 30px; margin-bottom: 30px; }
  .stat-item { display: grid; grid-template-columns: auto 1fr; column-gap: 18px; align-items: center; text-align: left; padding: 15px 4px; }
  .stat-item + .stat-item { border-top: 1px solid var(--line); }
  .stat-num { grid-column: 1; grid-row: 1 / 3; margin: 0; min-width: 74px; text-align: center; font-size: clamp(40px, 12vw, 52px); }
  .stat-item strong { align-self: end; font-size: 16.5px; }
  .stat-item span { align-self: start; font-size: 13px; }
  .block-head { grid-template-columns: 1fr; }
  .block-sub { justify-self: start; }
  .footer-inner, .footer-detail { grid-template-columns: 1fr 1fr; }
  .article-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .sidebar .doc-card, .sidebar .pop-card { position: static; }
}
@media (max-width: 620px) {
  .value-grid, .treatment-grid, .doctor-grid, .why-grid, .transit, .insta-grid, .location-grid, .testimonial-grid, .blog-grid, .cred-list { grid-template-columns: 1fr; }
  .faq-item summary { flex-wrap: nowrap; }
  .footer-inner, .footer-detail { grid-template-columns: 1fr; }
  .callback { padding: 28px; }
  .insta-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Mobile spacing & typography polish ---- */
@media (max-width: 760px) {
  .trust, .concerns, .treatments, .doctors, .how, .locations, .faq, .blog,
  .about, .manifesto, .why, .testimonials, .article-wrap {
    padding-top: 56px; padding-bottom: 56px;
  }
  .page-hero { padding: 24px 0 22px; }
  .block-head { margin-bottom: 34px; gap: 8px; }
  .block-head .section-eyebrow { margin-bottom: 16px; }
  .trust-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .filter-tabs { gap: 8px; }
  .tab { padding: 8px 15px; font-size: 12px; }
  .why-item { padding: 24px 0 28px; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-bottom { justify-content: flex-start; }
  .manifesto-title { font-size: clamp(30px, 8.5vw, 46px); }
  .block-title, .page-title { overflow-wrap: break-word; }
}
@media (max-width: 460px) {
  :root { --pad: 20px; }
  .utility-inner { font-size: 12px; }
  .utility-left { gap: 14px; }
  .logo-line { font-size: 22px; }
  .logo-img { height: 38px; }
  .hero-title { font-size: clamp(38px, 12vw, 52px); }
  .callback, .side-card { padding: 24px; }
  .concern-col, .treatment-card .t-body, .loc-card, .value-card { }
  .faq-item summary { padding: 18px 16px; font-size: 15px; }
  .faq-item p { padding-left: 16px; padding-right: 16px; }
  .article-inner { gap: 32px; }
}

/* ---------- DPDP form additions ---------- */
.hp-field{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden}
.consent-check{display:flex!important;gap:10px;align-items:flex-start;font-size:12.5px;line-height:1.5;color:#4a5a5c;font-weight:400;cursor:pointer;margin:4px 0 14px}
.consent-check input{margin-top:3px;width:16px;height:16px;flex:none;accent-color:#087E8B}
.consent-check a{color:#087E8B;text-decoration:underline}
.form-note{font-size:13.5px;line-height:1.5;padding:10px 14px;border-radius:8px;margin-top:6px}
.form-note-ok{background:#e6f4ee;color:#1a6b46;border:1px solid #bfe3d0}
.form-note-error{background:#fceceb;color:#9b2c2c;border:1px solid #f2c4c0}
