/* ==========================================================================
   ELITE PIANO CENTER / LJV PIANOS TRADING, INC.
   Steinway-Inspired Luxury Master Design System
   ========================================================================== */

:root {
    /* Dark Luxury Theme Tokens */
    --bg-black: #090909;
    --bg-dark: #121212;
    --bg-surface: #181818;
    --bg-surface-elevated: #222222;
    --bg-glass: rgba(10, 10, 10, 0.92);
    
    --gold-primary: #c5a059;
    --gold-light: #dfc282;
    --gold-dark: #9b7327;
    --gold-glow: rgba(197, 160, 89, 0.3);
    --gold-subtle: rgba(197, 160, 89, 0.12);
    
    --text-pure: #ffffff;
    --text-primary: #ede9e1;
    --text-secondary: #a7a297;
    --text-muted: #726e66;
    
    --border-gold: rgba(197, 160, 89, 0.35);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.14);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --container-max: 1280px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(197, 160, 89, 0.25);
}

[data-theme="light"] {
    --bg-black: #faf8f5;
    --bg-dark: #f2eee5;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #f4efe4;
    --bg-glass: rgba(250, 248, 245, 0.94);
    
    --gold-primary: #9b7327;
    --gold-light: #7c5816;
    --gold-dark: #5a3e0b;
    --gold-glow: rgba(155, 115, 39, 0.2);
    --gold-subtle: rgba(155, 115, 39, 0.08);
    
    --text-pure: #121110;
    --text-primary: #242220;
    --text-secondary: #5a554d;
    --text-muted: #888277;
    
    --border-gold: rgba(155, 115, 39, 0.35);
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.14);
    
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 25px rgba(155, 115, 39, 0.15);
}

/* Base Reset & Typography */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-black);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    background-color: var(--bg-black);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-pure);
    letter-spacing: 0.03em;
    font-weight: 600;
    line-height: 1.25;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

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

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

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

.container {
    width: 92%;
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Utility Badges & Headers */
.section-tag {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 12px;
    padding: 4px 14px;
    background: var(--gold-subtle);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-pure);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
}

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

/* Luxury Action Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: #0d0d0d !important;
    border: 1px solid var(--gold-primary);
    font-weight: 700;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px var(--gold-glow);
    filter: brightness(1.08);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
}

.btn-gold-outline:hover {
    background: var(--gold-primary);
    color: #0d0d0d !important;
    transform: translateY(-2px);
}

/* ==================== TOP NAVIGATION HEADER ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-gold);
    transition: all var(--transition-normal);
    padding: 14px 0;
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 20px;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-crest {
    height: 40px !important;
    max-height: 40px !important;
    width: auto !important;
    max-width: 90px !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-pure);
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--gold-primary);
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-shrink: 1;
}

.nav-link {
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-phone-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    background: var(--gold-subtle);
    white-space: nowrap;
}

.header-phone-badge:hover {
    background: var(--gold-primary);
    color: #0d0d0d;
}

.theme-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
    transform: scale(1.08);
    background: var(--gold-primary);
    color: #0d0d0d;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-pure);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Mobile Drawer */
.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-gold);
    z-index: 1002;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    pointer-events: none;
    visibility: hidden;
    transition: transform var(--transition-normal), visibility var(--transition-normal);
}

