/**
 * Figure First - Core Layout, Typography & UI System (High-End Luxury Clinic)
 */

/* 1. Reset & Global Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background-color: var(--shade);
    color: var(--fg);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    background-color: var(--shade);
    color: var(--fg);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle editorial SVG turbulence grain noise preventing banding */
body::before {
    content: '';
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.12;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 998;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='.5'/></svg>");
}

/* Scroll progress hairline meter */
.meter {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: 0 50%;
    background: var(--fg);
    opacity: 0.55;
    pointer-events: none;
}

/* Minimal Editorial Boot Preloader */
.boot {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--shade);
    transition: opacity .35s var(--ease), visibility .35s;
}

.boot.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.boot p {
    font-size: 12.5px;
    letter-spacing: .05em;
    color: var(--fg-faint);
    font-family: var(--font-body);
}

.bar {
    width: 150px;
    height: 1px;
    background: var(--rule);
    overflow: hidden;
}

.bar i {
    display: block;
    height: 100%;
    width: 100%;
    background: var(--fg);
    transform: scaleX(0);
    transform-origin: 0 50%;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

/* 2. Container & Layout Foundations */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section-spacing {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}

.section-spacing-sm {
    padding-top: clamp(2.5rem, 4vw, 4rem);
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section-header {
    margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.text-center {
    text-align: center;
}

.text-center .section-header {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* 3. Editorial Typography — Inter Tight, base weight 400, tight letter-spacing */
h1, h2, h3, h4, h5, h6,
.editorial-heading {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.036em;
    color: var(--fg);
    text-wrap: balance;
}

h1, h1.editorial-heading { font-size: var(--text-h1); }
h2, h2.editorial-heading { font-size: var(--text-h2); }
h3, h3.editorial-heading { font-size: var(--text-h3); }
h4, h4.editorial-heading { font-size: var(--text-h4); }
h5 { font-size: 1.15rem; font-weight: 500; letter-spacing: -0.02em; }
h6 { font-size: 1rem; font-weight: 500; letter-spacing: -0.015em; }

.editorial-heading em,
.editorial-heading i,
.gold-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px 12px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    color: var(--fg-soft);
    background: rgba(13, 59, 46, 0.05);
    padding: 0.4rem 0.95rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--rule);
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: clamp(15px, 1.28vw, 19px);
    color: var(--fg-soft);
    line-height: 1.5;
    letter-spacing: -0.008em;
    margin-top: 1rem;
    max-width: 720px;
    text-wrap: pretty;
}

.lead-text {
    font-size: clamp(15px, 1.28vw, 19px);
    line-height: 1.6;
    letter-spacing: -0.008em;
    color: var(--fg-soft);
}

/* 4. Luxury Capsule Pill Buttons */
.pill,
.btn-primary,
.btn-emerald,
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 21px;
    border-radius: 999px;
    background: var(--pill-bg);
    color: var(--pill-fg);
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: -0.008em;
    text-decoration: none;
    white-space: nowrap;
    opacity: 1;
    border: 1px solid rgba(10, 9, 8, 0.12);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.10) inset;
    -webkit-text-fill-color: var(--pill-fg);
    cursor: pointer;
    transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.pill:hover,
.btn-primary:hover,
.btn-emerald:hover,
.nav-cta-btn:hover {
    transform: translateY(-2px);
    background: #061a14;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.pill:focus-visible,
.btn-primary:focus-visible,
.btn-emerald:focus-visible,
.nav-cta-btn:focus-visible {
    outline: 2px solid var(--fg);
    outline-offset: 2px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid var(--rule);
    color: var(--fg);
    background: #FFFFFF;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.008em;
    transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.btn-outline:hover {
    background: var(--fg);
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   5. Chrome (Fixed Header) & Navigation — Matching Home Page Standard
   ========================================================================== */
.chrome {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: max(14px, calc(env(safe-area-inset-top, 0px) + 12px)) clamp(16px, 3.4vw, 44px) 14px;
    background: linear-gradient(to bottom, rgba(251,251,251,.96) 0%, rgba(251,251,251,.80) 72%, rgba(251,251,251,0) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mark {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    letter-spacing: -.012em;
    color: var(--fg);
    min-width: 0;
    flex-shrink: 1;
    font-weight: 500;
    text-decoration: none;
}

.site-header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease, filter 0.25s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

.site-header-logo:hover {
    transform: scale(1.03);
}

.site-header-logo-mobile {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.mark-star {
    opacity: .85;
    color: var(--gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 22px);
    flex-shrink: 0;
}

.nav a:not(.pill) {
    color: var(--fg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -.008em;
    opacity: .88;
    white-space: nowrap;
    transition: opacity .3s var(--ease), color .3s var(--ease);
}

.nav a:not(.pill):hover,
.nav a:not(.pill).active {
    opacity: 1;
    color: var(--gold);
}

.nav .pill {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

/* ==========================================================================
   Editorial Luxury Footer (Redesigned with Figure First Identity)
   ========================================================================== */
.editorial-footer {
    background: linear-gradient(to top, #f6f8f6 0%, #fcfdfc 80%, #ffffff 100%);
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: clamp(3.5rem, 6vw, 5.5rem) 0 2rem;
    position: relative;
    z-index: 10;
    color: var(--fg);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
}

/* Brand Hero Row */
.footer-brand-hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

@media (max-width: 900px) {
    .footer-brand-hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-logo-box {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    object-position: left center;
}

.footer-brand-tagline {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--gold, #996e36);
    text-transform: uppercase;
}

.footer-brand-intro {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--fg-soft, #555);
    line-height: 1.65;
    max-width: 68ch;
}

.footer-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-action-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--fg);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.footer-action-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.footer-action-pill.whatsapp-pill {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
}

.footer-action-pill.whatsapp-pill:hover {
    background: #1eb956;
    color: #ffffff;
}

/* Branch Cards Grid */
.footer-branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.footer-branch-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.footer-branch-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.07);
    border-color: rgba(184, 117, 86, 0.3);
}

.branch-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.branch-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--fg);
    margin: 0;
}

.branch-pill {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold, #996e36);
}

.branch-text {
    font-size: 13.5px;
    color: var(--fg-soft, #555);
    line-height: 1.55;
    margin: 0;
}

.branch-meta {
    font-size: 12px;
    color: var(--fg-faint, #777);
}

.branch-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.branch-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    background: var(--fg, #111);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.branch-link-btn:hover {
    background: var(--gold, #996e36);
    color: #ffffff;
}

.branch-link-btn.outline {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    color: var(--fg);
}

.branch-link-btn.outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255,255,255,0.8);
}

/* Categorized Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.07);
}

.footer-col-title {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg);
    margin-bottom: 1rem;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-link-list li a {
    font-size: 13.5px;
    color: var(--fg-soft, #555);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-link-list li a:hover {
    color: var(--gold, #996e36);
    padding-left: 4px;
}

/* Clinical Trust Strip */
.footer-trust-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--fg-soft);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-icon {
    color: #2e7d32;
    font-weight: bold;
}

/* Bottom Strip */
.footer-bottom-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.07);
    font-size: 12.5px;
    color: var(--fg-faint, #777);
}

.footer-bottom-strip .phone-link {
    color: var(--fg);
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom-strip .phone-link:hover {
    color: var(--gold);
}

/* Desktop Dropdown Menus */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 320px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-smooth);
    z-index: 10;
    padding: 0.75rem 0;
}

.nav-dropdown-menu.small-dropdown {
    width: 260px;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.nav-item:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    transition: background-color var(--transition-fast);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--color-bg-porcelain);
}

.dropdown-item .item-title {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-primary);
}

.dropdown-item:hover .item-title {
    color: var(--color-brand-emerald);
}

.dropdown-item .item-desc {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    line-height: 1.4;
    margin-top: 0.15rem;
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.75rem;
}

/* Hamburger Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 101;
}

.burger-bar {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-text-primary);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    visibility: hidden;
    pointer-events: none;
    transition: visibility var(--transition-smooth);
}

.mobile-nav-drawer.open {
    visibility: visible;
    pointer-events: auto;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 59, 46, 0.6);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.mobile-nav-drawer.open .drawer-overlay {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(85vw, 420px);
    height: 100%;
    background: #FFFFFF;
    box-shadow: var(--shadow-floating);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    padding: 1.75rem;
    overflow-y: auto;
}

.mobile-nav-drawer.open .drawer-panel {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}

.drawer-close-btn {
    cursor: pointer;
    color: var(--color-text-secondary);
    padding: 0.5rem;
}

.drawer-close-btn:hover {
    color: var(--color-brand-emerald);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-text-primary);
    display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-brand-emerald);
}

.mobile-collapse-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    text-align: left;
}

.mobile-sub-list {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.75rem 0 0.5rem 1rem;
    border-left: 2px solid var(--color-accent-gold);
    margin: 0.5rem 0;
}

.mobile-nav-collapsible.active .mobile-sub-list {
    display: flex;
}

.mobile-nav-collapsible.active .chevron-icon {
    transform: rotate(180deg);
}

.mobile-sub-list a {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.drawer-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.drawer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--color-brand-emerald);
    font-size: var(--text-sm);
}

.drawer-loc {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

/* 6. Page Hero Styling (High-Key Editorial Luxury) */
.page-hero {
    position: relative;
    padding-top: clamp(8rem, 11vw, 10.5rem);
    padding-bottom: clamp(3.5rem, 5vw, 5.5rem);
    background: linear-gradient(to bottom, rgba(251, 251, 251, 0.96) 0%, rgba(251, 251, 251, 0.82) 72%, rgba(251, 251, 251, 0) 100%);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 12.5px;
    letter-spacing: .045em;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: clamp(14px, 2vw, 20px);
    text-align: center;
}

.eyebrow span {
    opacity: 0.7;
}

.sub {
    margin-top: clamp(16px, 2vw, 24px);
    font-size: clamp(15px, 1.28vw, 19px);
    line-height: 1.5;
    letter-spacing: -.008em;
    color: var(--fg-soft);
    text-wrap: pretty;
}

.breadcrumb-trail {
    margin-bottom: 1.25rem;
}

.breadcrumb-trail ol {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg-soft);
}

.breadcrumb-trail a:hover {
    color: var(--fg);
}

.breadcrumb-trail .separator {
    color: var(--rule);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px 12px;
    padding: 0.4rem 1rem;
    background-color: rgba(13, 59, 46, 0.05);
    color: var(--fg-soft);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5.8vw, 76px);
    line-height: .98;
    letter-spacing: -.036em;
    font-weight: 400;
    color: var(--fg);
    max-width: 18ch;
    margin: 0 auto 1.25rem;
    text-wrap: balance;
}

