/*
 * Acer Dental Clinic — assets/css/main.css
 * Premium design system. Mobile-first. No framework.
 * Inspired by spacedental.co.uk & kamranrasul.com
 */

/* ══════════════════════════════════════════════════════════
   1. DESIGN TOKENS
══════════════════════════════════════════════════════════ */
:root {
    /* Brand */
    --color-navy:        #0C2340;
    --color-navy-mid:    #163352;
    --color-navy-light:  #1F4470;
    --color-gold:        #C9962A;
    --color-gold-light:  #F0C060;
    --color-gold-pale:   #FDF5E0;
    --color-green:       #1B6B3A;
    --color-green-hover: #155730;

    /* Alias */
    --color-primary:     var(--color-navy);
    --color-accent:      var(--color-navy-light);
    --color-cta:         var(--color-gold);
    --color-cta-hover:   #B5841F;
    --color-finance:     var(--color-green);
    --color-finance-hover: var(--color-green-hover);

    /* Neutrals */
    --color-white:     #FFFFFF;
    --color-bg:        #FFFFFF;
    --color-bg-soft:   #F8F9FC;
    --color-bg-dark:   var(--color-navy);
    --color-border:    #E2E8F0;
    --color-border-lt: #EEF2F7;
    --color-text:      #0F1F33;
    --color-text-mid:  #3D5166;
    --color-text-muted:#6B7FA0;
    --color-divider:   rgba(255,255,255,0.10);

    /* Status */
    --color-success: #1B6B3A;
    --color-error:   #C0392B;

    /* Typography */
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

    --text-xs:   0.6875rem;
    --text-sm:   0.8125rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;
    --text-2xl:  1.5rem;
    --text-3xl:  1.875rem;
    --text-4xl:  2.25rem;
    --text-5xl:  3rem;
    --text-6xl:  3.75rem;
    --text-7xl:  4.5rem;

    --fw-normal:   400;
    --fw-medium:   500;
    --fw-semibold: 600;
    --fw-bold:     700;
    --fw-black:    900;

    --leading-tight:   1.15;
    --leading-snug:    1.3;
    --leading-normal:  1.65;
    --leading-relaxed: 1.8;

    /* Spacing */
    --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
    --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
    --sp-8: 2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
    --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;

    /* Layout */
    --container-max:  1200px;
    --container-pad:  1.25rem;
    --section-py:     4.5rem;

    /* Radii */
    --r-sm:   0.25rem;   --r-md: 0.5rem;
    --r-lg:   0.75rem;   --r-xl: 1rem;
    --r-2xl:  1.5rem;    --r-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(12,35,64,.07);
    --shadow-sm: 0 2px 8px rgba(12,35,64,.09);
    --shadow-md: 0 6px 20px rgba(12,35,64,.12);
    --shadow-lg: 0 16px 48px rgba(12,35,64,.16);
    --shadow-xl: 0 24px 64px rgba(12,35,64,.22);
    --shadow-gold: 0 8px 24px rgba(201,150,42,.30);

    /* Transitions */
    --t-fast: 150ms ease;
    --t-base: 250ms ease;
    --t-slow: 400ms cubic-bezier(0.4,0,0.2,1);

    /* Z-index */
    --z-base:    1;
    --z-sticky:  100;
    --z-header:  200;
    --z-overlay: 300;
    --z-modal:   400;

    /* Header height (used for scroll-padding) */
    --header-h: 72px;
}

/* ══════════════════════════════════════════════════════════
   2. RESET & BASE
══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--t-fast), opacity var(--t-fast);
}
a:hover { color: var(--color-navy); }

h1, h2, h3, h4, h5, h6 {
    line-height: var(--leading-tight);
    color: var(--color-text);
}

h1, h2 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
}
h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
}

ul, ol { list-style: none; }
address { font-style: normal; }

/* Skip link */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-navy); color: #fff;
    border-radius: var(--r-md); font-weight: var(--fw-semibold);
    z-index: 9999; transition: top var(--t-fast);
}
.skip-link:focus { top: 0.75rem; }

/* ══════════════════════════════════════════════════════════
   3. LAYOUT UTILITIES
══════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-py); }
.section--dark { background: var(--color-navy); color: #fff; }
.section--soft { background: var(--color-bg-soft); }
.section--gold-pale { background: var(--color-gold-pale); }
.text-center { text-align: center; }
.d-none-mobile { display: none; }

@media (min-width: 640px) {
    :root { --container-pad: 1.75rem; }
}
@media (min-width: 768px) {
    :root { --container-pad: 2rem; --section-py: 5.5rem; }
    .d-none-mobile { display: revert; }
}
@media (min-width: 1024px) {
    :root { --container-pad: 2.5rem; --section-py: 6.5rem; }
}

/* ══════════════════════════════════════════════════════════
   4. BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8125rem 1.75rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--r-full);
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--t-base), color var(--t-base),
                border-color var(--t-base), transform var(--t-fast),
                box-shadow var(--t-base);
    -webkit-user-select: none;
    user-select: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 3px; }

/* Gold CTA (primary action) */
.btn--cta {
    background: var(--color-gold);
    color: var(--color-navy) !important;
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}
.btn--cta:hover {
    background: var(--color-cta-hover);
    border-color: var(--color-cta-hover);
    box-shadow: 0 12px 32px rgba(201,150,42,.40);
}

/* Header CTA (smaller gold) */
.btn--header {
    padding: 0.625rem 1.25rem;
    font-size: var(--text-xs);
    letter-spacing: 0.04em;
}

/* Navy outline (for nav call button) */
.btn--outline-nav {
    background: transparent;
    color: var(--color-navy) !important;
    border-color: var(--color-border);
    padding: 0.5rem 1rem;
    font-size: var(--text-xs);
    letter-spacing: 0.03em;
    text-transform: none;
    font-weight: var(--fw-medium);
    border-radius: var(--r-full);
}
.btn--outline-nav:hover { border-color: var(--color-navy); background: var(--color-bg-soft); }

/* White outline (for dark backgrounds) */
.btn--outline-white {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,0.8); }

/* Finance */
.btn--finance {
    background: var(--color-finance);
    color: #fff !important;
    border-color: var(--color-finance);
}
.btn--finance:hover { background: var(--color-finance-hover); border-color: var(--color-finance-hover); }

/* Navy outline */
.btn--outline-navy {
    background: transparent;
    color: var(--color-navy) !important;
    border-color: var(--color-navy);
}
.btn--outline-navy:hover { background: var(--color-navy); color: #fff !important; }

/* Phone */
.btn--phone {
    background: var(--color-navy);
    color: #fff !important;
    border-color: var(--color-navy);
}
.btn--phone:hover { background: var(--color-navy-mid); }

/* Sizes */
.btn--sm  { padding: 0.5rem 1rem;     font-size: var(--text-xs);  }
.btn--lg  { padding: 1rem 2.25rem;    font-size: var(--text-base); }
.btn--xl  { padding: 1.125rem 2.75rem; font-size: var(--text-lg); }
.btn--block { width: 100%; }

/* ══════════════════════════════════════════════════════════
   5. ANNOUNCEMENT BAR
══════════════════════════════════════════════════════════ */
.announcement-bar {
    background: var(--color-gold);
    color: var(--color-navy);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    text-align: center;
    position: relative;
}
.announcement-bar .container { display: flex; align-items: center; justify-content: center; }
.announcement-bar__text a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.announcement-bar__close {
    position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--color-navy);
    cursor: pointer; padding: 0.25rem; opacity: 0.6;
    display: flex; align-items: center;
}
.announcement-bar__close:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   6. SITE HEADER
══════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: #fff;
    transition: box-shadow var(--t-base), background var(--t-base);
}
.site-header--scrolled { box-shadow: var(--shadow-md); }

/* Top bar */
.site-header__topbar {
    background: var(--color-navy);
    color: rgba(255,255,255,0.75);
    font-size: var(--text-xs);
    padding: 0.4rem 0;
    display: none;
}
@media (min-width: 900px) { .site-header__topbar { display: block; } }

