/*
Theme Name: Parker Medical
Theme URI: https://parkermedical.org
Author: Parker Medical
Description: Custom high-performance theme for Parker Medical - Las Vegas Concierge Medicine. Includes 9 interactive quizzes, staff lead dashboard, GA4/GTM analytics, premium mega menu, and full TOFU/MOFU/BOFU funnel architecture.
Version: 48.1.0-macbach
*/

/* =========================================
   1. GLOBAL RESET & VIEWPORT LOCK
   ========================================= */
* { box-sizing: border-box; }

/* NUCLEAR WIGGLE FIX */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

:root {
    --font-primary: 'Poppins', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-serif-alt: 'Playfair Display', serif;
    
    /* COLORS - Parker Dark Theme */
    --color-black: #0a0a0a;     
    --color-white: #F5F2EB;
    --color-offwhite: #1a1a1a;
    --color-accent: #C9A66B; 
    --color-gold: #C9A66B;
    --color-warm-pink: #0f0f0f;
    --color-gray-600: #4d4d4d;
    --color-gray-400: #808080;
    
    /* DIMENSIONS */
    --header-height-desktop: 90px;
    --header-height-mobile: 70px;
    
    /* HERO SPACING (ADJUSTED FOR STICKY HEADER) */
    --hero-pad-top-desktop: 120px; 
    --hero-pad-top-mobile: 60px;
    
    /* EASING */
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

body { 
    margin: 0; padding: 0; font-family: var(--font-primary); 
    color: var(--color-white); background-color: var(--color-black); 
    line-height: 1.6; -webkit-font-smoothing: antialiased; 
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

/* =========================================
   ACCESSIBILITY - Focus Styles
   ========================================= */

/* High-contrast focus ring for keyboard navigation on dark theme */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Remove default focus for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Button-specific focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="menuitem"]:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* Cards and interactive elements get subtle gold glow */
.service-macbach-card:focus-visible,
.related-card-macbach:focus-visible,
.specialized-card-macbach:focus-visible,
.mega-featured-card-lg:focus-visible,
.mega-shop-card:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.2);
}

/* FAQ accordion buttons */
.faq-item-macbach button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Skip link - ensure visible on focus */
.skip-link:focus,
.skip-link:focus-visible {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 99999;
    padding: 12px 24px;
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* =========================================
   FAQ ACCORDION - Accessible Toggle
   ========================================= */

.faq-item-macbach { border-bottom: 1px solid rgba(245,242,235,0.1); }
.faq-item-macbach:last-child { border-bottom: none; }

.faq-item-macbach h3 {
    margin: 0;
    padding: 0;
}

.faq-item-macbach h3 button {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    margin: 0;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    text-align: left;
    line-height: 1.4;
}

.faq-item-macbach h3 button::after {
    content: '+';
    font-size: 1.4em;
    font-weight: 300;
    color: var(--color-gold);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item-macbach.is-open h3 button::after {
    content: '−';
}

.faq-item-macbach p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
    padding: 0 0 0 0;
}

.faq-item-macbach.is-open p {
    max-height: 500px;
    padding: 0 0 20px 0;
}

/* CONTAINER */
.macbach-container { 
    max-width: 1400px; margin: 0 auto; padding: 0 40px; width: 100%;
}
.macbach-wrapper { position: relative; z-index: 10; background: var(--color-black); }

/* =========================================
   GEO MAP — Driving Directions Section
   ========================================= */

.section-geo-map {
    padding: 80px 0;
    background: var(--color-offwhite);
}

.geo-map-address {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(245, 242, 235, 0.5);
    margin-bottom: 32px;
    text-align: center;
}

.geo-map-address a {
    color: var(--color-gold);
}

.geo-map-embed {
    width: 100%;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 166, 107, 0.12);
}

.geo-map-embed iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

.geo-map-cta {
    text-align: center;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .section-geo-map { padding: 60px 0; }
    .geo-map-embed iframe { min-height: 300px; }
}

/* =========================================
   CREDENTIALS BAR - Dr. Parker Trust Signals
   ========================================= */

.section-credentials {
    padding: 80px 0;
    background: var(--color-offwhite);
    border-top: 1px solid rgba(245,242,235,0.06);
    border-bottom: 1px solid rgba(245,242,235,0.06);
}

.credentials-heading {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-white);
    margin: 0 0 40px 0;
    text-align: center;
}

.credentials-heading em {
    font-style: normal;
    color: var(--color-gold);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    align-items: center;
    justify-items: center;
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.credential-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%) brightness(1.8);
    transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}

.credential-item:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* Color logos (ACPP) - show muted color at rest, full on hover */
.credential-item-color img {
    filter: grayscale(30%) brightness(1);
    opacity: 0.8;
}

.credential-item-color:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.credential-label {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gray-400);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .credentials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 24px;
    }
}

@media (max-width: 600px) {
    .section-credentials { padding: 60px 0; }
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }
    .credential-item img {
        width: 64px;
        height: 64px;
    }
    .credential-label {
        font-size: 10px;
    }
}

/* =========================================
   HEADER & NAVIGATION - Parker Medical
   Bold, Clean, Luxury Medical
   ========================================= */

/* Main Header */
.header-parker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.header-parker.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-inner-parker {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

.header-container-parker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    gap: 60px;
}

/* Logo */
.header-logo-parker {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-parker .logo-svg {
    height: 101px;
    width: auto;
    transition: all 0.3s ease;
}

.header-parker.scrolled .header-logo-parker .logo-svg {
    height: 72px;
}

/* Desktop Navigation - Centered */
.header-nav-parker {
    display: none;
    flex: 1;
    justify-content: center;
}

@media (min-width: 1025px) {
    .header-nav-parker {
        display: flex;
    }
}

.nav-menu-parker {
    display: flex;
    align-items: center;
    gap: 56px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-parker > li {
    position: relative;
}

.nav-menu-parker > li > a,
.nav-menu-parker > li > button.mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px 4px;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-menu-parker > li > a:hover,
.nav-menu-parker > li > button.mega-trigger:hover,
.nav-menu-parker > li.has-mega-dropdown:hover > button.mega-trigger {
    color: var(--color-gold);
}

.mega-arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.6;
}

.has-mega-dropdown:hover .mega-arrow,
.mega-dropdown.mega-open ~ .mega-trigger .mega-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Also trigger on parent hover since arrow is child of trigger */
.has-mega-dropdown .mega-trigger[aria-expanded="true"] .mega-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Header CTA - Right Aligned */
.header-cta-parker {
    display: none;
    flex-shrink: 0;
}

@media (min-width: 1025px) {
    .header-cta-parker {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}

.header-portal-parker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #c9a66b;
    padding: 14px 24px;
    border-radius: 0;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.header-portal-parker:hover {
    background: #d4b17a;
    color: #0a0a0a;
    transform: translateY(-1px);
}

.header-portal-parker svg {
    width: 14px;
    height: 14px;
    stroke: #0a0a0a;
}

/* Mobile Toggle */
.mobile-toggle-parker {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    position: relative;
    z-index: 10000;
    margin-left: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

@media (max-width: 1024px) {
    .mobile-toggle-parker {
        display: flex;
    }
    
    .header-cta-parker {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .mobile-toggle-parker {
        display: none !important;
    }
}

.toggle-line {
    width: 24px;
    height: 1.5px;
    background: var(--color-white);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.mobile-toggle-parker.is-active .toggle-line:first-child {
    transform: translateY(3.75px) rotate(45deg);
    background: var(--color-gold);
}

.mobile-toggle-parker.is-active .toggle-line:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
    background: var(--color-gold);
}

/* =========================================
   MEGA MENU - Premium Services Dropdown
   ========================================= */

.mega-dropdown {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(201, 166, 107, 0.2);
    box-shadow: 
        0 1px 0 0 rgba(201, 166, 107, 0.08),
        0 40px 100px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    opacity: 0;
    visibility: hidden;
    display: none;
    transform: translateY(-8px);
    transition: 
        opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.35s;
    z-index: 1000;
}

.header-parker.scrolled .mega-dropdown {
    top: 80px;
}

/* JS-controlled open state */
.mega-dropdown.mega-open {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 48px 60px;
}

/* ---- Featured Row: Two Hero Cards ---- */
.mega-featured-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-featured-card-lg {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.06) 0%, rgba(201, 166, 107, 0.02) 100%);
    border: 1px solid rgba(201, 166, 107, 0.12);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gold accent line at top of card */
.mega-featured-card-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a66b, #d4b17a);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-featured-card-lg:hover {
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.1) 0%, rgba(201, 166, 107, 0.04) 100%);
    border-color: rgba(201, 166, 107, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.mega-featured-card-lg:hover::before {
    width: 100%;
}

.mega-featured-label {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.mega-featured-title-lg {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
}

.mega-featured-desc-lg {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.mega-featured-cta {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-gold);
    margin-top: 8px;
    transition: all 0.3s ease;
}

.mega-featured-card-lg:hover .mega-featured-cta {
    color: #d4b17a;
    letter-spacing: 1px;
}

/* ---- Services Grid: Four Columns ---- */
.mega-services-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 0.8fr;
    gap: 40px;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-col-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 166, 107, 0.15);
}

.mega-link {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    padding: 9px 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 2px solid transparent;
    padding-left: 0;
    white-space: nowrap;
}

.mega-link:hover {
    color: #fff;
    border-left-color: var(--color-gold);
    padding-left: 12px;
}

/* CTA Column */
.mega-col-cta {
    display: flex;
    flex-direction: column;
}

.mega-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--color-gold);
    color: var(--color-black);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-cta-card:hover {
    background: #d4b17a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 166, 107, 0.2);
}

.mega-cta-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.mega-cta-card:hover .mega-cta-arrow {
    transform: translateX(6px);
}

.mega-link-all {
    display: block;
    font-family: var(--font-primary);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    transition: color 0.25s ease;
}

.mega-link-all:hover {
    color: var(--color-gold);
}

/* ---- Shop Mega Menu ---- */
.mega-dropdown-shop {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: auto;
    min-width: 680px;
    max-width: 720px;
}

.mega-dropdown-shop.mega-open {
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown-shop .mega-dropdown-inner {
    padding: 40px 44px;
    max-width: none;
}

.mega-shop-headline {
    display: block;
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 28px;
}

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

.mega-shop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-shop-card:hover {
    background: rgba(201, 166, 107, 0.06);
    border-color: rgba(201, 166, 107, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.mega-shop-card:hover::before {
    width: 100%;
}

.shop-brand {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.shop-category {
    font-family: var(--font-primary);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.shop-code {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gold);
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(201, 166, 107, 0.12);
}

/* =========================================
   MOBILE MENU
   ========================================= */

.mobile-menu-parker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    display: none;
    flex-direction: column;
    padding: 120px 32px 40px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#mobile-menu.is-active,
.mobile-menu-parker.is-active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1;
}

.mobile-menu-inner-parker {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-parker ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-parker > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-parker > ul > li > a,
.mobile-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 0;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.25s ease;
}

.mobile-nav-parker > ul > li > a:hover,
.mobile-accordion-trigger:hover {
    color: var(--color-gold);
}

.accordion-icon {
    width: 12px;
    height: 12px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--color-white);
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    width: 12px;
    height: 2px;
    top: 5px;
    left: 0;
}

.accordion-icon::after {
    width: 2px;
    height: 12px;
    top: 0;
    left: 5px;
}

.mobile-accordion-trigger[aria-expanded="true"] .accordion-icon::after {
    transform: rotate(90deg);
}

.mobile-accordion-content {
    display: none;
    padding: 0 0 20px 0;
}

.mobile-accordion-content.active {
    display: block !important;
}

.mobile-accordion-content a {
    display: block;
    padding: 14px 0 14px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    border-left: 2px solid rgba(201, 166, 107, 0.15);
    transition: all 0.25s ease;
}

.mobile-accordion-content a:hover {
    color: var(--color-gold);
    border-left-color: var(--color-gold);
    padding-left: 24px;
}

.mobile-cta-parker {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-cta-parker .btn-macbach-primary {
    text-align: center;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-gold);
    border: 1px solid rgba(201, 166, 107, 0.3);
}

/* Responsive Header — Mobile */
@media (max-width: 1024px) {
    .header-inner-parker {
        padding: 0 20px;
    }
    
    .header-container-parker {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        gap: 0;
    }
    
    .header-logo-parker {
        flex: 0 0 auto;
    }
    
    .header-logo-parker .logo-svg {
        height: 64px;
    }
    
    .header-nav-parker {
        display: none !important;
    }
    
    .header-cta-parker {
        display: none !important;
    }
    
    .mobile-toggle-parker {
        display: flex;
        flex: 0 0 auto;
        margin-left: auto;
    }
}

/* =========================================
   2. TYPOGRAPHY & BUTTONS
   ========================================= */
/* NEW HERO TYPOGRAPHY DESIGN */
.mega-h1 {
    font-size: clamp(40px, 6vw, 100px); 
    line-height: 1.1; 
    font-weight: 800;
    letter-spacing: -0.02em; 
    text-transform: uppercase; 
    margin-bottom: 50px; 
    color: var(--color-black);
    text-align: left;
}

/* The "Care" and "Scale" Italic Serif Parts */
.mega-h1 .serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    display: block; /* Forces new line */
    font-size: 1.2em; /* Slightly larger */
    margin-top: -10px;
    margin-bottom: 20px;
}

.section-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; color: #999; display: block; margin-bottom: 30px;
    position: relative; padding-left: 30px;
}
.section-label::before { 
    content: ''; position: absolute; left: 0; top: 50%; width: 20px; height: 1px; background: var(--color-gold); 
}

.btn-outline { 
    display: inline-flex; align-items: center; justify-content: center;
    height: 56px; padding: 0 40px; border: 1px solid var(--color-black); color: var(--color-black); 
    text-transform: uppercase; font-weight: 700; letter-spacing: 2px; font-size: 11px; 
    margin-top: 40px; transition: 0.3s; cursor: pointer; background: transparent; line-height: 1;
}
.btn-outline:hover { background: var(--color-black); color: white; border-color: var(--color-black); }

/* Primary Button (Gold) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 40px;
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    text-decoration: none;
    border: 1px solid var(--color-gold);
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}
.btn-primary:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* Secondary Button (Navy) */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 40px;
    background: var(--color-black);
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    text-decoration: none;
    border: 1px solid var(--color-black);
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}
.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

/* =========================================
   3. NAVIGATION (STICKY FIX)
   ========================================= */
.nav-header {
    position: sticky;
    top: 0;
    width: 100%; 
    padding: 20px 40px; 
    background: rgba(255,255,255,0.98); 
    backdrop-filter: blur(10px); 
    z-index: 2000; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

/* Transparent Header for Homepage (Dark Hero) */
.home,
.page-template-front-page {
    background: #000d1f;
}

.home .macbach-wrapper,
.page-template-front-page .macbach-wrapper {
    background: transparent;
}

/* Alert bar on homepage - ABOVE header, gold background */
.home .fresh-alert-bar,
.page-template-front-page .fresh-alert-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fffbf0; /* Cream/gold background */
    border-bottom: 1px solid #e6dbb9;
    color: var(--color-black);
    z-index: 2002;
    padding: 10px 0;
}

.home .fresh-alert-bar .fresh-badge,
.page-template-front-page .fresh-alert-bar .fresh-badge {
    background: var(--color-gold);
    color: var(--color-black);
}

.home .fresh-alert-bar .fresh-label,
.page-template-front-page .fresh-alert-bar .fresh-label {
    color: var(--color-black);
}

.home .fresh-alert-bar .fresh-link,
.page-template-front-page .fresh-alert-bar .fresh-link {
    color: var(--color-black);
    border-bottom-color: var(--color-gold);
}

.home .fresh-alert-bar .fresh-close,
.page-template-front-page .fresh-alert-bar .fresh-close {
    color: rgba(0,33,71,0.4);
}

.home .fresh-alert-bar .fresh-close:hover,
.page-template-front-page .fresh-alert-bar .fresh-close:hover {
    color: var(--color-black);
}

/* Header on homepage - below alert bar */
.home .nav-header,
.page-template-front-page .nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0,21,47,0.95);
    backdrop-filter: blur(10px);
    border-bottom: none;
    z-index: 2001;
}

/* When alert bar exists, push header down */
.home .fresh-alert-bar ~ .nav-header,
.page-template-front-page .fresh-alert-bar ~ .nav-header {
    top: 44px; /* Height of alert bar */
}

.home .nav-logo,
.page-template-front-page .nav-logo {
    color: var(--color-white);
}

.home .nav-logo-img,
.page-template-front-page .nav-logo-img {
    filter: brightness(0) invert(1);
}

.home .nav-cta,
.page-template-front-page .nav-cta {
    background: var(--color-accent);
    color: var(--color-white);
}

.home .nav-cta:hover,
.page-template-front-page .nav-cta:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.home .menu-trigger,
.page-template-front-page .menu-trigger {
    color: var(--color-white);
}

.home .nav-search-btn,
.page-template-front-page .nav-search-btn {
    color: var(--color-white);
}

