@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --black: #0b0b0b;
    --dark: #121212;
    --dark2: #1a1a1a;
    --gold: #d6ad60;
    --gold-light: #edca82;
    --white: #ffffff;
    --gray: #707070;
    --light: #f5f5f3;
    --border: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #171717;
    background: #fff;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* HEADER */

.header {
    height: 84px;
    background: rgba(10,10,10,.97);
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    color: white;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo small {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 4px;
    margin-top: 5px;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: #ddd;
    font-size: 14px;
    transition: .3s;
}

.menu a:hover {
    color: var(--gold);
}

.nav-button {
    border: 1px solid var(--gold);
    padding: 11px 20px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: transparent;
    color: white;
    border: 0;
    font-size: 28px;
}

/* HERO */

.hero {
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.35)),
        url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2000&q=85")
        center/cover;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.eyebrow {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(45px, 6vw, 80px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero h1 strong {
    display: block;
    color: var(--gold);
}

.hero p {
    max-width: 580px;
    color: #ddd;
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .3s;
}

.btn-primary {
    background: var(--gold);
    color: #111;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(255,255,255,.5);
    color: white;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-dark {
    background: var(--black);
    color: white;
}

/* SEARCH */

.quick-search {
    position: relative;
    margin-top: -50px;
    z-index: 5;
}

.search-box {
    background: white;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.search-box label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.search-box input,
.search-box select {
    width: 100%;
    height: 46px;
    border: 1px solid var(--border);
    padding: 0 12px;
    background: white;
}

/* SECTIONS */

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-heading h2 strong {
    color: var(--gold);
}

.section-heading p {
    color: var(--gray);
}

/* FEATURES */

.features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.feature-card {
    border: 1px solid var(--border);
    padding: 40px 32px;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: #f7f0e4;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
}

/* DARK */

.dark-section {
    background: var(--black);
    color: white;
    padding: 100px 0;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.split h2 {
    font-family: "Manrope";
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.split h2 strong {
    color: var(--gold);
}

.split p {
    color: #aaa;
    margin-bottom: 30px;
}

.car-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.car-shape {
    font-size: 180px;
    filter: grayscale(1);
}

/* SERVICES */

.services {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.services.large {
    grid-template-columns: repeat(2,1fr);
}

.service-card {
    display: block;
    padding: 35px;
    border: 1px solid var(--border);
    transition: .3s;
}

.service-card:hover {
    background: var(--black);
    color: white;
    border-color: var(--black);
}

.service-card span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.service-card h3,
.service-card h2 {
    margin: 15px 0 10px;
}

.service-card p {
    color: var(--gray);
}

.service-card:hover p {
    color: #aaa;
}

/* CTA */

.cta {
    background: #f4f0e8;
    text-align: center;
    padding: 90px 20px;
}

.cta h2 {
    font-family: "Manrope";
    font-size: 45px;
    margin-bottom: 15px;
}

.cta p {
    color: var(--gray);
    margin-bottom: 30px;
}

/* PAGE HERO */

.page-hero {
    background: var(--black);
    color: white;
    padding: 110px 0;
}

.page-hero h1 {
    font-family: "Manrope";
    font-size: clamp(40px, 6vw, 65px);
    line-height: 1.1;
}

.page-hero h1 strong {
    color: var(--gold);
}

.page-hero p {
    color: #aaa;
    margin-top: 15px;
}

/* CARS */

.cars-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.car-card {
    border: 1px solid var(--border);
    background: white;
    overflow: hidden;
}

.car-image {
    height: 280px;
    background: #eeeeec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 130px;
}

.car-content {
    padding: 30px;
}

.car-category {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.car-content h2 {
    margin: 10px 0 20px;
}

.car-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 25px;
}

.car-button {
    display: block;
    background: var(--black);
    color: white;
    text-align: center;
    padding: 13px;
    font-weight: 700;
}

/* CONTENT */

.content {
    max-width: 850px;
}

.content h2 {
    font-family: "Manrope";
    margin: 40px 0 15px;
    font-size: 27px;
}

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

.content p {
    color: #555;
    margin-bottom: 20px;
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-info h2,
.contact-form h2 {
    font-family: "Manrope";
    font-size: 35px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 35px;
}

.contact-item {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.contact-item strong,
.contact-item span {
    display: block;
}

.contact-item span {
    color: var(--gray);
    margin-top: 5px;
}

.contact-form {
    background: #f6f6f4;
    padding: 35px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin: 15px 0 7px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    background: white;
    padding: 13px;
    font-family: inherit;
}

.check {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 400 !important;
}

.check input {
    width: auto;
}

/* FOOTER */

.footer {
    background: var(--black);
    color: white;
}

.footer-grid {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo strong {
    font-size: 28px;
    letter-spacing: 2px;
}

.footer-logo span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 4px;
}

.footer p {
    color: #999;
    font-size: 14px;
}

.footer h4 {
    color: var(--gold);
    margin-bottom: 20px;
}

.footer a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #252525;
    padding: 20px 0;
    color: #777;
    font-size: 12px;
}

/* COOKIE */

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 800px;
    margin: auto;
    background: #111;
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
    z-index: 9999;
}

.cookie-banner strong {
    color: var(--gold);
}

.cookie-banner p {
    color: #aaa;
    font-size: 12px;
}

.cookie-banner a {
    color: var(--gold);
}

.cookie-banner button {
    background: var(--gold);
    border: 0;
    padding: 11px 22px;
    font-weight: 700;
    cursor: pointer;
}

/* MOBILE */

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        background: #111;
        display: none;
        flex-direction: column;
        padding: 25px;
    }

    .menu.active {
        display: flex;
    }

    .nav-button {
        display: none;
    }

    .search-box,
    .features,
    .services,
    .services.large,
    .cars-grid,
    .contact-grid,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 650px;
    }

    .section {
        padding: 70px 0;
    }

    .split h2 {
        font-size: 38px;
    }

    .footer-grid {
        gap: 35px;
    }

}

@media (max-width: 600px) {

    .header {
        height: 75px;
    }

    .menu {
        top: 75px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero p {
        font-size: 16px;
    }

    .quick-search {
        margin-top: -20px;
    }

    .search-box {
        padding: 20px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .cta h2 {
        font-size: 34px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

}