/* ==========================================================================
   CARS FOR YOU
   Main desktop stylesheet
   carsforyou.site

   Direction:
   - established independent dealership
   - slightly old-school / traditional web
   - no SaaS UI
   - no glass
   - no glow
   - no rounded card system
   - no decorative AI garbage
   ========================================================================== */

:root {
    --paper: #f3efe6;
    --paper-dark: #e5ded0;
    --paper-light: #faf8f3;

    --ink: #26292c;
    --muted: #66645f;

    --navy: #16263a;
    --navy-light: #243b55;

    --wine: #7b2628;
    --wine-dark: #5c1c1e;

    --line: #c9c0b1;
    --line-dark: #9d9385;

    --white: #fffefb;
    --green: #395843;

    --page-width: 1180px;
}


/* ==========================================================================
   RESET
   ========================================================================== */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background: #ccc4b5;
    color: var(--ink);
}

body {
    margin: 0;
    padding: 0;
    min-width: 320px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--ink);

    background:
        linear-gradient(
            to bottom,
            #d9d2c5 0,
            #c9c0b0 100%
        );
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border-radius: 0;
}

input,
select {
    border-radius: 0;
}

.site-width {
    width: min(
        var(--page-width),
        calc(100% - 40px)
    );

    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================================
   TOP UTILITY STRIP
   ========================================================================== */

.site-topline {
    background: #111820;
    color: #d7d9da;

    border-bottom: 1px solid #35404b;

    font-size: 12px;
}

.site-topline__inside {
    min-height: 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.site-topline a {
    color: #fff;
    text-decoration: none;

    border-bottom: 1px dotted #7e8992;
}

.site-topline a:hover {
    border-bottom-color: #fff;
}


/* ==========================================================================
   HEADER / BRAND
   ========================================================================== */

.site-header {
    position: relative;
    z-index: 5;

    background: var(--paper);

    border-bottom: 1px solid #a69d8f;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, .14);
}

.site-header__inside {
    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.site-logo {
    display: inline-flex;
    flex-direction: column;

    color: var(--navy);

    text-decoration: none;
}

.site-logo__main {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 36px;
    line-height: .95;

    font-weight: 700;

    letter-spacing: .045em;
}

.site-logo__sub {
    margin-top: 10px;

    color: var(--wine);

    font-size: 11px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: .09em;

    text-transform: uppercase;
}

.site-header__details {
    min-width: 310px;

    padding-left: 30px;

    border-left: 1px solid var(--line);

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 5px;

    text-align: right;
}

.site-header__details strong {
    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
}

.site-header__details span {
    color: var(--muted);

    font-size: 13px;
}

.site-header__details a {
    margin-top: 2px;

    color: var(--wine);

    font-size: 12px;
    font-weight: 700;
}


/* ==========================================================================
   MAIN NAVIGATION
   ========================================================================== */

.main-nav {
    position: relative;
    z-index: 4;

    background: var(--navy);

    border-top: 4px solid var(--wine);
    border-bottom: 1px solid #080f18;
}

.main-nav .site-width {
    position: relative;
}

.main-nav__links {
    display: flex;
    align-items: stretch;

    width: 100%;
}

.main-nav__links a {
    display: flex;
    align-items: center;

    min-height: 44px;

    padding:
        0
        15px;

    border-right:
        1px solid
        rgba(255, 255, 255, .12);

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;
}

.main-nav__links a:first-child {
    border-left:
        1px solid
        rgba(255, 255, 255, .12);
}

.main-nav__links a:hover,
.main-nav__links a.is-active {
    background: var(--wine);
}

.nav-toggle {
    display: none;
}


/* ==========================================================================
   MAIN PAGE SHELL
   ========================================================================== */

.site-main {
    width: min(
        var(--page-width),
        calc(100% - 40px)
    );

    margin:
        24px
        auto
        0;

    min-height: 600px;

    background: var(--white);

    border:
        1px solid
        #a69d8f;

    box-shadow:
        0 2px 10px
        rgba(30, 32, 34, .13);
}


/* ==========================================================================
   GENERAL TYPOGRAPHY / PAGE SECTIONS
   ========================================================================== */

.page-section {
    padding:
        32px
        34px;

    border-bottom:
        1px solid
        var(--line);
}

.page-section:last-child {
    border-bottom: 0;
}

.section-heading {
    margin:
        0
        0
        9px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;
    line-height: 1.15;
}

.section-copy {
    max-width: 860px;

    margin:
        0
        0
        22px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.65;
}

.rule-heading {
    margin-bottom: 20px;

    padding-bottom: 9px;

    border-bottom:
        3px double
        var(--line-dark);

    display: flex;
    align-items: baseline;
    justify-content: space-between;

    gap: 20px;
}

.rule-heading h2 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;
    line-height: 1.15;
}

.rule-heading a {
    color: var(--wine);

    font-size: 13px;

    font-weight: 700;
}


/* ==========================================================================
   HOME HERO
   ========================================================================== */

.home-lead {
    min-height: 435px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.72fr)
        minmax(290px, .72fr);

    border-bottom:
        1px solid
        var(--line);
}

.home-feature {
    position: relative;

    min-height: 435px;

    overflow: hidden;

    background: #23282d;
}

.home-feature > img {
    width: 100%;
    height: 100%;

    min-height: 435px;

    object-fit: cover;

    filter:
        saturate(.88)
        contrast(1.04);
}

.home-feature__caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        72px
        30px
        27px;

    color: #fff;

    background:
        linear-gradient(
            to bottom,
            rgba(7, 12, 18, 0),
            rgba(7, 12, 18, .93)
        );
}