.home .nav-search-btn:hover,
.page-template-front-page .nav-search-btn:hover {
    color: var(--color-gold);
}

.nav-logo { 
    font-weight: 700; 
    font-size: 22px; 
    letter-spacing: -1px; 
    color: var(--color-black); 
    z-index: 2002; 
    display: flex; 
    align-items: center;
}

.nav-logo-img { 
    height: auto; 
    width: 180px;
    max-width: 180px;
    object-fit: contain;
}

/* Header Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2002;
}

/* Header Search Button */
.nav-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-black);
    transition: 0.3s;
}

.nav-search-btn:hover {
    color: var(--color-gold);
}

/* Header CTA Button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-black);
    color: var(--color-white);
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

.nav-cta-icon {
    transition: transform 0.3s var(--ease);
}

.nav-cta:hover .nav-cta-icon {
    transform: translateX(4px);
}

.menu-trigger { 
    cursor: pointer; 
    z-index: 2002; 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 15px;
    background: none; 
    border: none; 
    color: var(--color-black);
}

.menu-trigger-text { display: inline; }
.hamburger { width: 24px; height: 12px; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span { width: 100%; height: 2px; background: currentColor; transition: 0.3s; }

body.menu-open .nav-header { background: transparent; border-bottom: none; pointer-events: none; }
body.menu-open .menu-trigger { opacity: 0; pointer-events: none; }
body.menu-open .nav-cta { opacity: 0; pointer-events: none; }
body.menu-open .nav-search-btn { opacity: 0; pointer-events: none; }
body.menu-open .nav-logo { color: var(--color-white); }

/* MENU OVERLAY */
.sanctum-menu {
    position: fixed; inset: 0; background-color: var(--color-black);
    z-index: 2001; display: flex; align-items: center;
    transform: translateY(-100%); transition: transform 0.6s var(--ease);
    color: var(--color-white); overflow-y: auto;
}
.sanctum-menu.active { transform: translateY(0); }
.menu-close-btn { position: absolute; top: 25px; right: 40px; width: 40px; height: 40px; cursor: pointer; z-index: 2005; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; transition: 0.4s; }
.menu-close-btn span { position: absolute; width: 50%; height: 1px; background: white; transition: 0.3s; }
.menu-close-btn span:nth-child(1) { transform: rotate(45deg); }
.menu-close-btn span:nth-child(2) { transform: rotate(-45deg); }
.menu-close-btn:hover { border-color: var(--color-gold); transform: rotate(90deg); }
.menu-close-btn:hover span { background: var(--color-gold); }

.menu-grid { display: grid; grid-template-columns: 1.2fr 1fr; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; height: 85vh; align-items: center; }
.menu-links { display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,0.1); padding-right: 60px; }
.menu-link-item { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 70px); color: var(--color-white); line-height: 1.1; margin-bottom: 20px; display: block; width: fit-content; transition: 0.3s; }
.menu-link-item:hover { font-style: italic; color: var(--color-gold); transform: translateX(20px); }
.menu-link-item span { font-size: 11px; font-family: var(--font-primary); color: var(--color-accent); margin-right: 15px; position: relative; top: -20px; }

.menu-sidebar { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    padding-left: 80px; 
    gap: 40px; 
}

/* Menu Search - Sleek Design */
.menu-search {
    margin-bottom: 30px;
}

.menu-search-form {
    display: flex !important;
    align-items: center;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 0 !important;
    transition: 0.3s;
    width: 100%;
    max-width: 280px;
    padding-bottom: 2px;
}

.menu-search-form:focus-within {
    border-bottom-color: var(--color-gold) !important;
}

.menu-search-form input[type="search"],
.menu-search-input {
    flex: 1;
    padding: 12px 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: white !important;
    font-family: var(--font-primary) !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
    min-width: 0;
    letter-spacing: 0.5px;
}

.menu-search-form input[type="search"]::placeholder,
.menu-search-input::placeholder {
    color: rgba(255,255,255,0.35) !important;
    opacity: 1;
    font-weight: 400;
}

.menu-search-form input[type="search"]::-webkit-search-cancel-button,
.menu-search-form input[type="search"]::-webkit-search-decoration,
.menu-search-form input[type="search"]::-webkit-search-results-button,
.menu-search-form input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none !important;
    appearance: none !important;
    display: none !important;
}

.menu-search-form button,
.menu-search-btn {
    padding: 12px 0 12px 15px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    color: rgba(255,255,255,0.4) !important;
    transition: 0.3s;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
}

.menu-search-form button:hover,
.menu-search-btn:hover {
    color: var(--color-gold) !important;
}

/* Calendar Widget */
.menu-calendar-widget {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.calendar-header {
    background: var(--color-accent);
    padding: 10px 20px;
}

.calendar-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
}

.calendar-body {
    display: flex;
    padding: 20px;
    gap: 20px;
    align-items: flex-start;
}

.calendar-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding-right: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.cal-day-name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}

.cal-day-num {
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    color: var(--color-white);
    margin: 4px 0;
}

.cal-month {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
}

.calendar-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cal-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
}

.cal-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.3;
}

.cal-time {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.calendar-cta {
    display: block;
    padding: 15px 20px;
    background: var(--color-black);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    transition: all 0.3s var(--ease);
}

.calendar-cta:hover {
    background: var(--color-accent);
}

/* Utility Links */
.menu-utility-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.utility-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.utility-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
}

.utility-item a {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--color-white);
    transition: all 0.3s var(--ease);
}

.utility-item a:hover {
    color: var(--color-gold);
    transform: translateX(8px);
}

/* Legacy widget styles (keep for compatibility) */
.menu-widget { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; }
.menu-widget:last-child { border-bottom: none; }
.widget-label { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: #666; margin-bottom: 15px; display: block; font-weight: 700; }
.widget-content h3 { font-family: var(--font-serif); font-size: 30px; font-weight: 400; margin: 0; font-style: italic; color: white; }
.menu-portal-link, .menu-support-link {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    color: var(--color-white);
    transition: 0.3s;
    display: inline-block;
}
.menu-portal-link:hover, .menu-support-link:hover {
    color: var(--color-gold);
    transform: translateX(10px);
}
.live-dot { height: 6px; width: 6px; background: var(--color-accent); border-radius: 50%; display: inline-block; margin-right: 8px; box-shadow: 0 0 10px var(--color-accent); }
.pulse-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pulse-item strong { display: block; font-size: 24px; color: var(--color-white); font-weight: 400; font-family: var(--font-primary); }
.pulse-item span { font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: 1px; }

/* =========================================
   4. ANDROID APP TOAST (iOS uses native)
   ========================================= */
.android-app-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    margin: 0 auto;
    z-index: 99999;
    animation: slideUp 0.4s var(--ease);
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-black);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.toast-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
}

.toast-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.toast-btn {
    background: var(--color-accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.3s;
}

.toast-btn:hover {
    background: #c9a66b;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.toast-close:hover {
    color: var(--color-white);
}

/* Hide on desktop */
@media (min-width: 769px) {
    .android-app-toast { display: none !important; }
}

/* =========================================
   5. HERO: DARK CINEMATIC + STAT-ANCHORED
   ========================================= */
.hero-cinematic {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000d1f;
}

/* Clean Dark Background with Spotlight */
.hero-cinematic .hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0,174,239,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(197,160,89,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(0,33,71,0.4) 0%, transparent 60%),
        linear-gradient(180deg, #00152f 0%, #0a0a0a 50%, #000d1f 100%);
}

/* Subtle Vignette */
.hero-cinematic .hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
}

/* Content Container - vertically centered */
.hero-cinematic .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Lead Stat - Dark Version */
.hero-cinematic .lead-stat {
    margin-bottom: 20px;
}

.hero-cinematic .lead-stat-number {
    font-size: clamp(100px, 15vw, 200px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cinematic .lead-stat-label {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.hero-cinematic .lead-stat-label strong {
    color: var(--color-gold);
    font-weight: 600;
}

/* Glowing Divider */
.hero-divider-glow {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold) 0%, rgba(197,160,89,0.3) 60%, transparent 100%);
    margin: 50px 0;
}

/* Main Grid - Dark */
.hero-grid-dark {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
}

.hero-grid-dark .hero-main {
    padding-right: 40px;
}

/* Headline - Dark Theme */
.hero-headline-dark {
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
    color: var(--color-white);
}

.hero-headline-dark .line {
    display: block;
}

.hero-headline-dark .serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
    font-size: 1.2em;
    letter-spacing: 0;
    display: inline-block;
    margin-left: 10px;
}

/* Intro Text - Dark */
.hero-intro-dark {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    max-width: 520px;
}

/* Actions - Dark */
.hero-actions-dark {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Ghost Button (Outline on Dark) */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--color-white);
    padding: 18px 36px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s var(--ease);
}

.btn-ghost:hover {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.btn-ghost .btn-arrow {
    transition: transform 0.3s var(--ease);
}

.btn-ghost:hover .btn-arrow {
    transform: translateX(5px);
}

/* Text Button */
.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    padding: 18px 36px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
}

.btn-text:hover {
    color: var(--color-white);
}

/* Stats Sidebar - Dark */
.hero-stats-dark {
    padding-top: 10px;
}

.stats-grid-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.stat-card-dark {
    padding: 30px;
    background: rgba(0,21,47,0.8);
    transition: all 0.3s var(--ease);
}

.stat-card-dark:hover {
    background: rgba(0,33,71,0.9);
}

.stat-card-dark .stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card-dark .stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
}

/* Trust Badge - Dark */
.trust-badge-dark {
    padding: 20px 25px;
    background: rgba(197,160,89,0.1);
    border-left: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon-dark {
    width: 36px;
    height: 36px;
    background: rgba(197,160,89,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.trust-text-dark {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.trust-text-dark strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 20;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* =========================================
   6. PAGE SECTIONS
   ========================================= */
.method-hero, 
.network-hero, 
.page-hero,
section:first-of-type { 
    padding-top: var(--hero-pad-top-desktop); 
    padding-bottom: 120px; 
} 

/* Architecture Grid */
.architecture-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: start; 
}

/* City & Board Grids */
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }

/* CITY CARD */
.city-card { 
    display: block; background: #f9f9f9; padding: 40px; 
    text-decoration: none; border: 1px solid transparent; 
    transition: 0.3s; position: relative;
}
.city-card:hover { 
    background: white; border-color: #0a0a0a; 
    transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); 
}
.city-code { font-size: 10px; font-weight: 700; color: var(--color-accent); display: block; margin-bottom: 10px; letter-spacing: 1px; }
.city-name { font-family: var(--font-serif); font-size: 24px; color: var(--color-black); margin: 0 0 5px 0; }
.city-stat { font-size: 12px; color: #666; }
.city-arrow { position: absolute; top: 40px; right: 40px; color: #ddd; transition: 0.3s; }
.city-card:hover .city-arrow { color: var(--color-accent); right: 35px; }
.coming-soon { opacity: 0.6; cursor: default; }

/* BOARD CARD */
.board-card { text-align: left; }
.board-img { 
    background-color: #1a365d; margin-bottom: 20px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; width: 120px; height: 120px; 
}
.board-name { font-family: var(--font-serif); font-size: 20px; color: white; margin-bottom: 5px; margin-top: 0; }
.board-role { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--color-gold); display: block; margin-bottom: 15px; }
.board-bio { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.6); }

/* PILLARS */
.pillars-section { border-top: var(--border-thick); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: var(--border-thick); }
.pillar-card { padding: 80px 40px; border-right: var(--border-thick); transition: 0.3s; background: var(--color-white); }
.pillar-card:hover { background: var(--color-black); color: var(--color-white); }
.pillar-card:hover .pillar-desc { color: rgba(255,255,255,0.7); }
.pillar-num { font-size: 60px; font-family: var(--font-serif); font-style: italic; color: var(--color-gold); margin-bottom: 20px; display: block; }
.pillar-title { font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 15px; font-size: 13px; letter-spacing: 1px; }
.pillar-desc { font-size: 14px; color: #555; line-height: 1.6; }

/* DIAGNOSTIC (CALCULATOR) */
.diag-section { padding: 120px 0; background: #f4f4f4; border-bottom: var(--border-thick); }
.stack-grid { 
    display: grid !important; grid-template-columns: 1.2fr 1fr !important; width: 100% !important;
    background: var(--color-white); box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}
.stack-info { padding: 80px !important; border-right: var(--border-thick) !important; min-width: 0; }
.stack-tool { 
    padding: 80px !important; background: var(--color-black) !important; color: var(--color-white) !important; 
    display: flex; flex-direction: column; justify-content: center; position: relative;
}

/* CUSTOM SLIDERS */
.range-group { margin-bottom: 40px; }
.range-meta { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #999; font-weight: 700; }
.range-val { color: var(--color-black); font-size: 16px; font-weight: 700; }

input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; height: 30px; cursor: pointer; }
input[type=range]:focus { outline: none; }
input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 2px; background: #ddd; border-radius: 0; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 20px; width: 20px; background: var(--color-white); border: 2px solid var(--color-black); border-radius: 50%; margin-top: -9px; transition: transform 0.2s; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
input[type=range]:hover::-webkit-slider-thumb { transform: scale(1.2); background: var(--color-gold); border-color: var(--color-gold); }

.big-stat { font-family: var(--font-serif); font-size: 80px; line-height: 1; margin-top: 10px; font-style: italic; color: var(--color-gold); display: block; }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); display: block; margin-top: 10px; }

/* IMPACT */
.impact-section { padding: 120px 0; border-bottom: var(--border-thick); background: var(--color-white); }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--border-thick); }
.case-card { 
    padding: 60px 40px; border-right: var(--border-thick); 
    display: flex; flex-direction: column; justify-content: space-between; height: 100%; transition: 0.3s;
}
.case-card:hover { background: #fcfcfc; }
.case-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--color-accent); margin-bottom: 25px; display: block; }
.case-quote { font-family: var(--font-serif); font-size: 22px; line-height: 1.4; color: var(--color-black); margin-bottom: 40px; font-style: italic; }
.case-author { display: flex; align-items: center; gap: 15px; }
.author-meta h4 { font-size: 13px; margin: 0; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.author-meta span { font-size: 11px; color: #666; }

/* SPLIT SECTIONS (RESTORED FOR VINOY/PLAYBOOK) */
.event-section, .magnet-section { padding: 0; border-bottom: var(--border-thick); }
.event-grid, .magnet-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }

.event-visual, .magnet-visual { 
    background-size: cover; background-position: center; position: relative; height: 100%; min-height: 500px; 
}
.event-visual { background-image: url('assets/images/office/lounge-wide.jpg'); }
.magnet-visual { background-image: url('https://images.unsplash.com/photo-1557425955-df376b5903c8?q=80&w=2070&auto=format&fit=crop'); filter: grayscale(100%); }

.event-details, .magnet-content { 
    padding: 100px; display: flex; flex-direction: column; justify-content: center; 
}
.event-details { background: var(--color-warm-pink); }
.magnet-content { background: var(--color-white); }

.host-badge {
    position: absolute; bottom: 60px; left: 60px; z-index: 2;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
    padding: 40px; border: 1px solid rgba(255,255,255,0.2); color: var(--color-white);
}
.host-label { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 5px; opacity: 0.8; }
.host-name { font-family: var(--font-serif); font-size: 24px; font-style: italic; line-height: 1.2; }
.host-sub { font-size: 11px; margin-top: 5px; opacity: 0.9; }
.event-meta { font-family: var(--font-serif); font-size: 32px; color: var(--color-gold); margin-bottom: 20px; font-style: italic; }

/* NEWSLETTER */
.newsletter-section { padding: 120px 0; background: var(--color-black); color: var(--color-white); text-align: center; }
.news-container { max-width: 500px; margin: 0 auto; }
.news-h3 { font-family: var(--font-serif); font-size: 36px; font-style: italic; margin-bottom: 10px; }
.news-p { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px; }

/* =========================================
   6. BESPOKE FORMS & BUTTON FIXES
   ========================================= */
.bespoke-form { text-align: left; margin-top: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }

.form-row { 
    margin-bottom: 0; 
    border-bottom: 1px solid rgba(255,255,255,0.3);
    position: relative; 
    transition: 0.3s;
}
.form-row:focus-within { border-bottom-color: var(--color-white); }

.form-input { 
    width: 100%; 
    background: transparent !important; 
    border: none !important; 
    padding: 20px 0; 
    color: var(--color-white) !important; 
    font-family: var(--font-primary); 
    font-size: 18px; 
    outline: none; 
    text-align: center; 
}

.form-input::placeholder { 
    color: rgba(255,255,255,0.5); 
    text-transform: uppercase; 
    font-size: 11px; 
    letter-spacing: 2px; 
    font-weight: 700;
}

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover, 
.form-input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-white);
    -webkit-box-shadow: 0 0 0px 1000px #0a0a0a inset; 
    transition: background-color 5000s ease-in-out 0s;
}