.site-header__topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar__phones {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.topbar__phone-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: var(--fw-medium);
    transition: color var(--t-fast);
}
.topbar__phone-link:hover { color: var(--color-gold); }
.topbar__loc-name {
    color: rgba(255,255,255,0.5);
    margin-right: 0.2rem;
    font-weight: var(--fw-normal);
}

.topbar__right { display: flex; align-items: center; gap: 1rem; }

.topbar__badge {
    background: rgba(201,150,42,0.15);
    color: var(--color-gold-light);
    border: 1px solid rgba(201,150,42,0.3);
    padding: 0.2rem 0.6rem;
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background var(--t-fast);
}
.topbar__badge:hover { background: rgba(201,150,42,0.25); color: var(--color-gold-light); }

.topbar__social {
    color: rgba(255,255,255,0.6);
    display: flex; align-items: center;
    transition: color var(--t-fast);
}
.topbar__social:hover { color: var(--color-gold); }

/* Main header bar */
.site-header__main {
    border-bottom: 1px solid var(--color-border-lt);
}
.site-header__main .container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: var(--header-h);
}

/* Logo */
.site-logo {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.site-logo img { height: 44px; width: auto; }
.site-logo__wordmark {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    font-weight: var(--fw-normal);
    color: var(--color-navy);
    letter-spacing: -0.02em;
}
.site-logo__wordmark strong { font-weight: var(--fw-black); color: var(--color-gold); }

/* Primary nav */
.primary-nav { flex: 1; display: none; }
@media (min-width: 1024px) { .primary-nav { display: block; } }

.primary-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0; padding: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.75rem;
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-mid);
    text-decoration: none;
    border-radius: var(--r-md);
    transition: color var(--t-fast), background var(--t-fast);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover { color: var(--color-navy); background: var(--color-bg-soft); }
.nav-link[aria-current="page"] { color: var(--color-navy); font-weight: var(--fw-semibold); }

.nav-chevron {
    transition: transform var(--t-fast);
    opacity: 0.6;
}

/* Header CTAs */
.site-header__ctas {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* ── Mega-dropdown (Treatments) ─────────────────────────────────────────────── */
.has-dropdown { position: relative; }

.mega-dropdown,
.dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast), transform var(--t-fast);
    z-index: var(--z-overlay);
}

.has-dropdown:hover > .mega-dropdown,
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .mega-dropdown,
.has-dropdown:focus-within > .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover > .nav-link .nav-chevron,
.has-dropdown:focus-within > .nav-link .nav-chevron {
    transform: rotate(180deg);
}

/* Mega-dropdown inner */
.mega-dropdown { min-width: 640px; }
.mega-dropdown__inner { padding: 1.5rem; }

.mega-dropdown__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-border-lt);
}
.mega-dropdown__tagline {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-weight: var(--fw-medium);
}
.mega-dropdown__all {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
}
.mega-dropdown__all:hover { color: var(--color-cta-hover); }

.mega-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: background var(--t-fast);
    position: relative;
}
.mega-item:hover { background: var(--color-bg-soft); }

.mega-item__icon {
    font-size: 1.25rem;
    width: 2rem;
    text-align: center;
    flex-shrink: 0;
}
.mega-item__body { display: flex; flex-direction: column; gap: 0.125rem; }
.mega-item__name {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-text);
}
.mega-item__from {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}
.mega-item__badge {
    position: absolute;
    top: 0.4rem; right: 0.5rem;
    background: var(--color-gold);
    color: var(--color-navy);
    font-size: 0.6rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.1rem 0.4rem;
    border-radius: var(--r-full);
}

/* Clinics dropdown */
.dropdown--clinics { min-width: 320px; left: 0; transform: translateY(-8px); }
.has-dropdown:hover > .dropdown--clinics,
.has-dropdown:focus-within > .dropdown--clinics {
    transform: translateY(0);
}
.dropdown__inner { padding: 0.75rem; }

.clinic-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: background var(--t-fast);
}
.clinic-item:hover { background: var(--color-bg-soft); }
.clinic-item__pin {
    color: var(--color-gold);
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.clinic-item__body { display: flex; flex-direction: column; gap: 0.125rem; }
.clinic-item__name { font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--color-text); }
.clinic-item__detail { font-size: var(--text-xs); color: var(--color-text-muted); }
.clinic-item__phone { font-size: var(--text-xs); color: var(--color-accent); font-weight: var(--fw-medium); }

/* ── Mobile hamburger ────────────────────────────────────────────────────────── */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: none;
    border: 1.5px solid var(--color-border);
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--t-fast), border-color var(--t-fast);
    margin-left: auto;
}
.nav-toggle:hover { background: var(--color-bg-soft); border-color: var(--color-navy); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-navy);
    border-radius: var(--r-full);
    transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav drawer ───────────────────────────────────────────────────────── */
.mobile-nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(12,35,64,0.65);
    backdrop-filter: blur(3px);
    z-index: calc(var(--z-header) - 1);
}
.mobile-nav-overlay.is-active { display: block; }

@media (max-width: 1023px) {
    .primary-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(360px, 90vw);
        height: 100dvh;
        background: var(--color-white);
        box-shadow: var(--shadow-xl);
        z-index: var(--z-header);
        padding: 5rem 1.5rem 2rem;
        overflow-y: auto;
        transition: right var(--t-slow);
    }
    .primary-nav.is-open { right: 0; }

    .primary-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-link {
        padding: 0.875rem 0;
        font-size: var(--text-base);
        border-bottom: 1px solid var(--color-border-lt);
        border-radius: 0;
        justify-content: space-between;
    }
    .mega-dropdown,
    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding-left: 1rem;
        opacity: 1;
        pointer-events: auto;
        display: none;
    }
    .has-dropdown.is-open > .mega-dropdown,
    .has-dropdown.is-open > .dropdown { display: block; }
    .has-dropdown.is-open .nav-chevron { transform: rotate(180deg); }

    .mega-dropdown__grid { grid-template-columns: 1fr; }
    .mega-dropdown__inner { padding: 0.5rem 0; }
    .mega-dropdown__header { display: none; }
    .dropdown--clinics { min-width: 0; left: auto; }
}

/* ══════════════════════════════════════════════════════════
   7. HERO
══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    background:
        /* Top-left deep navy vignette */
        radial-gradient(ellipse 80% 100% at 0% 0%,   rgba(7,22,38,.95)    0%, transparent 60%),
        /* Bottom-right accent bloom */
        radial-gradient(ellipse 60% 70% at 100% 100%, rgba(31,68,112,.55)  0%, transparent 55%),
        /* Gold shimmer top-right */
        radial-gradient(ellipse 45% 50% at 95% 8%,   rgba(201,150,42,.20) 0%, transparent 50%),
        /* Gold shimmer bottom-left */
        radial-gradient(ellipse 40% 40% at 5% 92%,   rgba(201,150,42,.12) 0%, transparent 45%),
        /* Base: rich navy-to-midnight diagonal */
        linear-gradient(135deg, #071626 0%, #0C2340 40%, #163352 70%, #071626 100%);
    color: #fff;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}

/* When a photo is present, darken it so text stays legible */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        115deg,
        rgba(7,22,38,.88)   0%,
        rgba(12,35,64,.72)  45%,
        rgba(12,35,64,.30)  100%
    );
    z-index: 1;
}
.hero__bg {
    position: absolute; inset: 0;
    overflow: hidden;
    z-index: 0;
}
.hero__bg img,
.hero__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-block: var(--sp-24);
    max-width: 680px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,150,42,0.18);
    color: var(--color-gold-light);
    border: 1px solid rgba(201,150,42,0.35);
    padding: 0.375rem 0.875rem;
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
}
.hero__title em {
    font-style: normal;
    color: var(--color-gold-light);
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.78);
    line-height: var(--leading-relaxed);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}

.hero__divider {
    width: 48px;
    height: 2px;
    background: var(--color-gold);
    border-radius: var(--r-full);
    margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════════════════
   8. TRUST SIGNALS
══════════════════════════════════════════════════════════ */
.trust-strip {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-xl);
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0;
}
.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: rgba(255,255,255,0.9);
    border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__icon { color: var(--color-gold-light); font-size: 1rem; }

