:root {
    --ink: #17212b;
    --muted: #5c6875;
    --paper: #fbfaf7;
    --line: #d9d4c9;
    --accent: #28745b;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
}
a { color: inherit; text-decoration: none; }
.showroom-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 7vw;
    border-bottom: 1px solid var(--line);
}
.brand { font-size: 20px; font-weight: 900; }
nav { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-weight: 800; }
.showroom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 44px;
    padding: 72px 7vw 48px;
    align-items: end;
}
.showroom-copy h1 {
    max-width: 820px;
    margin: 10px 0 18px;
    font-size: clamp(44px, 7vw, 92px);
    line-height: .94;
    letter-spacing: 0;
}
.showroom-copy p {
    max-width: 680px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}
.eyebrow { margin: 0; color: var(--accent); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
}
.showroom-details {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}
.showroom-details div {
    display: grid;
    gap: 4px;
    padding: 16px;
    background: #fff;
}
.showroom-details strong { color: var(--muted); font-size: 12px; text-transform: uppercase; }
.showroom-details span { word-break: break-word; }

@media (max-width: 850px) {
    .showroom-header { align-items: flex-start; flex-direction: column; padding: 18px 22px; }
    .showroom { grid-template-columns: 1fr; padding: 42px 22px; }
    .showroom-copy h1 { font-size: 43px; }
}