/* SUBSCRIBE BUTTON FIX (PILL SHAPE, CENTERED) */
.form-submit { 
    width: auto !important; 
    min-width: 220px;
    display: block;
    margin: 30px auto 0 auto;
    background: var(--color-gold); 
    color: #0a0a0a; 
    padding: 15px 30px; 
    border: none; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 800; 
    font-size: 11px; 
    cursor: pointer; 
    transition: 0.3s;
    border-radius: 50px; /* Pill Shape */
}
.form-submit:hover { 
    background: var(--color-white); 
    color: #0a0a0a; 
    transform: translateY(-2px);
}

.form-response { 
    font-size: 12px; 
    margin-top: 20px; 
    color: var(--color-gold); 
    display: none; 
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* LIGHT THEME OVERRIDES */
.form-light .form-row { border-bottom: 1px solid rgba(0,33,71, 0.2); }
.form-light .form-input { color: #0a0a0a !important; text-align: left; } 
.form-light .form-input::placeholder { color: rgba(0,33,71, 0.4); text-align: left; }
.form-light .form-input:-webkit-autofill {
    -webkit-text-fill-color: #0a0a0a;
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
.form-light .form-submit { background: #0a0a0a; color: white; }
.form-light .form-submit:hover { background: var(--color-gold); color: #0a0a0a; }

/* =========================================
   7. FRESH ALERT (RESTORED LEFT ALIGN + STICKY ADJUST)
   ========================================= */
.fresh-alert-bar {
    background: #fffbf0; border-bottom: 1px solid #e6dbb9; color: #0a0a0a; padding: 12px 0;
    position: relative; z-index: 2001; /* Higher than header */
    width: 100%; display: block; box-shadow: 0 5px 15px rgba(0,0,0,0.03); 
}
.fresh-content { 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; /* LEFT ALIGNED */
    gap: 15px; 
    font-size: 13px; 
    letter-spacing: 0.5px; 
}
.fresh-badge { background: var(--color-gold); color: white; font-size: 9px; font-weight: 800; text-transform: uppercase; padding: 5px 10px; border-radius: 2px; line-height: 1; }
.fresh-label { font-weight: 700; text-transform: uppercase; font-size: 11px; color: #0a0a0a; }
.fresh-link { color: var(--color-black); font-weight: 600; border-bottom: 1px solid var(--color-gold); }
.fresh-close { background: transparent; border: none; font-size: 24px; cursor: pointer; color: rgba(0, 33, 71, 0.3); position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }

/* =========================================
   8. FOOTER
   ========================================= */
.site-footer { padding: 100px 0; background: var(--color-black); border-top: 1px solid rgba(255,255,255,0.1); color: var(--color-white); text-align: left; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; margin-bottom: 80px; text-align: left; }

/* Footer Brand Column */
.footer-brand { padding-right: 40px; }
.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-logo img { height: 50px; width: auto; max-width: 180px; filter: brightness(0) invert(1); }
.footer-logo-text { 
    font-weight: 800; font-size: 32px; letter-spacing: -1px; 
    color: var(--color-white); display: block; margin-bottom: 20px; 
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.6; }

.footer-col h4 { 
    font-family: var(--font-serif); font-size: 18px; margin-bottom: 25px; 
    color: var(--color-white); font-style: italic; text-align: left; 
}

.footer-col ul { list-style: none; padding: 0 !important; margin: 0 !important; text-align: left !important; }
.footer-col ul li { margin-bottom: 8px; text-align: left; }

.footer-col a { 
    display: block; color: rgba(255,255,255,0.5); font-size: 13px; 
    padding: 5px 0; transition: 0.3s; text-decoration: none; 
    line-height: 1.4; text-align: left; 
}

.footer-col a:hover { color: var(--color-gold); transform: translateX(5px); }

/* Footer App Store Badges */
.footer-apps { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-apps-label { 
    font-size: 10px; color: rgba(255,255,255,0.4); 
    text-transform: uppercase; letter-spacing: 1px;
    display: block; margin-bottom: 12px;
}
.footer-apps-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-apps-badges a { 
    display: block; opacity: 0.7; transition: 0.3s;
    padding: 0; transform: none;
}
.footer-apps-badges a:hover { opacity: 1; transform: none; }
.footer-apps-badges img { height: 36px; width: auto; }

/* Newsletter Signup */
.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 50px 0;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.newsletter-content h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-style: italic;
    color: white;
    margin: 0 0 8px 0;
}

.newsletter-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    max-width: 350px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

.newsletter-input {
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    color: white;
    font-size: 14px;
    font-family: var(--font-primary);
    width: 280px;
    outline: none;
    transition: 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-input:focus {
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.08);
}

.newsletter-btn {
    padding: 16px 28px;
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    color: var(--color-black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: white;
    border-color: white;
}

.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; }
.copyright { font-size: 11px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1px; }

/* MODALS */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0, 33, 71, 0.9);
    backdrop-filter: blur(8px); z-index: 5000;
    display: none; justify-content: center; align-items: center;
}
.modal-overlay.active { display: flex; }
.modal-card { 
    background: var(--color-white); width: 100%; max-width: 500px; 
    padding: 60px; border: 1px solid var(--color-gold); position: relative; 
}
.modal-close {
    position: absolute; top: 20px; right: 20px;
    border: none; background: transparent; 
    font-size: 30px; cursor: pointer;
    color: rgba(0,33,71,0.3); transition: 0.3s;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--color-black); }
.modal-header { text-align: center; margin-bottom: 30px; }
.modal-header h3 { 
    font-family: var(--font-serif); font-size: 32px; 
    margin: 0 0 10px 0; color: var(--color-black);
}
.modal-header p {
    font-size: 14px; color: #666; margin: 0;
}

/* =========================================
   9. HIMS-STYLE PATHWAYS (NEW)
   ========================================= */
.pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.path-card {
    position: relative;
    display: block;
    padding: 40px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.path-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    opacity: 0.5;
    transition: 0.3s;
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.1);
}

.path-card:hover .path-bg { opacity: 1; }

.path-icon {
    position: relative; z-index: 2;
    width: 50px; height: 50px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 24px;
}

.path-title {
    position: relative; z-index: 2;
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-black);
    margin: 0 0 10px 0;
}

.path-desc {
    position: relative; z-index: 2;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 30px 0;
}

.path-action {
    position: relative; z-index: 2;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--color-black);
    display: block;
    margin-top: auto;
    border-bottom: 1px solid transparent;
    width: fit-content;
    transition: 0.3s;
}

.path-card:hover .path-action { border-bottom-color: var(--color-gold); }

/* =========================================
   10. MOBILE OVERRIDES (ALL FIXES)
   ========================================= */
@media (max-width: 1024px) {
    .menu-grid { grid-template-columns: 1fr; padding-top: 80px; display: block; overflow-y: scroll; }
    .menu-links { border-right: none; margin-bottom: 40px; padding-bottom: 40px; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .menu-sidebar { padding-left: 0; padding-bottom: 100px; }
    .calendar-body { flex-direction: column; }
    .calendar-date { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-right: 0; padding-bottom: 15px; flex-direction: row; gap: 10px; }
    .pillars-grid, .stack-grid, .impact-grid { grid-template-columns: 1fr !important; }
    .event-grid, .magnet-grid { grid-template-columns: 1fr !important; } 
    .stack-info, .magnet-content, .event-details, .case-card { border-right: none; border-bottom: var(--border-thick); border-left: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-brand { grid-column: 1 / -1; padding-right: 0; margin-bottom: 20px; }
    .footer-newsletter { flex-direction: column; text-align: center; gap: 25px; }
    .newsletter-content p { max-width: none; }
    .newsletter-form { width: 100%; max-width: 400px; }
    .event-visual, .magnet-visual { min-height: 400px; }
    .event-details, .magnet-content { padding: 60px 40px; }
    .architecture-grid { grid-template-columns: 1fr !important; gap: 40px; }
    .city-grid { grid-template-columns: 1fr 1fr; }
    .board-grid { grid-template-columns: 1fr 1fr; }
    
    /* Hero Cinematic responsive */
    .hero-grid-dark { grid-template-columns: 1fr; gap: 50px; }
    .hero-grid-dark .hero-main { padding-right: 0; }
    .hero-cinematic .lead-stat-number { font-size: 120px; }
}

@media (max-width: 768px) {
    /* Header adjustments for tablet */
    .nav-logo-img { width: 160px; max-width: 160px; }
    .nav-cta-text { display: none; }
    .nav-cta { padding: 10px 14px; }
}

@media (max-width: 600px) {
    /* Header - relative positioning, smaller logo */
    .nav-header { 
        position: relative !important; 
        top: auto; 
        left: auto; 
        padding: 15px 20px; 
    }
    
    .nav-logo-img { 
        width: 140px; 
        max-width: 140px; 
    }
    
    .nav-actions { gap: 12px; }
    
    .nav-cta { 
        padding: 8px 12px; 
        font-size: 10px;
    }
    .nav-cta-text { display: none; }
    .nav-cta-icon { font-size: 14px; }
    
    .nav-search-btn { width: 36px; height: 36px; }
    
    /* Reset Alert Bar Margin */
    .fresh-alert-bar { margin-top: 0 !important; padding: 15px 20px; }
    .fresh-content { flex-wrap: wrap; }
    .fresh-label { display: none; }
    
    /* Hero Padding */
    .method-hero, .network-hero, .page-hero, section:first-of-type { 
        padding-top: var(--hero-pad-top-mobile); 
        padding-bottom: 60px; 
    }

    .macbach-container { padding: 0 20px !important; }
    
    /* Typography */
    .mega-h1 { font-size: 42px; margin-bottom: 25px; line-height: 1; }
    
    /* Hero Cinematic mobile - move content up */
    .hero-cinematic { 
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 0;
        background: #000d1f !important;
    }
    .hero-cinematic .hero-content { 
        padding: 0 0 40px;
        margin-top: -20px; /* Balanced spacing */
    }
    .hero-cinematic .lead-stat-number { font-size: 70px; }
    .hero-cinematic .lead-stat-label { font-size: 14px; }
    .hero-headline-dark { font-size: 32px; }
    .hero-headline-dark .serif { font-size: 1.1em; margin-left: 5px; }
    .hero-intro-dark { font-size: 15px; }
    .hero-actions-dark { flex-direction: column; }
    .btn-ghost, .btn-text { width: 100%; justify-content: center; text-align: center; }
    .stats-grid-dark { gap: 1px; }
    .stat-card-dark { padding: 20px; }
    .stat-card-dark .stat-value { font-size: 28px; }
    .trust-badge-dark { flex-direction: column; text-align: center; }
    .trust-icon-dark { margin-bottom: 10px; }
    .scroll-indicator { display: none; }
    
    /* MOBILE HOMEPAGE NAV - MUST BE DARK NAVY */
    .home .nav-header,
    .page-template-front-page .nav-header {
        padding: 15px 20px !important;
        background: #0a0a0a !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        position: sticky !important;
        top: 0 !important;
    }
    
    /* Mobile alert bar - stays gold, relative position */
    .home .fresh-alert-bar,
    .page-template-front-page .fresh-alert-bar {
        position: relative !important;
        top: 0 !important;
        padding: 10px 20px;
    }
    
    /* Header comes after alert bar on mobile - no offset needed */
    .home .fresh-alert-bar ~ .nav-header,
    .page-template-front-page .fresh-alert-bar ~ .nav-header {
        top: 0 !important;
    }
    
    /* Menu adjustments */
    .menu-link-item { font-size: 32px; }
    .menu-calendar-widget { margin-bottom: 30px; }
    .cal-day-num { font-size: 28px; }
    .cal-title { font-size: 16px; }
    
    /* Pathways & Grid Fixes */
    .pathways-grid { grid-template-columns: 1fr; }
    .path-card { padding: 30px; }
    .architecture-grid { display: flex !important; flex-direction: column !important; gap: 10px !important; }
    .architecture-grid h2 { margin-bottom: 10px !important; }
    .architecture-grid p { margin-top: 0 !important; }
    .city-grid { grid-template-columns: 1fr !important; }
    .board-grid { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand { margin-bottom: 30px; }
    .footer-apps-badges { flex-direction: column; }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { width: 100%; border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }
    .newsletter-btn { width: 100%; }

}
/* =========================================
   13. VALUE MATRIX (REPLACES CALCULATOR)
   ========================================= */
.matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    border-top: 1px solid rgba(0,33,71,0.1);
}

.matrix-card {
    padding: 40px;
    background: white;
    border: 1px solid transparent;
    transition: 0.3s;
    position: relative;
    border-bottom: 1px solid rgba(0,33,71,0.1);
}

.matrix-card:nth-child(odd) {
    border-right: 1px solid rgba(0,33,71,0.1);
}

.matrix-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: rgba(0,33,71,0.1);
    z-index: 2;
}

.matrix-num {
    font-size: 10px;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.matrix-title {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--color-black);
    margin: 0 0 15px 0;
    font-weight: 400;
}

.matrix-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 800px) {
    .matrix-grid { grid-template-columns: 1fr; }
    .matrix-card { border-right: none !important; }
}

/* =========================================
   14. UTILITY CLASSES
   ========================================= */
/* Visually hidden but accessible to screen readers */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-black);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
/* =========================================
   15. HOMEPAGE SPECIFIC STYLES
   ========================================= */
/* Hero Section */
.hero-intro {
    max-width: 600px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-black);
    margin-bottom: 60px;
}

/* Section Titles */
.section-title {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--color-black);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.section-title-large {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0 0 30px 0;
    line-height: 1.1;
}

.section-title .serif-italic,
.section-title-large .serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    display: block;
    text-transform: none;
}

.section-subtitle {
    max-width: 500px;
    font-size: 18px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Matrix Section */
.matrix-section {
    padding: 80px 0;
    background: #f9f9f9;
    border-top: 1px solid rgba(0,33,71,0.1);
    border-bottom: 1px solid rgba(0,33,71,0.1);
}

.matrix-header {
    margin-bottom: 60px;
}

/* Pathways Section */
.pathways-section {
    padding: 0 0 100px;
}

/* Event Section Enhancements */
.event-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 400px;
    line-height: 1.6;
}

/* Magnet Section Enhancements */
.magnet-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 400px;
    line-height: 1.6;
}

/* Testimonial Blockquotes */
.case-card blockquote {
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.4;
    color: var(--color-black);
    margin: 0 0 40px 0;
    font-style: italic;
    padding: 0;
    border: none;
}

.case-card blockquote::before {
    content: none; /* Remove default quote marks if any */
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .hero-intro {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .section-title,
    .section-title-large {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .event-desc,
    .magnet-desc {
        font-size: 16px;
    }
    
    .case-card blockquote {
        font-size: 18px;
    }
}


/* =========================================
   PARKER MEDICAL - CUSTOM STYLES
   Dark Theme with Gold Accents
   ========================================= */

/* ---- PARKER TYPOGRAPHY ---- */
.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
}

.muted {
    color: rgba(245, 242, 235, 0.35);
}

.section-label-parker {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 20px;
}

.section-title-parker {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 30px;
}

/* ---- PARKER BUTTONS ---- */
.btn-parker-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--color-white);
    color: var(--color-black);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-parker-primary:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-parker-primary.btn-lg {
    padding: 22px 48px;
    font-size: 14px;
}

.btn-parker-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(245, 242, 235, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-parker-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-parker-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.6);
    transition: color 0.3s ease;
}

.btn-parker-text:hover {
    color: var(--color-gold);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

a:hover .btn-arrow {
    transform: translateX(4px);
}

/* ---- HERO SECTION ---- */
.hero-parker {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    background: var(--color-black);
    text-align: center;
}

.hero-bg-parker {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 166, 107, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-centered-parker {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow-parker {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 40px;
    text-align: center;
}

.hero-headline-parker {
    font-family: var(--font-serif);
    font-size: clamp(56px, 10vw, 120px);
    line-height: 0.95;
    font-weight: 400;
    margin: 0 auto 50px auto;
    text-align: center;
}

.hero-headline-parker .line {
    display: block;
    text-align: center;
}

.hero-intro-parker {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.5);
    margin: 0 auto 50px auto;
    max-width: 500px;
    text-align: center;
}

.hero-intro-parker strong {
    color: var(--color-white);
}

.hero-actions-parker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.hero-scroll-parker {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-scroll-parker span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.3);
}

.scroll-line-parker {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(245, 242, 235, 0.3), transparent);
}

/* ---- SECTIONS ---- */
.section-parker {
    padding: 100px 0;
}

@media (min-width: 768px) {
    .section-parker {
        padding: 140px 0;
    }
}

/* ---- STATEMENT SECTION ---- */
.statement-section-parker {
    border-top: 1px solid rgba(245, 242, 235, 0.1);
}

.statement-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .statement-grid-parker {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}

.statement-heading-parker {
    font-family: var(--font-serif-alt);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 30px;
}

.statement-text-parker {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(245, 242, 235, 0.5);
    margin-bottom: 40px;
    max-width: 480px;
}

.statement-visual-parker {
    display: flex;
    align-items: center;
    justify-content: center;
}

.statement-number-parker {
    font-family: var(--font-serif);
    font-size: clamp(150px, 25vw, 280px);
    font-weight: 400;
    color: rgba(201, 166, 107, 0.08);
    line-height: 1;
}