/* Section trust row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    padding-block: 2.5rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.trust-row__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-mid);
}
.trust-row__item svg { color: var(--color-gold); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   9. SECTION HEADINGS
══════════════════════════════════════════════════════════ */
.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading--left { text-align: left; }

.section-heading__eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.section-heading__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: var(--fw-bold);
    line-height: var(--leading-snug);
    color: var(--color-text);
    margin-bottom: 1rem;
}
.section--dark .section-heading__title { color: #fff; }
.section-heading__title em { font-style: italic; color: var(--color-gold); }

.section-heading__body {
    font-size: var(--text-lg);
    color: var(--color-text-mid);
    max-width: 580px;
    margin-inline: auto;
    line-height: var(--leading-relaxed);
}
.section--dark .section-heading__body { color: rgba(255,255,255,0.65); }
.section-heading--left .section-heading__body { margin-inline: 0; }

.section-heading__line {
    width: 40px;
    height: 3px;
    background: var(--color-gold);
    border-radius: var(--r-full);
    margin: 1rem auto 0;
}
.section-heading--left .section-heading__line { margin-inline: 0; }

/* ══════════════════════════════════════════════════════════
   10. TREATMENT CAROUSEL
══════════════════════════════════════════════════════════ */

/* Section background */
.section--treatments { background: #fff; }

/* ── Header row: heading left, nav buttons right ─────────── */
.tc-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.tc-header .section-heading { margin-bottom: 0; }
.tc-header .section-heading__line { margin: 0.75rem 0 0; }

.tc-nav {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    padding-bottom: 0.25rem;
}
.tc-nav__btn {
    width: 2.75rem; height: 2.75rem;
    border-radius: var(--r-full);
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-navy);
    transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.tc-nav__btn:hover:not(:disabled) {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}
.tc-nav__btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── Outer clip ──────────────────────────────────────── */
.tc-outer {
    overflow: hidden;
    position: relative;
    /* Reveal peek of next card on mobile */
    margin-inline: -0.5rem;
    padding-inline: 0.5rem;
}

/* ── Sliding track ─────────────────────────────────── */
.tc-track {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0 1rem;
    transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ── Individual slide ──────────────────────────────── */
.tc-slide {
    flex: 0 0 calc(33.333% - 0.834rem);
    min-width: 0;
}

/* ── The card: full background image + gradient overlay ─ */
.tc-card {
    display: block;
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: var(--color-navy);
    background-size: cover;
    background-position: center top;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 20px rgba(12,35,64,.12);
}
.tc-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 48px rgba(12,35,64,.22);
}

/* Dark-to-transparent gradient so text is always legible */
.tc-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(4,12,25,.96)  0%,
        rgba(8,22,44,.72)  35%,
        rgba(12,35,64,.28) 65%,
        transparent        100%
    );
    z-index: 1;
}