.page-hero-subtitle {
    font-size: clamp(15px, 1.28vw, 19px);
    color: var(--fg-soft);
    line-height: 1.5;
    letter-spacing: -.008em;
    max-width: min(54ch, 100%);
    margin: 0 auto;
    text-wrap: pretty;
}

/* 7. Consultation Call-to-Action Banner */
.consultation-banner {
    position: relative;
}

.cta-card {
    position: relative;
    background: #0d3b2e;
    border-radius: var(--radius-xl);
    padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem);
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 59, 46, 0.22);
    border: 1px solid rgba(197, 160, 89, 0.35);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 450px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-gold-light);
    margin-bottom: 1.2rem;
}

.cta-title {
    color: #FFFFFF;
    font-size: var(--text-h2);
    margin-bottom: 1.25rem;
}

.cta-desc {
    font-size: var(--text-body-lg);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.cta-phone-link {
    display: block;
    width: 100%;
    margin-top: 1rem;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.75);
}

.cta-phone-link strong {
    color: #FFFFFF;
    font-weight: 700;
}

/* 8. Global Editorial Footer (Deep Emerald Silk) */
.site-footer {
    background-color: #061510;
    color: #E2E8F0;
    position: relative;
    padding-top: clamp(4rem, 7vw, 6.5rem);
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
}

