/* ==========================================================================
   drashutoshshah.in — Design System
   --------------------------------------------------------------------------
   Aesthetic: clinical luxury. Deep green + bone neutrals + one amber accent.
   Type: Playfair Display (display serif) + Outfit (UI/body sans).
   Shape rule: buttons = pill, cards/media = 16px, inputs = 10px.
   Color rule: green is the working color on light surfaces; amber appears
   only as conversion highlight on dark green surfaces + rating stars.
   Theme colors are overridden at runtime by CMS values (inline :root vars
   printed in layouts/head.html).
   ========================================================================== */

:root {
    /* Brand palette sampled from the Elegance logo:
       olive #607040 (script), sage #90a070 (emblem), taupe #807050 (tagline) */
    --brand: #5a6a3a;
    --brand-dark: #2e3819;
    --accent: #a68a5b;
    --surface: #f8f8f3;
    --ink: #20261a;

    --ink-soft: #565b48;
    --line: #e4e6da;
    --card: #ffffff;
    --brand-tint: #eef0e2;
    --on-dark: #f3f4ec;
    --on-dark-soft: #c3c8ac;

    /* Brand typography (matches eleganceintimatewellness.com):
       Cormorant Garamond display with italic <em> accents + Inter body */
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

    --radius-card: 16px;
    --radius-input: 10px;
    --radius-pill: 999px;

    --container: 1200px;
    --shadow-card: 0 10px 30px rgba(74, 84, 44, 0.10);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Base ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); letter-spacing: -0.005em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); letter-spacing: -0.005em; }
/* Italic accent words inside headings (write <em>word</em> in CMS heading fields) */
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--brand); }
.section-head--onDark h2 em, .cta-band h2 em, .offer-banner em { color: #ead9ab; }
h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--brand); }
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.lead { font-size: 1.125rem; color: var(--ink-soft); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    background: var(--brand-dark); color: #fff; padding: 0.6rem 1rem;
}
.skip-link:focus { left: 0; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Section headers: stacked, max-width prose, with a small brand accent rule */
.section-head { max-width: 640px; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section-head h2::after {
    content: ""; display: block; width: 54px; height: 3px; margin-top: 0.4em;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    border-radius: 2px;
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center h2::after { margin-inline: auto; }
.section-head p { color: var(--ink-soft); margin-bottom: 0; }
.section-head--onDark h2 { color: var(--on-dark); }
.section-head--onDark p { color: var(--on-dark-soft); }
.section-foot { margin-top: 2rem; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

/* ─── Buttons (pill; every CTA passes WCAG AA on its surface) ──────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
    padding: 0.7rem 1.5rem; border-radius: var(--radius-pill);
    text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn--lg { padding: 0.85rem 1.9rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }
.btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand-tint); }
.btn--ghost { background: var(--brand-tint); color: var(--brand-dark); }
.btn--ghost:hover { background: #e3e6d2; }
.btn--accent { background: var(--accent); color: #241a05; }
.btn--accent:hover { filter: brightness(1.08); }
.btn--onDark { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,0.45); }
.btn--onDark:hover { background: rgba(255,255,255,0.1); }
.btn-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.text-link {
    font-weight: 600; color: var(--brand); text-decoration: none; padding-bottom: 2px;
    background: linear-gradient(currentColor, currentColor) left bottom / 100% 1.5px no-repeat;
    transition: color 0.2s, background-size 0.3s var(--ease);
}
.text-link:hover { color: var(--brand-dark); background-size: 30% 1.5px; }

/* ─── Utility bar ──────────────────────────────────────────────────────── */
.utility-bar { background: var(--brand-dark); color: var(--on-dark); font-size: 0.85rem; }
.utility-bar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 1rem; }
.utility-bar a { color: var(--on-dark); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.utility-bar a:hover { color: #fff; }
.utility-bar__contact, .utility-bar__actions { display: flex; align-items: center; gap: 1.25rem; }
.utility-bar__book { font-weight: 600; color: #ead9ab !important; }
@media (max-width: 640px) { .utility-bar a.utility-bar__email, .utility-bar__actions a:not(.utility-bar__book) { display: none; } }

/* ─── Header + navigation ──────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(248, 248, 243, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 1.5rem; }
.site-header__brand { flex-shrink: 0; }
.site-header__brand img { height: 58px; width: auto; max-width: none; object-fit: contain; }
.site-header__brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.2; }
.site-header__wordmark { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--brand-dark); }
.site-header__wordmark-sub { font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.04em; }

.primary-nav__list { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.primary-nav__item { position: relative; }
.primary-nav__link {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font: inherit; font-weight: 500; font-size: 0.95rem; color: var(--ink);
    background: none; border: 0; cursor: pointer;
    padding: 0.55rem 0.8rem; border-radius: var(--radius-pill); text-decoration: none;
    white-space: nowrap;
}
.primary-nav__link:hover { background: var(--brand-tint); color: var(--brand-dark); }
.primary-nav__trigger::after {
    content: ""; width: 7px; height: 7px; margin-left: 2px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}
.primary-nav__link--button { background: var(--brand); color: #fff; font-weight: 600; margin-left: 0.5rem; }
.primary-nav__link--button:hover { background: var(--brand-dark); color: #fff; }

/* Dropdown + mega menu */
.dropdown, .mega-menu {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card);
    box-shadow: var(--shadow-card); padding: 0.75rem;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
    z-index: 60;
}
.primary-nav__item.is-open .dropdown,
.primary-nav__item.is-open .mega-menu,
.primary-nav__item:focus-within .dropdown,
.primary-nav__item:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
@media (hover: hover) {
    .primary-nav__item:hover .dropdown, .primary-nav__item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
}
.dropdown { min-width: 260px; }
.dropdown__item { display: block; padding: 0.55rem 0.75rem; border-radius: var(--radius-input); text-decoration: none; color: var(--ink); }
.dropdown__item:hover { background: var(--brand-tint); }
.dropdown__item small { display: block; color: var(--ink-soft); font-size: 0.78rem; }

.mega-menu { width: min(720px, 90vw); left: 50%; transform: translate(-50%, 6px); }
.primary-nav__item.is-open .mega-menu, .primary-nav__item:focus-within .mega-menu { transform: translate(-50%, 0); }
@media (hover: hover) { .primary-nav__item:hover .mega-menu { transform: translate(-50%, 0); } }
.mega-menu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.1rem 0.75rem; }
.mega-menu__item { display: block; padding: 0.45rem 0.65rem; border-radius: var(--radius-input); text-decoration: none; color: var(--ink); font-size: 0.9rem; }
.mega-menu__item:hover { background: var(--brand-tint); color: var(--brand-dark); }
.mega-menu__all { display: inline-block; margin: 0.6rem 0.65rem 0.2rem; font-weight: 600; font-size: 0.9rem; color: var(--brand); text-decoration: none; }

/* Mobile nav */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 0.6rem; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform 0.25s var(--ease), opacity 0.2s; }
@media (max-width: 1023px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed; inset: 0; top: 0; z-index: 90;
        background: var(--surface); padding: 5.5rem 1.5rem 2rem;
        overflow-y: auto; display: none;
    }
    .primary-nav.is-open { display: block; }
    body.nav-open { overflow: hidden; }
    .nav-toggle.is-open { position: relative; z-index: 95; }
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .primary-nav__list { flex-direction: column; align-items: stretch; gap: 0.25rem; }
    .primary-nav__link { width: 100%; justify-content: space-between; font-size: 1.05rem; padding: 0.8rem 0.5rem; border-radius: var(--radius-input); }
    .primary-nav__link--button { justify-content: center; margin: 0.5rem 0 0; }
    .dropdown, .mega-menu {
        position: static; width: 100%; opacity: 1; visibility: hidden; transform: none;
        box-shadow: none; border: 0; border-left: 2px solid var(--line);
        border-radius: 0; padding: 0 0 0 0.75rem; margin: 0 0 0.5rem 0.5rem;
        display: none;
    }
    .primary-nav__item.is-open .dropdown, .primary-nav__item.is-open .mega-menu { display: block; visibility: visible; }
    .mega-menu__grid { grid-template-columns: 1fr; }
}

/* ─── Breadcrumb ───────────────────────────────────────────────────────── */
.breadcrumb { background: var(--brand-tint); font-size: 0.85rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.35rem; list-style: none; margin: 0; padding: 0.55rem 0; }
.breadcrumb li:not(:first-child)::before { content: "/"; margin-right: 0.35rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--brand-dark); text-decoration: none; }
.breadcrumb [aria-current] { color: var(--ink-soft); }

/* ─── Hero (asymmetric split) ──────────────────────────────────────────── */
.hero { background: linear-gradient(180deg, #f1f2e7 0%, var(--surface) 100%); overflow: hidden; }
.hero__inner {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem);
    align-items: center; padding-block: clamp(2.5rem, 6vw, 5rem);
}
.hero__eyebrow { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); margin-bottom: 1rem; }
.hero__title { margin-bottom: 0.6em; }
.hero__sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 44ch; margin-bottom: 1.75em; }
.hero__media { position: relative; }
.hero__media img, .hero__media-placeholder {
    border-radius: var(--radius-card); aspect-ratio: 7/8; object-fit: cover; width: 100%;
}
.hero__media-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
    background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%); color: var(--on-dark);
    font-family: var(--font-display); font-size: 1.5rem; text-align: center; padding: 2rem;
}
.hero__media-placeholder small { font-family: var(--font-body); font-size: 0.85rem; color: var(--on-dark-soft); }
.hero__badge {
    position: absolute; left: -1rem; bottom: 1.5rem;
    background: var(--card); border-radius: var(--radius-card); box-shadow: var(--shadow-card);
    padding: 0.8rem 1.2rem; display: flex; flex-direction: column; line-height: 1.25;
}
.hero__badge strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--brand-dark); }
.hero__badge span { font-size: 0.8rem; color: var(--ink-soft); }
@media (max-width: 860px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__media { order: -1; max-width: 420px; }
    .hero__media img, .hero__media-placeholder { aspect-ratio: 4/3; }
    .hero__badge { left: auto; right: -0.25rem; bottom: -0.75rem; }
}