.mobile-nav-drawer.active {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.drawer-close-btn {
    font-size: 1.8rem;
    color: var(--text-secondary);
    line-height: 1;
}

.drawer-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.mobile-nav-link {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    padding: 8px 0;
}

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

/* ==================== HERO SLIDER SECTION ==================== */
.hero-slider-section {
    position: relative;
    height: 92vh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #080808;
}

.hero-slider-track {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
}

/* Dark Mode Cinematic Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4,4,4,0.75) 0%, rgba(4,4,4,0.48) 38%, rgba(4,4,4,0.08) 68%, rgba(4,4,4,0.0) 100%),
                linear-gradient(180deg, rgba(4,4,4,0.3) 0%, rgba(4,4,4,0.0) 25%, rgba(4,4,4,0.0) 75%, rgba(4,4,4,0.4) 100%);
    pointer-events: none;
}

/* Light Mode Soft Dimmed Overlay (Gentle warm tone, never blinding white, piano 100% visible) */
[data-theme="light"] .hero-slider-section {
    background: #f5f2eb;
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(90deg, rgba(248,245,239,0.65) 0%, rgba(248,245,239,0.35) 45%, rgba(248,245,239,0.1) 75%, rgba(248,245,239,0.0) 100%),
                linear-gradient(180deg, rgba(248,245,239,0.3) 0%, rgba(248,245,239,0.0) 30%, rgba(248,245,239,0.0) 70%, rgba(248,245,239,0.35) 100%);
}









.hero-content {
    position: relative;
    z-index: 5;
    max-width: 740px;
    padding: 38px 44px;
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .hero-content {
        padding: 24px 20px;
        border-radius: 12px;
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 24px 20px;
        border-radius: 12px;
        margin: 0 10px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 600;
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}



.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: var(--radius-full);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 22px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.hero-title span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #dfc282;
    font-weight: 400;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}





.hero-desc {
    font-size: 1.12rem;
    color: #ede9e1;
    line-height: 1.7;
    margin-bottom: 34px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
}



.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-slider-section .btn-gold-outline {
    background: rgba(10, 10, 10, 0.55);
    color: #dfc282 !important;
    border: 1px solid rgba(223, 194, 130, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-slider-section .btn-gold-outline:hover {
    background: #c5a059;
    color: #0a0a0a !important;
    border-color: #c5a059;
}

[data-theme="light"] .hero-slider-section .btn-gold-outline {
    background: rgba(255, 255, 255, 0.88);
    color: #7c5816 !important;
    border: 1px solid rgba(155, 115, 39, 0.55);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .hero-slider-section .btn-gold-outline:hover {
    background: #9b7327;
    color: #ffffff !important;
    border-color: #9b7327;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(15, 15, 15, 0.75);
    border: 1px solid rgba(197, 160, 89, 0.45);
    color: #dfc282;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    background: #c5a059;
    color: #0a0a0a;
}

[data-theme="light"] .slider-btn {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(155, 115, 39, 0.45);
    color: #7c5816;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .slider-btn:hover {
    background: #9b7327;
    color: #ffffff;
}

.slider-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all var(--transition-fast);
}

[data-theme="light"] .indicator {
    background: rgba(0, 0, 0, 0.22);
}

.indicator.active {
    background: #c5a059;
    width: 48px;
}

[data-theme="light"] .indicator.active {
    background: #9b7327;
}

/* ==================== BOUTIQUE SHOWROOM SECTION ==================== */
.section-showroom {
    padding: 100px 0;
    background: var(--bg-dark);
}

.showroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.showroom-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.feature-box {
    background: var(--bg-surface);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.feature-icon {
    width: 36px;
    height: 36px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.feature-title {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-pure);
}

.feature-desc {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.showroom-image-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-card);
}

.showroom-image-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.showroom-image-box:hover img {
    transform: scale(1.03);
}

/* ==================== MAINTENANCE & VOICING FEATURE ==================== */
.section-flyer-feature {
    padding: 80px 0;
    background: var(--bg-black);
}

.flyer-card-wrapper {
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.95), rgba(16, 16, 16, 0.95));
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--shadow-glow);
    max-width: 960px;
    margin: 0 auto;
}

[data-theme="light"] .flyer-card-wrapper {
    background: linear-gradient(135deg, #ffffff, #f7f3eb);
}

.flyer-logo {
    height: 56px !important;
    max-height: 56px !important;
    width: auto !important;
    object-fit: contain !important;
    margin: 0 auto 16px !important;
    display: block !important;
}

.flyer-title {
    font-size: 2.2rem;
    color: var(--text-pure);
    margin-bottom: 14px;
}

.flyer-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.flyer-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.flyer-badge-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
}

.flyer-contacts-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.flyer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.flyer-contact-link:hover {
    color: var(--text-pure);
}

/* ==================== CURATED PIANO COLLECTION ==================== */
.section-collection {
    padding: 100px 0;
    background: var(--bg-dark);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gold-primary);
    color: #0d0d0d;
    border-color: var(--gold-primary);
}