/* ── Per-card gradient backgrounds (no image uploaded) ─ */
.tc-slide:nth-child(1)  .tc-card { background-image: linear-gradient(155deg, #071626 0%, #0e2d5e 60%, #153f85 100%); }
.tc-slide:nth-child(2)  .tc-card { background-image: linear-gradient(155deg, #0a1422 0%, #162236 60%, #1e3350 100%); }
.tc-slide:nth-child(3)  .tc-card { background-image: linear-gradient(155deg, #0d1b28 0%, #1f2e40 60%, #a07425 100%); }
.tc-slide:nth-child(4)  .tc-card { background-image: linear-gradient(155deg, #06101c 0%, #0f2035 60%, #152d4e 100%); }
.tc-slide:nth-child(5)  .tc-card { background-image: linear-gradient(155deg, #0e1020 0%, #1a1a3a 60%, #34244e 100%); }
.tc-slide:nth-child(6)  .tc-card { background-image: linear-gradient(155deg, #08141e 0%, #0e2232 60%, #163d46 100%); }
.tc-slide:nth-child(7)  .tc-card { background-image: linear-gradient(155deg, #081520 0%, #0e2232 60%, #123e38 100%); }
.tc-slide:nth-child(8)  .tc-card { background-image: linear-gradient(155deg, #091520 0%, #122236 60%, #192e4a 100%); }
.tc-slide:nth-child(9)  .tc-card { background-image: linear-gradient(155deg, #0e0d20 0%, #1b1530 60%, #2e1f46 100%); }
.tc-slide:nth-child(10) .tc-card { background-image: linear-gradient(155deg, #12091a 0%, #201228 60%, #3a1a34 100%); }

/* Large background icon when no photo set */
.tc-card__icon-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -65%);
    font-size: 5rem;
    opacity: 0.14;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* ── Bottom text panel ──────────────────────────────── */
.tc-card__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.tc-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--color-gold);
    color: #0C2340;
    font-size: 0.64rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: var(--r-full);
    align-self: flex-start;
    margin-bottom: 0.2rem;
}
.tc-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    color: #fff;
    line-height: 1.2;
    margin: 0;
}
.tc-card__tagline {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.68);
    line-height: var(--leading-snug);
    margin: 0 0 0.5rem;
}
.tc-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 0.15rem;
}
.tc-card__price {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.tc-card__fin-badge {
    font-size: 0.6rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(27,107,58,.8);
    color: #7dffa8;
    border: 1px solid rgba(80,200,120,.25);
    padding: 0.1rem 0.4rem;
    border-radius: var(--r-full);
    white-space: nowrap;
}
.tc-card__explore {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-gold);
    white-space: nowrap;
    transition: gap var(--t-fast);
}
.tc-card:hover .tc-card__explore { gap: 0.6rem; }

/* ── Dot indicators ─────────────────────────────────── */
.tc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.tc-dot {
    height: 8px;
    width: 8px;
    border-radius: var(--r-full);
    background: var(--color-border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background var(--t-fast), width var(--t-fast);
    flex-shrink: 0;
}
.tc-dot--active {
    background: var(--color-gold);
    width: 28px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .tc-slide { flex: 0 0 calc(50% - 0.625rem); }
}
@media (max-width: 640px) {
    .tc-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .tc-slide { flex: 0 0 calc(82% - 0.625rem); }
    .tc-card__name { font-size: var(--text-lg); }
}

/* ══════════════════════════════════════════════════════════
   11. LOCATION STRIP CARDS
══════════════════════════════════════════════════════════ */
.section--locs {
    background: #F4F3F0;
}

.loc-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── The strip itself ────────────────────────────────── */
.loc-strip {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: stretch;
    background: #fff;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow:
        0 2px 12px rgba(12,35,64,.07),
        0 0 0 1px rgba(12,35,64,.06);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.loc-strip:hover {
    transform: translateY(-3px);
    box-shadow:
        0 14px 40px rgba(12,35,64,.13),
        0 0 0 1px rgba(201,150,42,.25);
}

/* ── Left navy panel ─────────────────────────────────── */
.loc-strip__panel {
    background: linear-gradient(160deg, #071626 0%, #0C2340 55%, #163352 100%);
    padding: 2rem 1.75rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
/* Decorative gold orb top-right */
.loc-strip__panel::before {
    content: '';
    position: absolute;
    top: -24px; right: -24px;
    width: 110px; height: 110px;
    background: radial-gradient(circle, rgba(201,150,42,.22) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}
/* Large watermark number */
.loc-strip__num {
    position: absolute;
    top: 0.5rem; right: 1rem;
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(201,150,42,.18);
    pointer-events: none;
    user-select: none;
}
.loc-strip__city {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    line-height: 1.15;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
}
.loc-strip__post {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: rgba(255,255,255,.45);
    position: relative;
    z-index: 1;
}
.loc-strip__rule {
    width: 36px;
    height: 2px;
    background: var(--color-gold);
    margin-top: 0.875rem;
    position: relative;
    z-index: 1;
}

/* ── Middle info column ──────────────────────────────── */
.loc-strip__info {
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    border-right: 1px solid var(--color-border-lt);
}
.loc-strip__meta {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: var(--text-sm);
    color: var(--color-text-mid);
    line-height: var(--leading-snug);
}
.loc-strip__meta svg { flex-shrink: 0; color: var(--color-gold); }
.loc-strip__phone {
    font-weight: var(--fw-semibold);
    font-size: var(--text-base) !important;
    color: var(--color-navy) !important;
    text-decoration: none;
    transition: color var(--t-fast);
}
.loc-strip__phone:hover { color: var(--color-gold) !important; }
.loc-strip__directions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.25rem;
    font-size: var(--text-xs);
    font-weight: var(--fw-medium);
    color: var(--color-gold);
    text-decoration: none;
    transition: opacity var(--t-fast);
}
.loc-strip__directions:hover { opacity: .75; }

/* ── Right CTA panel ─────────────────────────────────── */
.loc-strip__ctas {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem;
    min-width: 210px;
    background: #FAFAF8;
}
.loc-strip__finance {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: var(--text-xs);
    font-weight: var(--fw-medium);
    color: var(--color-green);
    text-decoration: none;
    padding: 0.35rem 0;
    border-top: 1px dashed rgba(27,107,58,.25);
    margin-top: 0.25rem;
    transition: opacity var(--t-fast);
}
.loc-strip__finance:hover { opacity: .75; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
    .loc-strip {
        grid-template-columns: 190px 1fr;
        grid-template-rows: auto auto;
    }
    .loc-strip__ctas {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        background: #F4F3F0;
        border-top: 1px solid var(--color-border-lt);
        padding: 1.25rem 1.5rem;
        min-width: 0;
        gap: 0.625rem;
    }
    .loc-strip__finance {
        border-top: none;
        margin-top: 0;
        border-left: 1px dashed rgba(27,107,58,.25);
        padding: 0 0 0 0.75rem;
        margin-left: auto;
    }
    .loc-strip__info { border-right: none; }
}
@media (max-width: 600px) {
    .loc-strip { grid-template-columns: 1fr; }
    .loc-strip__panel { min-height: 110px; padding: 1.5rem; }
    .loc-strip__num { font-size: 4rem; }
    .loc-strip__info { padding: 1.5rem; }
    .loc-strip__ctas { flex-direction: column; padding: 1.25rem 1.5rem; }
    .loc-strip__finance { border-left: none; margin-left: 0; padding-left: 0; border-top: 1px dashed rgba(27,107,58,.25); margin-top: 0.25rem; padding-top: 0.5rem; }
}

/* ══════════════════════════════════════════════════════════
   12. WHY US / PILLAR CARDS
══════════════════════════════════════════════════════════ */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.pillar-card {
    padding: 2rem 1.75rem;
    border-radius: var(--r-xl);
    border: 1px solid var(--color-border);
    background: var(--color-white);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-card__icon {
    width: 3rem; height: 3rem;
    background: var(--color-gold-pale);
    border-radius: var(--r-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
}
.pillar-card__title {
    font-size: var(--text-base);
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    margin-bottom: 0.5rem;
}
.pillar-card__body {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
}

/* ══════════════════════════════════════════════════════════
   13. TESTIMONIAL CARDS
══════════════════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}
.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-xl);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.testimonial-card__stars { color: var(--color-gold); font-size: 1.1rem; letter-spacing: 0.1em; }
.testimonial-card__text {
    font-size: var(--text-base);
    color: var(--color-text-mid);
    line-height: var(--leading-relaxed);
    flex: 1;
    font-style: italic;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    border-top: 1px solid var(--color-border-lt);
    padding-top: 1rem;
}
.testimonial-card__avatar {
    width: 2.5rem; height: 2.5rem;
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    border-radius: var(--r-full);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: var(--text-base);
    font-weight: var(--fw-bold);
    flex-shrink: 0;
}
.testimonial-card__meta { display: flex; flex-direction: column; gap: 0.125rem; }
.testimonial-card__location { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: var(--fw-normal); }

/* ══════════════════════════════════════════════════════════
   14. CTA BANDS
══════════════════════════════════════════════════════════ */
.cta-band {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
    color: #fff;
    padding-block: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201,150,42,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-band__eyebrow {
    font-size: var(--text-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 0.75rem;
    font-weight: var(--fw-semibold);
}
.cta-band__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: var(--leading-snug);
}
.cta-band__body {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: 2.25rem;
    line-height: var(--leading-relaxed);
}
.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   15. FINANCE CTA BAND
══════════════════════════════════════════════════════════ */
.finance-cta {
    background: linear-gradient(135deg, var(--color-green) 0%, #227a44 100%);
    color: #fff;
    padding-block: 3.5rem;
}
.finance-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .finance-cta .container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}
.finance-cta__copy { flex: 1; }
.finance-cta__icon {
    font-size: 2rem;
    width: 3.5rem; height: 3.5rem;
    background: rgba(255,255,255,0.12);
    border-radius: var(--r-lg);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem;
}
.finance-cta__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    margin-bottom: 0.5rem;
}
.finance-cta__body { font-size: var(--text-base); color: rgba(255,255,255,0.8); }
.finance-cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.finance-cta__actions .btn {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    border-color: rgba(255,255,255,0.4);
    font-size: var(--text-xs);
    padding: 0.6rem 1.1rem;
}
.finance-cta__actions .btn:hover { background: rgba(255,255,255,0.25); border-color: #fff; }

/* ══════════════════════════════════════════════════════════
   16. FINANCE STRIP (footer top)
══════════════════════════════════════════════════════════ */
.finance-strip {
    background: var(--color-navy-mid);
    color: rgba(255,255,255,.85);
    padding: 1.1rem 0;
}
.finance-strip__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    text-align: center;
}
@media (min-width: 768px) {
    .finance-strip__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.finance-strip__copy {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-sm);
}
.finance-strip__copy svg { color: var(--color-gold-light); flex-shrink: 0; }
.finance-strip__links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.finance-strip__btn {
    background: rgba(201,150,42,0.18);
    color: var(--color-gold-light);
    border: 1px solid rgba(201,150,42,0.4);
    padding: 0.375rem 0.875rem;
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    transition: background var(--t-fast);
}
.finance-strip__btn:hover { background: rgba(201,150,42,0.3); color: var(--color-gold-light); }

/* ══════════════════════════════════════════════════════════
   17. STICKY BOOKING BAR (mobile)
══════════════════════════════════════════════════════════ */
.sticky-bar {
    position: fixed;
    bottom: -100px;
    left: 0; right: 0;
    z-index: var(--z-sticky);
    background: var(--color-navy);
    color: #fff;
    box-shadow: 0 -4px 20px rgba(12,35,64,.25);
    transition: bottom var(--t-slow);
    padding: 0.75rem 1rem;
}
.sticky-bar.is-visible { bottom: 0; }
@media (min-width: 1024px) { .sticky-bar { display: none; } }

.sticky-bar__inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
}
.sticky-bar__label {
    font-size: var(--text-xs);
    font-weight: var(--fw-medium);
    color: rgba(255,255,255,0.7);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sticky-bar__action {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.03em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast);
}
.sticky-bar__action--book {
    background: var(--color-gold);
    color: var(--color-navy);
}
.sticky-bar__action--book:hover { background: var(--color-gold-light); }
.sticky-bar__action--call {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}
.sticky-bar__action--locations {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; gap: 0.25rem;
}

.sticky-bar__locations-panel {
    background: var(--color-white);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    padding: 1.25rem;
    margin: -0.75rem -1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 -8px 24px rgba(12,35,64,.15);
}
.sticky-bar__location-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.sticky-bar__loc-name { font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--color-text); }
.sticky-bar__loc-actions { display: flex; gap: 0.5rem; }

/* ══════════════════════════════════════════════════════════
   18. PAGE HEADER / BREADCRUMB
══════════════════════════════════════════════════════════ */
.page-header {
    background: var(--color-navy);
    color: #fff;
    padding: 3rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, transparent 60%);
}
.page-header__eyebrow {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 0.5rem;
}
.page-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    color: #fff;
    line-height: var(--leading-snug);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    align-items: center;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.55);
    margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-gold-light); }
.breadcrumb__sep { color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════════════════
   19. FAQ ACCORDION
══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 760px; }

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--color-white);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.125rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: var(--fw-semibold);
    font-size: var(--text-base);
    color: var(--color-text);
    user-select: none;
    transition: background var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--color-bg-soft); }

.faq-item__chevron {
    flex-shrink: 0;
    transition: transform var(--t-fast);
    color: var(--color-text-muted);
}
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--color-navy); background: var(--color-gold-pale); }

.faq-item__answer {
    padding: 1rem 1.25rem 1.25rem;
    font-size: var(--text-base);
    color: var(--color-text-mid);
    line-height: var(--leading-relaxed);
    border-top: 1px solid var(--color-border-lt);
    overflow: hidden;
}

/* ══════════════════════════════════════════════════════════
   20. TREATMENT PAGE LAYOUT
══════════════════════════════════════════════════════════ */
.treatment-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .treatment-layout { grid-template-columns: 1fr 340px; }
}

.treatment-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.sidebar-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.sidebar-card--navy {
    background: var(--color-navy);
    border-color: transparent;
    color: #fff;
}
.sidebar-card--gold {
    background: var(--color-gold-pale);
    border-color: rgba(201,150,42,0.25);
}
.sidebar-card__title {
    font-size: var(--text-base);
    font-weight: var(--fw-semibold);
    color: inherit;
}
.sidebar-card__price {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--fw-bold);
    color: var(--color-gold);
    line-height: 1;
}
.sidebar-card__price span { font-size: var(--text-sm); font-weight: var(--fw-normal); color: rgba(255,255,255,0.6); margin-left: 0.25rem; }
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-card__divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
}

/* Benefits list */
.benefits-list { display: flex; flex-direction: column; gap: 0.625rem; margin-block: 1.5rem; }
.benefits-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: var(--text-base);
    color: var(--color-text-mid);
}
.benefits-list__check {
    width: 1.25rem; height: 1.25rem;
    background: var(--color-green);
    color: #fff;
    border-radius: var(--r-full);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* How it works steps */
.steps-list { display: flex; flex-direction: column; gap: 0; margin-block: 1.5rem; counter-reset: steps; }
.steps-item {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 1.75rem;
    position: relative;
}
.steps-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.0625rem; top: 2.25rem;
    width: 2px;
    height: calc(100% - 2rem);
    background: var(--color-border);
}
.steps-item__num {
    counter-increment: steps;
    width: 2.125rem; height: 2.125rem;
    background: var(--color-navy);
    color: #fff;
    border-radius: var(--r-full);
    display: flex; align-items: center; justify-content: center;
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    flex-shrink: 0;
}
.steps-item__num::before { content: counter(steps); }
.steps-item__body {}
.steps-item__title { font-weight: var(--fw-semibold); margin-bottom: 0.375rem; color: var(--color-text); }
.steps-item__text { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-relaxed); }

/* ══════════════════════════════════════════════════════════
   21. LOCATION PAGE
══════════════════════════════════════════════════════════ */
.location-info-bar {
    background: var(--color-bg-soft);
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
}
.location-info-bar .container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    align-items: center;
}
.location-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--color-text-mid);
}
.location-info-item svg { color: var(--color-gold); }

.location-map { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--color-border); }
.location-map iframe { width: 100%; height: 320px; display: block; }