/* ─── Full-width designed hero banner (banner mode) ────────────────────── */
.hero-banner a { display: block; }
.hero-banner img { width: 100%; height: auto; display: block; }

/* ─── Trust strip ──────────────────────────────────────────────────────── */
.trust-strip { background: var(--brand-dark); color: var(--on-dark); padding-block: clamp(1.75rem, 4vw, 2.5rem); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; margin: 0; }
.trust-strip__item { text-align: center; }
.trust-strip__value { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; color: #ead9ab; margin: 0; }
.trust-strip__label { font-size: 0.88rem; color: var(--on-dark-soft); }

/* ─── Meet the surgeon ─────────────────────────────────────────────────── */
.surgeon__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.surgeon__media { display: flex; }
.surgeon__media img, .media-placeholder { border-radius: var(--radius-card); width: 100%; height: 100%; object-fit: cover; }
.media-placeholder { background: var(--brand-tint); border: 1px dashed var(--line); }
@media (max-width: 860px) { .surgeon__media img { aspect-ratio: auto; height: auto; object-fit: contain; } }
.surgeon__bio { color: var(--ink-soft); }
.surgeon__credentials { list-style: none; padding: 0; margin: 1.25rem 0 1.75rem; display: grid; gap: 0.6rem; }
.surgeon__credentials li { display: flex; gap: 0.6rem; align-items: flex-start; }
.surgeon__credentials svg { color: var(--brand); flex-shrink: 0; margin-top: 0.2rem; }
@media (max-width: 860px) { .surgeon__inner { grid-template-columns: 1fr; } .surgeon__media { max-width: 380px; } }

/* ─── Service cards ────────────────────────────────────────────────────── */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1023px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
    display: flex; flex-direction: column; background: var(--card);
    border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden;
    text-decoration: none; color: var(--ink);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card__media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.service-card__body { display: flex; flex-direction: column; gap: 0.4rem; padding: 1rem 1.1rem 1.2rem; flex: 1; }
.service-card__title { font-weight: 600; font-size: 1.02rem; transition: color 0.2s; }
.service-card:hover .service-card__title { color: var(--brand); }
.service-card__desc { font-size: 0.86rem; color: var(--ink-soft); }
.service-card__more { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: auto; padding-top: 0.5rem; font-size: 0.86rem; font-weight: 600; color: var(--brand); }
.service-card:hover .service-card__more svg { transform: translateX(3px); }
.service-card__more svg { transition: transform 0.2s var(--ease); }

/* ─── Before & After (dark band, horizontal scroll) ────────────────────── */
.results-band { background: var(--brand-dark); color: var(--on-dark); }
.results-band__scroller, .video-row {
    display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem; scrollbar-width: none;
}
.results-band__scroller::-webkit-scrollbar, .video-row::-webkit-scrollbar { display: none; }
.results-band__scroller > *, .video-row > * { scroll-snap-align: start; flex-shrink: 0; }
.result-case { margin: 0; width: min(480px, 85vw); }
.result-case__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.result-case__frame { position: relative; border-radius: var(--radius-card); overflow: hidden; background: rgba(255,255,255,0.06); }
.result-case__frame img { aspect-ratio: 7/8; object-fit: cover; width: 100%; }
.result-case__tag {
    position: absolute; left: 0.6rem; bottom: 0.6rem;
    background: rgba(13, 49, 41, 0.85); color: var(--on-dark);
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.2rem 0.6rem; border-radius: var(--radius-pill);
}
.result-case__tag--after { background: var(--accent); color: #241a05; }
.result-case figcaption { margin-top: 0.6rem; font-size: 0.9rem; display: flex; gap: 0.6rem; align-items: baseline; }
.result-case figcaption span { color: var(--on-dark-soft); }
/* Pre-composed branded frames (single artwork with Before/After baked in) */
.result-case--framed { width: min(430px, 85vw); }
.result-case__single { display: block; border-radius: var(--radius-card); overflow: hidden; background: #fff; }
.result-case__single img { width: 100%; height: auto; display: block; }
.results-band__note { font-size: 0.8rem; color: var(--on-dark-soft); margin: 0; max-width: 48ch; }

/* Before & After gallery page (/results/before-after/) — light context */
.results-gallery__grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 860px) { .results-gallery__grid { grid-template-columns: 1fr; } }
.results-gallery__grid .result-case,
.results-gallery__grid .result-case--framed { width: auto; }
.result-case--onLight .result-case__frame { background: var(--brand-tint); }
.result-case--onLight .result-case__single { border: 1px solid var(--line); }
.result-case--onLight figcaption span { color: var(--ink-soft); }
.result-case__service { color: var(--brand-dark); font-weight: 600; text-decoration: none; }
.result-case__service:hover { color: var(--brand); text-decoration: underline; }
.results-gallery__empty { text-align: center; color: var(--ink-soft); padding: 2rem 0; }
.section-foot--start { align-items: flex-start; }

/* ─── YouTube Shorts row (vertical 9:16 cards) ─────────────────────────── */
.video-card { width: min(270px, 68vw); }
.video-card__frame {
    position: relative; border-radius: var(--radius-card); overflow: hidden;
    background: var(--brand-dark); box-shadow: var(--shadow-card);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.video-card__frame:hover { transform: translateY(-4px); }
.video-card__frame iframe { aspect-ratio: 9/16; width: 100%; height: auto; border: 0; display: block; }
.video-card__open {
    position: absolute; top: 0.65rem; right: 0.65rem; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: var(--radius-pill);
    background: rgba(248, 248, 243, 0.92); color: var(--brand-dark);
    transition: transform 0.2s var(--ease);
}
.video-card__open:hover { transform: scale(1.1); }
.video-card__meta { display: flex; flex-direction: column; gap: 0.1rem; font-size: 0.9rem; margin-top: 0.7rem; }
.video-card__meta span { color: var(--ink-soft); font-size: 0.82rem; }

/* ─── Why Dr. Shah ─────────────────────────────────────────────────────── */
.why { background: var(--brand-tint); }
.why__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); }
.why__head p { color: var(--ink-soft); }
.why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; counter-reset: why; }
.why__item { counter-increment: why; }
.why__num::before { content: counter(why); }
.why__item { display: flex; gap: 1rem; align-items: flex-start; }
.why__item h3 { margin-bottom: 0.25rem; }
.why__item p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.why__num {
    flex-shrink: 0; width: 2.4rem; height: 2.4rem; display: flex; align-items: center; justify-content: center;
    background: var(--brand); color: #fff; font-family: var(--font-display); font-size: 1.05rem;
    border-radius: var(--radius-pill);
}
@media (max-width: 860px) { .why__inner { grid-template-columns: 1fr; } }

