/* ═══════════════════════════════════════════════════
   Luxury Chiropractic Sticky Navigation — 8f2bf243
   ═══════════════════════════════════════════════════ */

/* ── Header Bar ── */
.lcnav-8f2bf243 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    filter: saturate(100%);
    border-bottom: 1px solid transparent;
    transition: background 400ms ease-out,
                backdrop-filter 400ms ease-out,
                -webkit-backdrop-filter 400ms ease-out,
                filter 400ms ease-out,
                border-bottom-color 400ms ease-out;
    box-sizing: border-box;
}

.lcnav-8f2bf243.lcnav-8f2bf243--scrolled {
    background: rgba(15, 10, 26, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: rgba(212, 175, 55, 0.12);
}

.lcnav-8f2bf243-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* ── Logo Link ── */
.lcnav-8f2bf243-logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 200ms ease;
}

.lcnav-8f2bf243-logo-link:hover {
    opacity: 0.85;
}

.lcnav-8f2bf243-logo-link:focus {
    outline: 1px solid rgba(212, 175, 55, 0.5);
    outline-offset: 4px;
    border-radius: 2px;
}

/* ── Logo ── */
.lcnav-8f2bf243-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lcnav-8f2bf243-logo-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    color: #F5F2FA;
    line-height: 1.2;
    white-space: nowrap;
}

.lcnav-8f2bf243-logo-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 0.625rem;
    letter-spacing: 0.24em;
    color: #D4AF37;
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
}

/* ── Nav Links ── */
.lcnav-8f2bf243-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lcnav-8f2bf243-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 242, 250, 0.8);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 300ms ease;
}

.lcnav-8f2bf243-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width 350ms ease;
}

.lcnav-8f2bf243-link:hover {
    color: rgba(245, 242, 250, 1.0);
}

.lcnav-8f2bf243-link:hover::after {
    width: 100%;
}

/* ── Reserve Button ── */
.lcnav-8f2bf243-cta-wrap {
    flex-shrink: 0;
}

.lcnav-8f2bf243-reserve {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F5F2FA;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #A73EFF 0%, #C788FF 100%);
    box-shadow: 0 0 24px rgba(167, 62, 255, 0.32);
    transition: transform 250ms ease, box-shadow 250ms ease;
    white-space: nowrap;
}

.lcnav-8f2bf243-reserve:hover {
    transform: scale(1.03);
    box-shadow: 0 0 36px rgba(167, 62, 255, 0.52);
    color: #F5F2FA;
}

/* ── Hamburger ── */
.lcnav-8f2bf243-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
}

.lcnav-8f2bf243-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #F5F2FA;
    border-radius: 2px;
    transition: transform 350ms ease, opacity 350ms ease;
    transform-origin: center center;
}

.lcnav-8f2bf243-hamburger.lcnav-8f2bf243-hamburger--active .lcnav-8f2bf243-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lcnav-8f2bf243-hamburger.lcnav-8f2bf243-hamburger--active .lcnav-8f2bf243-bar:nth-child(2) {
    opacity: 0;
}

.lcnav-8f2bf243-hamburger.lcnav-8f2bf243-hamburger--active .lcnav-8f2bf243-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Overlay ── */
.lcnav-8f2bf243-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 10, 26, 0.6);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 350ms ease, visibility 350ms ease;
}

.lcnav-8f2bf243-overlay.lcnav-8f2bf243-overlay--visible {
    opacity: 1;
    visibility: visible;
}

/* ── Mobile Drawer ── */
.lcnav-8f2bf243-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: rgba(15, 10, 26, 0.95);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 350ms ease, visibility 350ms ease, transform 350ms ease;
}

.lcnav-8f2bf243-drawer.lcnav-8f2bf243-drawer--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lcnav-8f2bf243-drawer-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 242, 250, 0.8);
    text-decoration: none;
    transition: color 300ms ease;
}

.lcnav-8f2bf243-drawer-link:hover {
    color: rgba(245, 242, 250, 1.0);
}

.lcnav-8f2bf243-drawer-reserve {
    margin-top: 12px;
}

/* ── Mobile Breakpoint ── */
@media (max-width: 980px) {
    .lcnav-8f2bf243-links {
        display: none;
    }

    .lcnav-8f2bf243-cta-wrap {
        display: none;
    }

    .lcnav-8f2bf243-hamburger {
        display: flex;
    }

    .lcnav-8f2bf243-inner {
        padding: 0 20px;
    }
}

@media (min-width: 981px) {
    .lcnav-8f2bf243-drawer {
        display: none !important;
    }

    .lcnav-8f2bf243-overlay {
        display: none !important;
    }
}


/* ============================================================
   Menu-driven dropdowns - editorial mega-panels (v2)
   ============================================================ */

.lcnav-8f2bf243-inner { position: relative; }

.lcnav-8f2bf243-item {
    position: static;
    display: inline-flex;
    align-items: center;
}