.home-feature__caption p {
    margin:
        0
        0
        6px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .09em;

    text-transform: uppercase;
}

.home-feature__caption h1 {
    max-width: 680px;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 35px;
    line-height: 1.08;

    text-shadow:
        0 1px 2px
        rgba(0, 0, 0, .8);
}

.home-feature__caption strong {
    display: block;

    margin-top: 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;
}

.home-aside {
    padding:
        29px
        27px;

    background: #f0e9dc;

    border-left:
        1px solid
        var(--line);
}

.home-aside h2 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
    line-height: 1.13;
}

.home-aside > p {
    margin:
        15px
        0
        0;

    color: #565650;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
    line-height: 1.55;
}


/* ==========================================================================
   HOME QUICK LINKS
   ========================================================================== */

.quick-links {
    margin:
        23px
        0
        0;

    padding: 0;

    list-style: none;

    border-top:
        1px solid
        var(--line-dark);
}

.quick-links li {
    border-bottom:
        1px solid
        var(--line);
}

.quick-links a {
    padding:
        13px
        0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    color: var(--navy);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;
}

.quick-links a::after {
    content: "›";

    color: var(--wine);

    font-family:
        Georgia,
        serif;

    font-size: 20px;
}

.quick-links a:hover {
    color: var(--wine);
}


/* ==========================================================================
   HOME NOTICE STRIP
   ========================================================================== */

.notice-strip {
    min-height: 46px;

    padding:
        12px
        20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: #e7e1d5;

    border-bottom:
        1px solid
        var(--line);

    font-size: 13px;
}

.notice-strip strong {
    color: var(--wine);
}

.notice-strip a {
    color: var(--navy);

    font-weight: 700;
}


/* ==========================================================================
   VEHICLE LIST
   ========================================================================== */

.vehicle-list {
    width: 100%;

    border-top:
        1px solid
        var(--line);
}

.vehicle-row {
    display: grid;

    grid-template-columns:
        300px
        minmax(0, 1fr);

    min-height: 220px;

    background: var(--white);

    border-bottom:
        1px solid
        var(--line);
}

.vehicle-row:nth-child(even) {
    background: #faf7f0;
}

.vehicle-row__image {
    min-height: 220px;

    overflow: hidden;

    background: #d5d0c7;

    border-right:
        1px solid
        var(--line);
}

.vehicle-row__image img {
    width: 100%;
    height: 100%;

    min-height: 220px;

    object-fit: cover;

    transition:
        transform
        .3s ease;
}

.vehicle-row:hover .vehicle-row__image img {
    transform: scale(1.015);
}

.vehicle-row__body {
    min-width: 0;

    padding:
        19px
        22px
        18px;
}

.vehicle-row__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 28px;
}

.vehicle-reference {
    display: block;

    margin-bottom: 4px;

    color: #79746b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .11em;

    text-transform: uppercase;
}

.vehicle-row__top h3 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;
    line-height: 1.12;
}

.vehicle-price {
    flex: 0 0 auto;

    color: var(--wine);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
    line-height: 1;

    white-space: nowrap;
}

.vehicle-spec-line {
    margin-top: 11px;

    padding:
        8px
        0;

    display: flex;
    flex-wrap: wrap;

    border-top:
        1px solid
        #ded7cb;

    border-bottom:
        1px solid
        #ded7cb;

    color: #494b4c;

    font-size: 12px;

    font-weight: 700;
}