.pianos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.piano-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.piano-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
}

.piano-image-container {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #000;
}

.piano-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.piano-card:hover .piano-image-container img {
    transform: scale(1.05);
}

.piano-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(12, 12, 12, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.piano-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.piano-title {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: var(--text-pure);
}

.piano-origin {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 14px;
}

.piano-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 20px;
}

.piano-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.btn-video-demo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    background: var(--gold-subtle);
    transition: all var(--transition-fast);
}

.btn-video-demo:hover {
    background: var(--gold-primary);
    color: #0d0d0d;
}

/* ==================== DISTINGUISHED CLIENTS & PATRONS ==================== */
.section-clients {
    padding: 80px 0;
    background: var(--bg-dark);
}

.client-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    max-width: 980px;
    margin: 0 auto;
}

.client-pill {
    padding: 9px 18px;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    font-size: 0.86rem;
    color: var(--text-primary);
    letter-spacing: 0.03em;
    transition: all var(--transition-fast);
}

.client-pill.celebrity {
    border-color: var(--border-gold);
    color: var(--gold-primary);
    background: var(--gold-subtle);
    font-weight: 500;
}

.client-pill:hover {
    background: var(--gold-primary);
    color: #0d0d0d !important;
    border-color: var(--gold-primary);
}

/* ==================== STEINWAY EDITORIAL QUOTE CAROUSEL ==================== */
.section-steinway-quote {
    padding: 110px 0;
    background: var(--bg-black);
    position: relative;
}

.steinway-quote-container {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steinway-quote-slide {
    display: none;
    animation: fadeIn 0.8s ease forwards;
}

.steinway-quote-slide.active {
    display: block;
}

.steinway-quote-mark {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: -15px;
    opacity: 0.6;
}

.steinway-quote-text {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-style: italic;
    color: var(--text-pure);
    line-height: 1.6;
    margin-bottom: 28px;
}

.quote-brand {
    color: var(--gold-primary);
    font-weight: 700;
    font-style: normal;
}

.steinway-quote-author {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.steinway-quote-caption {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.quote-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.quote-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

[data-theme="light"] .quote-indicators .dot {
    background: rgba(0, 0, 0, 0.2);
}

.quote-indicators .dot.active {
    background: var(--gold-primary);
    transform: scale(1.3);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--bg-black);
    border-top: 1px solid var(--border-gold);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 12px;
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold-primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-link:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold-primary);
}

.footer-contact-item a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

/* ==================== QUICK FLOATING ACTIONS ==================== */
.quick-floating-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-fab {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform var(--transition-fast);
}

.quick-fab:hover {
    transform: scale(1.1);
}

.fab-viber {
    background: #7360f2;
}

.fab-phone {
    background: var(--gold-primary);
    color: #0d0d0d;
}

.fab-tooltip {
    position: absolute;
    right: 64px;
    background: #181818;
    color: #ffffff;
    border: 1px solid var(--border-gold);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    pointer-events: none;
}

.quick-fab:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==================== MODALS ==================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    padding: 20px;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.quote-modal {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 540px;
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-card);
}