/* ══════════════════════════════════════════════════════════
   22. LANDING PAGE (Google Ads)
══════════════════════════════════════════════════════════ */
.landing-header {
    background: var(--color-navy);
    padding: 1rem 0;
    display: flex;
    align-items: center;
}
.landing-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-hero {
    background: linear-gradient(135deg, var(--color-navy) 55%, var(--color-navy-mid) 100%);
    color: #fff;
    padding: 4rem 0;
}
.landing-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 768px) { .landing-hero__grid { grid-template-columns: 1fr 420px; } }

.lead-form-card {
    background: var(--color-white);
    border-radius: var(--r-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}
.lead-form-card__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}
.lead-form-card__sub {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-label { font-size: var(--text-sm); font-weight: var(--fw-medium); color: var(--color-text); }
.form-label span { color: var(--color-error); }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--text-base);
    font-family: var(--font-body);
    border: 1.5px solid var(--color-border);
    border-radius: var(--r-lg);
    background: var(--color-white);
    color: var(--color-text);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    outline: none;
}
.form-input:focus { border-color: var(--color-navy); box-shadow: 0 0 0 3px rgba(12,35,64,.08); }
.form-input.is-invalid { border-color: var(--color-error); }

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: var(--text-sm);
    color: var(--color-text-mid);
    margin-bottom: 1.25rem;
}
.form-consent input { flex-shrink: 0; margin-top: 0.125rem; accent-color: var(--color-navy); }

.landing-footer {
    background: var(--color-navy);
    color: rgba(255,255,255,0.55);
    padding: 1.25rem 0;
    font-size: var(--text-xs);
    text-align: center;
}

/* ══════════════════════════════════════════════════════════
   23. CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-tabs { border-bottom: 2px solid var(--color-border); display: flex; gap: 0; margin-bottom: 2.5rem; }
.contact-tab {
    padding: 0.875rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-text-muted);
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color var(--t-fast), border-color var(--t-fast);
    white-space: nowrap;
}
.contact-tab:hover { color: var(--color-navy); }
.contact-tab[aria-selected="true"] { color: var(--color-navy); border-bottom-color: var(--color-gold); }

/* ══════════════════════════════════════════════════════════
   24. SITE FOOTER
══════════════════════════════════════════════════════════ */
.site-footer { background: var(--color-navy); color: rgba(255,255,255,0.75); }

/* Footer main */
.footer-main { padding: 4.5rem 0 3.5rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 2rem; } }

/* Brand col */
.footer-col--brand {}

.footer-logo { display: inline-flex; align-items: center; margin-bottom: 1.25rem; }
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-logo__wordmark {
    font-size: var(--text-xl);
    font-weight: var(--fw-normal);
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.footer-logo__wordmark strong { font-weight: var(--fw-black); color: var(--color-gold); }

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.55);
    line-height: var(--leading-relaxed);
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social { display: flex; gap: 0.625rem; margin-bottom: 1.5rem; }
.footer-social__link {
    width: 2.25rem; height: 2.25rem;
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.footer-social__link:hover { background: var(--color-gold); color: var(--color-navy); border-color: var(--color-gold); }

.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-badge {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.25rem 0.625rem;
    border-radius: var(--r-full);
    letter-spacing: 0.03em;
}

/* Footer columns */
.footer-col__heading {
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.footer-nav { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--t-fast);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.footer-nav a::before {
    content: '';
    display: inline-block;
    width: 4px; height: 4px;
    background: var(--color-gold);
    border-radius: var(--r-full);
    opacity: 0;
    transition: opacity var(--t-fast);
}
.footer-nav a:hover { color: #fff; }
.footer-nav a:hover::before { opacity: 1; }

/* Clinic blocks */
.footer-clinic {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-clinic:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.footer-clinic__name {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: 0.375rem;
}
.footer-clinic__name svg { color: var(--color-gold); }
.footer-clinic address {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.5);
    line-height: var(--leading-relaxed);
    margin-bottom: 0.375rem;
}
.footer-clinic__phone {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.375rem;
    transition: color var(--t-fast);
}
.footer-clinic__phone:hover { color: var(--color-gold); }
.footer-clinic__book {
    font-size: var(--text-xs);
    color: var(--color-gold-light);
    text-decoration: none;
    font-weight: var(--fw-semibold);
    transition: color var(--t-fast);
}
.footer-clinic__book:hover { color: #fff; }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
}
.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.footer-bottom__copy { font-size: var(--text-xs); color: rgba(255,255,255,0.35); line-height: var(--leading-relaxed); }
.footer-bottom__links { display: flex; gap: 1.25rem; flex-shrink: 0; }
.footer-bottom__links a { font-size: var(--text-xs); color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--t-fast); }
.footer-bottom__links a:hover { color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════════════════════════════
   25. PAGE / POST CONTENT
══════════════════════════════════════════════════════════ */
.entry-content {
    max-width: 720px;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--color-text-mid);
}
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--color-navy); margin-top: 2rem; margin-bottom: 0.75rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.4rem; }
.entry-content a { color: var(--color-accent); text-decoration: underline; }
.entry-content a:hover { color: var(--color-navy); }
.entry-content blockquote {
    border-left: 3px solid var(--color-gold);
    padding: 1rem 1.5rem;
    background: var(--color-gold-pale);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    margin-block: 1.5rem;
    font-style: italic;
    color: var(--color-text-mid);
}