.vehicle-spec-line span {
    padding:
        0
        10px;

    border-right:
        1px solid
        #c9c2b8;
}

.vehicle-spec-line span:first-child {
    padding-left: 0;
}

.vehicle-spec-line span:last-child {
    border-right: 0;
}

.vehicle-description {
    max-width: 800px;

    margin:
        12px
        0
        14px;

    color: #555651;

    font-size: 13px;
    line-height: 1.52;
}


/* ==========================================================================
   VEHICLE MINI SPECS
   ========================================================================== */

.vehicle-mini-specs {
    width: 100%;

    margin: 0;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        #d7cfc2;

    border-left:
        1px solid
        #d7cfc2;
}

.vehicle-mini-specs > div {
    min-width: 0;

    padding:
        7px
        9px;

    border-right:
        1px solid
        #d7cfc2;

    border-bottom:
        1px solid
        #d7cfc2;
}

.vehicle-mini-specs dt {
    color: #7b776f;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .06em;

    text-transform: uppercase;
}

.vehicle-mini-specs dd {
    margin:
        3px
        0
        0;

    overflow: hidden;

    color: #303438;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    text-overflow: ellipsis;
}


/* ==========================================================================
   VEHICLE ACTIONS
   ========================================================================== */

.vehicle-row__actions {
    margin-top: 13px;

    display: flex;
    align-items: center;

    gap: 18px;
}

.vehicle-row__actions > span {
    color: #77736c;

    font-size: 11px;
}

.text-action {
    display: inline-block;

    padding:
        8px
        11px;

    background: var(--wine);

    border:
        1px solid
        var(--wine-dark);

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;
}

.text-action:hover {
    background: var(--wine-dark);
}


/* ==========================================================================
   HOME CONTENT COLUMNS
   ========================================================================== */

.home-columns {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(260px, .55fr);

    gap: 38px;
}

.editorial-list {
    margin: 0;

    padding: 0;

    list-style: none;

    border-top:
        1px solid
        var(--line-dark);
}

.editorial-list li {
    padding:
        14px
        0;

    display: grid;

    grid-template-columns:
        155px
        1fr;

    gap: 20px;

    border-bottom:
        1px solid
        var(--line);
}

.editorial-list strong {
    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;
    line-height: 1.25;
}

.editorial-list span {
    color: #5e5d58;

    font-size: 14px;
    line-height: 1.52;
}


/* ==========================================================================
   SIDE INFORMATION
   ========================================================================== */

.side-information {
    min-width: 0;

    padding-left: 27px;

    border-left:
        1px solid
        var(--line);
}

.side-information h3 {
    margin:
        0
        0
        11px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    line-height: 1.2;
}

.side-information p {
    color: #5b5d58;

    font-size: 13px;
    line-height: 1.58;
}

.side-information a {
    color: var(--wine);

    font-weight: 700;
}


/* ==========================================================================
   HOURS TABLE
   ========================================================================== */

.hours-table {
    width: 100%;

    margin-top: 13px;

    border-collapse: collapse;

    font-size: 13px;
}

.hours-table td {
    padding:
        8px
        4px;

    border-bottom:
        1px solid
        var(--line);
}

.hours-table td:first-child {
    padding-left: 0;
}

.hours-table td:last-child {
    padding-right: 0;

    text-align: right;

    font-weight: 700;
}


/* ==========================================================================
   CATEGORY LINKS
   ========================================================================== */

.category-links {
    margin-top: 24px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background: var(--line-dark);

    border:
        1px solid
        var(--line-dark);
}

.category-links a {
    min-height: 130px;

    padding:
        21px
        20px;

    background: #f7f2e8;

    text-decoration: none;
}

.category-links a:hover {
    background: #ebe2d1;
}

.category-links strong {
    display: block;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    line-height: 1.1;
}

.category-links span {
    display: block;

    margin-top: 8px;

    color: #66635d;

    font-size: 13px;
    line-height: 1.5;
}


/* ==========================================================================
   GENERIC CONTENT GRID
   ========================================================================== */

.content-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(260px, .55fr);

    gap: 42px;
}

.prose h1 {
    margin:
        0
        0
        15px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;
    line-height: 1.08;
}