/* ─── Credentials wall (badge chip cards) ──────────────────────────────── */
.credentials__wall {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 1rem; align-items: stretch;
}
.credentials__item {
    display: inline-flex; align-items: center; gap: 0.7rem;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card);
    padding: 0.8rem 1.25rem;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.credentials__item:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.credentials__logo { height: 44px; width: auto; max-width: 140px; object-fit: contain; filter: grayscale(1); opacity: 0.8; transition: filter 0.2s, opacity 0.2s; }
.credentials__item:hover .credentials__logo { filter: none; opacity: 1; }
.icon-chip--award { background: var(--brand-tint); color: var(--accent); }
.credentials__item:hover .icon-chip--award { color: var(--brand); }
.credentials__name { font-weight: 600; color: var(--ink-soft); font-size: 0.92rem; white-space: nowrap; }
@media (max-width: 640px) {
    .credentials__item { width: 100%; }
    .credentials__name { white-space: normal; }
}

/* ─── Patient guide cards ──────────────────────────────────────────────── */
.guide__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 720px) { .guide__grid { grid-template-columns: 1fr; } }
.guide-card {
    display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-card); overflow: hidden; text-decoration: none; color: var(--ink);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.guide-card__media { position: relative; display: block; }
.guide-card__media img { aspect-ratio: 7/3; object-fit: cover; width: 100%; }
.guide-card__icon { position: absolute; left: 1.25rem; bottom: -14px; z-index: 2; }
.guide-card__body { padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.guide-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--brand-dark); }
.guide-card__text { color: var(--ink-soft); font-size: 0.95rem; }
.guide-card__more { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: auto; padding-top: 0.75rem; font-weight: 600; font-size: 0.9rem; color: var(--brand); }
.guide-card--plain .guide-card__body { gap: 0.75rem; }
.guide-card--plain .icon-chip { align-self: flex-start; }
.guide-card--plain .guide-card__title { font-size: 1.4rem; }