.video-modal-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 860px;
    padding: 24px;
    position: relative;
    box-shadow: var(--shadow-card);
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.video-modal-title {
    font-size: 1.2rem;
    color: var(--text-pure);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000;
}

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

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-secondary);
    line-height: 1;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: var(--bg-dark);
    color: var(--text-pure);
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    border-color: var(--gold-primary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 1120px) {
    .nav-links { display: none; }
    .hamburger-btn { display: flex; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .showroom-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-cta-btn { display: none; }
    .hero-title { font-size: 2.3rem; }
    .section-title { font-size: 1.85rem; }
    .flyer-title { font-size: 1.7rem; }
    .steinway-quote-text { font-size: 1.25rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .showroom-features { grid-template-columns: 1fr; }
    .flyer-contacts-row { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 480px) {
    .brand-sub { display: none; }
    .brand-name { font-size: 1.02rem; }
    .brand-crest { height: 34px; }
    .header-phone-badge span { display: none; }
    .header-phone-badge { padding: 8px 10px; }
    .nav-actions { gap: 8px; }
    .nav-container { width: 94%; }
}

/* ====================================================================
   PRE-LAUNCH ADDITIONS: COOKIE CONSENT BANNER & SECURITY HONEYPOT
   ==================================================================== */
.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 520px;
    background: rgba(18, 18, 20, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold, #3a3222);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

[data-theme="light"] .cookie-consent-banner {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-primary, #D4AF37);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-muted, #94a3b8);
    margin: 0;
}

.cookie-text a {
    color: var(--gold-primary, #D4AF37);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
    color: #0b0b0d;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.15s ease;
}

.cookie-btn-accept:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-muted, #94a3b8);
    border: 1px solid var(--border-gold, #3a3222);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-decline:hover {
    color: var(--text-primary, #f8fafc);
    border-color: var(--text-muted, #94a3b8);
}

/* Hidden Honeypot Anti-Spam Field */
.honeypot-field {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

/* ==================== ABOUT PAGE CROSSFADE SHOWROOM GALLERY ==================== */
.about-crossfade-container {
    position: relative;
    height: 480px;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-gold);
    background: #0d0d0d;
}

.about-crossfade-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.about-crossfade-slide.active {
    opacity: 1;
    z-index: 2;
}

.about-crossfade-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .about-crossfade-badge {
    background: rgba(255, 255, 255, 0.88);
    color: #7c5816;
    border: 1px solid rgba(155, 115, 39, 0.45);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}


/* ==========================================================================
   INTERACTIVE POPOUT CARD HOVER (About & Contact Crossfade Galleries)
   ========================================================================== */
.about-crossfade-container,
.contact-crossfade-container,
.interactive-popout-card {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    background: #111;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease;
    cursor: pointer;
    will-change: transform, box-shadow;
}

.about-crossfade-container:hover,
.contact-crossfade-container:hover,
.interactive-popout-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.45), 0 0 30px rgba(212, 175, 55, 0.35);
    border-color: var(--gold-primary);
}

[data-theme="light"] .about-crossfade-container:hover,
[data-theme="light"] .contact-crossfade-container:hover,
[data-theme="light"] .interactive-popout-card:hover {
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.18), 0 0 25px rgba(184, 134, 11, 0.28);
}

.contact-crossfade-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
}

.contact-crossfade-slide.active {
    opacity: 1;
    visibility: visible;
}


/* ==========================================================================
   BULLETPROOF LIGHT MODE HERO READABILITY CARD (Highest Specificity)
   ========================================================================== */
html[data-theme="light"] .hero-slider-section,
[data-theme="light"] .hero-slider-section {
    background: #f5f2eb !important;
}

html[data-theme="light"] .hero-overlay,
[data-theme="light"] .hero-overlay {
    background: linear-gradient(90deg, rgba(248,245,239,0.55) 0%, rgba(248,245,239,0.25) 45%, rgba(248,245,239,0.0) 100%) !important;
}

html[data-theme="light"] .hero-content,
[data-theme="light"] .hero-content {
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(184, 134, 11, 0.45) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.9) inset !important;
}

html[data-theme="light"] .hero-title,
[data-theme="light"] .hero-title {
    color: #11100f !important;
    text-shadow: none !important;
}

html[data-theme="light"] .hero-title span,
[data-theme="light"] .hero-title span {
    color: #9c7322 !important;
    text-shadow: none !important;
}

html[data-theme="light"] .hero-desc,
[data-theme="light"] .hero-desc {
    color: #1a1918 !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}

html[data-theme="light"] .hero-badge,
[data-theme="light"] .hero-badge {
    color: #7c5816 !important;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(155, 115, 39, 0.45) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
}

html[data-theme="light"] .hero-slider-section .btn-gold-outline,
[data-theme="light"] .hero-slider-section .btn-gold-outline {
    background: rgba(255, 255, 255, 0.92) !important;
    color: #7c5816 !important;
    border: 1px solid rgba(155, 115, 39, 0.55) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
}

html[data-theme="light"] .hero-slider-section .btn-gold-outline:hover,
[data-theme="light"] .hero-slider-section .btn-gold-outline:hover {
    background: #9b7327 !important;
    color: #ffffff !important;
    border-color: #9b7327 !important;
}