.footer-top-ornament {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent-gold) 50%, transparent 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1.2fr;
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.brand-text {
    font-size: var(--text-sm);
    color: #94A3B8;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.brand-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.8rem;
    background: rgba(197, 160, 89, 0.15);
    color: var(--color-accent-gold-light);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: var(--radius-pill);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: var(--color-accent-gold);
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    font-size: var(--text-sm);
    color: #CBD5E1;
    transition: all var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-accent-gold-light);
    padding-left: 5px;
}

.clinic-branch {
    margin-bottom: 1.4rem;
}

.branch-name {
    font-size: var(--text-sm);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.branch-address {
    font-size: var(--text-xs);
    color: #94A3B8;
    line-height: 1.6;
}

.footer-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-phone-link,
.footer-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--text-xs);
    color: var(--color-accent-gold-light);
}

.footer-phone-link:hover,
.footer-email-link:hover {
    color: #FFFFFF;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--text-xs);
    color: #64748B;
}

.footer-legal-links {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal-links a:hover {
    color: #FFFFFF;
}

.footer-legal-links .dot {
    color: rgba(255, 255, 255, 0.2);
}

/* 9. Consultation Modal */
.consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    visibility: hidden;
    opacity: 0;
    transition: all var(--transition-smooth);
}

.consultation-modal.open {
    visibility: visible;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 27, 20, 0.85);
    backdrop-filter: blur(8px);
}