/* ─── Reviews ──────────────────────────────────────────────────────────── */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: var(--accent); }
.stars--sm svg { width: 13px; height: 13px; }

/* Centered Google summary bar */
.greviews { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; margin-bottom: 2.5rem; }
.greviews__bar { display: flex; align-items: center; justify-content: center; gap: 0.9rem; flex-wrap: wrap; }
.greviews__pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-pill);
    padding: 0.55rem 1.1rem; font-weight: 600; font-size: 0.92rem; color: var(--ink);
    box-shadow: var(--shadow-card);
}
.greviews__score { font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.greviews__count { color: var(--ink-soft); font-size: 0.95rem; }

.reviews__ratings { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 2rem; }
.rating-card {
    display: flex; align-items: center; gap: 1.1rem;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card);
    padding: 1.1rem 1.5rem; text-decoration: none; color: var(--ink); min-width: 280px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.rating-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.rating-card__score { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--brand-dark); line-height: 1; }
.rating-card__body { display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.85rem; color: var(--ink-soft); }
.rating-card__body strong { color: var(--ink); font-size: 0.98rem; }
.rating-card__count { color: var(--ink-soft); }
.rating-card__go {
    margin-left: auto; display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: var(--radius-pill);
    background: var(--brand-tint); color: var(--brand-dark);
    transition: transform 0.2s var(--ease);
}
.rating-card:hover .rating-card__go { transform: translate(2px, -2px); }

.reviews__quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .reviews__quotes { grid-template-columns: 1fr; } }

/* Review slider: scroll-snap track + round arrows */
.quotes-slider { position: relative; display: flex; align-items: center; gap: 0.75rem; }
.reviews__quotes--track {
    display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; scrollbar-width: none; flex: 1; padding-block: 0.25rem;
}
.reviews__quotes--track::-webkit-scrollbar { display: none; }
.reviews__quotes--track .quote-card { flex: 0 0 min(360px, 82vw); scroll-snap-align: start; }
.slider-arrow {
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: var(--radius-pill);
    background: var(--card); border: 1.5px solid var(--line); color: var(--brand-dark); cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.slider-arrow:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: scale(1.06); }
@media (max-width: 640px) { .slider-arrow { display: none; } }
.band-slider { display: flex; align-items: center; gap: 0.75rem; }
.band-slider > [data-slider-track] { flex: 1; min-width: 0; }
.slider-arrow--onDark { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--on-dark); }
.slider-arrow--onDark:hover { background: var(--on-dark); border-color: var(--on-dark); color: var(--brand-dark); }
.quote-card {
    position: relative; margin: 0; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-card); padding: 1.6rem 1.5rem 1.4rem;
    display: flex; flex-direction: column; gap: 0.55rem;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.quote-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.quote-card__mark {
    position: absolute; top: 0.4rem; right: 1.1rem;
    font-family: var(--font-display); font-size: 4.2rem; line-height: 1;
    color: var(--brand-tint); pointer-events: none;
}
.quote-card p {
    font-size: 0.95rem; color: var(--ink); margin: 0;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.quote-card footer { display: flex; gap: 0.6rem; align-items: baseline; font-size: 0.88rem; margin-top: auto; padding-top: 0.4rem; border-top: 1px solid var(--line); }
.quote-card footer span { color: var(--ink-soft); }

/* ─── Locations ────────────────────────────────────────────────────────── */
.icon-chip {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: var(--radius-pill);
    background: var(--brand-tint); color: var(--brand-dark); flex-shrink: 0;
}
.icon-chip--lg { width: 46px; height: 46px; background: var(--card); box-shadow: var(--shadow-card); color: var(--brand); }

.locations { background: var(--brand-tint); }
.locations__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 860px) { .locations__grid { grid-template-columns: 1fr; } }
.location-card {
    background: var(--card); border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--line);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.location-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.location-card__map iframe { width: 100%; height: 230px; border: 0; display: block; }
.location-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.location-card__name {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-display); font-size: 1.45rem; color: var(--brand-dark);
}
.location-card__address { color: var(--ink-soft); font-size: 0.95rem; }
.location-card__hours {
    display: flex; gap: 0.5rem; align-items: flex-start;
    font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1.25rem;
}
.location-card__hours svg { flex-shrink: 0; margin-top: 0.2rem; color: var(--brand); }

/* ─── Offer banner ─────────────────────────────────────────────────────── */
.offer-banner { background: var(--brand); color: var(--on-dark); }
.offer-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.4rem; flex-wrap: wrap; }
.offer-banner__text { display: flex; flex-direction: column; gap: 0.15rem; }
.offer-banner__text strong { font-family: var(--font-display); font-size: 1.25rem; }
.offer-banner__text small { color: var(--on-dark-soft); }