.lcnav-8f2bf243-trigger {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.lcnav-8f2bf243-caret {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-1px) rotate(45deg);
    transition: transform 300ms ease;
    opacity: 0.65;
}

.lcnav-8f2bf243-item.is-open .lcnav-8f2bf243-caret {
    transform: translateY(1px) rotate(-135deg);
}

.lcnav-8f2bf243-item.is-open > .lcnav-8f2bf243-trigger { color: rgba(245, 242, 250, 1); }
.lcnav-8f2bf243-item.is-open > .lcnav-8f2bf243-trigger::after { width: 100%; }

.lcnav-8f2bf243--panel-open {
    background: rgba(15, 10, 26, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: rgba(212, 175, 55, 0.12);
}

.lcnav-8f2bf243-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(24, 18, 42, 0.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 360ms ease, transform 360ms ease, visibility 360ms ease;
    z-index: 95;
}

.lcnav-8f2bf243-item.is-open .lcnav-8f2bf243-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lcnav-8f2bf243-panel--mega { display: flex; align-items: stretch; }

.lcnav-8f2bf243-feature {
    width: 38%;
    padding: 30px 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
}

.lcnav-8f2bf243-feature-kicker {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.625rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 16px;
}

.lcnav-8f2bf243-feature-headline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.65rem;
    line-height: 1.14;
    color: #F5F2FA;
    margin-bottom: 18px;
}

.lcnav-8f2bf243-feature-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #B794FF;
    text-decoration: none;
    margin-top: auto;
    transition: color 250ms ease;
}
.lcnav-8f2bf243-feature-link span { color: #D4AF37; }
.lcnav-8f2bf243-feature-link:hover { color: #F5F2FA; }

.lcnav-8f2bf243-panel--mega .lcnav-8f2bf243-panel-items {
    flex: 1;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lcnav-8f2bf243-panel--flyout { right: auto; width: 300px; }
.lcnav-8f2bf243-panel--flyout .lcnav-8f2bf243-panel-items { padding: 14px; }

.lcnav-8f2bf243-panel-link {
    display: block;
    padding: 12px 20px;
    border-left: 2px solid transparent;
    text-decoration: none;
    transition: background 220ms ease, border-color 220ms ease;
}
.lcnav-8f2bf243-panel-link:hover {
    background: rgba(167, 62, 255, 0.08);
    border-left-color: #D4AF37;
}
.lcnav-8f2bf243-panel-link-title {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    color: #F5F2FA;
    margin-bottom: 3px;
}
.lcnav-8f2bf243-panel-link-desc {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #9B96AE;
}

.lcnav-8f2bf243-drawer { overflow-y: auto; }
.lcnav-8f2bf243-drawer-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lcnav-8f2bf243-drawer-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 242, 250, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}
.lcnav-8f2bf243-drawer-toggle:hover { color: rgba(245, 242, 250, 1); }
.lcnav-8f2bf243-drawer-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 360ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.lcnav-8f2bf243-drawer-group.is-open .lcnav-8f2bf243-drawer-sub {
    max-height: 480px;
    padding-top: 16px;
}
.lcnav-8f2bf243-drawer-sublink {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 242, 250, 0.6);
    text-decoration: none;
    transition: color 250ms ease;
}
.lcnav-8f2bf243-drawer-sublink:hover { color: rgba(245, 242, 250, 1); }

@media (max-width: 980px) {
    .lcnav-8f2bf243-panel { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    .lcnav-8f2bf243-panel,
    .lcnav-8f2bf243-caret,
    .lcnav-8f2bf243-drawer-sub { transition: none !important; }
    .lcnav-8f2bf243-panel { transform: none !important; }
}

/* LOGO-IMG-START */
header.lcnav-8f2bf243 .lcnav-8f2bf243-logo-link{display:flex;align-items:center;gap:16px;}
header.lcnav-8f2bf243 .lcnav-8f2bf243-logo-img{height:var(--lc-logo-h,46px)!important;max-height:var(--lc-logo-h,46px)!important;width:auto!important;min-height:0!important;display:block;flex-shrink:0;filter:drop-shadow(0 2px 5px rgba(15,10,26,0.65)) drop-shadow(0 0 16px rgba(140,82,255,0.35));}
@media (max-width:782px){header.lcnav-8f2bf243 .lcnav-8f2bf243-logo-img{height:calc(var(--lc-logo-h,46px) * 0.82)!important;max-height:calc(var(--lc-logo-h,46px) * 0.82)!important;}}
/* LOGO-IMG-END */

/* NO-BLUE-START: neutralize theme button hover/focus inside nav */
.lcnav-8f2bf243-hamburger:hover,
.lcnav-8f2bf243-hamburger:focus,
.lcnav-8f2bf243-hamburger:active,
.lcnav-8f2bf243-drawer-toggle:hover,
.lcnav-8f2bf243-drawer-toggle:focus,
.lcnav-8f2bf243-drawer-toggle:active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none;
}
.lcnav-8f2bf243-hamburger:focus-visible,
.lcnav-8f2bf243-drawer-toggle:focus-visible {
    outline: 1px solid rgba(212, 175, 55, 0.5);
    outline-offset: 4px;
    border-radius: 2px;
}
/* NO-BLUE-END */

/* DRAWER-GOLD-START: drawer hover = gold underline sweep + purple glow (match desktop) */
.lcnav-8f2bf243-hamburger,
.lcnav-8f2bf243-drawer-link,
.lcnav-8f2bf243-drawer-toggle,
.lcnav-8f2bf243-drawer-sublink {
    -webkit-tap-highlight-color: transparent;
}
.lcnav-8f2bf243-drawer-link,
.lcnav-8f2bf243-drawer-toggle {
    position: relative;
    padding-bottom: 6px;
    user-select: none;
    -webkit-user-select: none;
    transition: color 300ms ease, text-shadow 300ms ease;
}
.lcnav-8f2bf243-drawer-link::after,
.lcnav-8f2bf243-drawer-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width 350ms ease;
}
.lcnav-8f2bf243-drawer-link:hover,
.lcnav-8f2bf243-drawer-link:focus-visible,
.lcnav-8f2bf243-drawer-toggle:hover,
.lcnav-8f2bf243-drawer-toggle:focus-visible,
.lcnav-8f2bf243-drawer-group.is-open .lcnav-8f2bf243-drawer-toggle {
    color: #F5F2FA;
    text-shadow: 0 0 18px rgba(167, 62, 255, 0.85), 0 0 38px rgba(167, 62, 255, 0.45);
}
.lcnav-8f2bf243-drawer-link:hover::after,
.lcnav-8f2bf243-drawer-link:focus-visible::after,
.lcnav-8f2bf243-drawer-toggle:hover::after,
.lcnav-8f2bf243-drawer-toggle:focus-visible::after,
.lcnav-8f2bf243-drawer-group.is-open .lcnav-8f2bf243-drawer-toggle::after {
    width: 100%;
}
.lcnav-8f2bf243-drawer-sublink:hover,
.lcnav-8f2bf243-drawer-sublink:focus-visible {
    color: #F5F2FA;
    text-shadow: 0 0 14px rgba(167, 62, 255, 0.7);
}
.lcnav-8f2bf243-drawer *::selection { background: transparent; }
/* DRAWER-GOLD-END */

