/**
 * Showroom page template styles.
 *
 * Styles the editorial showroom content (intro + alternating feature sections
 * with imagery) and a large, prominent location map.
 */

/* ------------------------------------------------------------------ *
 * Editorial content
 * ------------------------------------------------------------------ */
.showroom-sec {
    padding: 64px 0 24px;
}

/* Intro (content before the first heading). */
.showroom-intro {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
}

.showroom-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--ink);
    margin: 0 0 16px;
}

/* Alternating two-column feature rows. */
.showroom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
    margin: 0 0 64px;
}

.showroom-row:last-child {
    margin-bottom: 24px;
}

/* Reverse every other row: image on the left, text on the right. */
.showroom-row--reverse .showroom-row__text {
    order: 2;
}

.showroom-row--reverse .showroom-row__media {
    order: 1;
}

.showroom-row__text h2 {
    font-family: var(--display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 16px;
}

.showroom-row__text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    margin: 0 0 16px;
}

.showroom-row__text a {
    color: var(--gold-text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.showroom-row__text a:hover {
    color: var(--forest-deep);
}

.showroom-row__media {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showroom-row__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
    margin: 0;
}

/* ------------------------------------------------------------------ *
 * Large location map
 * ------------------------------------------------------------------ */
.showroom-map-sec {
    padding: 56px 0 0;
}

.showroom-map-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.showroom-map-head .eyebrow {
    display: block;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 12px;
}

.showroom-map-head h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 14px;
}

.showroom-map-head p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 22px;
}

.showroom-map {
    width: 100%;
}

.showroom-map iframe {
    display: block;
    width: 100%;
    height: 620px;
    border: 0;
}

@media (max-width: 900px) {
    .showroom-sec {
        padding: 48px 0 16px;
    }

    .showroom-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    /* Keep a consistent text-then-image order when stacked. */
    .showroom-row--reverse .showroom-row__text,
    .showroom-row--reverse .showroom-row__media {
        order: 0;
    }

    .showroom-map iframe {
        height: 420px;
    }
}