/* ─── FAQ (sticky intro left, accordion right) ─────────────────────────── */
.faq__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
@media (max-width: 860px) { .faq__inner { grid-template-columns: 1fr; } }
.faq__head { position: sticky; top: 110px; }
@media (max-width: 860px) { .faq__head { position: static; } }
.faq__eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand); margin-bottom: 0.8rem; }
.faq__head h2 { margin-bottom: 0.6em; }
.faq__support { color: var(--ink-soft); max-width: 34ch; }
.faq__support a { color: var(--brand); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid currentColor; }
.faq__support a:hover { color: var(--brand-dark); }
.faq__list { display: grid; gap: 0.75rem; }
.faq__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; }
.faq__item summary {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem; font-weight: 600; cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg { flex-shrink: 0; transition: transform 0.25s var(--ease); color: var(--brand); }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__answer { padding: 0 1.25rem 1.25rem; color: var(--ink-soft); }
.faq__answer p:last-child { margin-bottom: 0; }

/* ─── CTA band ─────────────────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%); color: var(--on-dark); }
.cta-band__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    padding-block: clamp(2.5rem, 6vw, 4rem); flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 0.3em; }
.cta-band p { color: var(--on-dark-soft); margin: 0; max-width: 44ch; }

/* ─── Footer ───────────────────────────────────────────────────────────── */
.site-footer { background: var(--brand-dark); color: var(--on-dark-soft); font-size: 0.92rem; }
.site-footer a { color: var(--on-dark); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__grid {
    display: grid; grid-template-columns: 1.3fr 0.85fr 0.9fr 0.9fr 1.15fr;
    gap: 2.25rem 2.5rem; align-items: start;
    padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
@media (max-width: 1023px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__links a { font-size: 0.9rem; }
.site-footer__logobox {
    display: inline-flex; align-items: center;
    background: #fff; padding: 0.7rem 1.1rem; border-radius: 12px;
    margin-bottom: 1.1rem;
}
.site-footer__logobox img { height: 44px; width: auto; display: block; }
.site-footer__about p { margin-bottom: 0.9rem; }
.site-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; font-size: 0.9rem; }
.site-footer__contact a { color: var(--on-dark); }
.site-footer__wordmark { font-family: var(--font-display); font-size: 1.3rem; color: #fff; margin-bottom: 0.5rem; }
.site-footer__heading { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin: 0.35rem 0 1.1rem; }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer__links a { color: var(--on-dark-soft); display: inline-block; transition: color 0.2s, transform 0.2s var(--ease); }
.site-footer__links a:hover { color: #fff; transform: translateX(4px); text-decoration: none; }
.site-footer__links--two-col { grid-template-columns: 1fr 1fr; column-gap: 1.5rem; font-size: 0.88rem; }
.site-footer__links--two-col a { white-space: nowrap; }
.site-footer__social { list-style: none; display: flex; gap: 0.75rem; margin: 1.25rem 0 0; padding: 0; }
.site-footer__social a {
    display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-pill);
    transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.site-footer__social a:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); transform: translateY(-3px); }
.site-footer__location { font-style: normal; display: grid; gap: 0.2rem; margin-bottom: 1.25rem; }
.site-footer__location strong { color: #fff; }
.site-footer__legal { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 1.5rem 2rem; }
.site-footer__disclaimer { font-size: 0.8rem; max-width: 90ch; }
.site-footer__base { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.site-footer__base p { margin: 0; }
.site-footer__credit { margin-left: 0.9rem; padding-left: 0.9rem; border-left: 1px solid rgba(255,255,255,0.2); font-size: 0.85rem; color: var(--on-dark-soft); }
.site-footer__base ul { list-style: none; display: flex; gap: 1.25rem; margin: 0; padding: 0; flex-wrap: wrap; }

/* ─── Floating actions ─────────────────────────────────────────────────── */
.floating-actions { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 80; display: flex; flex-direction: column; gap: 0.6rem; }
.floating-actions a {
    display: flex; align-items: center; justify-content: center; width: 52px; height: 52px;
    border-radius: var(--radius-pill); color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s var(--ease);
}
.floating-actions a:hover { transform: scale(1.06); }
.floating-actions__whatsapp { background: #1faa53; }
.floating-actions__call { background: var(--brand); }
@media (min-width: 861px) { .floating-actions__call { display: none; } }

/* ─── Service & About page hero ────────────────────────────────────────── */
.svc-hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(600px 300px at 85% 10%, rgba(90, 106, 58, 0.10), transparent 70%),
        radial-gradient(500px 300px at 5% 90%, rgba(166, 138, 91, 0.08), transparent 70%),
        linear-gradient(180deg, #f1f2e7 0%, var(--surface) 100%);
}
.svc-hero__inner {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center; padding-block: clamp(2rem, 4vw, 3rem);
}
.svc-hero__content .lead { max-width: 46ch; margin-bottom: 1.1em; }
.svc-hero__chips { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.svc-hero__chips li {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-pill);
    padding: 0.4rem 0.9rem; font-size: 0.85rem; font-weight: 500; color: var(--ink);
}
.svc-hero__chips svg { color: var(--brand); flex-shrink: 0; }
.svc-hero__media { position: relative; }
.svc-hero__media::before {
    /* offset frame ring behind the image */
    content: ""; position: absolute; inset: 0;
    transform: translate(16px, 16px);
    border: 2px solid rgba(90, 106, 58, 0.35); border-radius: var(--radius-card);
    pointer-events: none;
}
.svc-hero__media img {
    position: relative; border-radius: var(--radius-card);
    aspect-ratio: 4/3; object-fit: cover; object-position: center top;
    width: 100%; max-height: 440px; box-shadow: var(--shadow-card);
}
@media (max-width: 860px) {
    .svc-hero__inner { grid-template-columns: 1fr; }
    .svc-hero__media { order: -1; max-width: 440px; }
}
@media (prefers-reduced-motion: no-preference) {
    .svc-hero__content > * { animation: fade-up 0.7s var(--ease) both; }
    .svc-hero__content > *:nth-child(1) { animation-delay: 0.05s; }
    .svc-hero__content > *:nth-child(2) { animation-delay: 0.15s; }
    .svc-hero__content > *:nth-child(3) { animation-delay: 0.25s; }
    .svc-hero__content > *:nth-child(4) { animation-delay: 0.35s; }
    .svc-hero__media { animation: fade-up 0.8s var(--ease) 0.2s both; }
}

/* Overview + "At a Glance" facts card */
.svc-overview { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .svc-overview { grid-template-columns: 1fr; } }
.svc-overview__main h2 { margin-bottom: 0.7em; }
.svc-overview .service-overview { font-size: 1.02rem; }
.svc-overview .service-overview p:first-child { font-size: 1.12rem; color: var(--ink); }
.facts-card {
    position: sticky; top: 100px;
    background: var(--brand-tint); border-radius: var(--radius-card);
    padding: 1.6rem 1.6rem 1.75rem;
}
.facts-card__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--brand-dark); margin-bottom: 1rem; }
.facts-card dl { margin: 0 0 1.4rem; }
.facts-card__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(90, 106, 58, 0.15); }
.facts-card__row:last-child { border-bottom: 0; }
.facts-card__row dt { font-size: 0.85rem; color: var(--ink-soft); }
.facts-card__row dd { margin: 0; font-weight: 600; font-size: 0.9rem; text-align: right; }
.facts-card .btn { width: 100%; }

/* Who it's for: icon cards */
.whofor { background: var(--brand-tint); }
.whofor__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
@media (max-width: 1023px) { .whofor__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .whofor__grid { grid-template-columns: 1fr; } }
.whofor__card {
    display: flex; flex-direction: column; gap: 0.8rem;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card);
    padding: 1.4rem 1.4rem 1.5rem;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.whofor__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.whofor__icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--radius-pill);
    background: var(--brand-tint); color: var(--brand);
}
.whofor__card:hover .whofor__icon { background: var(--brand); color: #fff; }
.whofor__text { font-size: 0.97rem; line-height: 1.5; }

/* Procedure steps: numbered cards */
.steps__grid {
    list-style: none; margin: 0; padding: 0; counter-reset: step;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 860px) { .steps__grid { grid-template-columns: 1fr; } }
.steps__item {
    counter-increment: step; position: relative;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card);
    padding: 1.5rem 1.5rem 1.4rem;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.steps__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.steps__num {
    display: flex; align-items: center; justify-content: center;
    width: 2.6rem; height: 2.6rem; margin-bottom: 1rem;
    background: var(--brand); color: #fff; border-radius: var(--radius-pill);
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
}
.steps__num::before { content: counter(step); }
.steps__item h3 { margin-bottom: 0.4rem; }
.steps__item p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* Quick facts strip (dark) */
.facts-strip { background: var(--brand-dark); color: var(--on-dark); padding-block: clamp(1.75rem, 4vw, 2.5rem); }
.facts-strip__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; margin: 0; }
.facts-strip__item { text-align: center; }
.facts-strip__item dt { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 0.3rem; }
.facts-strip__item dd { margin: 0; font-family: var(--font-display); font-size: 1.25rem; color: #ead9ab; }

/* Recovery timeline */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.timeline__item {
    position: relative; padding: 0 0 1.6rem 2.2rem; border-left: 2px solid var(--line);
    margin-left: 0.6rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
    content: ""; position: absolute; left: -8px; top: 0.15rem;
    width: 14px; height: 14px; border-radius: var(--radius-pill);
    background: var(--brand); border: 3px solid var(--brand-tint);
}
.timeline__period {
    display: inline-block; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--brand-dark);
    background: var(--brand-tint); border-radius: var(--radius-pill);
    padding: 0.25rem 0.8rem; margin-bottom: 0.45rem;
}
.timeline__item p { margin: 0; color: var(--ink-soft); max-width: 65ch; }

/* Cost card */
.cost-card {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    background: var(--brand-tint); border-radius: var(--radius-card);
    padding: clamp(1.75rem, 4vw, 2.75rem);
}
.cost-card__body { max-width: 60ch; }
.cost-card__body h2 { margin-bottom: 0.4em; }
.cost-card__body p { color: var(--ink-soft); margin-bottom: 0.6em; }
.cost-card__note { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--brand-dark) !important; margin: 0; }
.cost-card__note svg { flex-shrink: 0; margin-top: 0.2rem; }