.prose h2 {
    margin:
        30px
        0
        10px;

    padding-bottom: 7px;

    color: var(--navy);

    border-bottom:
        1px solid
        var(--line);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
    line-height: 1.2;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    margin:
        23px
        0
        7px;

    color: var(--wine);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
    line-height: 1.2;
}

.prose p,
.prose li {
    color: #4f514e;

    font-size: 14px;
    line-height: 1.72;
}

.prose ul {
    padding-left: 21px;
}

.prose a {
    color: var(--wine);

    font-weight: 700;
}


/* ==========================================================================
   FACT LIST
   ========================================================================== */

.fact-list {
    margin: 0;

    padding: 0;

    list-style: none;

    border-top:
        1px solid
        var(--line-dark);
}

.fact-list li {
    padding:
        11px
        0;

    border-bottom:
        1px solid
        var(--line);
}

.fact-list strong {
    display: block;

    margin-bottom: 3px;

    color: var(--navy);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .05em;

    text-transform: uppercase;
}

.fact-list span {
    color: #555852;

    font-size: 13px;
    line-height: 1.45;
}


/* ==========================================================================
   INVENTORY LISTING HEADER
   ========================================================================== */

.listing-intro {
    padding:
        30px
        34px
        25px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    background:
        #f5f1e8;

    border-bottom:
        1px solid
        var(--line);
}

.listing-intro > div:first-child {
    max-width: 810px;
}

.listing-intro h1 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 35px;
    line-height: 1.08;
}

.listing-intro p {
    margin:
        11px
        0
        0;

    color: #5b5d59;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
    line-height: 1.58;
}

.listing-count {
    min-width: 130px;

    padding-left: 23px;

    border-left:
        1px solid
        var(--line);

    text-align: right;
}

.listing-count strong {
    display: block;

    color: var(--wine);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 37px;
    line-height: 1;
}

.listing-count span {
    display: block;

    margin-top: 5px;

    color: #706b64;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .04em;

    text-transform: uppercase;
}


/* ==========================================================================
   INVENTORY FILTERS
   ========================================================================== */

.inventory-controls {
    padding:
        16px
        18px;

    display: grid;

    grid-template-columns:
        minmax(260px, 1.7fr)
        repeat(3, minmax(130px, 1fr))
        auto;

    align-items: end;

    gap: 11px;

    background: #eae4d8;

    border-bottom:
        1px solid
        var(--line-dark);
}

.inventory-control {
    min-width: 0;
}

.inventory-control label {
    display: block;

    margin-bottom: 5px;

    color: #595750;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .05em;

    text-transform: uppercase;
}

.inventory-control input,
.inventory-control select {
    width: 100%;
    height: 39px;

    padding:
        0
        10px;

    background: #fff;

    border:
        1px solid
        #8d8579;

    color: #23282d;

    outline: none;
}

.inventory-control input:focus,
.inventory-control select:focus {
    border-color: var(--navy);
}

.filter-clear {
    height: 39px;

    padding:
        0
        15px;

    background: var(--navy);

    border:
        1px solid
        #0e1925;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;
}

.filter-clear:hover {
    background: var(--wine);
    border-color: var(--wine-dark);
}

.inventory-status {
    padding:
        10px
        18px;

    background: #f8f5ee;

    border-bottom:
        1px solid
        var(--line);

    color: #69665f;

    font-size: 12px;
}

.inventory-empty {
    margin:
        25px
        34px;

    padding:
        24px;

    background: #f2ede3;

    border:
        1px solid
        var(--line-dark);
}

.inventory-empty h2 {
    margin:
        0
        0
        8px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;
}

.inventory-empty p {
    max-width: 720px;

    color: #5c5c57;

    line-height: 1.6;
}

.inventory-empty a {
    color: var(--wine);

    font-weight: 700;
}


/* ==========================================================================
   GENERIC TABLES
   ========================================================================== */

.service-table {
    width: 100%;

    margin-top: 20px;

    border-collapse: collapse;
}

.service-table th {
    padding:
        10px
        12px;

    background: var(--navy);

    color: #fff;

    text-align: left;

    font-size: 12px;
}

.service-table td {
    padding:
        12px;

    border:
        1px solid
        var(--line);

    color: #4d504e;

    vertical-align: top;

    font-size: 13px;
    line-height: 1.5;
}

.service-table tr:nth-child(even) td {
    background: #f7f2e9;
}

.service-table td:first-child {
    width: 27%;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 700;
}


/* ==========================================================================
   LOCATION
   ========================================================================== */

.location-panel {
    margin-top: 24px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    border:
        1px solid
        var(--line-dark);
}

