:root {
    --bg: #f4f6f8;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --dark: #0b1120;
    --dark-soft: #111827;
    --primary: #d99a2b;
    --primary-dark: #a96f13;
    --primary-soft: rgba(217, 154, 43, 0.14);
    --success: #16a34a;
    --danger: #dc2626;
    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 32px;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 12px 35px rgba(15, 23, 42, 0.08);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(217, 154, 43, 0.16), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, #ffffff 100%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: var(--primary);
    color: var(--dark);
}

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

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

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

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-content {
    overflow: hidden;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: max-content;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background:
        linear-gradient(145deg, #111827, #020617);
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: -0.04em;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.22);
}

.brand-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-weight: 950;
    font-size: 17px;
    letter-spacing: -0.03em;
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.86);
}

.main-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 850;
    font-size: 14px;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.16);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone {
    color: var(--text);
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--primary);
    color: #111827;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(217, 154, 43, 0.28);
    transition: 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    background: #e6aa3d;
}

/* GLOBAL SECTIONS */

.section {
    padding: clamp(56px, 8vw, 96px) 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.kicker {
    margin: 0 0 12px;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 950;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 860px;
    font-size: clamp(44px, 6.2vw, 82px);
    line-height: 0.92;
    letter-spacing: -0.075em;
}

h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.055em;
}

h3 {
    letter-spacing: -0.035em;
}

p {
    color: var(--muted);
    line-height: 1.75;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 950;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: #111827;
    box-shadow: 0 16px 34px rgba(217, 154, 43, 0.28);
}

.btn-secondary {
    background: #fff;
    color: #111827;
    border-color: var(--border);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

/* VEHICLE CARDS */

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vehicle-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: 0.22s ease;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.vehicle-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    background: #e5e7eb;
}

.vehicle-card-body {
    padding: 24px;
}

.vehicle-brand {
    margin-bottom: 7px;
    color: var(--primary-dark);
    font-weight: 950;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vehicle-card h2,
.vehicle-card h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.vehicle-price {
    color: var(--text);
    font-size: 26px;
    font-weight: 950;
}

/* FOOTER */

.site-footer {
    border-top: 1px solid var(--border);
    background: #fff;
}

.footer-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
}


/* RESPONSIVE */

@media (max-width: 1050px) {
    .header-inner {
        grid-template-columns: auto 1fr;
        align-items: center;
    }
}

/* =========================
   BURGER MENU
========================= */

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    padding: 12px;
    box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--dark);
    border-radius: 999px;
    transition: .25s;
}

.mobile-menu,
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 760px) {

    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 16px;
        min-height: 78px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .brand-subtitle {
        display: none;
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 90;
        background: rgba(0,0,0,.55);
        backdrop-filter: blur(4px);
    }

    .mobile-menu {
        position: fixed;
        top: 90px;
        left: 15px;
        right: 15px;
        z-index: 100;
        background: #fff;
        border-radius: 24px;
        border: 1px solid var(--border);
        padding: 12px;
        box-shadow: 0 25px 70px rgba(15,23,42,.25);
    }

    .mobile-menu a {
        display: block;
        padding: 16px 18px;
        border-radius: 14px;
        font-weight: 900;
    }

    .mobile-menu a:hover,
    .mobile-menu a.is-active {
        background: var(--dark);
        color: #fff;
    }

    .menu-open .mobile-menu,
    .menu-open .mobile-menu-overlay {
        display: block;
    }

    h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .btn {
        width: 100%;
    }
}