/* ─── Sub-services grid (service pages) ────────────────────────────────── */
.subservices { background: var(--surface); }
.subservices__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem;
}
@media (max-width: 1023px) { .subservices__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .subservices__grid { grid-template-columns: 1fr; } }
.subservices__item {
    position: relative; display: flex; align-items: center; gap: 0.75rem;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card);
    padding: 0.95rem 1.1rem; font-size: 0.94rem; font-weight: 500; overflow: hidden;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.subservices__item::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--brand); transform: scaleY(0); transform-origin: top;
    transition: transform 0.3s var(--ease);
}
.subservices__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--brand); }
.subservices__item:hover::before { transform: scaleY(1); }
.subservices__icon {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 28px; height: 28px; border-radius: var(--radius-pill);
    background: var(--brand-tint); color: var(--brand);
    transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.subservices__item:hover .subservices__icon { background: var(--brand); color: #fff; transform: scale(1.08); }
.subservices__name { line-height: 1.35; }

/* ─── About pages ──────────────────────────────────────────────────────── */
.about-body { max-width: 800px; font-size: 1.02rem; }
.about-body h2, .about-body h3 { margin-top: 1.4em; }
.philosophy { position: relative; background: var(--brand-tint); overflow: hidden; }
.philosophy::before {
    content: "\201C"; position: absolute; top: -0.15em; right: 4%;
    font-family: var(--font-display); font-size: clamp(10rem, 22vw, 18rem); line-height: 1;
    color: rgba(90, 106, 58, 0.10); pointer-events: none;
}
.philosophy__body { position: relative; max-width: 760px; font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.5; color: var(--brand-dark); }
.philosophy__body p { max-width: none; }
.surgeon__credentials--cols { grid-template-columns: 1fr 1fr; max-width: 900px; }
@media (max-width: 720px) { .surgeon__credentials--cols { grid-template-columns: 1fr; } }
.gallery__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
@media (max-width: 1023px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery__grid { grid-template-columns: 1fr; } }
.gallery__item {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card);
    overflow: hidden; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.gallery__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.gallery__item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; display: block; }
.gallery__caption { display: block; padding: 0.7rem 1rem; font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); }

/* About profile layout: scrolling content left, sticky doctor card right */
.about-layout {
    display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.7fr);
    gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.about-layout__head { margin-bottom: clamp(1.75rem, 4vw, 2.5rem); }
