.dis-site {
    display: grid;
    gap: 24px;
    width: 100%;
}

.dis-site-nav {
    align-items: center;
    background: #18212b;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 8px;
}

.dis-site-nav a {
    border-radius: 6px;
    color: #fff;
    font-weight: 800;
    padding: 10px 14px;
    text-decoration: none;
}

.dis-site-nav a:hover,
.dis-site-nav .is-active {
    background: #b21f2d;
}

.dis-home-hero {
    background: linear-gradient(135deg, #f7f9fb 0%, #e9eef4 100%);
    border: 1px solid #d9e0e7;
    border-radius: 8px;
    display: grid;
    gap: 20px;
    padding: clamp(20px, 4vw, 42px);
}

.dis-brand-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.dis-logo {
    background: #fff;
    border: 1px solid #d9e0e7;
    border-radius: 8px;
    max-height: 86px;
    max-width: 180px;
    object-fit: contain;
    padding: 8px;
}

.dis-company {
    color: #b21f2d;
    font-size: 14px;
    font-weight: 900;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.dis-home-hero h1 {
    color: #18212b;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1;
    margin: 0;
}

.dis-home-intro {
    color: #4d5a6d;
    font-size: 18px;
    margin: 0;
    max-width: 760px;
}

.dis-slider-slot {
    border-radius: 8px;
    overflow: hidden;
}

.dis-home-links {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.dis-link-card {
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(39, 49, 60, 0.08);
    color: #18212b;
    font-size: 18px;
    font-weight: 900;
    padding: 20px;
    text-align: center;
    text-decoration: none;
}

.dis-link-card:hover {
    border-color: #b21f2d;
    color: #b21f2d;
}

.dis-inventory-wrap {
    display: grid;
    gap: 24px;
    width: 100%;
}

.dis-filter-bar {
    align-items: end;
    background: #f5f7f9;
    border: 1px solid #d9e0e7;
    border-radius: 8px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    padding: 16px;
}

.dis-filter-bar label {
    display: grid;
    gap: 6px;
    margin: 0;
}

.dis-filter-bar span {
    color: #27313c;
    font-size: 13px;
    font-weight: 700;
}

.dis-filter-bar input,
.dis-lead-form input,
.dis-lead-form textarea,
.dis-calculator input,
.dis-contact-form input,
.dis-contact-form textarea {
    border: 1px solid #c9d3dd;
    border-radius: 6px;
    box-sizing: border-box;
    font: inherit;
    min-height: 42px;
    padding: 9px 11px;
    width: 100%;
}

.dis-filter-bar button,
.dis-lead-form button,
.dis-contact-form button {
    background: #b21f2d;
    border: 0;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    min-height: 42px;
    padding: 10px 16px;
}

.dis-filter-bar button:hover,
.dis-lead-form button:hover,
.dis-contact-form button:hover {
    background: #8f1723;
}

.dis-vehicle-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dis-vehicle-card {
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(39, 49, 60, 0.08);
    overflow: hidden;
}

.dis-vehicle-image {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: #e8edf2;
    color: #637083;
    display: flex;
    font-weight: 700;
    justify-content: center;
    text-decoration: none;
}

.dis-vehicle-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.dis-vehicle-body {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.dis-vehicle-body h3 {
    font-size: 20px;
    line-height: 1.25;
    margin: 0;
}

.dis-vehicle-body h3 a {
    color: #18212b;
    text-decoration: none;
}

.dis-price {
    color: #b21f2d;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.dis-vehicle-body dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.dis-vehicle-body dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.dis-vehicle-body dt {
    color: #667386;
    font-weight: 700;
}

.dis-vehicle-body dd {
    margin: 0;
    text-align: right;
}

.dis-lead-form {
    border-top: 1px solid #e2e8ee;
    padding-top: 12px;
}

.dis-lead-form summary {
    cursor: pointer;
    font-weight: 800;
}

.dis-lead-form form {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.dis-lead-form textarea {
    min-height: 92px;
    resize: vertical;
}

.dis-notice {
    border-radius: 6px;
    font-weight: 700;
    margin: 0 0 18px;
    padding: 12px 14px;
}

.dis-success {
    background: #e8f6ee;
    color: #12613a;
}

.dis-error {
    background: #fbe9eb;
    color: #8f1723;
}

.dis-empty {
    color: #596579;
    font-weight: 700;
}

.dis-tool-panel,
.dis-contact-layout {
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(39, 49, 60, 0.08);
    padding: clamp(18px, 4vw, 34px);
}

.dis-tool-panel h2,
.dis-contact-info h2 {
    color: #18212b;
    font-size: 30px;
    margin: 0 0 18px;
}

.dis-calculator {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.dis-calculator label,
.dis-contact-form {
    display: grid;
    gap: 8px;
}

.dis-calculator span {
    color: #27313c;
    font-size: 13px;
    font-weight: 800;
}

.dis-payment {
    background: #18212b;
    border-radius: 8px;
    color: #fff;
    display: grid;
    gap: 6px;
    padding: 16px;
}

.dis-payment strong {
    font-size: 28px;
}

.dis-contact-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1.2fr);
}

.dis-contact-info p {
    color: #4d5a6d;
    margin: 0 0 12px;
}

.dis-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

@media (max-width: 640px) {
    .dis-filter-bar {
        grid-template-columns: 1fr;
    }

    .dis-contact-layout {
        grid-template-columns: 1fr;
    }

    .dis-site-nav {
        justify-content: stretch;
    }

    .dis-site-nav a {
        flex: 1 1 140px;
        text-align: center;
    }
}
