/*
 * Dentalora – Main stylesheet (ThemeForest-ready)
 * Keep theme-specific styles here (style.css remains for WordPress metadata + base).
 */

:root {
    --dentalora-paper: #f7f3ee;
    --dentalora-ink: #1d1d1b;
    --dentalora-border: rgba(29, 29, 27, 0.14);
    --dentalora-accent: #16412d;
    --dentalora-accent-hover: #103222;
    --dentalora-radius-pill: 999px;
    --dentalora-container: 1240px;
}

/* Header (editorial / premium) */
.site-header {
    background: var(--dentalora-paper);
    border-bottom: 1px solid var(--dentalora-border);
}

.site-header .header-inner {
    max-width: var(--dentalora-container);
    margin: 0 auto;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.site-header .site-branding {
    justify-self: start;
    min-width: 0;
}

.site-header .custom-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-header .custom-logo {
    width: auto;
    max-height: 34px;
}

.site-header .site-title {
    margin: 0;
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.site-header .site-title a {
    color: var(--dentalora-ink);
    text-decoration: none;
}

.site-header .site-title a:hover,
.site-header .site-title a:focus {
    color: var(--dentalora-accent);
}

.site-header .main-navigation {
    justify-self: center;
    width: auto;
}

.site-header .main-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header .main-navigation a {
    color: var(--dentalora-ink);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 10px 0;
}

.site-header .main-navigation a:hover,
.site-header .main-navigation a:focus {
    color: var(--dentalora-accent);
}

.site-header .menu-toggle {
    border: 1px solid var(--dentalora-border);
    background: transparent;
    color: var(--dentalora-ink);
    border-radius: var(--dentalora-radius-pill);
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    cursor: pointer;
}

.site-header .menu-toggle:hover {
    border-color: rgba(29, 29, 27, 0.24);
}

.site-header .menu-toggle:focus-visible {
    outline: 2px solid var(--dentalora-accent);
    outline-offset: 2px;
}

.site-header .header-cta {
    justify-self: end;
}

.site-header .dentalora-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dentalora-accent);
    color: #fff;
    border-radius: var(--dentalora-radius-pill);
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid transparent;
}

.site-header .dentalora-button:hover,
.site-header .dentalora-button:focus {
    background: var(--dentalora-accent-hover);
    color: #fff;
}

.site-header .dentalora-button:focus-visible {
    outline: 2px solid var(--dentalora-ink);
    outline-offset: 2px;
}

.hero-section {
    background: radial-gradient(50% 50% at 12% 18%, rgba(201, 169, 110, .11) 0%, transparent 24%),
        radial-gradient(50% 50% at 92% 12%, rgba(29, 61, 47, .07) 0%, transparent 24%),
        linear-gradient(180deg, rgba(255, 253, 249, .7) 0%, #faf8f5 100%);
}






@media screen and (min-width: 37.5em) {
    .site-header .main-navigation ul {
        gap: 26px;
        align-items: center;
    }
}

@media screen and (max-width: 37.49em) {
    .site-header .header-inner {
        padding: 16px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
        position: relative;
    }

    .site-header .site-branding {
        flex: 1 1 auto;
    }

    .site-header .main-navigation {
        flex: 0 0 auto;
    }

    .site-header .header-cta {
        flex: 1 1 100%;
        text-align: left;
    }

    .site-header .dentalora-button {
        width: 100%;
        justify-content: center;
    }

    .site-header .main-navigation.toggled ul {
        margin-top: 12px;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 12px);
        z-index: 9999;
        border: 1px solid var(--dentalora-border);
        border-radius: 14px;
        background: var(--dentalora-paper);
        padding: 8px 12px;
    }

    .site-header .main-navigation.toggled li+li {
        border-top: 1px solid var(--dentalora-border);
    }

    .site-header .main-navigation.toggled a {
        padding: 12px 4px;
    }
}

/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
    --bg: #faf8f5;
    --bg-card: #fffdf9;
    --bg-dark: #1d3d2f;
    --bg-footer: #162b22;
    --text-dark: #1d2a22;
    --text-gray: #6e675f;
    --text-light: #faf8f5;
    --gold: #c9a96e;
    --gold-lt: #dfc190;
    --gold-dim: rgba(201, 169, 110, .1);
    --border: #d9d1c5;
    --border2: #cac2b6;
    --shadow-sm: 0 2px 12px rgba(30, 53, 40, .06);
    --shadow-md: 0 8px 32px rgba(30, 53, 40, .10);
    --shadow-lg: 0 20px 56px rgba(30, 53, 40, .14);
    --mobile-gutter: clamp(14px, 4vw, 22px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: 'DM Sans', Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text-gray);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
}

img {
    display: block;
    max-width: 100%;
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

table {
    display: block;
    width: 100%;
    overflow-x: auto;
}

[class*="grid"],
[class*="col"],
[class*="card"],
[class*="item"] {
    min-width: 0;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px);
    width: min(100%, 1340px);
}

.section {
    padding: clamp(72px, 9vw, 128px) 0;
}

.section-sm {
    padding: clamp(40px, 5vw, 72px) 0;
}

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
.serif {
    font-family: 'Cormorant Garamond', serif;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.eyebrow-line {
    height: 1px;
    width: 40px;
    background: var(--gold);
    flex-shrink: 0;
}

.eyebrow-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--text-gray);
    text-transform: uppercase;
}

.eyebrow-text.light {
    color: rgba(250, 248, 245, .6);
}

.heading-hero {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: .95;
    letter-spacing: -3px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px;
}

.heading-hero .highlight {
    position: relative;
    display: inline-block;
}

.heading-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 4px;
}

.heading-xl {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.06;
    letter-spacing: -.02em;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 24px;
}

.heading-xl.light {
    color: var(--text-light);
}

.heading-lg {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.08;
    letter-spacing: -.02em;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 24px;
}

.body-text {
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.9;
    color: var(--text-gray);
    max-width: 600px;
}

.body-text.light {
    color: rgba(250, 248, 245, .75);
}

/* ══════════════════════════════════════
   SECTION WATERMARK NUMBERS
══════════════════════════════════════ */
.sec-num {
    position: absolute;
    font-size: clamp(80px, 12vw, 164px);
    font-weight: 700;
    color: rgba(201, 169, 110, .12);
    letter-spacing: -8px;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    font-family: 'DM Sans', sans-serif;
}

.sec-num.right {
    right: clamp(20px, 5vw, 64px);
}

.sec-num.left {
    left: clamp(20px, 5vw, 64px);
}

.sec-num.top {
    top: 40px;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 52px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.btn-dark:hover {
    background: #162b22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border2);
}

.btn-outline:hover {
    border-color: var(--bg-dark);
    background: var(--bg-card);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--bg);
    color: var(--bg-dark);
}

.btn-light:hover {
    background: white;
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--text-dark);
    border-radius: 100px;
    font-weight: 600;
}

.btn-gold:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, .35);
}

.btn-sm {
    height: 44px;
    padding: 0 20px;
    font-size: 13px;
    border-radius: 10px;
}