.about-layout__head h1 { margin-bottom: 0.6rem; }
.about-layout__head .lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }
.about-layout__side { position: sticky; top: 96px; }
.about-block { margin-bottom: clamp(2.25rem, 5vw, 3.25rem); }
.about-block:last-child { margin-bottom: 0; }
.about-block__h {
    font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-bottom: 1.1rem;
    padding-bottom: 0.6rem; position: relative;
}
.about-block__h::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 3px;
    border-radius: 3px; background: linear-gradient(90deg, var(--brand), var(--accent));
}
.philosophy-card {
    position: relative; background: var(--brand-tint); border-radius: var(--radius-card);
    padding: clamp(1.5rem, 3.5vw, 2.25rem); overflow: hidden;
}
.philosophy-card::before {
    content: "\201C"; position: absolute; top: -0.12em; right: 3%;
    font-family: var(--font-display); font-size: clamp(6rem, 12vw, 9rem); line-height: 1;
    color: rgba(90, 106, 58, 0.12); pointer-events: none;
}
.philosophy-card .philosophy__body { font-size: clamp(1.1rem, 1.7vw, 1.3rem); }
.whofor__grid--narrow { grid-template-columns: 1fr 1fr; }
.gallery__grid--narrow { grid-template-columns: repeat(2, 1fr); }
.profile-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card);
    overflow: hidden; box-shadow: var(--shadow-card);
}
.profile-card > img {
    width: 100%; display: block; aspect-ratio: 1 / 1;
    object-fit: cover; object-position: center top;
}
.profile-card__body { padding: 1.4rem 1.5rem 1.6rem; display: grid; gap: 0.45rem; }
.profile-card__name { font-family: var(--font-display); font-size: 1.45rem; line-height: 1.2; color: var(--brand-dark); }
.profile-card__degrees { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.profile-card__meta {
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
    color: var(--brand); padding-top: 0.15rem;
}
.profile-card__actions { display: grid; gap: 0.6rem; margin-top: 0.85rem; }
.profile-card__actions .btn { width: 100%; justify-content: center; }
@media (max-width: 960px) {
    .about-layout { grid-template-columns: 1fr; }
    .about-layout__side { position: static; order: -1; max-width: 440px; }
    .whofor__grid--narrow, .gallery__grid--narrow { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .whofor__grid--narrow, .gallery__grid--narrow { grid-template-columns: 1fr; }
}

/* ─── Blog ─────────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.25rem); }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
    display: flex; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-card); overflow: hidden; text-decoration: none; color: inherit;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-card__body { padding: 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.55rem; }
.blog-card__meta { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand); }
.blog-card__title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; line-height: 1.25; color: var(--brand-dark); }
.blog-card__excerpt { color: var(--ink-soft); font-size: 0.95rem; }
.blog-grid__note { margin-top: 2rem; color: var(--ink-soft); }
.blog-grid__note a { color: var(--brand); }

.post__container { max-width: 820px; }
.post__header h1 { margin-bottom: 0.9rem; }
.post__byline { font-weight: 500; color: var(--ink); margin-bottom: 0.2rem; }
.post__updated { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.8rem; }
.post h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin: 2.2em 0 0.7em; scroll-margin-top: 110px; }
.post h3 { font-size: 1.15rem; margin: 1.6em 0 0.5em; }
.post p, .post li { line-height: 1.75; color: var(--ink); }
.post p { margin-bottom: 1em; }
.post ul, .post ol { padding-left: 1.3rem; margin-bottom: 1.2em; display: grid; gap: 0.5rem; }
.post a { color: var(--brand); }
.post__takeaways {
    background: var(--brand-tint); border-radius: var(--radius-card);
    padding: 1.5rem 1.75rem; margin-bottom: 1.8rem;
}
.post__takeaways h2 { margin: 0 0 0.7em; font-size: 1.25rem; }
.post__toc {
    border: 1px solid var(--line); border-radius: var(--radius-card);
    padding: 1.3rem 1.6rem; margin: 1.5rem 0 0.5rem; background: var(--card);
}
.post__toc strong { display: block; margin-bottom: 0.6rem; font-family: var(--font-display); font-size: 1.15rem; color: var(--brand-dark); }
.post__toc ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 1.5rem; padding-left: 1.1rem; margin: 0; }
.post__toc a { text-decoration: none; }
.post__toc a:hover { text-decoration: underline; }
@media (max-width: 620px) { .post__toc ul { grid-template-columns: 1fr; } }
.post__definition {
    border-left: 4px solid var(--brand); background: var(--brand-tint);
    border-radius: 0 var(--radius-input) var(--radius-input) 0;
    padding: 1rem 1.3rem; margin: 0 0 1.2em; color: var(--brand-dark);
}
.post__steps li { margin-bottom: 0.35rem; }
.post__faq { margin-top: 0.5rem; }
.post__cta { font-weight: 500; margin-top: 1.8em; }
.post__author {
    margin-top: 2.2rem; padding: 1.4rem 1.6rem; border: 1px solid var(--line);
    border-radius: var(--radius-card); background: var(--card); color: var(--ink-soft); line-height: 1.7;
    display: flex; gap: 1.25rem; align-items: center;
}
.post__author-photo {
    width: 112px; height: 112px; flex-shrink: 0; border-radius: 50%;
    object-fit: cover; object-position: center top; border: 3px solid var(--brand-tint);
}
.post__author-name { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--brand-dark); margin-bottom: 0.25rem; }
.post__author-body p { margin: 0; }
.post__author-body a { color: var(--brand); font-weight: 600; }
/* selector doubled up so it outranks the generic ".post ul" grid rule above */
.post .post__author-social,
.post__author-social {
    list-style: none; margin: 0.7rem 0 0; padding: 0;
    display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.post__author-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--brand-tint); color: var(--brand-dark);
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.post__author-social a:hover { background: var(--brand); color: #fff; }
@media (max-width: 560px) { .post__author-social { justify-content: center; } }
@media (max-width: 560px) { .post__author { flex-direction: column; text-align: center; } }

/* ─── FAQ hub page ─────────────────────────────────────────────────────── */
.faqs-page { max-width: 880px; }
.faqs-page__group { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* ─── EMI calculator ───────────────────────────────────────────────────── */
.emi-calc {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.5rem;
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-card); padding: 1.6rem; margin-top: 1.2rem;
}
@media (max-width: 720px) { .emi-calc { grid-template-columns: 1fr; } }
.emi-calc__inputs { display: grid; gap: 1rem; }
.emi-calc__inputs label { display: grid; gap: 0.35rem; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.emi-calc__inputs input, .emi-calc__inputs select {
    font: inherit; font-weight: 400; padding: 0.65rem 0.85rem;
    border: 1px solid var(--line); border-radius: var(--radius-input); background: #fff; color: var(--ink);
}
.emi-calc__inputs input:focus, .emi-calc__inputs select:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand); }
.emi-calc__result {
    display: grid; align-content: center; justify-items: center; gap: 0.3rem; text-align: center;
    background: var(--brand-tint); border-radius: var(--radius-card); padding: 1.5rem;
}
.emi-calc__label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand); }
.emi-calc__value { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.6rem); color: var(--brand-dark); line-height: 1.1; }
.emi-calc__note { font-size: 0.85rem; color: var(--ink-soft); }

