/* ── BACKROOM CARD ── */
.b-backroom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}
.b-backroom h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 72px;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--cream);
    margin: 20px 0 16px;
}
.b-backroom h3 em { color: var(--amber); font-style: normal; }
.b-backroom > div > p {
    font-family: var(--serif);
    font-style: italic;
    color: var(--paper-dim);
    font-size: 16px;
    line-height: 1.5;
}

.backroom-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    margin-top: 24px;
    padding-top: 20px;
}
.spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 16px;
}
.spec:not(:last-child) { border-right: 1px solid var(--line); margin-right: 16px; }
.spec-n {
    font-family: var(--display);
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: var(--amber);
    text-transform: uppercase;
}
.spec-l {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper-dim);
}

/* ── KEINE MIETE CARD ── */
.b-nomiet {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.nomiet-big {
    font-family: var(--display);
    font-weight: 700;
    font-size: 48px;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--cream);
    margin: 12px 0 16px;
}
.nomiet-big em { color: var(--amber); font-style: normal; }
.b-nomiet p {
    font-family: var(--serif);
    font-style: italic;
    color: var(--paper-dim);
    font-size: 15px;
    line-height: 1.5;
}

/* ── CONTACT CARD ── */
.b-contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.contact-label {
    font-family: var(--display);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 16px;
}

/* ── SEIDL RALLY CARD ── */
.b-rally {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.b-rally h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 56px;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--cream);
    margin: 16px 0 12px;
}
.b-rally h3 em { color: var(--amber); font-style: normal; }
.b-rally > div > p {
    font-family: var(--serif);
    font-style: italic;
    color: var(--paper-dim);
    font-size: 16px;
    line-height: 1.5;
}
.rally-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: 24px;
}
.rally-voucher {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.rally-voucher small {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--paper-dim);
}
.rally-voucher span {
    font-family: var(--display);
    font-weight: 700;
    font-size: 42px;
    color: var(--amber);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .backroom-specs { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .spec:not(:last-child) { border-right: none; margin-right: 0; }
    .b-backroom h3 { font-size: 48px; }
    .b-rally h3 { font-size: 40px; }
    .nomiet-big { font-size: 36px; }
    .rally-voucher span { font-size: 32px; }
}