/* RWD-20260820-START: responsive nav repair.
   Desktop row needs ~1147px; below that the Reserve pill and last links sat off-screen.
   Drawer now serves everything <=980; compact desktop tier carries 981-1199. */
@media (min-width: 981px) and (max-width: 1199px) {
    .lcnav-8f2bf243-inner { padding: 0 22px; }
    .lcnav-8f2bf243-links { gap: 15px; }
    .lcnav-8f2bf243-link { font-size: 0.78125rem; letter-spacing: 0.07em; }
    .lcnav-8f2bf243-reserve { padding: 11px 18px; font-size: 0.75rem; letter-spacing: 0.1em; }
    .lcnav-8f2bf243-logo-title { font-size: 1.1rem; }
    .lcnav-8f2bf243-logo-subtitle { font-size: 0.5625rem; }
}
/* drawer: center when content fits, top-align + scroll when it does not
   (justify-content:center + overflow makes the top unreachable) */
@media (max-width: 980px) {
    .lcnav-8f2bf243-drawer { justify-content: flex-start; padding: 96px 24px 48px; }
    .lcnav-8f2bf243-drawer > :first-child { margin-top: auto; }
    .lcnav-8f2bf243-drawer > :last-child { margin-bottom: auto; }
}
/* landscape phones: tighter rhythm so the menu breathes in 390px of height */
@media (max-width: 980px) and (max-height: 620px) {
    .lcnav-8f2bf243-drawer { gap: 16px; }
    .lcnav-8f2bf243-drawer-link, .lcnav-8f2bf243-drawer-toggle { font-size: 1.05rem; }
}
/* comfortable tap targets on drawer sublinks */
.lcnav-8f2bf243-drawer-sublink { padding: 8px 12px; }
/* RWD-20260820-END */

/* RWD2-20260820: logo compact at phone - wordmark was colliding with the hamburger at 390px */
@media (max-width: 480px) {
    .lcnav-8f2bf243-logo-title { font-size: 1rem; letter-spacing: 0.09em; }
    .lcnav-8f2bf243-logo-subtitle { font-size: 0.5rem; letter-spacing: 0.2em; }
    .lcnav-8f2bf243-logo-link { gap: 10px; }
    header.lcnav-8f2bf243 .lcnav-8f2bf243-logo-img { height: 34px !important; max-height: 34px !important; }
}