/* ══════════════════════════════════════════════════════════
   26. BLOG GRID / ARCHIVE
══════════════════════════════════════════════════════════ */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.post-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--color-bg-soft); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.post-card__cat { font-size: var(--text-xs); font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-gold); }
.post-card__title { font-size: var(--text-lg); font-weight: var(--fw-semibold); color: var(--color-text); line-height: var(--leading-snug); }
.post-card__excerpt { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-relaxed); }
.post-card__meta { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: auto; }

/* ══════════════════════════════════════════════════════════
   27. 404 PAGE
══════════════════════════════════════════════════════════ */
.error-404 {
    text-align: center;
    padding: 6rem 0;
}
.error-404__code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 18vw, 12rem);
    font-weight: var(--fw-black);
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 1rem;
}
.error-404__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--color-navy);
    margin-bottom: 1rem;
}
.error-404__body { font-size: var(--text-lg); color: var(--color-text-muted); margin-bottom: 2rem; }
.error-404__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ══════════════════════════════════════════════════════════
   28. PAGINATION
══════════════════════════════════════════════════════════ */
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 3rem;
}
.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding-inline: 0.75rem;
    border-radius: var(--r-lg);
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    text-decoration: none;
    transition: background var(--t-fast), color var(--t-fast);
    border: 1.5px solid var(--color-border);
    color: var(--color-text-mid);
}
.pagination a:hover { background: var(--color-bg-soft); border-color: var(--color-navy); color: var(--color-navy); }
.pagination .current { background: var(--color-navy); color: #fff; border-color: var(--color-navy); }

/* ══════════════════════════════════════════════════════════
   29. STATS / COUNTER ROW
══════════════════════════════════════════════════════════ */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
}
.stat-item {
    text-align: center;
}
.stat-item__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: var(--fw-bold);
    color: var(--color-gold);
    line-height: 1;
}
.section--dark .stat-item__value { color: var(--color-gold-light); }
.stat-item__label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: 0.375rem;
}
.section--dark .stat-item__label { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════════════════
   30. PHONE LINK
══════════════════════════════════════════════════════════ */
.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: var(--fw-semibold);
    color: var(--color-navy);
    text-decoration: none;
    transition: color var(--t-fast);
}
.phone-link:hover { color: var(--color-gold); }
.phone-link svg { color: var(--color-gold); }

/* ══════════════════════════════════════════════════════════
   31. FINANCE BADGE (inline)
══════════════════════════════════════════════════════════ */
.finance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(27,107,58,0.1);
    color: var(--color-green);
    border: 1px solid rgba(27,107,58,0.25);
    padding: 0.35rem 0.75rem;
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
}

/* ══════════════════════════════════════════════════════════
   32. UTILITY / HELPERS
══════════════════════════════════════════════════════════ */
.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ══════════════════════════════════════════════════════════
   33. PRINT STYLES
══════════════════════════════════════════════════════════ */
@media print {
    .site-header, .site-footer, .sticky-bar, .announcement-bar { display: none !important; }
    body { font-size: 12pt; color: #000; }
    a { color: #000; text-decoration: underline; }
}

/* ══════════════════════════════════════════════════════════
   34. HOMEPAGE — SPLIT HERO
══════════════════════════════════════════════════════════ */
.hero--split {
    min-height: 640px;
    align-items: stretch;
}
.hero--split .hero__content { max-width: none; padding-block: 0; }

/* Decorative floating orbs (pure CSS, no extra DOM) */
.hero--split::after {
    content: '';
    position: absolute;
    width: 520px; height: 520px;
    right: -80px; top: -120px;
    background: radial-gradient(circle, rgba(201,150,42,.15) 0%, transparent 65%);
    border-radius: var(--r-full);
    pointer-events: none;
    z-index: 1;
    animation: hero-orb-drift 12s ease-in-out infinite alternate;
}

@keyframes hero-orb-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, 40px) scale(1.08); }
}

/* Animated gold shimmer line across the bottom edge */
.hero--split .hero__split-inner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201,150,42,.6) 30%,
        rgba(240,192,96,.9) 50%,
        rgba(201,150,42,.6) 70%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer-line 4s linear infinite;
}

@keyframes shimmer-line {
    from { background-position: -100% 0; }
    to   { background-position: 200% 0; }
}

.hero__split-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-block: 5rem;
    position: relative;
    z-index: 2;
}

.hero__main {
    flex: 1;
    min-width: 0;
}

.hero__reassurance {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.65);
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.hero__reassurance svg { color: var(--color-gold-light); flex-shrink: 0; }

/* Proof panel (right column) */
.hero__proof-panel {
    flex-shrink: 0;
    width: 320px;
    display: none;
}
@media (min-width: 900px) { .hero__proof-panel { display: block; } }