.modal-dialog {
    position: relative;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-floating);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid var(--color-border);
    transform: scale(0.95) translateY(10px);
    transition: transform var(--transition-smooth);
    z-index: 2;
}

.consultation-modal.open .modal-dialog {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 0.5rem;
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--color-brand-emerald);
    background-color: var(--color-bg-porcelain);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-badge {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--color-brand-emerald);
    display: block;
    margin-bottom: 0.5rem;
}

.modal-heading {
    font-size: var(--text-h3);
    margin-bottom: 0.5rem;
}

.modal-sub {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-text-primary);
    margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background-color: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-size: var(--text-sm);
    color: var(--color-text-primary);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.20);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-submit-consultation {
    width: 100%;
    padding: 1.15rem;
}

.form-disclaimer {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: 1rem;
    line-height: 1.5;
}

.form-success-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: rgba(21, 128, 61, 0.12);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-green);
}

/* 10. Floating Actions (WhatsApp & Call) */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: var(--z-floating);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #FFFFFF;
    color: var(--color-text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
}

.btn-phone {
    background-color: var(--color-brand-emerald);
    color: #FFFFFF;
    border-color: var(--color-brand-emerald);
}

.floating-label {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.04em;
    display: none;
}

.floating-btn:hover .floating-label {
    display: inline-block;
}

.floating-consult-pill {
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%);
    color: #FFFFFF;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-floating);
    cursor: pointer;
}

/* ==========================================================================
   Responsive Breakpoints for Chrome Header & Editorial Layout
   ========================================================================== */
@media (max-width: 1180px) {
    .nav {
        gap: clamp(6px, 1vw, 14px);
    }
    .nav a:not(.pill) {
        font-size: 13.5px;
    }
}

@media (max-width: 1040px) {
    .nav a:not(.pill) { display: none; }
    .mobile-menu-toggle { display: flex; }
    .mark { font-size: 14px; }
    .nav .pill { height: 38px; padding: 0 16px; font-size: 13.5px; }
    h1, .page-hero-title { max-width: 12ch; font-size: clamp(30px, 9.8vw, 52px); }
    .sub, .page-hero-subtitle { font-size: 15px; max-width: 34ch; }
}

@media (max-width: 420px) {
    .mark-star { display: none; }
    .nav .pill { height: 36px; padding: 0 14px; font-size: 13px; }
    h1, .page-hero-title { max-width: 11ch; font-size: clamp(28px, 10.5vw, 40px); }
    .eyebrow { font-size: 11px; letter-spacing: .04em; max-width: 28ch; }
    .cta .pill { width: 100%; max-width: 280px; height: 44px; padding: 0 20px; font-size: 14px; }
}