.btn-sm-outline {
    height: 44px;
    padding: 0 20px;
    font-size: 13px;
    border-radius: 10px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-sm-light {
    height: 44px;
    padding: 0 20px;
    font-size: 13px;
    border-radius: 10px;
    background: var(--bg);
    color: var(--bg-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-sm-dark {
    height: 44px;
    padding: 0 20px;
    font-size: 13px;
    border-radius: 10px;
    background: var(--bg-dark);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Button shine sweep */
.btn::after {
    content: '';
    position: absolute;
    inset: -40% auto -40% -120%;
    width: 70%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .22) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left .55s ease;
    pointer-events: none;
}

.btn:hover::after {
    left: 130%;
}

/* Button ripple */
.do-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: do-ripple .7s ease-out;
    background: rgba(255, 255, 255, .35);
    pointer-events: none;
}

/* ══════════════════════════════════════
   ANIMATION CLASSES
══════════════════════════════════════ */
.do-anim-ready .fu {
    opacity: 0;
    transform: translate3d(0, var(--reveal-y, 28px), 0) scale(.985);
    filter: blur(2px);
    transition:
        opacity var(--do-dur, .72s) cubic-bezier(.2, .65, .2, 1),
        transform var(--do-dur, .72s) cubic-bezier(.2, .65, .2, 1),
        filter var(--do-dur, .72s) cubic-bezier(.2, .65, .2, 1);
    transition-delay: var(--fu-delay, 0ms);
}

.do-anim-ready .fu.vis {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.do-hover-tilt {
    transform-style: preserve-3d;
    transition: transform .35s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease;
}

.do-parallax-wrap {
    overflow: hidden;
}

.do-parallax {
    transform: translate3d(0, 0, 0) scale(1.06);
    will-change: transform;
}

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes do-ripple {
    to {
        transform: scale(11);
        opacity: 0;
    }
}

@keyframes breathe {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(76, 175, 118, .18);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(76, 175, 118, .06);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes do-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* ══════════════════════════════════════
   SECTION HEADER (shared pattern)
══════════════════════════════════════ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(36px, 5vw, 56px);
    gap: 24px;
    flex-wrap: wrap;
}

.gold-bar {
    height: 3px;
    width: 100px;
    background: var(--gold);
    border-radius: 3px;
    margin-bottom: 26px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-section {
    background:
        radial-gradient(50% 50% at 12% 18%, rgba(201, 169, 110, .11) 0%, transparent 24%),
        radial-gradient(50% 50% at 92% 12%, rgba(29, 61, 47, .07) 0%, transparent 24%),
        linear-gradient(180deg, rgba(255, 253, 249, .7) 0%, var(--bg) 100%);
    padding: clamp(480px, 7vw, 80px) 0 clamp(64px, 9vw, 128px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}

.hero-left {
    padding-top: 20px;
}

.hero-divider {
    height: 1px;
    background: var(--border);
    width: min(560px, 100%);
    margin: 22px 0;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 28px;
}

.h-stat-num {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1;
}

.h-stat-text {
    font-size: 12.5px;
    color: var(--text-gray);
    line-height: 1.55;
    margin-top: 5px;
}

/* Hero right image composition */
.hero-right {
    position: relative;
    height: clamp(500px, 60vw, 780px);
}

.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 86%;
    height: calc(100% - 90px);
    border-radius: 0 0 0 96px;
    overflow: hidden;
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-secondary {
    position: absolute;
    left: 0;
    bottom: 44px;
    width: 42%;
    aspect-ratio: 16/9;
    border: 10px solid var(--bg);
    border-radius: 8px;
    overflow: hidden;
}

.hero-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero floating cards */
.hero-card-1 {
    position: absolute;
    top: clamp(60px, 10%, 114px);
    left: 24px;
    width: clamp(200px, 22vw, 300px);
    background: rgba(255, 253, 249, .95);
    border: 1px solid rgba(217, 209, 197, .9);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.hc1-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -2px;
    line-height: .95;
    margin: 14px 0 12px;
}

.hc1-text {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-gray);
}

.hero-card-2 {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: clamp(170px, 18vw, 240px);
    background: var(--bg-dark);
    border-radius: 8px;
    padding: 18px 20px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.hc2-eyebrow {
    font-size: 11px;
    letter-spacing: .18em;
    opacity: .65;
}

.hc2-stat {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.hc2-num {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: .9;
}

.hc2-num-text {
    font-size: 12px;
    line-height: 1.5;
    opacity: .75;
}

.hc2-div {
    height: 1px;
    background: rgba(250, 248, 245, .14);
}

.hc2-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    line-height: 1.55;
    opacity: .8;
}

.hero-card-3 {
    position: absolute;
    bottom: -20px;
    left: -4px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    width: clamp(160px, 18vw, 200px);
}

.hc3-stars {
    display: flex;
    gap: 2px;
}

.hc3-stars svg {
    width: 10px;
    height: 10px;
    fill: var(--gold);
}

.hc3-score {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1;
}

.hc3-label {
    font-size: 10.5px;
    color: var(--text-gray);
    line-height: 1.4;
    margin-top: 2px;
}

.hc3-avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf76;
    flex-shrink: 0;
    animation: breathe 2s infinite;
}

/* Floating animation on cards */
.hero-card-1,
.hero-card-2,
.hero-card-3,
.about-card {
    animation: do-float 5.8s ease-in-out infinite;
}

.hero-card-2 {
    animation-delay: .3s;
}

.hero-card-3 {
    animation-delay: .6s;
}

.about-card {
    animation-delay: .4s;
}

/* ══════════════════════════════════════
   INSURANCE / PARTNERS BAR
══════════════════════════════════════ */
.insurance-section {
    padding: 28px 0;
    background: rgba(255, 253, 249, .7);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: center;
    text-align: center;
}

.ins-logo {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--border2);
    letter-spacing: -1px;
    transition: color .2s;
}

.ins-logo:hover {
    color: var(--text-gray);
}

/* ══════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: clamp(22px, 3vw, 33px);
    display: flex;
    flex-direction: column;
}

.feature-card.dark {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
    color: var(--text-light);
}

.feature-card.offset {
    margin-top: 36px;
}

.fc-num {
    font-size: clamp(44px, 6vw, 60px);
    font-weight: 700;
    letter-spacing: -3px;
    margin: 22px 0 10px;
    line-height: 1;
}

.fc-text {
    font-size: 15px;
    line-height: 1.8;
    opacity: .78;
}

.fc-stat {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1;
}

.fc-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.fc-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ══════════════════════════════════════
   NUMBERS BAND
══════════════════════════════════════ */
.numbers-band {
    background: rgba(243, 238, 231, .55);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.numbers-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.num-cell {
    padding: clamp(32px, 5vw, 52px) clamp(20px, 3vw, 40px);
    border-right: 1px solid var(--border);
    text-align: center;
}

.num-cell:last-child {
    border-right: none;
}

.num-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: 8px;
}

.num-val span {
    font-size: .55em;
    color: var(--gold);
    vertical-align: super;
}

.num-label {
    font-size: 11.5px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.num-cell.vis .num-val {
    animation: countUp .6s ease both;
}

/* ══════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════ */
.marquee-strip {
    background: var(--bg-dark);
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(250, 248, 245, .06);
    border-bottom: 1px solid rgba(250, 248, 245, .06);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 17px 28px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, .4);
    flex-shrink: 0;
}

.marquee-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .55;
    flex-shrink: 0;
}

.marquee-item.gold {
    color: var(--gold);
    opacity: .8;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-section {
    background: linear-gradient(180deg, rgba(255, 253, 249, .5) 0%, rgba(243, 238, 231, .7) 100%);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: start;
}

.about-img-col {
    position: relative;
}

.about-img-main {
    border-radius: 140px 0 140px 0;
    overflow: hidden;
    height: clamp(380px, 50vw, 620px);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card {
    position: absolute;
    right: -18px;
    bottom: -32px;
    width: clamp(200px, 22vw, 280px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.ac-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--text-gray);
    text-transform: uppercase;
}

.ac-title {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -.5px;
    line-height: 1.3;
}

.ac-sub {
    font-size: 12.5px;
    color: var(--text-gray);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
    margin: 30px 0 32px;
}

.af-item {
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.af-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.af-text {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text-gray);
}

.about-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section {
    position: relative;
}

.services-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(36px, 5vw, 56px);
    gap: 24px;
    flex-wrap: wrap;
}

.services-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    grid-template-rows: clamp(280px, 35vw, 420px) clamp(200px, 25vw, 300px);
    gap: 20px;
}

.sg-card {
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: clamp(22px, 3vw, 34px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow .2s, transform .2s;
}

.sg-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sg-card.dark {
    background: var(--bg-dark);
    border-color: transparent;
}

.sg-card.light {
    background: var(--bg-card);
}

.sg-card.light-alt {
    background: rgba(29, 61, 47, .07);
}

.sg-card.light-gold {
    background: rgba(201, 169, 110, .08);
}

.sg-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: var(--text-light);
    margin: 16px 0 14px;
    line-height: 1.15;
    letter-spacing: -.5px;
}

.sg-card-text {
    font-size: 14.5px;
    line-height: 1.85;
    color: rgba(250, 248, 245, .78);
}

.sg-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid rgba(250, 248, 245, .13);
    margin-top: 18px;
}

.sgc-price {
    font-size: 12px;
    letter-spacing: .15em;
    color: rgba(250, 248, 245, .65);
    font-weight: 600;
}

.sgc-link {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.sg-sm-title {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sg-sm-text {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--text-gray);
}

.sg-sm-bottom {
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 16px;
}

.sg-sm-bottom.dark-text {
    color: var(--bg-dark);
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-section {
    background: linear-gradient(180deg, rgba(243, 238, 231, .75) 0%, rgba(250, 248, 245, .96) 100%);
    position: relative;
}

.pricing-table {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    width: 100%;
}

.pt-row {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
    border-bottom: 1px solid var(--border);
}

.pt-row:last-child {
    border-bottom: none;
}

.pt-cell {
    padding: clamp(14px, 2vw, 22px) clamp(14px, 2vw, 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pt-cell.center {
    align-items: center;
    text-align: center;
}

.pt-cell.dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.pt-cell.gold-bg {
    background: rgba(201, 169, 110, .08);
}

.pt-header {
    background: rgba(243, 238, 231, .65);
}

.pt-header .pt-cell {
    padding-top: 22px;
    padding-bottom: 22px;
}

.pt-header .pt-cell:first-child {
    padding-bottom: 54px;
}

.pt-h-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.pt-h-sub {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 3px;
}

.pt-cell.dark .pt-h-title,
.pt-cell.dark .pt-h-sub {
    color: var(--text-light);
}

.pt-cell.dark .pt-h-sub {
    opacity: .75;
}

.pt-label {
    font-size: 14px;
    color: var(--text-gray);
}

.pt-label.bold {
    font-weight: 700;
    color: var(--text-dark);
}

.pt-val {
    font-size: 14px;
    color: var(--text-dark);
}

.pt-val-lg {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--text-dark);
}

.pt-cell.dark .pt-val,
.pt-cell.dark .pt-val-lg {
    color: var(--text-light);
}

/* ══════════════════════════════════════
   BEFORE / AFTER GALLERY
══════════════════════════════════════ */
.ba-section {
    background: var(--bg-dark);
}

.ba-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.ba-header .eyebrow {
    justify-content: center;
}

.ba-header .eyebrow-text {
    color: rgba(201, 169, 110, .8);
}

.ba-header .eyebrow-line {
    background: rgba(201, 169, 110, .6);
}

.ba-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.07;
    letter-spacing: -.025em;
    margin: 12px 0 14px;
}

.ba-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.ba-header p {
    font-size: 14.5px;
    color: rgba(250, 248, 245, .5);
    max-width: 440px;
    margin: 0 auto;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ba-card {
    background: rgba(250, 248, 245, .04);
    border: 1px solid rgba(250, 248, 245, .1);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.ba-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ba-imgs {
    position: relative;
    height: clamp(160px, 22vw, 260px);
    overflow: hidden;
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after {
    clip-path: inset(0 50% 0 0);
    transition: clip-path .45s ease;
}

.ba-card:hover .ba-after {
    clip-path: inset(0 0% 0 0);
}

.ba-card.show-after .ba-after {
    clip-path: inset(0 0% 0 0);
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 26px;
    height: 26px;
    background: var(--bg-card);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: opacity .25s;
}

.ba-card:hover .ba-handle {
    opacity: 0;
}

.ba-card.show-after .ba-handle {
    opacity: 0;
}

.ba-labels {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.ba-lbl {
    background: rgba(250, 248, 245, .88);
    color: var(--text-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.ba-body {
    padding: 18px 20px;
}

.ba-treatment {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.ba-name {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -.3px;
}

.ba-sub {
    font-size: 12px;
    color: rgba(250, 248, 245, .45);
    margin-top: 3px;
}

.ba-note {
    text-align: center;
    margin-top: 32px;
    font-size: 12px;
    color: rgba(250, 248, 245, .28);
    font-style: italic;
}

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why-section {
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.why-left {
    background: var(--bg-dark);
    border-radius: 10px;
    padding: clamp(28px, 4vw, 48px);
    min-height: clamp(380px, 45vw, 512px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.why-stat-num {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -1px;
}

.why-stat-lbl {
    font-size: 12px;
    color: rgba(250, 248, 245, .65);
    margin-top: 3px;
}

.why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wr-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: clamp(18px, 2.5vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wr-card.offset {
    margin-top: 28px;
}

.wr-card.gold-bg {
    background: rgba(201, 169, 110, .08);
}

.wr-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.wr-text {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ══════════════════════════════════════
   PATIENT STORIES
══════════════════════════════════════ */
.stories-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.stories-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(60% 60% at 70% 50%, rgba(201, 169, 110, .06) 0%, transparent 70%);
}

.stories-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.st-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 100px;
}

.st-stat-card {
    background: rgba(250, 248, 245, .06);
    border: 1px solid rgba(250, 248, 245, .13);
    border-radius: 10px;
    padding: 22px 22px 44px;
}

.st-stat-card.offset {
    margin-top: 24px;
}

.st-stat-num {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.st-stat-text {
    font-size: 12.5px;
    color: rgba(250, 248, 245, .65);
    line-height: 1.5;
}

.st-main-card {
    background: rgba(250, 248, 245, .06);
    border: 1px solid rgba(250, 248, 245, .15);
    border-radius: 10px;
    padding: clamp(28px, 4vw, 48px);
}

.st-pill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
}

.st-pill {
    background: rgba(250, 248, 245, .1);
    border: 1px solid rgba(250, 248, 245, .12);
    border-radius: 12px;
    padding: 7px 14px;
    font-size: 12px;
    color: var(--text-light);
}

.st-stars {
    display: flex;
    gap: 3px;
}

.st-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.st-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    line-height: 1.45;
    color: var(--text-light);
    margin-bottom: 32px;
    font-style: italic;
}

.st-div {
    height: 1px;
    background: rgba(250, 248, 245, .13);
    margin-bottom: 26px;
}

.st-author {
    display: grid;
    grid-template-columns: clamp(140px, 16vw, 220px) 1fr;
    gap: 22px;
    align-items: center;
}

.st-author-img {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.st-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.st-author-name {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -.5px;
    margin-bottom: 4px;
}

.st-author-role {
    font-size: 13px;
    color: rgba(250, 248, 245, .65);
    margin-bottom: 16px;
}

.st-author-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.st-as-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    color: rgba(250, 248, 245, .5);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.st-as-text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(250, 248, 245, .75);
}

/* ══════════════════════════════════════
   DOCTORS
══════════════════════════════════════ */
.doctors-section {
    position: relative;
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.doc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.doc-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.doc-card.offset {
    margin-top: 36px;
}

.doc-img {
    height: clamp(240px, 30vw, 360px);
    width: 100%;
    overflow: hidden;
}

.doc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter .3s;
}

.doc-card:hover .doc-img img {
    filter: grayscale(0%);
}

.doc-info {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.doc-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -.5px;
}

.doc-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    color: var(--gold);
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section {
    background: rgba(243, 238, 231, .55);
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(32px, 5vw, 56px);
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    gap: 12px;
}

.faq-q {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 24px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    padding-bottom: 20px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px;
}

/* ══════════════════════════════════════
   JOURNAL
══════════════════════════════════════ */
.journal-section {
    position: relative;
}

.jou-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 20px;
}

.jou-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.jou-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.jou-img {
    overflow: hidden;
}

.jou-img.main {
    height: clamp(180px, 22vw, 260px);
}

.jou-img.sub {
    height: clamp(150px, 18vw, 220px);
}

.jou-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.jou-card:hover .jou-img img {
    transform: scale(1.04);
}

.jou-body {
    padding: clamp(18px, 2.5vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jou-eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .16em;
    color: var(--gold);
    text-transform: uppercase;
}

.jou-title-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -.5px;
    line-height: 1.25;
}

.jou-title-sub {
    font-size: clamp(15px, 1.8vw, 19px);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -.3px;
    line-height: 1.3;
}

.jou-text {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--text-gray);
}

.jou-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    margin-top: 4px;
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
    background: var(--bg-dark);
    padding: clamp(64px, 9vw, 120px) 0;
    text-align: center;
}

.cta-band h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.07;
    letter-spacing: -.02em;
    margin: 14px 0 16px;
}

.cta-band h2 em {
    font-style: italic;
    color: var(--gold-lt);
}

.cta-band p {
    font-size: 15px;
    color: rgba(250, 248, 245, .6);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-divider {
        width: 100%;
        max-width: 400px;
    }

    .hero-stats {
        max-width: 440px;
        text-align: left;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card.offset {
        margin-top: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-col {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .about-card {
        right: 0;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .services-grid .sg-card[style*="grid-area"] {
        grid-area: auto !important;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-left {
        min-height: auto;
    }

    .why-stats-row {
        margin-top: 20px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .st-stats-grid {
        margin-top: 0;
    }

    .doc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doc-card.offset {
        margin-top: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .jou-grid {
        grid-template-columns: 1fr 1fr;
    }

    .jou-grid .jou-card:first-child {
        grid-column: span 2;
    }

    .insurance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .container {
        padding-left: var(--mobile-gutter) !important;
        padding-right: var(--mobile-gutter) !important;
    }
}

@media (max-width: 760px) {

    .hero-card-1,
    .hero-card-2,
    .hero-card-3 {
        display: none;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .numbers-inner {
        grid-template-columns: 1fr 1fr;
    }

    .num-cell:nth-child(2) {
        border-right: none;
    }

    .num-cell:nth-child(3) {
        border-top: 1px solid var(--border);
    }

    .pt-row {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        min-width: 540px;
    }

    .pricing-table {
        overflow-x: auto;
    }

    .doc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .st-author {
        grid-template-columns: 1fr;
    }

    .st-author-img {
        height: 220px;
        aspect-ratio: auto;
    }

    .ba-grid {
        grid-template-columns: 1fr;
    }

    .jou-grid {
        grid-template-columns: 1fr;
    }

    .jou-grid .jou-card:first-child {
        grid-column: span 1;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn,
    button,
    a.btn {
        max-width: 100%;
    }
}

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

    .why-right {
        grid-template-columns: 1fr;
    }

    .wr-card.offset {
        margin-top: 0;
    }
}

/* ══════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    .fu,
    .do-anim-ready .fu,
    .do-hover-tilt,
    .do-parallax,
    .hero-card-1,
    .hero-card-2,
    .hero-card-3,
    .about-card,
    .btn,
    .btn::after,
    .do-ripple {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }
}

/* =========================================
   DENTALORA COMPONENT STYLES
   ========================================= */

    /* ── TOKENS ── */
    :root {
      --bg:        #faf8f5;
      --bg-card:   #fffdf9;
      --bg-dark:   #1d3d2f;
      --bg-footer: #162b22;
      --text-dark: #1d2a22;
      --text-gray: #6e675f;
      --text-light:#faf8f5;
      --gold:      #c9a96e;
      --gold-lt:   #dfc190;
      --gold-dim:  rgba(201,169,110,.1);
      --border:    #d9d1c5;
      --border2:   #cac2b6;
      --shadow-sm: 0 2px 12px rgba(30,53,40,.06);
      --shadow-md: 0 8px 32px rgba(30,53,40,.10);
      --shadow-lg: 0 20px 56px rgba(30,53,40,.14);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'DM Sans', Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text-gray);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

    /* ── LAYOUT ── */
    .container {
      max-width: 1340px;
      margin: 0 auto;
      padding: 0 clamp(20px, 5vw, 64px);
      width: 100%;
    }
    .section       { padding: clamp(72px, 9vw, 128px) 0; }
    .section-sm    { padding: clamp(40px, 5vw, 72px) 0; }

    /* ── TYPOGRAPHY ── */
    .serif { font-family: 'Cormorant Garamond', serif; }

    .eyebrow {
      display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
    }
    .eyebrow-line { height: 1px; width: 40px; background: var(--gold); flex-shrink: 0; }
    .eyebrow-text {
      font-size: 11px; font-weight: 700; letter-spacing: .2em;
      color: var(--text-gray); text-transform: uppercase;
    }
    .eyebrow-text.light { color: rgba(250,248,245,.6); }

    .heading-hero {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(44px, 6vw, 76px);
      line-height: .95; letter-spacing: -3px;
      font-weight: 700; color: var(--text-dark); margin: 0 0 24px;
    }
    .heading-hero .highlight {
      position: relative; display: inline-block;
    }
    .heading-hero .highlight::after {
      content: ''; position: absolute; bottom: 6px; left: 0;
      width: 100%; height: 3px; background: var(--gold); border-radius: 4px;
    }
    .heading-xl {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 4vw, 54px);
      line-height: 1.06; letter-spacing: -.02em;
      font-weight: 600; color: var(--text-dark); margin: 0 0 24px;
    }
    .heading-xl.light { color: var(--text-light); }
    .heading-lg {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3.5vw, 48px);
      line-height: 1.08; letter-spacing: -.02em;
      font-weight: 600; color: var(--text-light); margin: 0 0 24px;
    }
    .body-text {
      font-size: clamp(15px, 1.5vw, 17px);
      line-height: 1.9; color: var(--text-gray); max-width: 600px;
    }
    .body-text.light { color: rgba(250,248,245,.75); }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0 24px; height: 52px; border-radius: 12px;
      font-size: 14px; font-weight: 500; transition: all .2s ease;
      white-space: nowrap;
      position: relative; overflow: hidden; isolation: isolate;
    }
    .btn-dark  { background: var(--bg-dark); color: var(--text-light); }
    .btn-dark:hover  { background: #162b22; transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .btn-outline { background: transparent; color: var(--text-dark); border: 1px solid var(--border2); }
    .btn-outline:hover { border-color: var(--bg-dark); background: var(--bg-card); transform: translateY(-2px); }
    .btn-light { background: var(--bg); color: var(--bg-dark); }
    .btn-light:hover { background: white; transform: translateY(-2px); }
    .btn-gold { background: var(--gold); color: var(--text-dark); border-radius: 100px; font-weight: 600; }
    .btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.35); }
    .btn-sm { height: 44px; padding: 0 20px; font-size: 13px; border-radius: 10px; }
    .btn-sm-outline { height: 44px; padding: 0 20px; font-size: 13px; border-radius: 10px; background: transparent; color: var(--text-dark); border: 1px solid var(--border2); display: inline-flex; align-items: center; justify-content: center; }
    .btn-sm-light   { height: 44px; padding: 0 20px; font-size: 13px; border-radius: 10px; background: var(--bg); color: var(--bg-dark); display: inline-flex; align-items: center; justify-content: center; }
    .btn-sm-dark    { height: 44px; padding: 0 20px; font-size: 13px; border-radius: 10px; background: var(--bg-dark); color: var(--text-light); display: inline-flex; align-items: center; justify-content: center; }

    .btn::after {
      content: '';
      position: absolute;
      inset: -40% auto -40% -120%;
      width: 70%;
      background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
      transform: skewX(-20deg);
      transition: left .55s ease;
      pointer-events: none;
    }
    .btn:hover::after { left: 130%; }

    .do-ripple {
      position: absolute;
      border-radius: 50%;
      transform: scale(0);
      animation: do-ripple .7s ease-out;
      background: rgba(255,255,255,.35);
      pointer-events: none;
    }
    @keyframes do-ripple {
      to { transform: scale(11); opacity: 0; }
    }

    /* ── FADE-UP ── */
    .do-anim-ready .fu {
      opacity: 0;
      transform: translate3d(0,var(--reveal-y,28px),0) scale(.985);
      filter: blur(2px);
      transition:
        opacity var(--do-dur,.72s) cubic-bezier(.2,.65,.2,1),
        transform var(--do-dur,.72s) cubic-bezier(.2,.65,.2,1),
        filter var(--do-dur,.72s) cubic-bezier(.2,.65,.2,1);
      transition-delay: var(--fu-delay,0ms);
    }
    .do-anim-ready .fu.vis {
      opacity: 1;
      transform: translate3d(0,0,0) scale(1);
      filter: blur(0);
    }

    .do-hover-tilt {
      transform-style: preserve-3d;
      transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
    }

    .do-parallax-wrap { overflow: hidden; }
    .do-parallax {
      transform: translate3d(0,0,0) scale(1.06);
      will-change: transform;
    }

    /* ── SECTION WATERMARK NUMBERS ── */
    .sec-num {
      position: absolute; font-size: clamp(80px, 12vw, 164px);
      font-weight: 700; color: rgba(201,169,110,.12);
      letter-spacing: -8px; line-height: 1; z-index: 0; pointer-events: none;
      font-family: 'DM Sans', sans-serif;
    }
    .sec-num.right { right: clamp(20px,5vw,64px); }
    .sec-num.left  { left:  clamp(20px,5vw,64px); }
    .sec-num.top   { top: 40px; }

    /* ══════════════════════════════════════
       TOP BAR
    ══════════════════════════════════════ */
    .topbar {
      background: rgba(250,248,245,.92); border-bottom: 1px solid rgba(217,209,197,.7);
      z-index: 60; position: relative;
    }
    .topbar-inner {
      display: flex; justify-content: space-between; align-items: center;
      min-height: 44px; padding: 10px 0; flex-wrap: wrap; gap: 8px;
    }
    .tb-side { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
    .tb-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 12px; color: var(--text-gray); line-height: 1;
    }
    .tb-item svg { width: 14px; height: 14px; flex-shrink: 0; }
    .tb-item.accent { color: var(--gold); font-weight: 600; }
    .tb-divider { width: 1px; height: 12px; background: rgba(0,0,0,.1); }

    /* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */
    .navbar {
      background: rgba(250,248,245,.96);
      border-bottom: 1px solid rgba(217,209,197,.8);
      position: sticky; top: 0; z-index: 100;
      backdrop-filter: blur(10px);
    }
    .navbar-inner {
      display: flex; justify-content: space-between; align-items: center;
      min-height: 88px; padding: 18px 0;
    }
    .nav-brand { display: flex; align-items: center; gap: 13px; }
    .brand-logo {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--bg-dark); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .brand-text { display: flex; flex-direction: column; gap: 3px; }
    .brand-name { font-size: 24px; font-weight: 700; color: var(--text-dark); letter-spacing: -1px; line-height: 1; }
    .brand-tag  { font-size: 10px; letter-spacing: .2em; color: var(--text-gray); line-height: 1; }
    .nav-links { display: flex; align-items: center; gap: 26px; }
    .nav-links a { font-size: 14px; color: var(--text-gray); opacity: .8; transition: opacity .18s; }
    .nav-links a:hover { opacity: 1; }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      padding: 6px; border-radius: 8px; border: 1px solid var(--border);
    }
    .hamburger span { display: block; width: 19px; height: 1.5px; background: var(--text-dark); border-radius: 2px; transition: .25s; }
    .mobile-menu {
      display: none; flex-direction: column;
      border-top: 1px solid var(--border); padding: 16px 0 20px;
      background: rgba(250,248,245,.98);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { padding: 12px 0; font-size: 15px; color: var(--text-gray); border-bottom: 1px solid var(--border); opacity: .8; }
    .mobile-menu .mob-btns { display: flex; gap: 10px; padding-top: 16px; }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero-section {
      background:
        radial-gradient(50% 50% at 12% 18%, rgba(201,169,110,.11) 0%, transparent 24%),
        radial-gradient(50% 50% at 92% 12%, rgba(29,61,47,.07) 0%, transparent 24%),
        linear-gradient(180deg, rgba(255,253,249,.7) 0%, var(--bg) 100%);
      padding: clamp(48px,7vw,80px) 0 clamp(64px,9vw,128px);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 5vw, 56px);
      align-items: center;
    }
    .hero-left { padding-top: 20px; }
    .hero-divider { height: 1px; background: var(--border); width: min(560px, 100%); margin: 22px 0; }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
    .hero-stats {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px; border-top: 1px solid var(--border); padding-top: 28px;
    }
    .h-stat-num {
      font-size: clamp(28px, 3vw, 38px); font-weight: 700;
      color: var(--text-dark); letter-spacing: -1.5px; line-height: 1;
    }
    .h-stat-text { font-size: 12.5px; color: var(--text-gray); line-height: 1.55; margin-top: 5px; }

    /* Hero right — image composition */
    .hero-right { position: relative; height: clamp(500px, 60vw, 780px); }
    .hero-img-main {
      position: absolute; top: 0; right: 0;
      width: 86%; height: calc(100% - 90px);
      border-radius: 0 0 0 96px; overflow: hidden;
    }
    .hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
    .hero-img-secondary {
      position: absolute; left: 0; bottom: 44px;
      width: 42%; aspect-ratio: 16/9;
      border: 10px solid var(--bg); border-radius: 8px; overflow: hidden;
    }
    .hero-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
    .hero-card-1 {
      position: absolute; top: clamp(60px, 10%, 114px); left: 24px;
      width: clamp(200px, 22vw, 300px);
      background: rgba(255,253,249,.95); border: 1px solid rgba(217,209,197,.9);
      border-radius: 8px; padding: 24px; box-shadow: var(--shadow-md);
    }
    .hc1-title {
      font-size: clamp(28px, 4vw, 44px); font-weight: 700;
      color: var(--text-dark); letter-spacing: -2px; line-height: .95;
      margin: 14px 0 12px;
    }
    .hc1-text { font-size: 13px; line-height: 1.65; color: var(--text-gray); }
    .hero-card-2 {
      position: absolute; right: 20px; bottom: 10px;
      width: clamp(170px, 18vw, 240px);
      background: var(--bg-dark); border-radius: 8px;
      padding: 18px 20px; color: var(--text-light);
      display: flex; flex-direction: column; gap: 10px;
      box-shadow: var(--shadow-lg);
    }
    .hc2-eyebrow { font-size: 11px; letter-spacing: .18em; opacity: .65; }
    .hc2-stat { display: flex; align-items: flex-end; gap: 10px; }
    .hc2-num { font-size: clamp(32px, 4vw, 44px); font-weight: 700; line-height: .9; }
    .hc2-num-text { font-size: 12px; line-height: 1.5; opacity: .75; }
    .hc2-div { height: 1px; background: rgba(250,248,245,.14); }
    .hc2-bottom { display: flex; justify-content: space-between; font-size: 12px; line-height: 1.55; opacity: .8; }

    /* ══════════════════════════════════════
       INSURANCE / PARTNERS BAR
    ══════════════════════════════════════ */
    .insurance-section {
      padding: 28px 0;
      background: rgba(255,253,249,.7);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .insurance-grid {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 16px; align-items: center; text-align: center;
    }
    .ins-logo {
      font-size: clamp(18px, 2.5vw, 28px); font-weight: 700;
      color: var(--border2); letter-spacing: -1px; transition: color .2s;
    }
    .ins-logo:hover { color: var(--text-gray); }

    /* ══════════════════════════════════════
       FEATURES STRIP
    ══════════════════════════════════════ */
    .features-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
      gap: 20px;
    }
    .feature-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 10px; padding: clamp(22px, 3vw, 33px);
      display: flex; flex-direction: column;
    }
    .feature-card.dark { background: var(--bg-dark); border-color: var(--bg-dark); color: var(--text-light); }
    .feature-card.offset { margin-top: 36px; }
    .fc-num { font-size: clamp(44px, 6vw, 60px); font-weight: 700; letter-spacing: -3px; margin: 22px 0 10px; line-height: 1; }
    .fc-text { font-size: 15px; line-height: 1.8; opacity: .78; }
    .fc-stat { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -2px; color: var(--text-dark); margin-bottom: 14px; line-height: 1; }
    .fc-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
    .fc-desc  { font-size: 14px; line-height: 1.8; color: var(--text-gray); }

    /* ══════════════════════════════════════
       ABOUT
    ══════════════════════════════════════ */
    .about-section {
      background: linear-gradient(180deg, rgba(255,253,249,.5) 0%, rgba(243,238,231,.7) 100%);
      position: relative;
    }
    .about-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
    .about-img-col { position: relative; }
    .about-img-main {
      border-radius: 140px 0 140px 0; overflow: hidden;
      height: clamp(380px, 50vw, 620px);
    }
    .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
    .about-card {
      position: absolute; right: -18px; bottom: -32px;
      width: clamp(200px, 22vw, 280px);
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 10px; padding: 22px 24px;
      display: flex; flex-direction: column; gap: 10px;
      box-shadow: var(--shadow-lg);
    }
    .ac-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .18em; color: var(--text-gray); text-transform: uppercase; }
    .ac-title { font-size: clamp(17px, 2vw, 22px); font-weight: 700; color: var(--text-dark); letter-spacing: -.5px; line-height: 1.3; }
    .ac-sub { font-size: 12.5px; color: var(--text-gray); }
    .gold-bar { height: 3px; width: 100px; background: var(--gold); border-radius: 3px; margin-bottom: 26px; }
    .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; margin: 30px 0 32px; }
    .af-item { border-top: 1px solid var(--border); padding-top: 18px; }
    .af-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
    .af-text  { font-size: 13.5px; line-height: 1.75; color: var(--text-gray); }
    .about-btns { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ══════════════════════════════════════
       SERVICES
    ══════════════════════════════════════ */
    .services-section { position: relative; }
    .services-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: clamp(36px, 5vw, 56px); gap: 24px; flex-wrap: wrap; }
    .services-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr 1fr;
      grid-template-rows: clamp(280px, 35vw, 420px) clamp(200px, 25vw, 300px);
      gap: 20px;
    }
    .sg-card {
      border-radius: 10px; border: 1px solid var(--border);
      padding: clamp(22px, 3vw, 34px);
      display: flex; flex-direction: column; justify-content: space-between;
      transition: box-shadow .2s, transform .2s;
    }
    .sg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .sg-card.dark { background: var(--bg-dark); border-color: transparent; }
    .sg-card.light { background: var(--bg-card); }
    .sg-card.light-alt { background: rgba(29,61,47,.07); }
    .sg-card.light-gold { background: rgba(201,169,110,.08); }
    .sg-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 3vw, 36px); font-weight: 600;
      color: var(--text-light); margin: 16px 0 14px; line-height: 1.15; letter-spacing: -.5px;
    }
    .sg-card-text { font-size: 14.5px; line-height: 1.85; color: rgba(250,248,245,.78); }
    .sg-card-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 22px; border-top: 1px solid rgba(250,248,245,.13);
      margin-top: 18px;
    }
    .sgc-price { font-size: 12px; letter-spacing: .15em; color: rgba(250,248,245,.65); font-weight: 600; }
    .sgc-link  { font-size: 13px; color: var(--text-light); font-weight: 500; }
    .sg-sm-title { font-size: clamp(17px, 2vw, 22px); font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
    .sg-sm-text  { font-size: 13.5px; line-height: 1.8; color: var(--text-gray); }
    .sg-sm-bottom { padding-top: 18px; border-top: 1px solid var(--border); font-size: 12.5px; font-weight: 700; color: var(--gold); margin-top: 16px; }
    .sg-sm-bottom.dark-text { color: var(--bg-dark); }

    /* ══════════════════════════════════════
       PRICING
    ══════════════════════════════════════ */
    .pricing-section {
      background: linear-gradient(180deg, rgba(243,238,231,.75) 0%, rgba(250,248,245,.96) 100%);
      position: relative;
    }
    .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: clamp(36px,5vw,56px); gap: 24px; flex-wrap: wrap; }
    .pricing-table {
      border: 1px solid var(--border); border-radius: 10px;
      overflow: hidden; background: var(--bg-card); width: 100%;
    }
    .pt-row {
      display: grid; grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
      border-bottom: 1px solid var(--border);
    }
    .pt-row:last-child { border-bottom: none; }
    .pt-cell {
      padding: clamp(14px, 2vw, 22px) clamp(14px, 2vw, 24px);
      display: flex; flex-direction: column; justify-content: center;
    }
    .pt-cell.center { align-items: center; text-align: center; }
    .pt-cell.dark { background: var(--bg-dark); color: var(--text-light); }
    .pt-cell.gold-bg { background: rgba(201,169,110,.08); }
    .pt-header { background: rgba(243,238,231,.65); }
    .pt-header .pt-cell { padding-top: 22px; padding-bottom: 22px; }
    .pt-header .pt-cell:first-child { padding-bottom: 54px; }
    .pt-h-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin: 0; }
    .pt-h-sub   { font-size: 12px; color: var(--text-gray); margin-top: 3px; }
    .pt-cell.dark .pt-h-title,
    .pt-cell.dark .pt-h-sub { color: var(--text-light); }
    .pt-cell.dark .pt-h-sub { opacity: .75; }
    .pt-label { font-size: 14px; color: var(--text-gray); }
    .pt-label.bold { font-weight: 700; color: var(--text-dark); }
    .pt-val { font-size: 14px; color: var(--text-dark); }
    .pt-val-lg { font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: var(--text-dark); }
    .pt-cell.dark .pt-val,
    .pt-cell.dark .pt-val-lg { color: var(--text-light); }

    /* ══════════════════════════════════════
       WHY US
    ══════════════════════════════════════ */
    .why-section { position: relative; }
    .why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
    .why-left {
      background: var(--bg-dark); border-radius: 10px;
      padding: clamp(28px, 4vw, 48px);
      min-height: clamp(380px, 45vw, 512px);
      display: flex; flex-direction: column; justify-content: space-between;
    }
    .why-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
    .why-stat-num { font-size: clamp(24px, 4vw, 34px); font-weight: 700; color: var(--text-light); letter-spacing: -1px; }
    .why-stat-lbl { font-size: 12px; color: rgba(250,248,245,.65); margin-top: 3px; }
    .why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .wr-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 10px; padding: clamp(18px, 2.5vw, 28px);
      display: flex; flex-direction: column; gap: 8px;
    }
    .wr-card.offset { margin-top: 28px; }
    .wr-card.gold-bg { background: rgba(201,169,110,.08); }
    .wr-title { font-size: 15px; font-weight: 700; color: var(--text-dark); }
    .wr-text  { font-size: 13.5px; line-height: 1.8; color: var(--text-gray); }

    /* ══════════════════════════════════════
       PATIENT STORIES
    ══════════════════════════════════════ */
    .stories-section { background: var(--bg-dark); position: relative; overflow: hidden; }
    .stories-glow {
      position: absolute; inset: 0; pointer-events: none; z-index: 0;
      background: radial-gradient(60% 60% at 70% 50%, rgba(201,169,110,.06) 0%, transparent 70%);
    }
    .stories-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; position: relative; z-index: 1; }
    .st-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 100px; }
    .st-stat-card {
      background: rgba(250,248,245,.06); border: 1px solid rgba(250,248,245,.13);
      border-radius: 10px; padding: 22px 22px 44px;
    }
    .st-stat-card.offset { margin-top: 24px; }
    .st-stat-num { font-size: clamp(24px, 3.5vw, 34px); font-weight: 700; color: var(--text-light); margin-bottom: 5px; letter-spacing: -1px; }
    .st-stat-text { font-size: 12.5px; color: rgba(250,248,245,.65); line-height: 1.5; }
    .st-main-card {
      background: rgba(250,248,245,.06); border: 1px solid rgba(250,248,245,.15);
      border-radius: 10px; padding: clamp(28px, 4vw, 48px);
    }
    .st-pill-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
    .st-pill {
      background: rgba(250,248,245,.1); border: 1px solid rgba(250,248,245,.12);
      border-radius: 12px; padding: 7px 14px; font-size: 12px; color: var(--text-light);
    }
    .st-stars { display: flex; gap: 3px; }
    .st-stars svg { width: 14px; height: 14px; fill: var(--gold); }
    .st-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 3vw, 32px); font-weight: 400;
      line-height: 1.45; color: var(--text-light); margin-bottom: 32px; font-style: italic;
    }
    .st-div { height: 1px; background: rgba(250,248,245,.13); margin-bottom: 26px; }
    .st-author { display: grid; grid-template-columns: clamp(140px, 16vw, 220px) 1fr; gap: 22px; align-items: center; }
    .st-author-img { border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; }
    .st-author-img img { width: 100%; height: 100%; object-fit: cover; }
    .st-author-name { font-size: clamp(17px, 2vw, 22px); font-weight: 700; color: var(--text-light); letter-spacing: -.5px; margin-bottom: 4px; }
    .st-author-role { font-size: 13px; color: rgba(250,248,245,.65); margin-bottom: 16px; }
    .st-author-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .st-as-title { font-size: 10px; font-weight: 700; letter-spacing: .15em; color: rgba(250,248,245,.5); text-transform: uppercase; margin-bottom: 4px; }
    .st-as-text  { font-size: 14px; line-height: 1.65; color: rgba(250,248,245,.75); }

    /* ══════════════════════════════════════
       DOCTORS
    ══════════════════════════════════════ */
    .doctors-section { position: relative; }
    .doc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
    .doc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
    .doc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .doc-card.offset { margin-top: 36px; }
    .doc-img { height: clamp(240px, 30vw, 360px); width: 100%; overflow: hidden; }
    .doc-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter .3s; }
    .doc-card:hover .doc-img img { filter: grayscale(0%); }
    .doc-info { padding: 20px 22px; display: flex; flex-direction: column; gap: 5px; }
    .doc-name { font-size: 19px; font-weight: 700; color: var(--text-dark); letter-spacing: -.5px; }
    .doc-role { font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; }

    /* ══════════════════════════════════════
       FAQ
    ══════════════════════════════════════ */
    .faq-section { background: rgba(243,238,231,.55); position: relative; }
    .faq-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 56px); }
    .faq-right { display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
    .faq-btn {
      width: 100%; display: flex; justify-content: space-between; align-items: center;
      padding: 22px 24px; cursor: pointer; background: none; border: none; text-align: left;
      gap: 12px;
    }
    .faq-q { font-size: 16px; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
    .faq-num { font-size: 16px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
    .faq-answer {
      max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
      padding: 0 24px;
    }
    .faq-answer p { font-size: 14px; line-height: 1.8; color: var(--text-gray); padding-bottom: 20px; }
    .faq-item.open .faq-answer { max-height: 200px; padding: 0 24px; }

    /* ══════════════════════════════════════
       JOURNAL
    ══════════════════════════════════════ */
    .journal-section { position: relative; }
    .jou-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 20px; }
    .jou-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
    .jou-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .jou-img { overflow: hidden; }
    .jou-img.main  { height: clamp(180px, 22vw, 260px); }
    .jou-img.sub   { height: clamp(150px, 18vw, 220px); }
    .jou-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
    .jou-card:hover .jou-img img { transform: scale(1.04); }
    .jou-body { padding: clamp(18px, 2.5vw, 28px); display: flex; flex-direction: column; gap: 10px; }
    .jou-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; }
    .jou-title-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 3vw, 30px); font-weight: 600;
      color: var(--text-dark); letter-spacing: -.5px; line-height: 1.25;
    }
    .jou-title-sub { font-size: clamp(15px, 1.8vw, 19px); font-weight: 700; color: var(--text-dark); letter-spacing: -.3px; line-height: 1.3; }
    .jou-text { font-size: 13.5px; line-height: 1.8; color: var(--text-gray); }
    .jou-read { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--gold); margin-top: 4px; }

    /* ══════════════════════════════════════
       CTA BAND
    ══════════════════════════════════════ */
    .cta-band { background: var(--bg-dark); padding: clamp(64px, 9vw, 120px) 0; text-align: center; }
    .cta-band h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 5vw, 62px); font-weight: 600;
      color: var(--text-light); line-height: 1.07; letter-spacing: -.02em; margin: 14px 0 16px;
    }
    .cta-band h2 em { font-style: italic; color: var(--gold-lt); }
    .cta-band p { font-size: 15px; color: rgba(250,248,245,.6); max-width: 480px; margin: 0 auto 32px; line-height: 1.75; }
    .cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer { background: var(--bg-footer); padding: clamp(48px, 7vw, 90px) 0 36px; }
    .footer-top {
      display: grid; grid-template-columns: 1.35fr 0.8fr 0.8fr 0.8fr 1fr;
      gap: clamp(20px, 4vw, 36px);
      border-bottom: 1px solid rgba(244,239,231,.1);
      padding-bottom: 40px; margin-bottom: 24px;
    }
    .footer-col { display: flex; flex-direction: column; gap: 10px; }
    .footer-brand-name { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; color: var(--text-light); letter-spacing: -1px; }
    .footer-brand-desc { font-size: 13px; line-height: 1.9; color: rgba(244,239,231,.6); max-width: 300px; margin-top: 4px; }
    .footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--text-light); text-transform: uppercase; margin-bottom: 6px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col ul a { font-size: 13.5px; color: rgba(244,239,231,.65); transition: color .18s; }
    .footer-col ul a:hover { color: var(--text-light); }
    .footer-col address { font-style: normal; font-size: 13px; color: rgba(244,239,231,.65); line-height: 1.9; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
    .footer-bottom p { font-size: 12px; color: rgba(244,239,231,.45); }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1080px) {
      .hero-grid       { grid-template-columns: 1fr; }
      .hero-right      { order: -1; max-width: 560px; margin: 0 auto; width: 100%; }
      .hero-left       { text-align: center; display: flex; flex-direction: column; align-items: center; }
      .hero-divider    { width: 100%; max-width: 400px; }
      .hero-stats      { max-width: 440px; text-align: left; }
      .features-grid   { grid-template-columns: 1fr 1fr; }
      .feature-card.offset { margin-top: 0; }
      .about-grid      { grid-template-columns: 1fr; }
      .about-img-col   { max-width: 480px; margin: 0 auto; width: 100%; }
      .about-card      { right: 0; }
      .services-grid   { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
      .services-grid .sg-card[style*="grid-area"] { grid-area: auto !important; }
      .why-grid        { grid-template-columns: 1fr; }
      .why-left        { min-height: auto; }
      .why-stats-row   { margin-top: 20px; }
      .stories-grid    { grid-template-columns: 1fr; }
      .st-stats-grid   { margin-top: 0; }
      .doc-grid        { grid-template-columns: repeat(2, 1fr); }
      .doc-card.offset { margin-top: 0; }
      .faq-grid        { grid-template-columns: 1fr; }
      .jou-grid        { grid-template-columns: 1fr 1fr; }
      .jou-grid .jou-card:first-child { grid-column: span 2; }
      .footer-top      { grid-template-columns: 1fr 1fr; }
      .insurance-grid  { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 760px) {
      .topbar-inner .tb-side:first-child .tb-item:first-child { display: none; }
      .nav-links, .nav-actions .btn-outline { display: none; }
      .hamburger { display: flex; }
      .hero-card-1, .hero-card-2 { display: none; }
      .hero-stats { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .about-features { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .pt-row { grid-template-columns: 1fr; }
      .pt-row .pt-cell:not(:first-child) { display: none; }
      .pt-row.show-mobile .pt-cell { display: flex !important; }
      .doc-grid { grid-template-columns: repeat(2, 1fr); }
      .st-author { grid-template-columns: 1fr; }
      .st-author-img { height: 220px; aspect-ratio: auto; }
      .jou-grid { grid-template-columns: 1fr; }
      .jou-grid .jou-card:first-child { grid-column: span 1; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .insurance-grid { grid-template-columns: repeat(2, 1fr); }
      .cta-btns { flex-direction: column; align-items: center; }
      .pricing-table { overflow-x: auto; }
      .pt-row { grid-template-columns: 1fr 1fr 1fr 1fr; min-width: 540px; }
    }
    @media (max-width: 480px) {
      .doc-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .why-right { grid-template-columns: 1fr; }
      .wr-card.offset { margin-top: 0; }
      .hero-actions { justify-content: center; }
    }

    /* ── KEYFRAMES ── */
    @keyframes breathe {
      0%,100% { box-shadow: 0 0 0 3px rgba(76,175,118,.18); }
      50%      { box-shadow: 0 0 0 7px rgba(76,175,118,.06); }
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @keyframes countUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: none; }
    }

    @keyframes do-float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-7px); }
    }

    /* ── HERO RATING CARD (3rd floating element) ── */
    .hero-card-3 {
      position: absolute;
      bottom: -20px; left: -4px;
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 10px; padding: 14px 16px;
      box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: 12px;
      width: clamp(160px, 18vw, 200px);
    }
    .hero-card-1,
    .hero-card-2,
    .hero-card-3,
    .about-card { animation: do-float 5.8s ease-in-out infinite; }
    .hero-card-2 { animation-delay: .3s; }
    .hero-card-3 { animation-delay: .6s; }
    .about-card { animation-delay: .4s; }
    .hc3-stars { display: flex; gap: 2px; }
    .hc3-stars svg { width: 10px; height: 10px; fill: var(--gold); }
    .hc3-score { font-size: 18px; font-weight: 700; color: var(--text-dark); letter-spacing: -1px; line-height: 1; }
    .hc3-label { font-size: 10.5px; color: var(--text-gray); line-height: 1.4; margin-top: 2px; }
    .hc3-avail-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #4caf76; flex-shrink: 0;
      animation: breathe 2s infinite;
    }
    @media (max-width: 760px) { .hero-card-3 { display: none; } }

    /* ── MARQUEE STRIP ── */
    .marquee-strip {
      background: var(--bg-dark);
      padding: 0; overflow: hidden;
      border-top: 1px solid rgba(250,248,245,.06);
      border-bottom: 1px solid rgba(250,248,245,.06);
      width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
    }
    .marquee-track {
      display: flex; white-space: nowrap;
      animation: marquee 30s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-item {
      display: inline-flex; align-items: center; gap: 14px;
      padding: 17px 28px;
      font-size: 11.5px; font-weight: 500; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(250,248,245,.4);
      flex-shrink: 0;
    }
    .marquee-dot {
      width: 3px; height: 3px; border-radius: 50%;
      background: var(--gold); opacity: .55; flex-shrink: 0;
    }
    .marquee-item.gold { color: var(--gold); opacity: .8; }

    /* ── NUMBERS BAND ── */
    .numbers-band {
      background: rgba(243,238,231,.55);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .numbers-inner {
      display: grid; grid-template-columns: repeat(4, 1fr);
    }
    .num-cell {
      padding: clamp(32px,5vw,52px) clamp(20px,3vw,40px);
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .num-cell:last-child { border-right: none; }
    .num-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px,6vw,68px); font-weight: 500;
      color: var(--text-dark); line-height: 1; letter-spacing: -.04em;
      margin-bottom: 8px;
    }
    .num-val span { font-size: .55em; color: var(--gold); vertical-align: super; }
    .num-label { font-size: 11.5px; color: var(--text-gray); text-transform: uppercase; letter-spacing: .08em; }
    .num-cell.vis .num-val { animation: countUp .6s ease both; }
    @media (max-width: 760px) {
      .numbers-inner { grid-template-columns: 1fr 1fr; }
      .num-cell:nth-child(2) { border-right: none; }
      .num-cell:nth-child(3) { border-top: 1px solid var(--border); }
    }

    /* ── BEFORE / AFTER GALLERY ── */
    .ba-section { background: var(--bg-dark); }
    .ba-header { text-align: center; margin-bottom: clamp(36px,5vw,56px); }
    .ba-header .eyebrow { justify-content: center; }
    .ba-header .eyebrow-text { color: rgba(201,169,110,.8); }
    .ba-header .eyebrow-line { background: rgba(201,169,110,.6); }
    .ba-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px,4.5vw,52px); font-weight: 500;
      color: var(--text-light); line-height: 1.07; letter-spacing: -.025em;
      margin: 12px 0 14px;
    }
    .ba-header h2 em { font-style: italic; color: var(--gold); }
    .ba-header p { font-size: 14.5px; color: rgba(250,248,245,.5); max-width: 440px; margin: 0 auto; }
    .ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .ba-card {
      background: rgba(250,248,245,.04); border: 1px solid rgba(250,248,245,.1);
      border-radius: 10px; overflow: hidden; cursor: pointer;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .ba-imgs { position: relative; height: clamp(160px,22vw,260px); overflow: hidden; }
    .ba-before, .ba-after { position: absolute; inset: 0; }
    .ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; }
    .ba-after { clip-path: inset(0 50% 0 0); transition: clip-path .45s ease; }
    .ba-card:hover .ba-after { clip-path: inset(0 0% 0 0); }
    .ba-card.show-after .ba-after { clip-path: inset(0 0% 0 0); }
    .ba-handle {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      z-index: 3; width: 26px; height: 26px; background: var(--bg-card);
      border-radius: 6px; display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-md); transition: opacity .25s;
    }
    .ba-card:hover .ba-handle { opacity: 0; }
    .ba-card.show-after .ba-handle { opacity: 0; }
    .ba-labels {
      position: absolute; bottom: 10px; left: 10px; right: 10px;
      z-index: 2; display: flex; justify-content: space-between;
    }
    .ba-lbl {
      background: rgba(250,248,245,.88); color: var(--text-dark);
      font-size: 9px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
    }
    .ba-body { padding: 18px 20px; }
    .ba-treatment { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
    .ba-name { font-size: clamp(15px,1.8vw,18px); font-weight: 700; color: var(--text-light); letter-spacing: -.3px; }
    .ba-sub { font-size: 12px; color: rgba(250,248,245,.45); margin-top: 3px; }
    .ba-note { text-align: center; margin-top: 32px; font-size: 12px; color: rgba(250,248,245,.28); font-style: italic; }
    @media (max-width: 760px) {
      .ba-grid { grid-template-columns: 1fr; }
    }

    /* ── DENTALORA HERO STACK (ThemeForest compliance utilities) ── */
    .dentalora-hero-stack { grid-template-columns: 1fr; }
    .hero-right-delayed { transition-delay: .1s; }
    .hero-img-full { width: 90%; height: 100%; border-radius: 0; }
    .hero-img-cover { width: 100%; height: 100%; object-fit: cover; }
    .eyebrow-mb-0 { margin-bottom: 0; }
    .dentalora-hero-stack .hero-img-secondary { bottom: 40px; }

    @media (prefers-reduced-motion: reduce) {
      .fu,
      .do-anim-ready .fu,
      .do-hover-tilt,
      .do-parallax,
      .hero-card-1,
      .hero-card-2,
      .hero-card-3,
      .about-card,
      .btn,
      .btn::after,
      .do-ripple {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
      }
    }
  
    /* Responsive safety layer */
    :root { --mobile-gutter: clamp(14px, 4vw, 22px); }
    html, body { max-width: 100%; overflow-x: clip; }
    .container { width: min(100%, 1340px); }
    img, svg, video, canvas, iframe { max-width: 100%; height: auto; }
    table { display: block; width: 100%; overflow-x: auto; }
    [class*="grid"], [class*="col"], [class*="card"], [class*="item"] { min-width: 0; }

    @media (max-width: 1024px) {
      .container {
        padding-left: var(--mobile-gutter) !important;
        padding-right: var(--mobile-gutter) !important;
      }
    }

    @media (max-width: 768px) {
      [class*="grid"] { grid-template-columns: 1fr !important; }
      [class*="hero-ctas"], [class*="nav-actions"], [class*="mob-btns"], [class*="cta-actions"], [class*="actions"] {
        flex-wrap: wrap;
      }
      .btn, button, a.btn { max-width: 100%; }
    }
  