/* ---- SERVICES SECTION ---- */
.services-section-parker {
    border-top: 1px solid rgba(245, 242, 235, 0.1);
}

.services-header-parker {
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .services-header-parker {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
    }
}

.services-intro-parker {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.5);
    max-width: 360px;
}

.services-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(245, 242, 235, 0.1);
}

@media (min-width: 600px) {
    .services-grid-parker {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid-parker {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card-parker {
    display: block;
    padding: 40px 30px;
    background: var(--color-black);
    transition: background 0.3s ease;
    position: relative;
}

.service-card-parker:hover {
    background: rgba(245, 242, 235, 0.03);
}

.service-num-parker {
    font-family: var(--font-serif);
    font-size: 48px;
    color: rgba(245, 242, 235, 0.06);
    line-height: 1;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.service-card-parker:hover .service-num-parker {
    color: rgba(201, 166, 107, 0.15);
}

.service-title-parker {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card-parker:hover .service-title-parker {
    color: var(--color-gold);
}

.service-desc-parker {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(245, 242, 235, 0.4);
}

.service-arrow-parker {
    position: absolute;
    top: 40px;
    right: 30px;
    font-size: 18px;
    color: rgba(245, 242, 235, 0.2);
    transition: all 0.3s ease;
}

.service-card-parker:hover .service-arrow-parker {
    color: var(--color-gold);
    transform: translate(4px, -4px);
}

/* ---- PHYSICIANS SECTION ---- */
.physicians-section-parker {
    border-top: 1px solid rgba(245, 242, 235, 0.1);
}

.physicians-header-parker {
    margin-bottom: 60px;
}

.physicians-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 600px) {
    .physicians-grid-parker {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .physicians-grid-parker {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.physician-card-parker {
    display: block;
    padding: 40px 30px;
    border: 1px solid rgba(245, 242, 235, 0.1);
    background: rgba(245, 242, 235, 0.02);
    transition: all 0.3s ease;
    position: relative;
}

.physician-card-parker:hover {
    border-color: rgba(201, 166, 107, 0.3);
    background: rgba(245, 242, 235, 0.04);
}

.physician-image-parker {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(245, 242, 235, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.physician-placeholder-parker {
    color: rgba(245, 242, 235, 0.2);
}

.physician-info-parker {
    margin-bottom: 20px;
}

.physician-name-parker {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.physician-card-parker:hover .physician-name-parker {
    color: var(--color-gold);
}

.physician-title-parker {
    font-size: 14px;
    color: rgba(245, 242, 235, 0.5);
}

.physician-arrow-parker {
    position: absolute;
    bottom: 40px;
    right: 30px;
    font-size: 18px;
    color: rgba(245, 242, 235, 0.2);
    transition: all 0.3s ease;
}

.physician-card-parker:hover .physician-arrow-parker {
    color: var(--color-gold);
}

/* ---- PHILOSOPHY SECTION ---- */
.philosophy-section-parker {
    border-top: 1px solid rgba(245, 242, 235, 0.1);
    text-align: center;
}

.philosophy-content-parker {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-quote-parker {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 40px);
    line-height: 1.4;
    font-weight: 400;
    color: rgba(245, 242, 235, 0.8);
    margin: 0 0 30px 0;
    padding: 0;
    border: none;
}

.philosophy-quote-parker em {
    color: var(--color-gold);
    font-style: italic;
}

.philosophy-cite-parker {
    font-size: 14px;
    color: rgba(245, 242, 235, 0.4);
    font-style: normal;
}

/* ---- PODCAST SECTION ---- */
.podcast-section-parker {
    border-top: 1px solid rgba(245, 242, 235, 0.1);
}

.podcast-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .podcast-grid-parker {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}

.podcast-artwork-parker {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.15) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-placeholder-parker {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.3);
    text-align: center;
}

.podcast-title-parker {
    font-family: var(--font-serif);
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 30px;
}

.podcast-desc-parker {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.5);
    margin-bottom: 40px;
}

.podcast-links-parker {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.podcast-link-parker {
    padding: 14px 24px;
    border: 1px solid rgba(245, 242, 235, 0.2);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.6);
    transition: all 0.3s ease;
}

.podcast-link-parker:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ---- CTA SECTION ---- */
.cta-section-parker {
    padding: 160px 0;
    text-align: center;
    position: relative;
}

.cta-section-parker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content-parker {
    position: relative;
}

.cta-heading-parker {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 50px;
}


/* ---- HEADER ---- */
.site-header-parker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.site-header-parker.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
}

.logo-parker {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-white);
}

.nav-desktop-parker {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop-parker {
        display: block;
    }
}

.nav-list-parker {
    display: flex;
    gap: 40px;
}

.nav-list-parker a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.6);
    transition: color 0.3s ease;
}

.nav-list-parker a:hover {
    color: var(--color-white);
}

.header-cta-parker {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta-parker {
        display: block;
    }
}

/* ---- FOOTER ---- */
.footer-parker {
    background: var(--color-black);
}

.footer-hero-parker {
    padding: 80px 0;
    border-top: 1px solid rgba(245, 242, 235, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-hero-parker {
        padding: 120px 0;
    }
}

.footer-eyebrow-parker {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.footer-city-link-parker {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.footer-city-parker {
    font-family: var(--font-serif);
    font-size: clamp(60px, 12vw, 140px);
    line-height: 1;
    transition: color 0.3s ease;
}

.footer-city-link-parker:hover .footer-city-parker {
    color: var(--color-gold);
}

.footer-arrow-parker {
    font-size: 40px;
    color: rgba(245, 242, 235, 0.3);
    transition: all 0.3s ease;
}

.footer-city-link-parker:hover .footer-arrow-parker {
    color: var(--color-gold);
    transform: translate(8px, -8px);
}

.footer-address-parker {
    margin-top: 30px;
    font-style: normal;
    color: rgba(245, 242, 235, 0.4);
    font-size: 15px;
    line-height: 1.8;
}

.footer-address-parker span {
    display: block;
}

.footer-csz-parker {
    color: rgba(245, 242, 235, 0.25);
}

.footer-contact-parker {
    padding: 30px 0;
    border-top: 1px solid rgba(245, 242, 235, 0.08);
    border-bottom: 1px solid rgba(245, 242, 235, 0.08);
    background: rgba(245, 242, 235, 0.02);
}

.footer-contact-grid-parker {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-contact-grid-parker {
        gap: 0;
    }
    
    .footer-contact-item-parker {
        padding: 0 50px;
    }
    
    .footer-contact-item-parker:not(:last-child) {
        border-right: 1px solid rgba(245, 242, 235, 0.1);
    }
}

.footer-contact-label-parker {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.3);
    margin-bottom: 8px;
}

.footer-contact-value-parker {
    font-size: 16px;
    color: var(--color-white);
}

a.footer-contact-value-parker:hover {
    color: var(--color-gold);
}

.footer-247-parker {
    display: block;
    font-size: 12px;
    color: var(--color-gold);
    margin-top: 4px;
}

.footer-main-parker {
    padding: 80px 0;
}

.footer-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .footer-grid-parker {
        grid-template-columns: 1fr 2fr;
        gap: 100px;
    }
}

.footer-brand-parker {
    max-width: 280px;
}

.footer-logo-parker {
    margin-bottom: 20px;
}

.footer-wordmark-parker {
    font-family: var(--font-serif);
    font-size: 32px;
    display: block;
}

.footer-wordmark-sub-parker {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.4);
}

.footer-tagline-parker {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.4);
    line-height: 1.7;
}

.footer-nav-parker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-nav-parker {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-nav-title-parker {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.3);
    margin-bottom: 20px;
}

.footer-nav-list-parker li {
    margin-bottom: 12px;
}

.footer-nav-list-parker a {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.5);
}

.footer-nav-list-parker a:hover {
    color: var(--color-gold);
}

.footer-bottom-parker {
    padding: 25px 0;
    border-top: 1px solid rgba(245, 242, 235, 0.05);
}

.footer-bottom-grid-parker {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-grid-parker {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright-parker {
    font-size: 12px;
    color: rgba(245, 242, 235, 0.25);
}

.footer-legal-parker {
    display: flex;
    gap: 30px;
}

.footer-legal-parker a {
    font-size: 12px;
    color: rgba(245, 242, 235, 0.25);
}

.footer-legal-parker a:hover {
    color: rgba(245, 242, 235, 0.5);
}

.footer-est-parker {
    font-size: 12px;
    color: rgba(245, 242, 235, 0.25);
    letter-spacing: 2px;
}

.footer-accent-parker {
    height: 1px;
    margin: 0 40px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}


/* =========================================
   PAGE TEMPLATES - PARKER MEDICAL
   ========================================= */

/* ---- PAGE HERO (SHARED) ---- */
.page-hero-parker {
    padding: 180px 0 100px;
    text-align: center;
    background: var(--color-black);
}

.page-title-parker {
    font-family: var(--font-serif);
    font-size: clamp(40px, 7vw, 80px);
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 30px 0;
}

.page-intro-parker {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- TEAM PAGE ---- */
.team-grid-parker {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.team-member-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .team-member-parker {
        grid-template-columns: 300px 1fr;
        gap: 80px;
    }
}

.team-image-parker {
    aspect-ratio: 3/4;
    background: rgba(245, 242, 235, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder-parker {
    color: rgba(245, 242, 235, 0.2);
}

.team-name-parker {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 8px;
}

.team-role-parker {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.team-bio-parker p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(245, 242, 235, 0.6);
    margin-bottom: 20px;
}

.team-credentials-parker {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 242, 235, 0.1);
}

.team-credentials-parker span {
    font-size: 12px;
    color: rgba(245, 242, 235, 0.4);
    padding: 8px 16px;
    border: 1px solid rgba(245, 242, 235, 0.15);
}

/* ---- SERVICES PAGE ---- */
.services-detail-section {
    border-top: 1px solid rgba(245, 242, 235, 0.1);
}

.service-detail-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(245, 242, 235, 0.1);
}

@media (min-width: 768px) {
    .service-detail-parker {
        grid-template-columns: 100px 1fr;
        gap: 60px;
        padding: 80px 0;
    }
}

.service-detail-num {
    font-family: var(--font-serif);
    font-size: 64px;
    color: rgba(201, 166, 107, 0.15);
    line-height: 1;
}

.service-detail-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.service-detail-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(245, 242, 235, 0.6);
    margin-bottom: 30px;
    max-width: 700px;
}

.service-detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-detail-features li {
    font-size: 13px;
    color: var(--color-gold);
    padding: 10px 20px;
    border: 1px solid rgba(201, 166, 107, 0.3);
}

/* ---- MEMBERSHIP PAGE ---- */
.membership-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .membership-grid-parker {
        grid-template-columns: 1fr 400px;
        gap: 100px;
    }
}

.membership-block-parker {
    padding: 40px 0;
}

.membership-block-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
}

.membership-list-parker li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.membership-list-icon {
    color: var(--color-gold);
    font-size: 18px;
    flex-shrink: 0;
}

.membership-list-parker strong {
    display: block;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 6px;
}

.membership-list-parker p {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.5);
    line-height: 1.6;
    margin: 0;
}

.membership-pricing-parker {
    background: rgba(245, 242, 235, 0.03);
    border: 1px solid rgba(245, 242, 235, 0.1);
    padding: 50px 40px;
    text-align: center;
}

.pricing-label-parker {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.pricing-amount-parker {
    font-family: var(--font-serif);
    font-size: 64px;
    line-height: 1;
    margin-bottom: 10px;
}

.pricing-currency {
    font-size: 32px;
    vertical-align: top;
}

.pricing-note-parker {
    font-size: 14px;
    color: rgba(245, 242, 235, 0.4);
    margin-bottom: 30px;
}

.pricing-details-parker {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.5);
    line-height: 1.7;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(245, 242, 235, 0.1);
}

.pricing-consult-parker {
    font-size: 13px;
    color: rgba(245, 242, 235, 0.4);
    margin-top: 20px;
}

/* FAQ on membership page */
.faq-preview-parker {
    max-width: 800px;
}

.faq-item-parker {
    padding: 30px 0;
    border-bottom: 1px solid rgba(245, 242, 235, 0.1);
}

.faq-item-parker h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
}

.faq-item-parker p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.5);
    margin: 0;
}

/* ---- FAQ PAGE ---- */
.faq-section-parker {
    border-top: 1px solid rgba(245, 242, 235, 0.1);
}

.faq-category-parker {
    margin-bottom: 80px;
}

.faq-category-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 166, 107, 0.3);
}

.faq-list-parker .faq-item-parker:first-child {
    padding-top: 0;
}

.faq-question-parker {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

.faq-answer-parker {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 242, 235, 0.5);
    max-width: 800px;
}

/* ---- PODCAST PAGE ---- */
.podcast-hero-parker {
    text-align: left;
}

.podcast-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .podcast-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}

.podcast-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(56px, 8vw, 100px);
    line-height: 1;
    margin-bottom: 30px;
}

.podcast-hero-artwork {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.15) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-artwork-placeholder {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.3);
    text-align: center;
}

.episodes-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .episodes-grid-parker {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .episodes-grid-parker {
        grid-template-columns: repeat(3, 1fr);
    }
}

.episode-card-parker {
    padding: 40px 30px;
    border: 1px solid rgba(245, 242, 235, 0.1);
    background: rgba(245, 242, 235, 0.02);
    transition: all 0.3s ease;
}

.episode-card-parker:hover {
    border-color: rgba(201, 166, 107, 0.3);
}

.episode-meta-parker {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.episode-number {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-gold);
}

.episode-date {
    font-size: 12px;
    color: rgba(245, 242, 235, 0.3);
}

.episode-title-parker {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

.episode-desc-parker {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(245, 242, 235, 0.5);
    margin-bottom: 20px;
}

.episode-link-parker {
    font-size: 13px;
    color: var(--color-gold);
}

.host-section-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .host-section-parker {
        grid-template-columns: 200px 1fr;
        gap: 60px;
    }
}

.host-image-parker {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(245, 242, 235, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.host-placeholder-parker {
    color: rgba(245, 242, 235, 0.2);
}

.host-name-parker {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 20px;
}

.host-bio-parker {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.5);
    margin-bottom: 30px;
}

/* ---- ABOUT PAGE ---- */
.about-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .about-grid-parker {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: center;
    }
}

.about-lead-parker {
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.about-content-parker p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(245, 242, 235, 0.6);
    margin-bottom: 20px;
}

.about-stat-parker {
    text-align: center;
    padding: 60px;
    background: rgba(245, 242, 235, 0.02);
    border: 1px solid rgba(245, 242, 235, 0.1);
}

.about-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 120px;
    line-height: 1;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.about-stat-label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

.about-stat-compare {
    display: block;
    font-size: 13px;
    color: rgba(245, 242, 235, 0.4);
}

.values-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 600px) {
    .values-grid-parker {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid-parker {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card-parker {
    padding: 30px;
    border: 1px solid rgba(245, 242, 235, 0.1);
}

.value-title-parker {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.value-desc-parker {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(245, 242, 235, 0.5);
}

.story-parker {
    max-width: 800px;
}

.story-content-parker p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(245, 242, 235, 0.6);
    margin-bottom: 20px;
}

/* ---- CONTACT PAGE ---- */
.contact-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .contact-grid-parker {
        grid-template-columns: 1fr 350px;
        gap: 100px;
    }
}

.contact-form-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
}

.parker-form .form-row-parker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field-parker {
    margin-bottom: 25px;
}

.form-field-parker label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.5);
    margin-bottom: 10px;
}

.form-field-parker input,
.form-field-parker select,
.form-field-parker textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(245, 242, 235, 0.03);
    border: 1px solid rgba(245, 242, 235, 0.15);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-field-parker input:focus,
.form-field-parker select:focus,
.form-field-parker textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-field-parker select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23F5F2EB' stroke-opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.contact-info-parker {
    padding-top: 20px;
}

.contact-block-parker {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(245, 242, 235, 0.1);
}

.contact-block-parker:last-child {
    border-bottom: none;
}

.contact-block-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.4);
    margin-bottom: 15px;
}

.contact-block-value {
    font-size: 24px;
    color: var(--color-white);
    display: block;
    margin-bottom: 10px;
}

a.contact-block-value:hover {
    color: var(--color-gold);
}

.contact-block-note {
    font-size: 14px;
    color: rgba(245, 242, 235, 0.4);
    line-height: 1.6;
}

.contact-block-address {
    font-size: 17px;
    font-style: normal;
    line-height: 1.6;
    color: rgba(245, 242, 235, 0.6);
    margin-bottom: 15px;
}

.contact-map-link {
    font-size: 14px;
    color: var(--color-gold);
}

.map-section-parker {
    height: 400px;
    background: rgba(245, 242, 235, 0.03);
}

.map-placeholder-parker {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.2);
}


/* =========================================
   SERVICE PAGES - ADDITIONAL STYLES
   ========================================= */

/* Content Grid Layout */
.content-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .content-grid-parker {
        grid-template-columns: 1fr 350px;
        gap: 80px;
    }
}

.content-main-parker h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    margin-bottom: 30px;
}

.content-main-parker h3 {
    font-size: 24px;
    margin: 40px 0 20px;
}