/* ─── Contact + booking forms ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-grid__info { display: grid; gap: 1.5rem; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: grid; gap: 0.2rem; }
.contact-list__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand); }
.contact-list a { color: var(--ink); font-weight: 500; text-decoration: none; }
.contact-list a:hover { color: var(--brand); text-decoration: underline; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; align-items: start; }
@media (max-width: 620px) { .form { grid-template-columns: 1fr; } }
.form__field { display: grid; gap: 0.35rem; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.form__field--full { grid-column: 1 / -1; }
.form__field input, .form__field select, .form__field textarea {
    font: inherit; font-weight: 400; width: 100%; padding: 0.7rem 0.9rem;
    border: 1px solid var(--line); border-radius: var(--radius-input); background: #fff; color: var(--ink);
}
.form__field textarea { min-height: 120px; resize: vertical; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand); }
.form button[type="submit"] { grid-column: 1 / -1; justify-self: start; }
.form__privacy { grid-column: 1 / -1; font-size: 0.8rem; color: var(--ink-soft); margin: 0; }
.form-success {
    background: var(--brand-tint); border: 1px solid var(--brand);
    border-radius: var(--radius-card); padding: 1.5rem 1.75rem; color: var(--brand-dark);
}
.form-success p { margin: 0.5rem 0 0; }
.form-error {
    background: #fdf0ef; border: 1px solid #d9857c; color: #8a2c22;
    border-radius: var(--radius-input); padding: 0.8rem 1.1rem; margin-bottom: 1.1rem; font-size: 0.92rem;
}

/* ─── Utility / legal pages ────────────────────────────────────────────── */
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 1.3rem; margin: 1.8em 0 0.5em; }
.legal-body p { line-height: 1.75; color: var(--ink-soft); margin-bottom: 1em; }
.legal-body a { color: var(--brand); }
.html-sitemap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
@media (max-width: 720px) { .html-sitemap { grid-template-columns: 1fr; } }
.html-sitemap h2 { font-size: 1.25rem; margin: 1.4em 0 0.6em; }
.html-sitemap h2:first-child { margin-top: 0; }
.html-sitemap ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.html-sitemap a { color: var(--ink); text-decoration: none; }
.html-sitemap a:hover { color: var(--brand); text-decoration: underline; }

/* ─── Service placeholder page ─────────────────────────────────────────── */
.service-overview { color: var(--ink-soft); }
.service-overview p { max-width: 65ch; }
.service-placeholder { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.service-placeholder__media img { border-radius: var(--radius-card); }
@media (max-width: 860px) { .service-placeholder { grid-template-columns: 1fr; } }

/* ─── Motion layer (matches the eleganceintimatewellness.com language) ───
   All effects live behind prefers-reduced-motion: no-preference; the reduce
   block below disables everything for users who opt out. */
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
@keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 0.55; }
    100% { transform: scale(1.5); opacity: 0; }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

/* Header: gains depth once the page is scrolled (main.js toggles .scrolled) */
.site-header { transition: box-shadow 0.3s var(--ease), background 0.3s; }
.site-header.scrolled { background: rgba(248, 248, 243, 0.97); box-shadow: 0 8px 30px rgba(46, 56, 25, 0.10); }

@media (prefers-reduced-motion: no-preference) {
    /* Scroll reveal with per-card stagger (main.js sets --reveal-delay) */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); transition-delay: var(--reveal-delay, 0s); }
    .reveal.is-visible { opacity: 1; transform: none; }

    /* Hero entrance choreography on page load */
    .hero__content > * { animation: fade-up 0.7s var(--ease) both; }
    .hero__content > *:nth-child(1) { animation-delay: 0.05s; }
    .hero__content > *:nth-child(2) { animation-delay: 0.15s; }
    .hero__content > *:nth-child(3) { animation-delay: 0.25s; }
    .hero__content > *:nth-child(4) { animation-delay: 0.35s; }
    .hero__media { animation: fade-up 0.8s var(--ease) 0.2s both; }
    .hero__badge { animation: floaty 4s ease-in-out 1.2s infinite; }

    /* Floating WhatsApp: gentle float + expanding pulse ring */
    .floating-actions__whatsapp { position: relative; animation: floaty 3.2s ease-in-out infinite; }
    .floating-actions__whatsapp::after {
        content: ""; position: absolute; inset: 0; border-radius: inherit;
        border: 2px solid #1faa53; animation: pulse-ring 2.2s ease-out infinite;
        pointer-events: none;
    }

    /* Media hover zooms */
    .service-card__media, .guide-card__media, .result-case__frame { overflow: hidden; }
    .service-card__media img, .guide-card__media img, .result-case__frame img, .video-card__play img {
        transition: transform 0.5s var(--ease);
    }
    .service-card:hover .service-card__media img,
    .guide-card:hover .guide-card__media img,
    .result-case__frame:hover img,
    .video-card__play:hover img { transform: scale(1.06); }

    /* Buttons lift slightly on hover */
    .btn--primary:hover, .btn--accent:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(46, 56, 25, 0.18); }
    .btn--primary:active, .btn--accent:active { transform: translateY(0) scale(0.98); }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ─── Print ────────────────────────────────────────────────────────────── */
@media print {
    .utility-bar, .site-header, .floating-actions, .cta-band, .offer-banner { display: none; }
}
