@import "../../assets/css/breakpoints.css";

.showroom-page {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.showroom-page .hn-section {
    padding-block: clamp(var(--space-10), 6vw, var(--space-20));
}

.showroom-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(10, 10, 10, .92) 0%, rgba(20, 20, 20, .9) 48%, rgba(204, 0, 0, .18) 100%),
        radial-gradient(circle at top right, rgba(204, 0, 0, .18), transparent 42%),
        var(--color-neutral-950);
    color: var(--color-text-inverse);
}

.showroom-hero__inner {
    padding-block: clamp(var(--space-12), 7vw, var(--space-20));
}

.showroom-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: var(--space-8);
    align-items: center;
}

.showroom-hero__copy {
    display: grid;
    gap: var(--space-5);
}

.showroom-hero__eyebrow {
    margin-bottom: 0;
    color: var(--color-red-50);
}

.showroom-hero__title {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--text-display-lg);
    font-weight: var(--weight-extrabold);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    max-width: 15ch;
}

.showroom-hero__desc {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: var(--text-lg);
    line-height: var(--leading-loose);
}

.showroom-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    align-items: center;
}

.showroom-hero__action {
    flex: 1 1 220px;
    min-width: 0;
}

.showroom-hero__facts {
    display: grid;
    gap: var(--space-2);
    margin: 0;
    padding: 0;
    list-style: none;
}

.showroom-hero__facts li {
    display: flex;
    gap: var(--space-2);
    align-items: flex-start;
    color: rgba(255, 255, 255, .74);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

.showroom-hero__facts i {
    margin-top: .2em;
    color: var(--color-red-400);
    flex-shrink: 0;
}

.showroom-hero__visual {
    display: grid;
    gap: var(--space-4);
}

.showroom-hero__image-shell {
    padding: var(--space-3);
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: var(--shadow-lg);
}

.showroom-hero__image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 5 / 4;
    background: var(--color-neutral-900);
}

.showroom-hero__image-frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .22) 100%);
    content: "";
    pointer-events: none;
}

.showroom-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.showroom-hero__image-caption {
    display: grid;
    gap: var(--space-1);
    padding: var(--space-4) var(--space-2) var(--space-2);
}

.showroom-hero__image-caption strong {
    color: var(--color-white);
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
}

.showroom-hero__image-caption span {
    color: rgba(255, 255, 255, .68);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

.showroom-hero__stats {
    gap: var(--space-3);
}

.showroom-stat {
    padding: var(--space-4);
}

.showroom-stat .ds-card__body {
    padding: 0;
    gap: var(--space-1);
}

.showroom-stat__value {
    color: var(--color-red-600);
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    font-weight: var(--weight-extrabold);
    line-height: var(--leading-tight);
}

.showroom-stat__label {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

.showroom-section-head {
    display: grid;
    gap: var(--space-2);
    max-width: 780px;
    margin-bottom: var(--space-6);
}

.showroom-section-head--split {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    justify-content: space-between;
    gap: var(--space-4);
}

.showroom-section-head--split .section-header__title {
    margin-bottom: var(--space-2);
}

.showroom-section-head .section-label {
    margin-bottom: 0;
}

.showroom-section-head .section-header__title {
    margin-bottom: 0;
}

.showroom-section-head .section-header__desc {
    max-width: 700px;
}

.showroom-info {
    background: var(--color-bg-secondary);
}

.showroom-map {
    background: var(--color-white);
}

.showroom-map__btn {
    white-space: nowrap;
}

.showroom-map__frame {
    position: relative;
    overflow: hidden;
    padding: 0;
    box-shadow: var(--shadow-md);
    border-color: var(--color-neutral-200);
}

.showroom-map__embed iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.showroom-map__fallback {
    min-height: 420px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--color-bg-secondary), var(--color-white));
}

.showroom-map__overlay {
    position: absolute;
    left: var(--space-4);
    bottom: var(--space-4);
    z-index: 1;
    display: grid;
    gap: var(--space-2);
    max-width: 360px;
    padding: var(--space-4);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: var(--radius-md);
    background: rgba(10, 10, 10, .78);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.showroom-map__overlay .section-label {
    margin-bottom: 0;
    color: var(--color-red-100);
}

.showroom-map__overlay strong {
    color: var(--color-white);
    font-size: var(--text-base);
    line-height: var(--leading-snug);
}

.showroom-map__overlay span {
    color: rgba(255, 255, 255, .76);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

.showroom-map__overlay-btn {
    justify-self: start;
}

.showroom-services {
    background: var(--color-bg-secondary);
}

.showroom-links-grid {
    gap: var(--space-4);
}

.showroom-link-card__body {
    gap: var(--space-3);
}

.showroom-link-card__desc {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: var(--leading-normal);
}

.showroom-link-card__btn {
    align-self: flex-start;
}

.showroom-related__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.showroom-related__link {
    white-space: normal;
    min-height: 44px;
}

.showroom-final__card {
    background:
        linear-gradient(145deg, rgba(10, 10, 10, .98), rgba(28, 0, 2, .96));
    border-color: transparent;
    box-shadow: var(--shadow-xl);
}

.showroom-final__body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-6);
    align-items: center;
}

.showroom-final__copy {
    max-width: 760px;
}

.showroom-final__copy .section-label {
    color: var(--color-red-100);
}

.showroom-final__copy .section-header__title {
    color: var(--color-white);
}

.showroom-final__copy .section-header__desc {
    color: rgba(255, 255, 255, .76);
}

.showroom-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.showroom-final__actions .btn {
    flex: 1 1 180px;
    min-width: 0;
}

@media (--bp-lt-lg) {
    .showroom-hero__grid {
        grid-template-columns: 1fr;
    }

    .showroom-hero__title {
        max-width: none;
    }

    .showroom-section-head--split {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (--bp-lt-md) {
    .showroom-page .hn-section {
        padding-block: clamp(var(--space-8), 5vw, var(--space-12));
    }

    .showroom-map__embed iframe,
    .showroom-map__fallback {
        min-height: 320px;
    }

    .showroom-map__overlay {
        left: var(--space-3);
        right: var(--space-3);
        bottom: var(--space-3);
        max-width: none;
    }

    .showroom-hero__action,
    .showroom-final__actions .btn,
    .showroom-related__link {
        flex: 1 1 100%;
    }

    .showroom-hero__actions,
    .showroom-final__actions {
        width: 100%;
    }
}

@media (--bp-lt-sm) {
    .showroom-hero__inner {
        padding-block: var(--space-10);
    }

    .showroom-hero__desc {
        font-size: var(--text-base);
    }

    .showroom-hero__facts li {
        font-size: var(--text-xs);
    }

    .showroom-hero__image-shell {
        padding: var(--space-2);
    }

    .showroom-panel,
    .showroom-link-card,
    .showroom-final__card {
        border-radius: var(--radius-md);
    }
}