.location-map {
    position: relative;

    min-height: 360px;

    overflow: hidden;

    background:
        #d8d1c3;
}

.location-map::before,
.location-map::after {
    content: "";

    position: absolute;

    background:
        rgba(23, 38, 58, .17);
}

.location-map::before {
    top: 44%;
    left: -20%;

    width: 140%;
    height: 36px;

    transform: rotate(-12deg);
}

.location-map::after {
    top: -20%;
    left: 55%;

    width: 34px;
    height: 140%;

    transform: rotate(-10deg);
}

.map-marker {
    position: absolute;

    z-index: 3;

    top: 44%;
    left: 56%;

    width: 25px;
    height: 25px;

    background: var(--wine);

    border:
        4px solid
        #fff;

    box-shadow:
        0 1px 4px
        rgba(0, 0, 0, .35);

    transform: rotate(45deg);
}

.location-copy {
    padding:
        29px;

    background: #f1ebdf;
}

.location-copy h2 {
    margin:
        0
        0
        11px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;
    line-height: 1.15;
}

.location-copy p {
    color: #555853;

    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================================
   GENERIC PAGE HEADER
   ========================================================================== */

.page-header {
    padding:
        31px
        34px
        26px;

    background: #f4f0e7;

    border-bottom:
        1px solid
        var(--line);
}

.page-header h1 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 35px;
    line-height: 1.08;
}

.page-header p {
    max-width: 820px;

    margin:
        11px
        0
        0;

    color: #5a5c58;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
    line-height: 1.6;
}


/* ==========================================================================
   INFORMATION BLOCKS
   ========================================================================== */

.info-list {
    margin: 0;

    padding: 0;

    list-style: none;

    border-top:
        1px solid
        var(--line-dark);
}

.info-list li {
    padding:
        15px
        0;

    border-bottom:
        1px solid
        var(--line);
}

.info-list strong {
    display: block;

    margin-bottom: 4px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;
}

.info-list span,
.info-list p {
    color: #565954;

    font-size: 13px;
    line-height: 1.55;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    width: min(
        var(--page-width),
        calc(100% - 40px)
    );

    margin:
        0
        auto
        32px;

    background: var(--navy);

    border:
        1px solid
        #0c1520;

    border-top:
        5px solid
        var(--wine);

    color: #d9dcde;
}

.site-footer__columns {
    width: 100%;

    padding:
        28px
        34px;

    display: grid;

    grid-template-columns:
        1.4fr
        .8fr
        .8fr
        .8fr;

    gap: 37px;
}

.footer-heading {
    display: block;

    margin-bottom: 9px;

    color: #fff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;
}

.site-footer p {
    margin:
        6px
        0;

    color: #bec3c6;

    font-size: 12px;
    line-height: 1.55;
}

.site-footer a {
    color: #fff;
}

.site-footer__bottom {
    width: 100%;

    padding:
        12px
        34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, .14);

    color: #adb4b8;

    font-size: 10px;
}


/* ==========================================================================
   LINKS / SMALL UTILITIES
   ========================================================================== */

.prose a:hover,
.rule-heading a:hover,
.side-information a:hover,
.site-header__details a:hover {
    color: var(--wine-dark);
}

[hidden] {
    display: none !important;
}

[data-hidden="true"] {
    display: none !important;
}


/* ==========================================================================
   DESKTOP-SPECIFIC SMALLER WIDTH HANDLING
   Main mobile treatment remains in mobile.css.
   ========================================================================== */

@media (max-width: 1050px) {

    .main-nav__links a {
        padding-left: 10px;
        padding-right: 10px;

        font-size: 11px;
    }

    .inventory-controls {
        grid-template-columns:
            1.4fr
            1fr
            1fr;

        align-items: end;
    }

    .inventory-control--search {
        grid-column: span 2;
    }

    .filter-clear {
        width: 100%;
    }

    .site-footer__columns {
        grid-template-columns:
            1.3fr
            1fr
            1fr;
    }

    .site-footer__columns > div:last-child {
        grid-column: 2 / 4;
    }
}


/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {

    body {
        background: #fff;
    }

    .site-topline,
    .main-nav,
    .vehicle-row__actions,
    .inventory-controls,
    .site-footer {
        display: none !important;
    }

    .site-main {
        width: 100%;

        margin: 0;

        border: 0;

        box-shadow: none;
    }

    .vehicle-row {
        break-inside: avoid;
    }
}