.content-main-parker p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(245, 242, 235, 0.7);
    margin-bottom: 20px;
}

.content-main-parker .lead-text {
    font-size: 20px;
    color: rgba(245, 242, 235, 0.85);
    margin-bottom: 30px;
}

.content-main-parker ul {
    margin: 20px 0 30px 20px;
}

.content-main-parker ul li {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.65);
    margin-bottom: 12px;
}

.content-main-parker a {
    color: var(--color-gold);
}

/* Feature List */
.feature-list-parker {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.feature-list-parker li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
}

.feature-list-parker li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Sidebar */
.content-sidebar-parker {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card-parker {
    background: rgba(245, 242, 235, 0.03);
    border: 1px solid rgba(245, 242, 235, 0.1);
    padding: 30px;
}

.sidebar-card-parker h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.sidebar-card-parker p {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.5);
    margin-bottom: 20px;
}

.sidebar-card-parker address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(245, 242, 235, 0.6);
    margin-bottom: 15px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Quick Facts */
.quick-facts-parker {
    margin: 0;
}

.quick-facts-parker dt {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.4);
    margin-top: 15px;
}

.quick-facts-parker dd {
    font-size: 18px;
    margin: 5px 0 0 0;
}

/* Benefits Grid */
.benefits-grid-parker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card-parker {
    padding: 30px;
    border: 1px solid rgba(245, 242, 235, 0.1);
    background: rgba(245, 242, 235, 0.02);
}

.benefit-icon-parker {
    font-size: 32px;
    margin-bottom: 20px;
}

.benefit-card-parker h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.benefit-card-parker p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(245, 242, 235, 0.5);
    margin: 0;
}

/* Services List */
.services-list-parker {
    border-top: 1px solid rgba(245, 242, 235, 0.1);
}

.service-row-parker {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(245, 242, 235, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .service-row-parker {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.service-row-parker:hover {
    padding-left: 20px;
}

.service-row-title {
    font-size: 18px;
    font-weight: 500;
}

.service-row-desc {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.5);
}

.service-row-arrow {
    color: var(--color-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-row-parker:hover .service-row-arrow {
    opacity: 1;
}

/* Wellness Grid */
.wellness-grid-parker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.wellness-card-parker {
    padding: 30px;
    border: 1px solid rgba(201, 166, 107, 0.2);
    background: rgba(201, 166, 107, 0.05);
    transition: all 0.3s ease;
}

.wellness-card-parker:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.wellness-card-parker h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.wellness-card-parker p {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.5);
    margin: 0;
}

/* Areas Grid */
.areas-grid-parker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.area-parker {
    padding: 15px 20px;
    text-align: center;
    border: 1px solid rgba(245, 242, 235, 0.1);
    font-size: 14px;
}

/* Related Services */
.related-grid-parker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.related-card-parker {
    padding: 30px;
    border: 1px solid rgba(245, 242, 235, 0.1);
    transition: all 0.3s ease;
}

.related-card-parker:hover {
    border-color: var(--color-gold);
}

.related-card-parker h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.related-card-parker p {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.5);
    margin: 0;
}

/* IV Menu */
.iv-menu-parker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.iv-item-parker {
    padding: 25px;
    border: 1px solid rgba(245, 242, 235, 0.1);
    background: rgba(245, 242, 235, 0.02);
}

.iv-item-parker h4 {
    font-size: 18px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.iv-item-parker p {
    font-size: 14px;
    color: rgba(245, 242, 235, 0.5);
    margin: 0;
}

/* Section Intro */
.section-intro-parker {
    font-size: 18px;
    color: rgba(245, 242, 235, 0.6);
    max-width: 700px;
    margin-bottom: 40px;
}

/* CTA Phone */
.cta-phone-parker {
    margin-top: 20px;
    font-size: 16px;
    color: rgba(245, 242, 235, 0.5);
}

.cta-phone-parker a {
    color: var(--color-gold);
}

.cta-subtext-parker {
    font-size: 18px;
    color: rgba(245, 242, 235, 0.5);
    margin-bottom: 30px;
}

/* Protocol Section */
.protocol-header-parker {
    text-align: center;
    margin-bottom: 60px;
}

.protocol-grid-parker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.protocol-card-parker {
    padding: 30px;
    border: 1px solid rgba(245, 242, 235, 0.1);
    position: relative;
}

.protocol-num {
    font-family: var(--font-serif);
    font-size: 48px;
    color: rgba(201, 166, 107, 0.15);
    position: absolute;
    top: 15px;
    right: 20px;
}

.protocol-card-parker h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.protocol-card-parker p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(245, 242, 235, 0.5);
    margin: 0;
}

/* Insurance Section */
.insurance-section-parker {
    text-align: center;
}

.insurance-content-parker {
    max-width: 700px;
    margin: 0 auto;
}

.insurance-intro-parker {
    font-size: 17px;
    color: rgba(245, 242, 235, 0.6);
    margin-bottom: 30px;
}

.insurance-logos-parker {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.insurance-logos-parker span {
    padding: 12px 24px;
    border: 1px solid rgba(245, 242, 235, 0.15);
    font-size: 14px;
    color: rgba(245, 242, 235, 0.6);
}

/* Location Section */
.location-section-parker {
    background: rgba(245, 242, 235, 0.02);
}

.location-grid-parker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 768px) {
    .location-grid-parker {
        grid-template-columns: 1fr 1fr;
    }
}

.location-heading-parker {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 30px;
}

.location-address-parker {
    font-style: normal;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.location-hours-parker {
    font-size: 16px;
    color: rgba(245, 242, 235, 0.6);
    line-height: 1.7;
    margin-bottom: 25px;
}

.location-phone-parker {
    font-size: 24px;
    color: var(--color-gold);
}

.location-areas-parker h3 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.4);
    margin-bottom: 20px;
}

.location-areas-parker ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.location-areas-parker li {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.6);
}

/* Physician Cards - Enhanced */
.physician-creds-parker {
    font-size: 12px;
    color: rgba(245, 242, 235, 0.4);
    margin-top: 5px;
}


/* =========================================
   COLOR MODE SWITCHER + LIGHT MODE
   ========================================= */

/* Color Mode Toggle Button */
.color-mode-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

@media (max-width: 1024px) {
    .color-mode-toggle {
        top: auto;
        bottom: 20px;
        right: 20px;
    }
}

.color-mode-btn {
    background: rgba(245, 242, 235, 0.1);
    border: 1px solid rgba(245, 242, 235, 0.2);
    color: var(--color-white);
    padding: 10px 16px;
    font-family: var(--font-primary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.color-mode-btn:hover {
    background: rgba(245, 242, 235, 0.2);
    border-color: var(--color-gold);
}

/* Toggle visibility based on mode */
.mode-light { display: none; }
.mode-dark { display: inline; }

body.light-mode .mode-light { display: inline; }
body.light-mode .mode-dark { display: none; }

/* Light Mode Button Style */
body.light-mode .color-mode-btn {
    background: rgba(10, 10, 10, 0.05);
    border-color: rgba(10, 10, 10, 0.2);
    color: #1a1a1a;
}

body.light-mode .color-mode-btn:hover {
    background: rgba(10, 10, 10, 0.1);
}

/* ---- VIDEO INTRO SECTION ---- */
.video-intro-parker {
    background: var(--color-black);
    padding: 120px 0 60px;
    border-bottom: 1px solid rgba(245, 242, 235, 0.1);
}

.video-wrapper-parker {
    max-width: 900px;
    margin: 0 auto;
}

.video-embed-parker {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: rgba(245, 242, 235, 0.03);
    border: 1px solid rgba(245, 242, 235, 0.1);
}

.video-embed-parker iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder-parker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-content {
    text-align: center;
    color: rgba(245, 242, 235, 0.4);
}

.video-placeholder-content svg {
    margin-bottom: 20px;
    opacity: 0.3;
}

.video-placeholder-content p {
    font-size: 18px;
    margin-bottom: 8px;
    color: rgba(245, 242, 235, 0.6);
}

.video-placeholder-content small {
    font-size: 12px;
    color: rgba(245, 242, 235, 0.3);
}

/* Light Mode Video Section */
body.light-mode .video-intro-parker {
    background: #f8f8f6;
    border-bottom-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .video-embed-parker {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.1);
}

body.light-mode .video-placeholder-content {
    color: rgba(10, 10, 10, 0.4);
}

body.light-mode .video-placeholder-content p {
    color: rgba(10, 10, 10, 0.6);
}

/* =========================================
   LIGHT MODE STYLES
   ========================================= */

body.light-mode {
    --color-black: #ffffff;
    --color-white: #1a1a1a;
    --color-gold: #9a7b4f;
    background: #f8f8f6;
    color: #1a1a1a;
}

/* Header - Light Mode */
body.light-mode .header-parker {
    background: rgba(248, 248, 246, 0.95);
    border-bottom-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .header-parker.scrolled {
    background: rgba(248, 248, 246, 0.98);
}

body.light-mode .nav-parker a {
    color: #1a1a1a;
}

body.light-mode .header-cta-parker {
    background: #1a1a1a;
    color: #f8f8f6;
}

body.light-mode .header-cta-parker:hover {
    background: var(--color-gold);
}

body.light-mode .logo-parker {
    color: #1a1a1a;
}

/* Hero - Light Mode */
body.light-mode .hero-parker {
    background: #f8f8f6;
}

body.light-mode .hero-bg-parker {
    background: radial-gradient(ellipse at center, rgba(154, 123, 79, 0.08) 0%, transparent 60%);
}

body.light-mode .hero-headline-parker {
    color: #1a1a1a;
}

body.light-mode .hero-headline-parker .muted {
    color: rgba(26, 26, 26, 0.35);
}

body.light-mode .hero-intro-parker {
    color: rgba(26, 26, 26, 0.6);
}

body.light-mode .hero-eyebrow-parker {
    color: var(--color-gold);
}

body.light-mode .serif-italic {
    color: var(--color-gold);
}

/* Buttons - Light Mode */
body.light-mode .btn-parker-primary {
    background: #1a1a1a;
    color: #f8f8f6;
}

body.light-mode .btn-parker-primary:hover {
    background: var(--color-gold);
}

body.light-mode .btn-parker-outline {
    border-color: rgba(26, 26, 26, 0.3);
    color: #1a1a1a;
}

body.light-mode .btn-parker-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

body.light-mode .btn-parker-text {
    color: #1a1a1a;
}

body.light-mode .btn-parker-text:hover {
    color: var(--color-gold);
}

/* Sections - Light Mode */
body.light-mode .section-parker {
    background: #f8f8f6;
}

body.light-mode .section-label-parker {
    color: var(--color-gold);
}

body.light-mode .section-title-parker {
    color: #1a1a1a;
}

body.light-mode .section-title-parker .muted {
    color: rgba(26, 26, 26, 0.35);
}

/* Protocol Cards - Light Mode */
body.light-mode .protocol-card-parker {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .protocol-card-parker h3 {
    color: #1a1a1a;
}

body.light-mode .protocol-card-parker p {
    color: rgba(26, 26, 26, 0.6);
}

body.light-mode .protocol-num {
    color: rgba(154, 123, 79, 0.2);
}

/* Statement Section - Light Mode */
body.light-mode .statement-text-parker {
    color: rgba(26, 26, 26, 0.6);
}

body.light-mode .statement-number-parker {
    color: rgba(154, 123, 79, 0.15);
}

/* Service Cards - Light Mode */
body.light-mode .service-card-parker {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .service-card-parker:hover {
    border-color: var(--color-gold);
}

body.light-mode .service-num-parker {
    color: rgba(154, 123, 79, 0.25);
}

body.light-mode .service-title-parker {
    color: #1a1a1a;
}

body.light-mode .service-desc-parker {
    color: rgba(26, 26, 26, 0.5);
}

/* Physician Cards - Light Mode */
body.light-mode .physician-card-parker {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .physician-card-parker:hover {
    border-color: var(--color-gold);
}

body.light-mode .physician-name-parker {
    color: #1a1a1a;
}

body.light-mode .physician-title-parker {
    color: rgba(26, 26, 26, 0.5);
}

body.light-mode .physician-placeholder-parker {
    background: rgba(10, 10, 10, 0.03);
    color: rgba(10, 10, 10, 0.2);
}

/* Philosophy Section - Light Mode */
body.light-mode .philosophy-section-parker {
    background: #ffffff;
}

body.light-mode .philosophy-quote-parker {
    color: #1a1a1a;
}

body.light-mode .philosophy-cite-parker {
    color: rgba(26, 26, 26, 0.5);
}

/* Insurance Section - Light Mode */
body.light-mode .insurance-logos-parker span {
    border-color: rgba(10, 10, 10, 0.1);
    color: rgba(26, 26, 26, 0.6);
}

/* Podcast Section - Light Mode */
body.light-mode .podcast-section-parker {
    border-top: 1px solid rgba(10, 10, 10, 0.08);
}

body.light-mode .podcast-artwork-parker {
    background: linear-gradient(135deg, rgba(154, 123, 79, 0.1) 0%, transparent 100%);
}

body.light-mode .podcast-placeholder-parker span {
    color: rgba(26, 26, 26, 0.3);
}

body.light-mode .podcast-link-parker {
    background: rgba(10, 10, 10, 0.05);
    color: #1a1a1a;
}

body.light-mode .podcast-link-parker:hover {
    background: var(--color-gold);
    color: #ffffff;
}

/* Location Section - Light Mode */
body.light-mode .location-section-parker {
    background: #ffffff;
}

body.light-mode .location-areas-parker h3 {
    color: rgba(26, 26, 26, 0.4);
}

body.light-mode .location-areas-parker li {
    color: rgba(26, 26, 26, 0.6);
}

/* CTA Section - Light Mode */
body.light-mode .cta-section-parker {
    background: linear-gradient(180deg, #f8f8f6 0%, #ffffff 100%);
}

body.light-mode .cta-heading-parker {
    color: #1a1a1a;
}

body.light-mode .cta-subtext-parker {
    color: rgba(26, 26, 26, 0.5);
}

/* Footer - Light Mode */
body.light-mode .footer-parker {
    background: #1a1a1a;
    color: #f8f8f6;
}

body.light-mode .footer-location-city {
    color: rgba(248, 248, 246, 0.1);
}

body.light-mode .footer-contact-bar {
    border-color: rgba(248, 248, 246, 0.1);
}

/* Page Hero - Light Mode */
body.light-mode .page-hero-parker {
    background: #f8f8f6;
}

body.light-mode .page-title-parker {
    color: #1a1a1a;
}

body.light-mode .page-intro-parker {
    color: rgba(26, 26, 26, 0.5);
}

/* Content Areas - Light Mode */
body.light-mode .content-main-parker h2,
body.light-mode .content-main-parker h3 {
    color: #1a1a1a;
}

body.light-mode .content-main-parker p {
    color: rgba(26, 26, 26, 0.7);
}

body.light-mode .content-main-parker .lead-text {
    color: rgba(26, 26, 26, 0.85);
}

body.light-mode .content-main-parker ul li {
    color: rgba(26, 26, 26, 0.65);
}

body.light-mode .sidebar-card-parker {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .sidebar-card-parker h4 {
    color: #1a1a1a;
}

body.light-mode .sidebar-card-parker p {
    color: rgba(26, 26, 26, 0.5);
}

/* Borders and Dividers - Light Mode */
body.light-mode [style*="border-top: 1px solid rgba(245, 242, 235"],
body.light-mode [style*="border-bottom: 1px solid rgba(245, 242, 235"] {
    border-color: rgba(10, 10, 10, 0.08) !important;
}

/* Background Variants - Light Mode */
body.light-mode [style*="background: rgba(245, 242, 235, 0.02)"],
body.light-mode [style*="background: rgba(245, 242, 235, 0.03)"] {
    background: #ffffff !important;
}

body.light-mode [style*="background: rgba(201, 166, 107, 0.05)"] {
    background: rgba(154, 123, 79, 0.05) !important;
}

/* Insurance Grid - Light Mode */
body.light-mode .insurance-grid-parker .insurance-card-parker {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .insurance-card-parker h3 {
    color: #1a1a1a;
}

body.light-mode .insurance-type-parker {
    color: rgba(26, 26, 26, 0.5);
}

/* Jobs/Careers - Light Mode */
body.light-mode .job-card-parker {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .job-card-parker:hover {
    border-color: var(--color-gold);
}

body.light-mode .job-card-parker h3 {
    color: #1a1a1a;
}

body.light-mode .job-meta-parker,
body.light-mode .job-desc-parker {
    color: rgba(26, 26, 26, 0.6);
}


/* =========================================
   ADDITIONAL PAGE STYLES
   ========================================= */

/* Insurance Grid */
.insurance-grid-parker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.insurance-card-parker {
    padding: 25px 30px;
    border: 1px solid rgba(245, 242, 235, 0.1);
    background: rgba(245, 242, 235, 0.02);
}

.insurance-card-parker h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.insurance-type-parker {
    font-size: 13px;
    color: rgba(245, 242, 235, 0.4);
}

.insurance-note-parker {
    margin-top: 40px;
    font-size: 14px;
    color: rgba(245, 242, 235, 0.4);
    text-align: center;
}

/* Careers Page */
.careers-intro-parker {
    max-width: 800px;
    margin-bottom: 60px;
}

.careers-intro-parker h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    margin-bottom: 30px;
}

.careers-intro-parker p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(245, 242, 235, 0.7);
    margin-bottom: 20px;
}

.careers-intro-parker .lead-text {
    font-size: 20px;
    color: rgba(245, 242, 235, 0.85);
}

.careers-values-parker h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.values-grid-parker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.value-card-parker {
    padding: 25px;
    border: 1px solid rgba(245, 242, 235, 0.1);
}

.value-card-parker h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--color-gold);
}

.value-card-parker p {
    font-size: 14px;
    color: rgba(245, 242, 235, 0.5);
    margin: 0;
}

/* Jobs List */
.jobs-list-parker {
    margin-bottom: 50px;
}

.job-card-parker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border: 1px solid rgba(245, 242, 235, 0.1);
    background: rgba(245, 242, 235, 0.02);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.job-card-parker:hover {
    border-color: var(--color-gold);
}

@media (max-width: 768px) {
    .job-card-parker {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.job-info-parker h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.job-meta-parker {
    font-size: 13px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.job-desc-parker {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.5);
    margin: 0;
    max-width: 600px;
}

.job-arrow-parker {
    color: var(--color-gold);
    white-space: nowrap;
}

.careers-general-parker {
    padding: 30px;
    border: 1px solid rgba(201, 166, 107, 0.2);
    background: rgba(201, 166, 107, 0.05);
}

.careers-general-parker h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.careers-general-parker p {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.6);
    margin: 0;
}

.careers-general-parker a {
    color: var(--color-gold);
}

/* Service Content */
.service-content-parker h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 25px;
}

.service-content-parker h3 {
    font-size: 22px;
    margin: 35px 0 15px;
}

.service-content-parker p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 242, 235, 0.7);
    margin-bottom: 18px;
}

.service-content-parker ul {
    margin: 20px 0 25px 25px;
}

.service-content-parker li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.6);
    margin-bottom: 10px;
}

/* Sidebar Phone */
.sidebar-phone-parker {
    display: block;
    font-size: 20px;
    color: var(--color-gold);
    margin-top: 10px;
}

/* =========================================
   PARKER MEDICAL - MACBACH-INSPIRED EDITION
   Poppins + Playfair Display
   Bold Editorial Typography
   ========================================= */

/* ---- FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --color-black: #0a0a0a;
    --color-dark: #111111;
    --color-white: #ffffff;
    --color-cream: #f5f2eb;
    --color-gold: #c9a66b;
    --color-gold-dim: rgba(201, 166, 107, 0.15);
    --color-text: rgba(255, 255, 255, 0.7);
    --color-text-dim: rgba(255, 255, 255, 0.4);
}

body {
    font-family: var(--font-sans);
}

/* =========================================
   HERO: Testimonial + Quiz (35/65 Split)
   ========================================= */
.hero-testimonial-quiz {
    display: grid;
    grid-template-columns: 35fr 65fr;
    gap: 48px;
    margin-top: 60px;
    align-items: start;
}

@media (max-width: 1024px) {
    .hero-testimonial-quiz {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-testimonial-quiz {
        gap: 32px;
    }
}

.col-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a66b;
    margin-bottom: 16px;
}

/* Testimonial Column (Left - 35%) */
.hero-testimonial-col {
    display: flex;
    flex-direction: column;
}

.testimonial-video-vertical {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-video-vertical iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-caption {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    font-style: italic;
}

/* Quiz Column (Right - 65%) */
.hero-quiz-col {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(201, 166, 107, 0.15);
    padding: 32px;
}

.quiz-col-headline {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.3;
}

.hero-quiz-col .parker-quiz {
    border: none;
    padding: 0;
    background: transparent;
    max-width: none;
}

.hero-quiz-col .parker-quiz-container {
    padding: 0;
    border: none;
    background: transparent;
}

/* =========================================
   MEET DR. PARKER - Big Video Section
   ========================================= */
.section-dr-parker {
    padding: 120px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dr-parker-intro {
    text-align: center;
    margin-bottom: 48px;
}

.dr-parker-video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.dr-parker-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dr-parker-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.dr-parker-caption {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

/* =========================================
   CELEBRITY TESTIMONIAL VIDEO SECTION
   ========================================= */
.section-testimonial-video {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.testimonial-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.03) 0%, transparent 50%);
}

.testimonial-video-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .testimonial-video-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.testimonial-video-content {
    padding-right: 40px;
}

@media (max-width: 1024px) {
    .testimonial-video-content {
        padding-right: 0;
        order: 2;
    }
    
    .testimonial-video-frame {
        order: 1;
        max-width: 320px;
        margin: 0 auto;
    }
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 32px 0;
    padding-left: 24px;
    border-left: 3px solid var(--color-gold);
}

.testimonial-attribution {
    margin-bottom: 32px;
}

.testimonial-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.testimonial-title {
    display: block;
    font-size: 14px;
    color: var(--color-gold);
}

.testimonial-video-frame {
    position: relative;
}

.video-frame-vertical {
    position: relative;
    padding-bottom: 177.78%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-frame-vertical iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ---- HERO MACBACH ---- */
.hero-macbach {
    min-height: 100vh;
    background: var(--color-black);
    position: relative;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    overflow: hidden;
}

/* Layered Background Effect */
.hero-macbach-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-layer {
    position: absolute;
    border-radius: 50%;
}

.hero-layer-1 {
    width: 800px;
    height: 800px;
    right: -200px;
    top: -200px;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.08) 0%, transparent 70%);
}

.hero-layer-2 {
    width: 600px;
    height: 600px;
    left: -150px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.05) 0%, transparent 70%);
}

