.showroom-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.showroom-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.showroom-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.showroom-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.showroom-hero__content {
    position: relative;
    z-index: 2;
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.breadcrumb {
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: var(--space-2);
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: var(--space-2);
    color: var(--color-text-muted);
}

.breadcrumb a {
    color: var(--color-text-secondary);
    transition: color var(--duration-fast) var(--ease-out);
}

.breadcrumb a:hover {
    color: var(--color-mahogany-light);
}

.showroom-hero__title {
    font-size: var(--text-6xl);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
    max-width: 20ch;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .showroom-hero__title {
        font-size: var(--text-4xl);
    }
}

.showroom-hero__lead {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    max-width: 60ch;
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
}

.showroom-hero__actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.showroom-section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
    position: relative;
}

.showroom-section--dark {
    background-color: var(--color-bg-secondary);
    border-top: 1px solid var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-bg-elevated);
}

.showroom-section--featured {
    background-color: var(--color-bg-tertiary);
}

.showroom-section--compact {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

.showroom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: center;
}

@media (min-width: 1024px) {
    .showroom-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
    
    .showroom-grid--reversed .showroom-content {
        order: 2;
    }
    
    .showroom-grid--reversed .showroom-visual {
        order: 1;
    }
}

.showroom-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-mahogany-light);
    margin-bottom: var(--space-4);
}

.showroom-tag--light {
    color: var(--color-aluminum);
}

.showroom-heading {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.showroom-heading--medium {
    font-size: var(--text-3xl);
}

.showroom-heading--small {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.showroom-heading--large {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
    .showroom-heading {
        font-size: var(--text-3xl);
    }
    
    .showroom-heading--large {
        font-size: var(--text-4xl);
    }
}

.showroom-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

.showroom-content .btn {
    margin-top: var(--space-4);
}

.showroom-visual {
    position: relative;
}

.showroom-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background-color: var(--color-bg-tertiary);
}

.showroom-image-wrapper::before {
    content: "";
    display: block;
    padding-top: 75%;
}

.showroom-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slower) var(--ease-out);
}

.showroom-image-wrapper:hover img {
    transform: scale(1.05);
}

.showroom-image-wrapper--large::before {
    padding-top: 100%;
}

.showroom-image-wrapper--square::before {
    padding-top: 100%;
}

.showroom-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
}

@media (min-width: 768px) {
    .showroom-split {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

.showroom-split__item {
    display: flex;
    flex-direction: column;
}

.showroom-split__item .showroom-image-wrapper {
    margin-bottom: var(--space-6);
    order: -1;
}

.showroom-header {
    margin-bottom: var(--space-10);
}

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

.showroom-header .showroom-lead {
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-secondary);
    font-size: var(--text-lg);
}

.audio-demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

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

.audio-demo-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-bg-elevated);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.audio-demo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-mahogany-dark);
}

.audio-demo-card__visual {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    background-color: var(--color-bg-elevated);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-mahogany);
    transition: all var(--duration-normal) var(--ease-out);
}

.audio-demo-card:hover .audio-demo-card__visual {
    background-color: var(--color-mahogany);
    box-shadow: var(--shadow-glow);
}

.audio-play-btn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    border-radius: var(--radius-full);
    transition: transform var(--duration-fast) var(--ease-out);
}

.audio-play-btn:hover {
    transform: scale(1.1);
}

.audio-play-btn:active {
    transform: scale(0.95);
}

.audio-demo-card__title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-text-primary);
    font-family: var(--font-serif);
}

.audio-demo-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
}

.showroom-quote {
    margin: var(--space-6) 0;
    padding: var(--space-6);
    border-left: 3px solid var(--color-mahogany);
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.showroom-quote p {
    font-style: italic;
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
    font-family: var(--font-serif);
}

.showroom-quote cite {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-style: normal;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

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

.feature-card {
    text-align: center;
    padding: var(--space-6);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    color: var(--color-mahogany-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-bg-elevated);
}

.feature-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
    font-family: var(--font-serif);
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: var(--text-base);
    margin: 0;
}

.showroom-cta {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-bg-primary);
}

.showroom-cta__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.showroom-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.showroom-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.showroom-cta__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.showroom-cta__text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slower) var(--ease-out), transform var(--duration-slower) var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}