.proof-card {
    background: rgba(255,255,255,0.97);
    border-radius: var(--r-2xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.proof-card__rating {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.proof-card__score {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    line-height: 1;
}
.proof-card__stars { color: var(--color-gold); font-size: 1rem; letter-spacing: 0.05em; }
.proof-card__count { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 0.2rem; }

.proof-card__divider {
    border: none;
    height: 1px;
    background: var(--color-border-lt);
    margin: 0;
}

.proof-card__quote {
    font-size: var(--text-sm);
    color: var(--color-text-mid);
    line-height: var(--leading-relaxed);
    font-style: italic;
}
.proof-card__quote p { margin-bottom: 0.625rem; }
.proof-card__quote footer {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-style: normal;
}
.proof-card__quote footer strong { font-size: var(--text-sm); color: var(--color-text); }
.proof-card__quote footer span { font-size: var(--text-xs); color: var(--color-text-muted); }

.proof-card__trust {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.proof-card__trust li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-mid);
}
.proof-card__trust li svg { color: var(--color-green); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   35. HOMEPAGE — PROOF BAR
══════════════════════════════════════════════════════════ */
.proof-bar {
    background: var(--color-navy);
    padding: 1.125rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.proof-bar::-webkit-scrollbar { display: none; }

.proof-bar__inner {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: max-content;
}

.proof-bar__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-inline: 1.5rem;
    white-space: nowrap;
}
.proof-bar__item svg { color: var(--color-gold); flex-shrink: 0; }
.proof-bar__item strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    color: #fff;
    line-height: 1.2;
}
.proof-bar__item span {
    display: block;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.55);
}

.proof-bar__sep {
    width: 1px;
    height: 2rem;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   36. HOMEPAGE — STATS STRIP
══════════════════════════════════════════════════════════ */
.stats-strip {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
    padding: 3.5rem 0;
}

.stats-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-block {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 1.25rem 1.5rem;
    position: relative;
}
/* Vertical dividers between blocks */
.stat-block + .stats-strip__sep {
    width: 1px;
    height: 3rem;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
.stats-strip__sep {
    width: 1px;
    height: 3rem;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
    display: none;
}
@media (min-width: 640px) { .stats-strip__sep { display: block; } }

.stat-block__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: var(--fw-bold);
    color: var(--color-gold-light);
    line-height: 1;
    margin-bottom: 0.375rem;
}
.stat-block__value sup {
    font-size: 0.55em;
    vertical-align: super;
    color: var(--color-gold);
}
.stat-block__label {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════════
   37. HOMEPAGE — WHY CHOOSE US SPLIT
══════════════════════════════════════════════════════════ */
.why-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 900px) {
    .why-split { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* Image column */
.why-split__image {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
    background: var(--color-bg-soft);
    min-height: 420px;
}
.why-split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 420px;
}
.why-split__img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    min-height: 420px;
    text-align: center;
    color: var(--color-text-muted);
    background: var(--color-bg-soft);
}
.why-split__img-placeholder p { font-size: var(--text-sm); }

/* "Free Consultation" badge overlaid on image */
.why-split__badge {
    position: absolute;
    bottom: 1.5rem;
    right: -0.75rem;
    background: var(--color-gold);
    color: var(--color-navy);
    padding: 0.75rem 1.25rem;
    border-radius: var(--r-xl) 0 0 var(--r-xl);
    font-size: var(--text-sm);
    line-height: 1.3;
    box-shadow: var(--shadow-lg);
}
.why-split__badge strong { display: block; font-size: var(--text-lg); font-weight: var(--fw-black); }

/* Content column */
.why-split__content {}

/* Checklist */
.why-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.why-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.why-checklist__icon {
    flex-shrink: 0;
    width: 1.625rem;
    height: 1.625rem;
    background: var(--color-green);
    color: #fff;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}
.why-checklist__item > div {}
.why-checklist__item strong {
    display: block;
    font-size: var(--text-base);
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    margin-bottom: 0.25rem;
}
.why-checklist__item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    margin: 0;
}

.why-split__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    align-items: center;
}

/* ══════════════════════════════════════════════════════════
   38. HOMEPAGE — FEATURED TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-featured {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Large featured testimonial */
.testimonial-featured {
    background: var(--color-navy);
    color: #fff;
    border-radius: var(--r-2xl);
    padding: 2.5rem 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}
.testimonial-featured::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(201,150,42,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-featured__quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.4;
    margin-bottom: -1rem;
    display: block;
}

.testimonial-featured__text {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: rgba(255,255,255,0.92);
    line-height: var(--leading-snug);
    margin-bottom: 1.75rem;
}

.testimonial-featured__footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.testimonial-featured__author {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.testimonial-featured__author strong { font-size: var(--text-base); color: #fff; }
.testimonial-featured__author span { font-size: var(--text-sm); color: rgba(255,255,255,0.55); }
.testimonial-featured__stars { color: var(--color-gold); font-size: 1rem; letter-spacing: 0.08em; margin-left: auto; }

/* 2-column supporting testimonials */
.testimonials-grid--pair {
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .testimonials-grid--pair { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   39. HOMEPAGE — CTA BAND EXTRAS
══════════════════════════════════════════════════════════ */
.cta-band__small {
    margin-top: 1.25rem;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.01em;
}

/* Finance badge is now .tc-card__fin-badge — defined in section 10 above */

/* ══════════════════════════════════════════════════════════
   41. TREATMENT PAGE TEMPLATE (tp-*)
   Styles for template-treatment.php. Uses the existing
   .treatment-layout, .sidebar-card, .benefits-list,
   .steps-item, .faq-item, .cta-band from earlier sections.
══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.tp-hero {
    position: relative;
    background:
        radial-gradient(ellipse 80% 100% at 0% 0%,   rgba(7,22,38,.97)   0%, transparent 60%),
        radial-gradient(ellipse 55% 65% at 100% 100%, rgba(31,68,112,.5)  0%, transparent 55%),
        radial-gradient(ellipse 40% 45% at 90% 5%,   rgba(201,150,42,.18) 0%, transparent 50%),
        linear-gradient(145deg, #071626 0%, #0C2340 45%, #163352 100%);
    color: #fff;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-block: 5rem 4rem;
}
.tp-hero__bg {
    position: absolute; inset: 0;
    z-index: 0;
    overflow: hidden;
}
.tp-hero__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.22;
}
/* Dark overlay when photo is present */
.tp-hero:has(.tp-hero__bg)::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        115deg,
        rgba(7,22,38,.92)  0%,
        rgba(12,35,64,.75) 50%,
        rgba(12,35,64,.35) 100%
    );
    z-index: 1;
}
.tp-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}
.tp-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1rem;
}
.tp-hero__icon {
    font-size: 1.1rem;
    line-height: 1;
}
.tp-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0.875rem;
}
.tp-hero__tagline {
    font-size: var(--text-lg);
    color: rgba(255,255,255,.72);
    line-height: var(--leading-relaxed);
    margin-bottom: 1.5rem;
    max-width: 540px;
}
.tp-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.tp-hero__price {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--r-full);
    padding: 0.4rem 1rem;
    font-size: var(--text-sm);
    color: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
}
.tp-hero__price strong { color: #fff; }
.tp-hero__fin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(27,107,58,.75);
    border: 1px solid rgba(80,200,120,.25);
    border-radius: var(--r-full);
    padding: 0.4rem 1rem;
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #7dffaa;
}
.tp-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 2rem;
}
.tp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.tp-hero__trust li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-xs);
    color: rgba(255,255,255,.6);
    font-weight: var(--fw-medium);
}
.tp-hero__trust svg { color: var(--color-gold); flex-shrink: 0; }

/* ── Info bar ─────────────────────────────────────────── */
.tp-infobar {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 0.875rem 0;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 12px rgba(12,35,64,.06);
}
.tp-infobar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem 0;
}
.tp-infobar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--color-text-mid);
    padding: 0 1.25rem;
}
.tp-infobar__item svg { color: var(--color-gold); flex-shrink: 0; }
.tp-infobar__item--green svg { color: var(--color-green); }
.tp-infobar__item strong { color: var(--color-navy); }
.tp-infobar__sep {
    width: 1px;
    height: 1.25rem;
    background: var(--color-border);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .tp-infobar__sep { display: none; }
    .tp-infobar__item { padding: 0.25rem 0; width: 50%; }
}

/* ── Content layout ──────────────────────────────────── */
.tp-main { padding-block: 4rem 5rem; }
.tp-content { min-width: 0; }

.tp-section {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--color-border-lt);
}
.tp-section:last-child { border-bottom: none; margin-bottom: 0; }
.tp-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.875rem);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
}

/* ── Finance inline banner ───────────────────────────── */
.tp-finance-banner {
    background: linear-gradient(135deg, #1B6B3A 0%, #227a44 100%);
    color: #fff;
    border-radius: var(--r-xl);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.tp-finance-banner__icon {
    width: 3rem; height: 3rem;
    background: rgba(255,255,255,.15);
    border-radius: var(--r-lg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tp-finance-banner__copy {
    flex: 1;
    min-width: 200px;
}
.tp-finance-banner__copy strong {
    display: block;
    font-size: var(--text-base);
    font-weight: var(--fw-bold);
    margin-bottom: 0.3rem;
}
.tp-finance-banner__copy p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.78);
    margin: 0;
    line-height: var(--leading-relaxed);
}
.tp-finance-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* ── Sidebar extras ──────────────────────────────────── */
.tp-booking-card { position: sticky; top: 4.5rem; }
.tp-booking-card__note {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-xs);
    color: rgba(255,255,255,.5);
    margin-top: 0.25rem;
}
.tp-booking-card__note svg { color: rgba(255,255,255,.4); }

.tp-sidebar-card__label {
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.tp-sidebar-card__label--dark {
    color: var(--color-navy);
}
.tp-sidebar-card__body {
    font-size: var(--text-sm);
    color: var(--color-text-mid);
    line-height: var(--leading-relaxed);
}

/* Other treatments list */
.tp-other-treatments__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.tp-other-treatments__list li a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--color-border-lt);
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-navy);
    text-decoration: none;
    transition: color var(--t-fast);
}
.tp-other-treatments__list li:last-child a { border-bottom: none; }
.tp-other-treatments__list li a:hover { color: var(--color-gold); }
.tp-other-treatments__list li a svg {
    margin-left: auto;
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition: transform var(--t-fast);
}
.tp-other-treatments__list li a:hover svg { transform: translateX(2px); color: var(--color-gold); }

/* ── Hero split layout ───────────────────────────────── */
.tp-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding-block: 5rem 4rem;
}
@media (min-width: 900px) {
    .tp-hero--split .tp-hero__grid {
        grid-template-columns: 55% 1fr;
        gap: 4rem;
    }
}
/* tp-hero__inner no longer sets its own z-index/padding (handled by grid) */
.tp-hero--split .tp-hero__inner {
    max-width: none;
    padding-block: 0;
}