.hero-layer-3 {
    width: 400px;
    height: 400px;
    right: 20%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.hero-macbach-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* MACBACH Headline Style */
.hero-macbach-headline {
    margin: 80px 0 40px 0;
}

.hero-macbach-headline .line-sans {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(48px, 10vw, 130px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: var(--color-white);
    text-transform: uppercase;
}

.hero-macbach-headline .line-serif {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(50px, 11vw, 140px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--color-gold);
    margin-top: -0.05em;
}

.hero-macbach-sub {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    max-width: 600px;
    margin-bottom: 80px;
}

.hero-macbach-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ---- BUTTONS MACBACH ---- */
.btn-macbach-primary {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--color-white);
    color: var(--color-black);
    padding: 20px 45px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid var(--color-white);
}

.btn-macbach-primary:hover {
    background: transparent;
    color: var(--color-white);
}

.btn-macbach-lg {
    padding: 24px 55px;
    font-size: 14px;
}

.btn-macbach-outline {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    color: var(--color-white);
    padding: 20px 45px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.btn-macbach-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.link-macbach {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.link-macbach:hover {
    opacity: 0.7;
}

/* ---- SECTION STYLES ---- */
.section-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.headline-macbach {
    margin: 0 0 50px 0;
}

.headline-macbach .line-sans {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: var(--color-white);
    text-transform: uppercase;
}

.headline-macbach .line-serif {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--color-gold);
}

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

/* Section Layer (depth effect) */
.section-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 166, 107, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
}

/* ---- VIDEOS SECTION ---- */
.section-videos {
    background: var(--color-black);
    padding: 0 0 120px;
}

.videos-grid {
    display: flex;
    gap: 40px;
    align-items: flex-end;
    max-width: 90%;
}

.video-block {
    flex: 1;
}

.video-horizontal-block {
    flex: 1.8;
}

.video-vertical-block {
    flex: 0.8;
    max-width: 320px;
}

.video-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 12px;
}

.video-frame {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.video-16-9 {
    aspect-ratio: 16/9;
}

.video-9-16 {
    aspect-ratio: 9/16;
    max-height: 450px;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder-macbach {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-placeholder-macbach:hover {
    background: rgba(201, 166, 107, 0.1);
}

.play-btn {
    font-size: 32px;
    color: var(--color-gold);
    opacity: 0.6;
}

.video-hint {
    display: block;
    font-family: var(--font-serif);
    font-size: 12px;
    font-style: italic;
    color: rgba(201, 166, 107, 0.5);
    margin-top: 12px;
    text-align: center;
}

@media (max-width: 768px) {
    .videos-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .video-vertical-block {
        max-width: 100%;
    }
    .video-9-16 {
        max-height: 250px;
        margin: 0 auto;
        width: 140px;
    }
}

/* ---- PHILOSOPHY ---- */
.section-philosophy {
    background: var(--color-dark);
    padding: 150px 0;
    position: relative;
}

.philosophy-content {
    max-width: 550px;
}

.philosophy-content p {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 30px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

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

.philosophy-stat .stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(56px, 8vw, 80px);
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 16px;
}

.philosophy-stat .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.philosophy-stat .stat-label em {
    display: block;
    font-style: normal;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 4px;
}

/* ---- NUMBERS ---- */
.section-numbers {
    background: var(--color-black);
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
}

.number-block {
    text-align: left;
}

@media (max-width: 768px) {
    .number-block { text-align: center; }
}

.number-huge {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(72px, 12vw, 120px);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.number-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 8px;
}

.number-compare {
    display: block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-text-dim);
}

/* ---- SERVICES MACBACH ---- */
.section-services-macbach {
    background: var(--color-dark);
    padding: 150px 0;
    position: relative;
}

.services-macbach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .services-macbach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-macbach-grid {
        grid-template-columns: 1fr;
    }
}

.service-macbach-card {
    background: var(--color-dark);
    padding: 50px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
    transition: all 0.4s ease;
}

.service-macbach-card:hover {
    background: var(--color-black);
}

.service-macbach-card.service-featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 70px;
}

@media (max-width: 600px) {
    .service-macbach-card.service-featured {
        grid-column: span 1;
        grid-row: span 1;
        padding: 50px;
    }
}

.service-num {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: auto;
}

.service-macbach-card h3 {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.service-macbach-card h3 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
    text-transform: none;
}

.service-featured h3 {
    font-size: 32px;
}

.service-macbach-card p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-dim);
    margin: 0;
}

.service-arrow {
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 24px;
    color: var(--color-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-macbach-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---- TEAM MACBACH ---- */
.section-team-macbach {
    background: var(--color-black);
    padding: 150px 0;
}

.team-macbach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .team-macbach-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.physician-macbach {
    display: block;
    text-decoration: none;
    transition: transform 0.4s ease;
}

.physician-macbach:hover {
    transform: translateY(-10px);
}

.physician-macbach-img {
    aspect-ratio: 3/4;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: border-color 0.3s ease;
}

.physician-macbach:hover .physician-macbach-img {
    border-color: rgba(201, 166, 107, 0.3);
}

.physician-initials {
    font-family: var(--font-serif);
    font-size: 64px;
    font-style: italic;
    color: var(--color-gold-dim);
}

.physician-macbach-info h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.physician-macbach-info h3 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
    text-transform: none;
    letter-spacing: 0;
    margin-left: 8px;
}

.physician-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 15px;
}

.physician-macbach-info p {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-dim);
    margin: 0;
}

.team-cta-macbach {
    margin-top: 60px;
    text-align: center;
}

/* ---- QUOTE MACBACH ---- */
.section-quote-macbach {
    background: var(--color-dark);
    padding: 180px 0;
    position: relative;
    text-align: center;
}

.quote-macbach {
    max-width: 900px;
    margin: 0 auto;
}

.quote-macbach p {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-white);
    margin: 0 0 40px 0;
}

.quote-macbach em {
    font-style: italic;
    color: var(--color-gold);
}

.quote-macbach cite {
    font-family: var(--font-sans);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

/* ---- VIDEO FEATURE SECTION ---- */
.section-video-feature {
    background: var(--color-black);
    padding: 120px 0;
}

.video-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .video-feature-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.video-feature-content {
    padding-right: 20px;
}

.video-feature-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    margin-top: 24px;
}

.video-feature-embed {
    position: relative;
}

.video-wrapper-16-9 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(201, 166, 107, 0.15);
}

.video-wrapper-16-9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ---- INFO SPLIT MACBACH ---- */
.section-info-macbach {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 900px) {
    .section-info-macbach {
        grid-template-columns: 1fr;
    }
}

.info-macbach-left,
.info-macbach-right {
    padding: 100px 80px;
}

@media (max-width: 600px) {
    .info-macbach-left,
    .info-macbach-right {
        padding: 80px 30px;
    }
}

.info-macbach-left {
    background: var(--color-black);
}

.info-macbach-right {
    background: var(--color-dark);
}

.info-headline {
    font-family: var(--font-sans);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--color-white);
    margin: 0 0 25px 0;
    text-transform: uppercase;
}

.info-headline em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
    text-transform: none;
}

.info-macbach-left p,
.info-macbach-right p {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 25px;
}

.insurance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.insurance-badges span {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text);
}

.info-macbach-right address {
    font-style: normal;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 20px;
}

.hours-macbach {
    font-size: 14px !important;
    color: var(--color-text-dim) !important;
}

.hours-macbach strong {
    color: var(--color-gold);
}

.phone-macbach {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-gold);
    text-decoration: none;
    margin-top: 10px;
}

.phone-macbach:hover {
    text-decoration: underline;
}

/* ---- PODCAST MACBACH ---- */
.section-podcast-macbach {
    background: var(--color-black);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.podcast-macbach-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 768px) {
    .podcast-macbach-layout {
        flex-direction: column;
        text-align: center;
    }
}

.podcast-art-macbach {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.podcast-art-macbach img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-title-macbach {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin: 10px 0;
    text-transform: uppercase;
}

.podcast-hosts-macbach {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 10px;
}

.podcast-hosts-macbach strong {
    color: var(--color-white);
    font-weight: 500;
}

.podcast-desc-macbach {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text-dim);
    margin-bottom: 25px;
}

.podcast-links-macbach {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    .podcast-links-macbach {
        justify-content: center;
    }
}

.podcast-links-macbach a {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.podcast-links-macbach a:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* ---- CTA MACBACH ---- */
.section-cta-macbach {
    background: var(--color-dark);
    padding: 180px 0;
    text-align: center;
    position: relative;
}

.cta-sub-macbach {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    color: var(--color-text-dim);
    margin-bottom: 40px;
}

/* =========================================
   PAGE HEROES - MACBACH STYLE
   ========================================= */

.page-hero-macbach {
    background: var(--color-black);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.page-hero-macbach .section-layer {
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(201, 166, 107, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
}

.page-hero-macbach .section-eyebrow {
    margin-bottom: 25px;
}

.page-headline-macbach {
    margin: 0 0 40px 0;
}

.page-headline-macbach .line-sans {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(42px, 8vw, 90px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: var(--color-white);
    text-transform: uppercase;
}

.page-headline-macbach .line-serif {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(46px, 9vw, 100px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--color-gold);
}

.page-intro-macbach {
    font-family: var(--font-sans);
    font-size: 19px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    max-width: 600px;
    margin: 0;
}

.page-location-macbach {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-top: 20px;
}

/* =========================================
   CONTRAST SECTION (Concierge Page)
   ========================================= */

.section-contrast-macbach {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 900px) {
    .section-contrast-macbach {
        grid-template-columns: 1fr;
    }
}

.contrast-side {
    padding: 100px 80px;
}

@media (max-width: 600px) {
    .contrast-side {
        padding: 70px 30px;
    }
}

.contrast-bad {
    background: linear-gradient(135deg, #1a0808 0%, var(--color-black) 100%);
}

.contrast-good {
    background: linear-gradient(135deg, #081a10 0%, var(--color-black) 100%);
}

.contrast-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contrast-bad .contrast-label {
    color: #ff6b6b;
}

.contrast-good .contrast-label {
    color: var(--color-gold);
}

.contrast-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contrast-list li {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.contrast-bad .contrast-list li {
    color: var(--color-text-dim);
}

.contrast-good .contrast-list li {
    color: var(--color-white);
}

.contrast-list .icon {
    font-size: 14px;
    flex-shrink: 0;
}

.contrast-bad .icon {
    color: #ff6b6b;
}

.contrast-good .icon {
    color: var(--color-gold);
}

/* =========================================
   INCLUDED SECTION
   ========================================= */

.section-included-macbach {
    background: var(--color-dark);
    padding: 150px 0;
    position: relative;
}

.included-grid-macbach {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 1100px) {
    .included-grid-macbach {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .included-grid-macbach {
        grid-template-columns: 1fr;
    }
}

.included-item-macbach {
    padding: 40px;
    background: var(--color-black);
    border-left: 2px solid var(--color-gold-dim);
    transition: border-color 0.3s ease;
}

.included-item-macbach:hover {
    border-color: var(--color-gold);
}

.included-num-macbach {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: block;
}

.included-item-macbach h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.included-item-macbach p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-dim);
    margin: 0;
}

/* =========================================
   FAQ MACBACH
   ========================================= */

.section-faq-macbach {
    background: var(--color-black);
    padding: 150px 0;
}

.faq-list-macbach {
    max-width: 900px;
    margin-top: 60px;
}

.faq-item-macbach {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item-macbach h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-white);
    margin: 0 0 15px 0;
}

.faq-item-macbach p {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

/* =========================================
   RELATED SERVICES MACBACH
   ========================================= */

.section-related-macbach {
    background: var(--color-dark);
    padding: 120px 0;
    position: relative;
}

.related-grid-macbach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 800px) {
    .related-grid-macbach {
        grid-template-columns: 1fr;
    }
}

.related-card-macbach {
    padding: 45px;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-card-macbach:hover {
    border-color: rgba(201, 166, 107, 0.4);
}

.related-card-macbach .service-num {
    margin-bottom: 25px;
}

.related-card-macbach h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.related-card-macbach p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-dim);
    margin: 0;
}

/* =========================================
   STAT SECTION (Service Pages)
   ========================================= */

.section-stat-macbach {
    background: var(--color-dark);
    padding: 150px 0;
    position: relative;
}

.stat-grid-macbach {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .stat-grid-macbach {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.stat-big-macbach {
    text-align: center;
}

.stat-number-macbach {
    font-family: var(--font-serif);
    font-size: clamp(100px, 18vw, 200px);
    font-weight: 400;
    font-style: italic;
    line-height: 0.9;
    color: var(--color-gold-dim);
}

.stat-suffix-macbach {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: 15px;
    display: block;
}

.stat-content-macbach p {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

/* =========================================
   LIGHT MODE OVERRIDES
   ========================================= */

body.light-mode {
    --color-black: #ffffff;
    --color-dark: #f8f8f6;
    --color-white: #0a0a0a;
    --color-gold: #9a7b4f;
    --color-gold-dim: rgba(154, 123, 79, 0.15);
    --color-text: rgba(10, 10, 10, 0.7);
    --color-text-dim: rgba(10, 10, 10, 0.4);
}

body.light-mode .hero-layer-1 {
    background: radial-gradient(circle, rgba(154, 123, 79, 0.08) 0%, transparent 70%);
}

body.light-mode .hero-layer-2 {
    background: radial-gradient(circle, rgba(154, 123, 79, 0.05) 0%, transparent 70%);
}

body.light-mode .hero-layer-3 {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
}

body.light-mode .btn-macbach-primary {
    background: #0a0a0a;
    color: #ffffff;
    border-color: #0a0a0a;
}

body.light-mode .btn-macbach-primary:hover {
    background: transparent;
    color: #0a0a0a;
}

body.light-mode .btn-macbach-outline {
    border-color: rgba(10, 10, 10, 0.2);
    color: #0a0a0a;
}

body.light-mode .video-frame,
body.light-mode .physician-macbach-img {
    background: rgba(10, 10, 10, 0.02);
    border-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .service-macbach-card,
body.light-mode .included-item-macbach,
body.light-mode .related-card-macbach {
    background: #ffffff;
}

body.light-mode .service-macbach-card:hover,
body.light-mode .included-item-macbach:hover {
    background: #f8f8f6;
}

body.light-mode .services-macbach-grid {
    background: rgba(10, 10, 10, 0.08);
}

body.light-mode .insurance-badges span {
    border-color: rgba(10, 10, 10, 0.1);
}

body.light-mode .podcast-links-macbach a {
    background: rgba(10, 10, 10, 0.05);
    color: #0a0a0a;
}

body.light-mode .podcast-links-macbach a:hover {
    background: var(--color-gold);
    color: #ffffff;
}

body.light-mode .contrast-bad {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

body.light-mode .contrast-good {
    background: linear-gradient(135deg, #f5fff8 0%, #ffffff 100%);
}

/* =========================================
   SERVICE PAGE SPECIFIC STYLES
   ========================================= */

/* Experience/Scenarios */
.section-experience-macbach {
    background: var(--color-black);
    padding: 150px 0;
    position: relative;
}

.scenarios-macbach {
    display: grid;
    gap: 30px;
    margin-top: 60px;
    max-width: 900px;
}

.scenario-macbach {
    padding: 50px;
    background: var(--color-dark);
    border-left: 2px solid var(--color-gold-dim);
    transition: border-color 0.3s ease;
}

.scenario-macbach:hover {
    border-color: var(--color-gold);
}

.scenario-time {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.scenario-macbach p {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* Specialized Cards */
.section-specialized-macbach {
    background: var(--color-dark);
    padding: 150px 0;
    position: relative;
}

.specialized-grid-macbach {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .specialized-grid-macbach {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .specialized-grid-macbach {
        grid-template-columns: 1fr;
    }
}

.specialized-card-macbach {
    padding: 45px;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    position: relative;
    transition: all 0.4s ease;
}

.specialized-card-macbach:hover {
    border-color: rgba(201, 166, 107, 0.4);
}

.specialized-card-macbach h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.3;
    color: var(--color-white);
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.specialized-card-macbach h3 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
    text-transform: none;
}

.specialized-card-macbach p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-dim);
    margin: 0;
}

.card-arrow {
    position: absolute;
    top: 45px;
    right: 45px;
    font-size: 20px;
    color: var(--color-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.specialized-card-macbach:hover .card-arrow {
    opacity: 1;
}

/* Pricing Section */
.section-pricing-macbach {
    background: var(--color-black);
    padding: 150px 0;
}

.pricing-grid-macbach {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

@media (max-width: 900px) {
    .pricing-grid-macbach {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.pricing-left-macbach p {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 25px;
}

.pricing-right-macbach h3 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin: 0 0 25px 0;
}

.insurance-grid-macbach {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.insurance-grid-macbach span {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    padding: 12px 18px;
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text);
}

.faq-more-macbach {
    margin-top: 50px;
}

.cta-phone-macbach {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text-dim);
    margin-top: 25px;
}

.cta-phone-macbach a {
    color: var(--color-gold);
    text-decoration: none;
}

.cta-phone-macbach a:hover {
    text-decoration: underline;
}

/* Menu Section (IV, Weight Loss) */
.section-menu-macbach {
    background: var(--color-black);
    padding: 150px 0;
}

.menu-intro-macbach {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    max-width: 600px;
    margin-top: 30px;
}

.menu-grid-macbach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

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

@media (max-width: 1024px) {
    .menu-grid-macbach {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .menu-grid-macbach {
        grid-template-columns: 1fr;
    }
}

.menu-item-macbach {
    padding: 45px;
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.menu-item-macbach:hover {
    border-color: rgba(201, 166, 107, 0.3);
}

.menu-header-macbach {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.menu-item-macbach h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin: 0;
    text-transform: uppercase;
}

.menu-item-macbach h3 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
    text-transform: none;
}

.menu-tag {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 6px 12px;
    border: 1px solid rgba(201, 166, 107, 0.3);
    flex-shrink: 0;
}

.menu-item-macbach > p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 25px 0;
}

.menu-benefits-macbach {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-benefits-macbach span {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-dim);
}

.menu-custom-macbach {
    margin-top: 60px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.08) 0%, rgba(201, 166, 107, 0.02) 100%);
    border: 1px solid rgba(201, 166, 107, 0.2);
}

.menu-custom-macbach h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.menu-custom-macbach h3 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}

.menu-custom-macbach p {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* Who Section */
.section-who-macbach {
    background: var(--color-dark);
    padding: 150px 0;
    position: relative;
}

.who-grid-macbach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .who-grid-macbach {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .who-grid-macbach {
        grid-template-columns: 1fr;
    }
}

.who-item-macbach {
    padding: 35px;
    border-left: 2px solid var(--color-gold-dim);
    transition: border-color 0.3s ease;
}

.who-item-macbach:hover {
    border-color: var(--color-gold);
}

.who-item-macbach h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin: 0 0 12px 0;
}

.who-item-macbach p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-dim);
    margin: 0;
}

/* Grade Section */
.section-grade-macbach {
    background: var(--color-black);
    padding: 150px 0;
}

.grade-grid-macbach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

@media (max-width: 800px) {
    .grade-grid-macbach {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.grade-item-macbach h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin: 0 0 15px 0;
}

.grade-item-macbach p {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

/* Treats Section (HBOT) */
.section-treats-macbach {
    background: var(--color-dark);
    padding: 150px 0;
}

.treats-grid-macbach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .treats-grid-macbach {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.treats-col-macbach h3 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 0 0 25px 0;
}

.treats-col-macbach ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treats-col-macbach li {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Research Section */
.section-research-macbach {
    background: var(--color-black);
    padding: 150px 0;
    position: relative;
}

.research-grid-macbach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 800px) {
    .research-grid-macbach {
        grid-template-columns: 1fr;
    }
}

.research-item-macbach {
    text-align: center;
    padding: 50px 30px;
    background: var(--color-dark);
}

.research-stat-macbach {
    display: block;
    font-family: var(--font-serif);
    font-size: 48px;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.research-item-macbach p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

.research-note-macbach {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: var(--color-text-dim);
    margin-top: 50px;
    text-align: center;
}

/* Protocols Section */
.section-protocols-macbach {
    background: var(--color-dark);
    padding: 150px 0;
}

.protocols-grid-macbach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

@media (max-width: 800px) {
    .protocols-grid-macbach {
        grid-template-columns: 1fr;
    }
}

.protocol-card-macbach {
    padding: 50px;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.protocol-card-macbach h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.protocol-num-macbach {
    display: block;
    font-family: var(--font-serif);
    font-size: 36px;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.protocol-card-macbach p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-dim);
    margin: 0;
}

/* =========================================
   TEAM & ABOUT PAGES
   ========================================= */

.section-team-full-macbach {
    background: var(--color-black);
    padding: 120px 0;
}

.section-team-full-macbach.alt-bg {
    background: var(--color-dark);
}

.team-full-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
}

.team-full-grid + .team-full-grid {
    margin-top: 140px;
    padding-top: 140px;
    border-top: 1px solid rgba(201, 166, 107, 0.15);
}

.team-full-grid.reverse {
    grid-template-columns: 1fr 350px;
}

.team-full-grid.reverse .team-full-image {
    order: 2;
}

@media (max-width: 1024px) {
    .team-full-grid,
    .team-full-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .team-full-grid.reverse .team-full-image {
        order: 0;
    }
}

.team-full-image {
    aspect-ratio: 3/4;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-full-image .physician-initials {
    font-size: 100px;
}

.team-full-info h2 {
    font-family: var(--font-sans);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-white);
    margin: 0;
    text-transform: uppercase;
}

.team-full-info h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
    text-transform: none;
    margin-left: 10px;
}

.team-full-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin: 10px 0 30px;
}

.team-full-bio p {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.team-full-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
    .team-full-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.detail-col h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 0 0 15px 0;
}

.detail-col h4:not(:first-child) {
    margin-top: 25px;
}

.detail-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-col li {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text);
    padding: 6px 0;
}

/* Light mode additions for new sections */
body.light-mode .scenario-macbach,
body.light-mode .menu-item-macbach,
body.light-mode .research-item-macbach,
body.light-mode .protocol-card-macbach,
body.light-mode .specialized-card-macbach {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .scenario-macbach:hover,
body.light-mode .menu-item-macbach:hover {
    border-color: var(--color-gold);
}

body.light-mode .menu-custom-macbach {
    background: linear-gradient(135deg, rgba(154, 123, 79, 0.08) 0%, rgba(154, 123, 79, 0.02) 100%);
    border-color: rgba(154, 123, 79, 0.2);
}

body.light-mode .who-item-macbach,
body.light-mode .included-item-macbach {
    border-color: var(--color-gold-dim);
}

body.light-mode .insurance-grid-macbach span,
body.light-mode .menu-benefits-macbach span {
    background: rgba(10, 10, 10, 0.03);
    border-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .team-full-image {
    background: rgba(10, 10, 10, 0.02);
    border-color: rgba(10, 10, 10, 0.08);
}

/* =========================================
   ABOUT PAGE SPECIFIC - MACBACH
   ========================================= */

.hero-statement-macbach {
    padding: 200px 0 150px;
}

.hero-statement-macbach .line-serif.dim {
    color: rgba(201, 166, 107, 0.25);
}

body.light-mode .hero-statement-macbach .line-serif.dim {
    color: rgba(154, 123, 79, 0.2);
}

.section-problem-macbach {
    background: var(--color-black);
    padding: 150px 0;
}

.problem-grid-macbach {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

@media (max-width: 900px) {
    .problem-grid-macbach {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.problem-stat-macbach {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-num-red {
    font-family: var(--font-serif);
    font-size: 64px;
    font-style: italic;
    color: rgba(255, 100, 100, 0.4);
}

.stat-unit {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-left: 12px;
}

.problem-stat-macbach p {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
    margin: 15px 0 0;
}

.section-decision-macbach {
    background: var(--color-dark);
    padding: 150px 0;
    position: relative;
}

.decision-content-macbach {
    max-width: 750px;
    margin-top: 50px;
}

.lead-macbach {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 30px;
}

.decision-content-macbach p {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 25px;
}

.section-beliefs-macbach {
    background: var(--color-black);
    padding: 150px 0;
}

.beliefs-list-macbach {
    max-width: 900px;
    margin-top: 60px;
}

.belief-item-macbach {
    display: flex;
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
    .belief-item-macbach {
        flex-direction: column;
        gap: 20px;
    }
}

.belief-num-macbach {
    font-family: var(--font-serif);
    font-size: 48px;
    font-style: italic;
    color: var(--color-gold-dim);
    flex-shrink: 0;
    width: 80px;
}

.belief-content-macbach h3 {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-white);
    margin: 0 0 15px;
}

.belief-content-macbach p {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

.section-team-intro-macbach {
    background: var(--color-dark);
    padding: 150px 0;
}

.team-intro-grid-macbach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .team-intro-grid-macbach {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.team-intro-left-macbach p {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin: 30px 0 40px;
}

.team-preview-macbach {
    display: flex;
    gap: 30px;
}

@media (max-width: 600px) {
    .team-preview-macbach {
        flex-direction: column;
        gap: 25px;
    }
}

.preview-item-macbach {
    text-align: center;
}

.preview-initials-macbach {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-serif);
    font-size: 32px;
    font-style: italic;
    color: var(--color-gold-dim);
    margin-bottom: 15px;
}

.preview-name-macbach {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text);
}

.areas-grid-macbach {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.areas-grid-macbach span {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

body.light-mode .preview-initials-macbach {
    background: rgba(10, 10, 10, 0.02);
    border-color: rgba(10, 10, 10, 0.08);
}

body.light-mode .areas-grid-macbach span {
    border-color: rgba(10, 10, 10, 0.1);
}

/* =========================================
   ADDITIONAL MACBACH COMPONENTS
   ========================================= */

/* Leadership Section */
.section-leadership-macbach {
    background: var(--color-dark);
    padding: 120px 0;
    position: relative;
}

.leadership-grid-macbach {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.leader-card-macbach {
    padding: 45px;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.leader-card-macbach h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.leader-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.leader-card-macbach p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-dim);
    margin: 0;
}

/* Services Page - Alt Background */
.section-services-macbach.alt-bg {
    background: var(--color-dark);
}

/* Services Small Grid */
.services-small-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 900px) {
    .services-small-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .services-small-grid {
        grid-template-columns: 1fr !important;
    }
}

.service-macbach-card.service-small {
    min-height: auto;
    padding: 40px;
}

.service-macbach-card.service-small h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.service-macbach-card.service-small p {
    font-size: 13px;
}

.service-macbach-card.service-small .service-arrow {
    bottom: 40px;
    right: 40px;
}

/* Light mode for new components */
body.light-mode .leader-card-macbach {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.05);
}

/* =========================================
   CONTACT PAGE - MACBACH
   ========================================= */

.hero-compact {
    padding: 160px 0 100px;
}

.section-contact-macbach {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    min-height: 600px;
}

@media (max-width: 1024px) {
    .section-contact-macbach {
        grid-template-columns: 1fr;
    }
}

.contact-left-macbach {
    background: var(--color-black);
    padding: 100px 80px;
}

.contact-right-macbach {
    background: var(--color-dark);
    padding: 100px 60px;
}

@media (max-width: 600px) {
    .contact-left-macbach,
    .contact-right-macbach {
        padding: 60px 30px;
    }
}

/* Contact Form */
.contact-form-macbach {
    margin-top: 40px;
}

.form-macbach {
    max-width: 600px;
}

.form-row-macbach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .form-row-macbach {
        grid-template-columns: 1fr;
    }
}

.form-group-macbach {
    margin-bottom: 20px;
}

.form-group-macbach label {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 10px;
}

.form-group-macbach input,
.form-group-macbach select,
.form-group-macbach textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-white);
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group-macbach input:focus,
.form-group-macbach select:focus,
.form-group-macbach textarea:focus {
    border-color: var(--color-gold);
}

.form-group-macbach select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-group-macbach textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info Blocks */
.contact-info-block-macbach {
    margin-bottom: 40px;
}

.contact-info-block-macbach:last-child {
    margin-bottom: 0;
}

.contact-info-block-macbach h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin: 10px 0 15px;
}

.contact-info-block-macbach address,
.contact-info-block-macbach p {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

.contact-phone-macbach {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-gold);
    text-decoration: none;
}

.contact-phone-macbach:hover {
    text-decoration: underline;
}

.hours-note-macbach {
    margin-top: 15px !important;
}

.hours-note-macbach strong {
    color: var(--color-gold);
}

/* =========================================
   FAQ PAGE - MACBACH
   ========================================= */

.faq-section-macbach {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-section-macbach:last-child {
    border-bottom: none;
}

/* =========================================
   INSURANCE PAGE - MACBACH
   ========================================= */

.section-insurance-macbach {
    background: var(--color-black);
    padding: 150px 0;
}

.insurance-full-grid-macbach {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .insurance-full-grid-macbach {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .insurance-full-grid-macbach {
        grid-template-columns: 1fr;
    }
}

.insurance-card-macbach {
    padding: 40px;
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.insurance-card-macbach h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 10px;
}

.insurance-card-macbach p {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-text-dim);
    margin: 0;
}

.insurance-card-highlight {
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.1) 0%, rgba(201, 166, 107, 0.02) 100%);
    border-color: rgba(201, 166, 107, 0.3);
}

.insurance-card-highlight h3 {
    color: var(--color-gold);
}

/* Light mode form */
body.light-mode .form-group-macbach input,
body.light-mode .form-group-macbach select,
body.light-mode .form-group-macbach textarea {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.1);
    color: #0a0a0a;
}

body.light-mode .insurance-card-macbach {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.05);
}

body.light-mode .insurance-card-highlight {
    background: linear-gradient(135deg, rgba(154, 123, 79, 0.1) 0%, rgba(154, 123, 79, 0.02) 100%);
    border-color: rgba(154, 123, 79, 0.3);
}

/* =========================================
   PODCAST PAGE - MACBACH
   ========================================= */

.section-podcast-full-macbach {
    background: var(--color-black);
    padding: 100px 0 150px;
}

.podcast-full-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 900px) {
    .podcast-full-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.podcast-full-art {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.podcast-full-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-full-info p {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 25px;
}

.podcast-platforms-macbach {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.podcast-platforms-macbach h3 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin: 0 0 20px;
}

.platform-links-macbach {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* =============================================================================
   ACCESSIBILITY - Skip Link & Screen Reader
   ============================================================================= */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-gold, #c9a66b);
    color: #000;
    padding: 8px 16px;
    z-index: 100000;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--color-gold, #c9a66b);
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Team page image styling */
.team-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Homepage team card images */
.physician-macbach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Leadership card images */
.leader-img-macbach {
    width: 200px;
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.leader-img-macbach img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ==========================================================================
   CONTACT PAGE - CINEMATIC DESIGN
   ========================================================================== */

/* CINEMATIC HERO */
.contact-hero-cinematic {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.contact-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.6) 40%,
        rgba(10, 10, 10, 0.2) 100%
    );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 80px;
    max-width: 800px;
}

.contact-hero-headline {
    margin: 15px 0 20px;
}

.contact-hero-headline .line-sans {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

.contact-hero-headline .line-serif {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-style: italic;
    font-weight: 400;
    color: #c9a66b;
}

.contact-hero-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

/* CONTACT MOSAIC SECTION */
.contact-mosaic-section {
    padding: 0;
    background: #0a0a0a;
}

.contact-mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Image Mosaic */
.contact-mosaic-images {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
    background: #0a0a0a;
}

.mosaic-large {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.mosaic-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mosaic-large:hover img {
    transform: scale(1.03);
}

.mosaic-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a66b;
    background: rgba(10, 10, 10, 0.8);
    padding: 8px 16px;
}

.mosaic-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    height: 220px;
}

.mosaic-small {
    overflow: hidden;
    height: 100%;
}

.mosaic-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mosaic-small:hover img {
    transform: scale(1.05);
}

/* Contact Form Panel */
.contact-form-panel {
    padding: 80px 60px;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-panel .section-eyebrow {
    color: #c9a66b;
}

.contact-form-panel .headline-macbach {
    margin-bottom: 20px;
}

.form-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* CONTACT INFO BAR */
.contact-info-bar {
    background: #c9a66b;
    padding: 40px 0;
}

.info-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.info-bar-item {
    text-align: center;
}

.info-bar-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.6);
    margin-bottom: 8px;
}

.info-bar-value {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0a0a0a;
}

.info-bar-highlight {
    color: #0a0a0a;
    font-weight: 700;
}

.info-bar-link {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    border-bottom: 2px solid #0a0a0a;
    transition: opacity 0.3s ease;
}

.info-bar-link:hover {
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-mosaic-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-mosaic-images {
        order: 2;
    }
    
    .mosaic-large {
        height: 350px;
    }
    
    .mosaic-row {
        height: 180px;
    }
    
    .contact-form-panel {
        order: 1;
        padding: 60px 40px;
    }
    
    .info-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-panel {
        padding: 40px 20px;
    }
    
    .mosaic-large {
        height: 280px;
    }
    
    .mosaic-row {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .mosaic-small {
        height: 180px;
    }
    
    .info-bar-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Expanded Leadership Card */
.leader-card-expanded {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    text-align: left;
    align-items: start;
}

.leader-card-expanded .leader-img-macbach {
    width: 100%;
    height: 350px;
    margin-bottom: 0;
}

.leader-bio-macbach h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 5px;
}

.leader-bio-macbach h3 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #c9a66b;
    margin-left: 10px;
}

.leader-bio-macbach .leader-role {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c9a66b;
    margin-bottom: 25px;
}

.leader-bio-macbach p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.leader-bio-macbach .leader-credentials {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .leader-card-expanded {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .leader-card-expanded .leader-img-macbach {
        max-width: 280px;
        margin: 0 auto 30px;
    }
}

/* ==========================================================================
   OFFICE GALLERY SECTION
   ========================================================================== */

.section-office-gallery {
    padding: 100px 0;
    background: #0a0a0a;
}

.gallery-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 600px;
}

.office-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 8px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-large img {
    height: 100%;
    min-height: 400px;
}

@media (max-width: 768px) {
    .office-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-large img {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .office-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-large {
        grid-column: span 1;
    }
}

/* Office Feature Image */
.section-office-feature {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.office-feature-image {
    width: 100%;
    height: 100%;
}

.office-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .section-office-feature {
        height: 250px;
    }
}

/* Full Team Section */
.section-full-team {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.full-team-image {
    width: 100%;
    height: 100%;
}

.full-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 768px) {
    .section-full-team {
        height: 300px;
    }
}

/* Team Photo Feature */
.team-photo-feature {
    border-radius: 4px;
    overflow: hidden;
}

.team-photo-feature img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Office Details */
.contact-office-details {
    background: #0a0a0a;
    padding: 0;
}

.contact-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.contact-detail-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.contact-detail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.contact-detail-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-detail-item {
        aspect-ratio: 4/3;
    }
}

/* Equipment Feature Section */
.section-equipment-feature {
    padding: 80px 0;
    background: #0a0a0a;
}

.equipment-feature-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.equipment-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.equipment-feature-content .section-eyebrow {
    margin-bottom: 16px;
}

.equipment-feature-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .equipment-feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .equipment-feature-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Workspace Gallery */
.section-workspace-gallery {
    background: #0a0a0a;
    padding: 0;
}

.workspace-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.workspace-item {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.workspace-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.workspace-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .workspace-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .workspace-item {
        aspect-ratio: 4/3;
    }
}

/* ==========================================================================
   DRAMATIC IMAGE LAYOUTS
   ========================================================================== */

/* ---------------------------------------------
   CINEMATIC SPLIT - 60/40 with content overlay
   --------------------------------------------- */
.section-cinematic-split {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 500px;
    background: #0a0a0a;
}

.section-cinematic-split.reverse {
    grid-template-columns: 40% 60%;
}

.cinematic-image {
    position: relative;
    overflow: hidden;
}

.cinematic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cinematic-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, transparent, #0a0a0a);
}

.section-cinematic-split.reverse .cinematic-image::after {
    right: auto;
    left: 0;
    background: linear-gradient(to left, transparent, #0a0a0a);
}

.cinematic-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.cinematic-content .section-eyebrow {
    margin-bottom: 16px;
}

.cinematic-content .headline-macbach {
    margin-bottom: 24px;
}

.cinematic-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 16px;
}

.cinematic-content .gold-accent {
    width: 60px;
    height: 2px;
    background: #c9a66b;
    margin-top: 32px;
}

@media (max-width: 900px) {
    .section-cinematic-split,
    .section-cinematic-split.reverse {
        grid-template-columns: 1fr;
    }
    
    .cinematic-image {
        min-height: 350px;
    }
    
    .cinematic-image::after {
        display: none;
    }
    
    .cinematic-content {
        padding: 40px 24px;
    }
}

/* ---------------------------------------------
   ASYMMETRIC DUO - Portrait + Landscape pairing
   --------------------------------------------- */
.section-asymmetric-duo {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8px;
    background: #0a0a0a;
    padding: 8px 0;
}

.section-asymmetric-duo.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.duo-portrait {
    aspect-ratio: 2/3;
    overflow: hidden;
}

.duo-landscape {
    aspect-ratio: 3/2;
    overflow: hidden;
    align-self: center;
}

.duo-portrait img,
.duo-landscape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.duo-portrait:hover img,
.duo-landscape:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .section-asymmetric-duo,
    .section-asymmetric-duo.reverse {
        grid-template-columns: 1fr;
    }
    
    .duo-portrait {
        aspect-ratio: 4/3;
    }
}

/* ---------------------------------------------
   EDITORIAL TRIO - 3 images at varied heights
   --------------------------------------------- */
.section-editorial-trio {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 600px;
    background: #0a0a0a;
}

.trio-tall {
    grid-row: span 2;
    overflow: hidden;
}

.trio-short {
    overflow: hidden;
}

.trio-tall img,
.trio-short img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trio-tall:hover img,
.trio-short:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .section-editorial-trio {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
    }
    
    .trio-tall {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
    
    .trio-short {
        aspect-ratio: 4/3;
    }
}

/* ---------------------------------------------
   PARALLAX MOMENT - Fixed background with overlay
   --------------------------------------------- */
.section-parallax-moment {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.8) 100%);
    z-index: 2;
}

.parallax-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.parallax-stat {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 400;
    color: #c9a66b;
    line-height: 1;
    margin-bottom: 16px;
}

.parallax-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
}

.parallax-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-parallax-moment {
        height: 60vh;
        min-height: 400px;
    }
    
    .parallax-stat {
        font-size: 4rem;
    }
}