/* Hero visual panel */
.tp-hero__visual {
    display: none;
}
@media (min-width: 900px) {
    .tp-hero__visual {
        display: block;
        position: relative;
    }
}
.tp-hero__visual-frame {
    position: relative;
    border-radius: var(--r-2xl, 1.5rem);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 2px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
}
.tp-hero__visual-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.tp-hero__visual-frame::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(12,35,64,.55) 100%);
    pointer-events: none;
}
.tp-hero__visual-badge {
    position: absolute;
    z-index: 2;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--r-xl);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.18);
    animation: tp-badge-float 4s ease-in-out infinite;
}
.tp-hero__visual-badge--tl { top: 1.25rem; left: 1rem; }
.tp-hero__visual-badge--br { bottom: 1.25rem; right: 1rem; animation-delay: 2s; }
.tp-hero__visual-badge div { display: flex; flex-direction: column; }
.tp-hero__visual-badge strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    line-height: 1.1;
}
.tp-hero__visual-badge span {
    font-size: var(--text-xs);
    color: var(--color-text-mid);
    line-height: 1.2;
}
@keyframes tp-badge-float {
    0%, 100% { transform: translateY(0);   }
    50%       { transform: translateY(-5px); }
}

/* ── Full-width section shared headers ───────────────── */
.tp-full-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}
.tp-full-section-eyebrow {
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}
.tp-full-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    line-height: 1.15;
}
.tp-full-section-sub {
    font-size: var(--text-base);
    color: var(--color-text-mid);
    line-height: var(--leading-relaxed);
}

/* ══════════════════════════════════════════════════════════
   42. BEFORE & AFTER COMPARISON SLIDER
══════════════════════════════════════════════════════════ */
.tp-before-after {
    padding-block: 5rem;
    background: var(--color-bg-subtle, #f7f8fa);
    border-top: 1px solid var(--color-border-lt);
    border-bottom: 1px solid var(--color-border-lt);
}
.tp-ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.tp-ba-item { display: flex; flex-direction: column; gap: 0.875rem; }

/* The comparison wrap */
.tp-ba-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 8px 32px rgba(12,35,64,.12);
}
.tp-ba-before,
.tp-ba-after {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}
.tp-ba-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
    pointer-events: none;
}

/* Drag handle */
.tp-ba-handle {
    position: absolute;
    inset-block: 0;
    left: var(--ba-pos, 50%);
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tp-ba-handle__line {
    position: absolute;
    inset-block: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,.4);
}
.tp-ba-handle__grip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.35);
    color: var(--color-navy);
}

/* Transparent range input as interaction layer */
.tp-ba-range {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 3;
    margin: 0; padding: 0;
    -webkit-appearance: none;
    appearance: none;
}
.tp-ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 42px; height: 100%; }
.tp-ba-range::-moz-range-thumb     { width: 42px; height: 100%; opacity: 0; border: none; }

/* Before / After labels */
.tp-ba-label {
    position: absolute;
    top: 0.875rem;
    z-index: 2;
    font-size: 0.65rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: var(--r-full);
    color: #fff;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    pointer-events: none;
    line-height: 1.4;
}
.tp-ba-label--before { left:  0.875rem; }
.tp-ba-label--after  { right: 0.875rem; }

.tp-ba-caption {
    font-size: var(--text-sm);
    color: var(--color-text-mid);
    text-align: center;
    font-style: italic;
    line-height: var(--leading-relaxed);
}
.tp-ba-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* ══════════════════════════════════════════════════════════
   43. PRICING SECTION
══════════════════════════════════════════════════════════ */
.tp-pricing-section {
    padding-block: 5rem;
    background: #fff;
}
.tp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: start;
}
.tp-pricing__grid--centered {
    justify-content: center;
    grid-template-columns: min(100%, 520px);
}
.tp-pricing__card {
    position: relative;
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: var(--r-2xl, 1.5rem);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.tp-pricing__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(12,35,64,.1);
}
.tp-pricing__card--highlight {
    border-color: var(--color-gold);
    background: linear-gradient(160deg, #fffdf5 0%, #fff 60%);
    box-shadow: 0 8px 40px rgba(201,150,42,.18);
}
.tp-pricing__card--lg {
    padding: 2.5rem;
}
.tp-pricing__badge {
    display: inline-flex;
    align-items: center;
    background: var(--color-gold);
    color: var(--color-navy);
    font-size: 0.65rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.875rem;
    border-radius: var(--r-full);
    width: fit-content;
    margin-bottom: 0.25rem;
}
.tp-pricing__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    line-height: 1.2;
}
.tp-pricing__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--color-navy);
    line-height: 1;
}
.tp-pricing__unit {
    font-size: var(--text-sm);
    font-weight: var(--fw-normal);
    font-family: var(--font-body);
    color: var(--color-text-mid);
    line-height: 1.4;
}
.tp-pricing__desc {
    font-size: var(--text-sm);
    color: var(--color-text-mid);
    line-height: var(--leading-relaxed);
}
.tp-pricing__finance-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(27,107,58,.07);
    border: 1px solid rgba(27,107,58,.2);
    border-radius: var(--r-lg);
    padding: 0.625rem 0.875rem;
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-green);
}
.tp-pricing__finance-row svg { flex-shrink: 0; color: var(--color-green); }
.tp-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid var(--color-border-lt);
    padding-top: 1rem;
}
.tp-pricing__features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: var(--text-sm);
    color: var(--color-green);
    font-weight: var(--fw-medium);
}
.tp-pricing__features li svg {
    flex-shrink: 0;
    color: var(--color-green);
    stroke: var(--color-green);
}
.tp-pricing__ctas {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 0.25rem;
}
.tp-pricing__disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
    margin-top: 2rem;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    max-width: 600px;
    margin-inline: auto;
}
.tp-pricing__disclaimer svg { flex-shrink: 0; margin-top: 1px; }
@media (max-width: 640px) {
    .tp-pricing__grid { grid-template-columns: 1fr; }
    .tp-pricing__grid--centered { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   40. SHORTCODE / INNER-PAGE CARDS
   These classes are output by [acer_treatment_cards] and
   [acer_location_cards] shortcodes — keep in sync with
   inc/shortcodes.php.
══════════════════════════════════════════════════════════ */

/* ── Treatment grid (shortcode) ──────────────────────── */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.treatment-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-xl);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.treatment-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}
.treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,150,42,.3);
}
.treatment-card:hover::after { transform: scaleX(1); }

.treatment-card__icon {
    font-size: 2rem;
    width: 3rem; height: 3rem;
    background: var(--color-gold-pale);
    border-radius: var(--r-lg);
    display: flex; align-items: center; justify-content: center;
}
.treatment-card__name {
    font-size: var(--text-lg);
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    margin: 0;
}
.treatment-card__tagline {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-normal);
    margin: 0;
}
.treatment-card__price {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-navy);
    margin: 0;
}
.treatment-card__finance-badge,
.treatment-card__fin-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(27,107,58,.12);
    color: var(--color-green);
    border: 1px solid rgba(27,107,58,.25);
    padding: 0.1rem 0.45rem;
    border-radius: var(--r-full);
}
.treatment-card__popular-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--color-gold);
    color: var(--color-navy);
    padding: 0.15rem 0.55rem;
    border-radius: var(--r-full);
    align-self: flex-start;
}
.treatment-card__link {
    margin-top: auto;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-gold);
    text-decoration: none;
}
.treatment-card__link:hover { text-decoration: underline; }

/* ── Location cards (shortcode) ──────────────────────── */
.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.location-cards .location-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.location-cards .location-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.location-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    margin: 0;
}
.location-card__address {
    font-size: var(--text-sm);
    color: var(--color-text-mid);
    font-style: normal;
    line-height: var(--leading-relaxed);
}
.location-card__phone {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-navy);
    text-decoration: none;
    transition: color var(--t-fast);
}
.location-card__phone:hover { color: var(--color-gold); }
.location-card__actions {
    display: flex;
    gap: 0.625rem;
    margin-top: auto;
    flex-wrap: wrap;
}