/* ---------------------------------------------
   GOLD-FRAMED FEATURE - Inset with accent
   --------------------------------------------- */
.section-gold-frame {
    padding: 60px;
    background: #0a0a0a;
}

.gold-frame-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gold-frame-container::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 40%;
    height: 2px;
    background: #c9a66b;
}

.gold-frame-container::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 2px;
    height: 40%;
    background: #c9a66b;
}

.gold-frame-image {
    overflow: hidden;
}

.gold-frame-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .section-gold-frame {
        padding: 24px;
    }
}

/* ==========================================================================
   MEGA MENU SYSTEM
   ========================================================================== */

/* Logo Image */
.logo-img-parker {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

body.light-mode .logo-img-parker {
    filter: brightness(0);
}

/* 50/50 Landscape Split */
.section-duo-landscape {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background: #0a0a0a;
}

.duo-landscape-item {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.duo-landscape-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.duo-landscape-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .section-duo-landscape {
        grid-template-columns: 1fr;
    }
    
    /* Mobile: Show only first image */
    .duo-landscape-item:last-child {
        display: none;
    }
}

/* 25/50/25 - Vertical/Landscape/Vertical */
.section-trio-mixed {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4px;
    background: #0a0a0a;
    min-height: 500px;
}

.trio-vertical {
    overflow: hidden;
}

.trio-vertical img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.trio-vertical:hover img {
    transform: scale(1.03);
}

.trio-landscape {
    overflow: hidden;
}

.trio-landscape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.trio-landscape:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .section-trio-mixed {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    /* Mobile: Show only center landscape */
    .trio-vertical {
        display: none;
    }
    
    .trio-landscape {
        aspect-ratio: 3/2;
    }
}

/* Cinematic Split - Mobile Refinement */
@media (max-width: 900px) {
    .section-cinematic-split .cinematic-content {
        order: 2;
    }
    
    .section-cinematic-split .cinematic-image {
        order: 1;
    }
}

/* Asymmetric Duo - Mobile: Single image */
@media (max-width: 768px) {
    .section-asymmetric-duo .duo-portrait {
        display: none;
    }
    
    .section-asymmetric-duo.reverse .duo-landscape {
        display: none;
    }
    
    .section-asymmetric-duo.reverse .duo-portrait {
        display: block;
        aspect-ratio: 3/2;
    }
}

/* Editorial Trio - Mobile: Single hero */
@media (max-width: 768px) {
    .section-editorial-trio {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .section-editorial-trio .trio-tall {
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
    
    .section-editorial-trio .trio-short {
        display: none;
    }
}

/* ==========================================================================
   FOOTER LOGO
   ========================================================================== */

.footer-logo-parker {
    margin-bottom: 24px;
}

.footer-logo-parker img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* ==========================================================================
   ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: #0a0a0a;
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 16px;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =============================================================================
   HEADER V5.0 - PREMIUM MEGA MENU + FOUC FIX
   ============================================================================= */

/* Logo - Larger sizing */
.header-logo-parker .logo-svg {
    height: 101px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: height 0.2s ease;
}

@media (max-width: 1024px) {
    .header-logo-parker .logo-svg {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .header-logo-parker .logo-svg {
        height: 64px;
    }
}

/* Header scrolled state - slightly smaller logo */
.header-parker.scrolled .header-logo-parker .logo-svg {
    height: 72px;
}

/* Portal button with icon */
.header-portal-parker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #c9a66b;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-portal-parker:hover {
    background: #d4b17a;
    color: #0a0a0a;
}

.header-portal-parker svg {
    width: 16px;
    height: 16px;
    stroke: #0a0a0a;
}

@media (max-width: 768px) {
    .header-portal-parker span {
        display: none;
    }
    .header-portal-parker {
        padding: 8px;
    }
}

/* Center the quiz */
.section-quiz-embed .parker-quiz {
    margin: 0 auto;
}

/* =========================================
   QUIZ SECTION STYLES
   ========================================= */
.section-quiz-macbach {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
    position: relative;
}

.section-quiz-macbach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 166, 107, 0.2), transparent);
}

.quiz-intro-macbach {
    text-align: center;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-intro-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
}

/* Quiz Container Styling */
.parker-quiz-container {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(201, 166, 107, 0.15);
    border-radius: 4px;
    padding: 48px;
}

.parker-quiz-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.parker-quiz-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.parker-quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c9a66b, #e0c48a);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.parker-quiz-progress-text {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.parker-quiz-question {
    margin-bottom: 32px;
}

.parker-quiz-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.parker-quiz-question p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.parker-quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.parker-quiz-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.parker-quiz-option:hover {
    background: rgba(201, 166, 107, 0.08);
    border-color: rgba(201, 166, 107, 0.25);
}

.parker-quiz-option.selected {
    background: rgba(201, 166, 107, 0.12);
    border-color: rgba(201, 166, 107, 0.5);
}

.parker-quiz-option input[type="radio"],
.parker-quiz-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #c9a66b;
}

.parker-quiz-option label {
    flex: 1;
    cursor: pointer;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.parker-quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.parker-quiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.parker-quiz-btn-prev {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.parker-quiz-btn-prev:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.parker-quiz-btn-next,
.parker-quiz-btn-submit {
    background: linear-gradient(135deg, #c9a66b 0%, #b8965e 100%);
    border: none;
    color: #0a0a0a;
}

.parker-quiz-btn-next:hover,
.parker-quiz-btn-submit:hover {
    background: linear-gradient(135deg, #d4b17a 0%, #c9a66b 100%);
    transform: translateY(-1px);
}

/* Quiz Results */
.parker-quiz-result {
    text-align: center;
    padding: 24px 0;
}

.parker-quiz-result-score {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 600;
    color: #c9a66b;
    line-height: 1;
    margin-bottom: 8px;
}

.parker-quiz-result-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.parker-quiz-result-headline {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
}

.parker-quiz-result-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 32px;
}

.parker-quiz-result-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #c9a66b 0%, #b8965e 100%);
    color: #0a0a0a;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.parker-quiz-result-cta:hover {
    background: linear-gradient(135deg, #d4b17a 0%, #c9a66b 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 166, 107, 0.2);
}

/* Email Capture Step */
.parker-quiz-email {
    max-width: 400px;
    margin: 0 auto;
}

.parker-quiz-email-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #fff;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.parker-quiz-email-input:focus {
    outline: none;
    border-color: rgba(201, 166, 107, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.parker-quiz-email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile Quiz Adjustments */
@media (max-width: 768px) {
    .section-quiz-macbach {
        padding: 60px 0;
    }
    
    .parker-quiz-container {
        padding: 32px 24px;
    }
    
    .parker-quiz-question h3 {
        font-size: 20px;
    }
    
    .parker-quiz-result-score {
        font-size: 56px;
    }
    
    .parker-quiz-result-headline {
        font-size: 24px;
    }
}
