/* =========================================================
   REXUS88 DEALER MOBIL
   PREMIUM AUTO DEALER
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: #090909;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    background: #e10600;
    color: #ffffff;
}


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --black: #090909;
    --black-soft: #111111;
    --black-card: #151515;
    --black-light: #1b1b1b;

    --white: #ffffff;
    --white-soft: #d8d8d8;
    --gray: #8d8d8d;

    --red: #e10600;
    --red-dark: #a90400;

    --border: rgba(255, 255, 255, 0.09);

    --container: 1240px;

    --transition: 0.3s ease;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    background: var(--red);
}

h1,
h2,
h3 {
    line-height: 1.1;
}

h2 {
    font-size: clamp(38px, 5vw, 68px);
    letter-spacing: -0.04em;
}

h2 span {
    color: #777777;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55),
        transparent
    );
}

.nav-wrapper {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* LOGO */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: var(--red);

    color: #ffffff;

    font-size: 22px;
    font-weight: 900;

    font-style: italic;

    transform: skew(-7deg);
}

.logo-text {
    display: flex;
    flex-direction: column;

    color: #ffffff;

    font-size: 17px;
    font-weight: 900;

    line-height: 1;
    letter-spacing: 0.04em;
}

.logo-text small {
    margin-top: 5px;

    color: #888888;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.24em;
}


/* NAV */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav > a {
    position: relative;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    font-weight: 600;

    transition: var(--transition);
}

.main-nav > a:hover,
.main-nav > a.active {
    color: #ffffff;
}

.main-nav > a:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--red);

    transition: var(--transition);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    width: 100%;
}

.main-nav .nav-cta {
    padding: 13px 20px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: #ffffff;

    transition: var(--transition);
}

.main-nav .nav-cta:hover {
    border-color: var(--red);
    background: var(--red);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 850px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;
}

.hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.75) 38%,
            rgba(0, 0, 0, 0.20) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.80) 0%,
            transparent 40%
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    padding-top: 80px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: #dddddd;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.22em;
}

.hero-label span {
    width: 7px;
    height: 7px;

    display: block;

    background: var(--red);

    border-radius: 50%;

    box-shadow: 0 0 20px rgba(225, 6, 0, 0.7);
}

.hero-eyebrow {
    margin-bottom: 14px;

    color: var(--red);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.28em;
}

.hero h1 {
    max-width: 750px;

    margin-bottom: 28px;

    color: #ffffff;

    font-size: clamp(58px, 8vw, 108px);

    font-weight: 800;

    letter-spacing: -0.065em;
}

.hero h1 strong {
    color: #a0a0a0;
    font-weight: 800;
}

.hero-description {
    max-width: 560px;

    margin-bottom: 38px;

    color: #b8b8b8;

    font-size: 16px;

    line-height: 1.8;
}


/* HERO BUTTONS */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 65px;
}

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 0 25px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.04em;

    transition: var(--transition);
}

.btn span {
    font-size: 18px;

    transition: transform var(--transition);
}

.btn:hover span {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--red);
    color: #ffffff;
}

.btn-primary:hover {
    background: #ff0a03;

    box-shadow:
        0 12px 35px rgba(225, 6, 0, 0.25);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);

    color: #ffffff;

    background: rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #090909;
}


/* HERO STATS */

.hero-stats {
    display: flex;
    align-items: center;

    gap: 50px;
}

.hero-stat {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.hero-stat strong {
    font-size: 26px;
    font-weight: 800;
}

.hero-stat span {
    color: #888888;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* SCROLL */

.hero-scroll {
    position: absolute;

    right: 45px;
    bottom: 35px;

    z-index: 3;

    display: flex;
    align-items: center;
    gap: 14px;

    color: #777777;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.2em;

    writing-mode: vertical-rl;
}

.hero-scroll i {
    width: 1px;
    height: 55px;

    display: block;

    background: linear-gradient(
        to bottom,
        var(--red),
        transparent
    );
}


/* =========================================================
   INTRO
   ========================================================= */

.intro {
    background: var(--black);
}

.intro-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 100px;

    align-items: end;
}

.intro h2 {
    max-width: 600px;

    margin-top: 24px;
}

.intro-text {
    padding-bottom: 8px;
}

.intro-text p {
    max-width: 530px;

    margin-bottom: 28px;

    color: #8f8f8f;

    font-size: 15px;

    line-height: 1.9;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    transition: var(--transition);
}

.text-link span {
    color: var(--red);

    font-size: 18px;

    transition: var(--transition);
}

.text-link:hover {
    color: var(--red);
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   FEATURED
   ========================================================= */

.featured {
    background: #0d0d0d;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 50px;
}

.section-heading h2 {
    margin-top: 18px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 5px;

    border-bottom: 1px solid #444444;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    transition: var(--transition);
}

.view-all span {
    color: var(--red);

    font-size: 18px;

    transition: var(--transition);
}

.view-all:hover {
    border-color: var(--red);
}

.view-all:hover span {
    transform: translateX(5px);
}


/* CARS GRID */

.cars-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.car-card {
    min-width: 0;

    background: var(--black-card);

    border: 1px solid var(--border);

    transition: transform var(--transition),
                border-color var(--transition);
}

.car-card:hover {
    transform: translateY(-7px);

    border-color: rgba(225, 6, 0, 0.35);
}


/* CAR IMAGE */

.car-image {
    position: relative;

    aspect-ratio: 1.25 / 1;

    overflow: hidden;

    background: #111111;
}

.car-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 2;

    padding: 7px 10px;

    background: rgba(0, 0, 0, 0.75);

    border-left: 2px solid var(--red);

    color: #ffffff;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.car-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: end;

    padding: 20px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85),
            transparent 45%
        );

    opacity: 0;

    transition: var(--transition);
}

.car-card:hover .car-overlay {
    opacity: 1;
}

.car-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}

.car-overlay a span {
    color: var(--red);

    font-size: 18px;
}


/* CAR INFO */

.car-info {
    padding: 26px;
}

.car-category {
    margin-bottom: 9px;

    color: var(--red);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.17em;
}

.car-info h3 {
    margin-bottom: 8px;

    font-size: 23px;
    font-weight: 700;
}

.car-info > p {
    margin-bottom: 22px;

    color: #777777;

    font-size: 11px;
}

.car-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    padding-top: 17px;

    border-top: 1px solid var(--border);
}

.car-meta span {
    padding-right: 12px;

    border-right: 1px solid #333333;

    color: #aaaaaa;

    font-size: 9px;
    font-weight: 600;
}

.car-meta span:last-child {
    border-right: none;
}


/* =========================================================
   EXPERIENCE
   ========================================================= */

.experience {
    background: var(--black);
}

.experience-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.experience-image {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;
}

.experience-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(225, 6, 0, 0.15),
            transparent 45%
        );
}

.experience-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.experience-image:hover img {
    transform: scale(1.04);
}

.image-caption {
    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 2;

    padding: 10px 15px;

    background: rgba(0, 0, 0, 0.72);

    border-left: 2px solid var(--red);

    color: #ffffff;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.experience-content h2 {
    margin-top: 22px;
    margin-bottom: 25px;
}

.experience-content > p {
    max-width: 500px;

    margin-bottom: 42px;

    color: #888888;

    font-size: 14px;

    line-height: 1.9;
}


/* EXPERIENCE LIST */

.experience-list {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.experience-item {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding-bottom: 24px;

    border-bottom: 1px solid var(--border);
}

.experience-item:last-child {
    padding-bottom: 0;

    border-bottom: none;
}

.experience-item .number {
    color: var(--red);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.08em;
}

.experience-item h3 {
    margin-bottom: 7px;

    font-size: 16px;
}

.experience-item p {
    color: #777777;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   WHY US
   ========================================================= */

.why-us {
    background: #0d0d0d;
}

.center-heading {
    max-width: 700px;

    margin: 0 auto 65px;

    text-align: center;
}

.center-heading .section-label {
    justify-content: center;
}

.center-heading h2 {
    margin-top: 22px;
    margin-bottom: 20px;
}

.center-heading p {
    color: #777777;

    font-size: 14px;

    line-height: 1.8;
}

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.benefit {
    min-height: 260px;

    padding: 35px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.benefit:hover {
    background: #141414;
}

.benefit-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    margin-bottom: 35px;

    border: 1px solid #333333;

    color: var(--red);

    font-size: 10px;
    font-weight: 800;
}

.benefit h3 {
    margin-bottom: 12px;

    font-size: 17px;
}

.benefit p {
    color: #777777;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.cta-section > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cta-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.2)
        );
}

.cta-content {
    position: relative;

    z-index: 2;
}

.cta-content h2 {
    max-width: 750px;

    margin: 22px 0;

    font-size: clamp(42px, 6vw, 78px);
}

.cta-content p {
    max-width: 500px;

    margin-bottom: 32px;

    color: #a4a4a4;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #050505;

    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;

    grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;

    gap: 70px;

    padding: 80px 0;
}

.footer-brand p {
    max-width: 320px;

    margin-top: 25px;

    color: #666666;

    font-size: 11px;

    line-height: 1.9;
}

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    color: #666666;

    font-size: 11px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--red);
}

.footer-contact a {
    color: #aaaaaa;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 25px 0;

    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: #555555;

    font-size: 9px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 20px;
    }

    .intro-grid,
    .experience-grid {
        gap: 55px;
    }

    .footer-top {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 3;
    }

}


@media (max-width: 900px) {

    .site-header {
        position: relative;

        background: #090909;
    }

    .nav-wrapper {
        min-height: 76px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: clamp(52px, 10vw, 82px);
    }

    .intro-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-image {
        max-width: 700px;
    }

    .experience-content {
        max-width: 700px;
    }

}


@media (max-width: 640px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        min-height: 700px;
    }

    .hero-image {
        object-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.94),
                rgba(0, 0, 0, 0.58)
            ),
            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.90),
                transparent
            );
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 52px;

        letter-spacing: -0.06em;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;

        max-width: 260px;

        margin-bottom: 45px;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stat strong {
        font-size: 21px;
    }

    .hero-scroll {
        display: none;
    }

    .intro-grid {
        gap: 35px;
    }

    h2 {
        font-size: 40px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .cars-grid {
        grid-template-columns: 1fr;
    }

    .car-image {
        aspect-ratio: 1.3 / 1;
    }

    .experience-grid {
        gap: 45px;
    }

    .experience-image {
        aspect-ratio: 1 / 1;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit {
        min-height: auto;
    }

    .cta-section {
        min-height: 600px;
    }

    .cta-content h2 {
        font-size: 46px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .logo-text {
        font-size: 15px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-stats {
        gap: 18px;
    }

    .hero-stat span {
        font-size: 7px;
    }

    .car-info {
        padding: 22px;
    }

}

/* =========================================================
   COLLECTION PAGE
   ========================================================= */


/* =========================================================
   COLLECTION HERO
   ========================================================= */

.collection-hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;
}

.collection-hero > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.collection-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.94),
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.2)
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.9),
            transparent 55%
        );
}

.collection-hero-content {
    position: relative;

    z-index: 2;

    padding-top: 100px;
}

.collection-hero-content h1 {
    max-width: 850px;

    margin: 20px 0;

    font-size: clamp(58px, 8vw, 105px);

    font-weight: 800;

    letter-spacing: -0.07em;
}

.collection-hero-content h1 span {
    color: #777777;
}

.collection-hero-content > p {
    max-width: 550px;

    color: #aaaaaa;

    font-size: 15px;

    line-height: 1.8;
}


/* BREADCRUMB */

.breadcrumb {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 35px;

    color: #666666;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}

.breadcrumb a {
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb strong {
    color: #ffffff;
}


/* =========================================================
   COLLECTION INTRO
   ========================================================= */

.collection-intro {
    background: var(--black);
}

.collection-intro-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 100px;

    align-items: end;
}

.collection-intro h2 {
    margin-top: 20px;
}

.collection-intro-grid > div:last-child {
    max-width: 550px;
}

.collection-intro-grid p {
    margin-bottom: 18px;

    color: #808080;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   CATALOG SECTION
   ========================================================= */

.catalog-section {
    padding: 90px 0 120px;

    background: #0d0d0d;
}


/* TOOLBAR */

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 45px;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.catalog-count {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #666666;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.16em;
}

.catalog-count span {
    color: #ffffff;

    font-size: 18px;
}

.catalog-filter {
    display: flex;
    align-items: center;

    gap: 14px;
}

.catalog-filter label {
    color: #666666;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.catalog-filter select {
    min-width: 180px;

    padding: 11px 14px;

    appearance: none;

    border: 1px solid #303030;

    outline: none;

    background: #111111;

    color: #ffffff;

    font-size: 10px;

    cursor: pointer;
}


/* =========================================================
   CATALOG GRID
   ========================================================= */

.catalog-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px 25px;
}


/* =========================================================
   CATALOG CARD
   ========================================================= */

.catalog-card {
    overflow: hidden;

    background: #121212;

    border: 1px solid var(--border);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.catalog-card:hover {
    transform: translateY(-5px);

    border-color: rgba(225, 6, 0, 0.35);
}


/* IMAGE */

.catalog-image {
    position: relative;

    aspect-ratio: 1.45 / 1;

    overflow: hidden;

    background: #111111;
}

.catalog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.045);
}


/* NUMBER */

.catalog-number {
    position: absolute;

    top: 22px;
    left: 22px;

    z-index: 3;

    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.1em;
}


/* TAG */

.catalog-tag {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 3;

    padding: 8px 11px;

    background: rgba(0, 0, 0, 0.7);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.13em;
}


/* VIEW */

.catalog-view {
    position: absolute;

    left: 20px;
    bottom: 20px;

    z-index: 3;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    background: var(--red);

    color: #ffffff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.08em;

    transform: translateY(10px);

    opacity: 0;

    transition: var(--transition);
}

.catalog-card:hover .catalog-view {
    transform: translateY(0);

    opacity: 1;
}

.catalog-view span {
    font-size: 17px;
}


/* INFO */

.catalog-info {
    padding: 28px;
}

.catalog-info .car-category {
    display: block;

    margin-bottom: 10px;
}

.catalog-info h2 {
    margin-bottom: 8px;

    font-size: 27px;

    letter-spacing: -0.04em;
}

.catalog-info > p {
    margin-bottom: 25px;

    color: #666666;

    font-size: 11px;
}


/* SPECS */

.catalog-specs {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.catalog-specs > div {
    padding-left: 18px;

    border-left: 1px solid #303030;
}

.catalog-specs > div:first-child {
    padding-left: 0;

    border-left: none;
}

.catalog-specs strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;
}

.catalog-specs small {
    color: #666666;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.12em;
}


/* =========================================================
   COLLECTION NOTE
   ========================================================= */

.collection-note {
    padding: 100px 0;

    background: #090909;

    border-top: 1px solid var(--border);
}

.collection-note-grid {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 100px;

    align-items: center;
}

.collection-note h2 {
    margin-top: 20px;
}

.collection-note-grid > div:last-child p {
    margin-bottom: 28px;

    color: #7c7c7c;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   COLLECTION RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .collection-intro-grid,
    .collection-note-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


@media (max-width: 640px) {

    .collection-hero {
        min-height: 600px;
    }

    .collection-hero-content {
        padding-top: 50px;
    }

    .collection-hero-content h1 {
        font-size: 54px;
    }

    .collection-hero > img {
        object-position: 60% center;
    }

    .catalog-section {
        padding: 70px 0 90px;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;

        gap: 20px;
    }

    .catalog-filter {
        width: 100%;

        justify-content: space-between;
    }

    .catalog-filter select {
        min-width: 160px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .catalog-info h2 {
        font-size: 24px;
    }

    .collection-note {
        padding: 80px 0;
    }

}

/* =========================================================
   VEHICLE DETAIL PAGE
   ========================================================= */


/* =========================================================
   VEHICLE HERO
   ========================================================= */

.vehicle-hero {
    position: relative;

    min-height: 820px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;
}

.vehicle-hero > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.vehicle-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.70) 42%,
            rgba(0, 0, 0, 0.18) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.9),
            transparent 55%
        );
}

.vehicle-hero-content {
    position: relative;

    z-index: 2;

    padding-top: 100px;
}

.vehicle-category {
    margin-top: 75px;
    margin-bottom: 18px;

    color: var(--red);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.vehicle-hero h1 {
    max-width: 800px;

    margin-bottom: 22px;

    font-size: clamp(58px, 8vw, 105px);

    font-weight: 800;

    letter-spacing: -0.07em;
}

.vehicle-hero h1 span {
    color: #888888;
}

.vehicle-hero-content > p {
    max-width: 550px;

    margin-bottom: 35px;

    color: #aaaaaa;

    font-size: 15px;

    line-height: 1.85;
}

.vehicle-actions {
    display: flex;
    gap: 14px;
}


/* =========================================================
   VEHICLE INTRO
   ========================================================= */

.vehicle-intro {
    background: var(--black);
}

.vehicle-intro-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 100px;

    align-items: end;
}

.vehicle-intro h2 {
    max-width: 650px;

    margin-top: 20px;
}

.vehicle-intro-grid > div:last-child {
    max-width: 550px;
}

.vehicle-intro-grid p {
    margin-bottom: 18px;

    color: #808080;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   PERFORMANCE
   ========================================================= */

.performance-section {
    padding: 110px 0;

    background: #0d0d0d;
}

.performance-header {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 55px;
}

.performance-header h2 {
    margin-top: 20px;
}

.performance-header > p {
    max-width: 380px;

    color: #6f6f6f;

    font-size: 12px;

    line-height: 1.8;
}

.performance-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.performance-card {
    min-height: 250px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 35px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.performance-card:hover {
    background: #141414;
}

.performance-card > span {
    margin-bottom: 28px;

    color: #666666;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.18em;
}

.performance-card strong {
    color: #ffffff;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1;

    letter-spacing: -0.06em;
}

.performance-card small {
    margin-top: 10px;

    color: var(--red);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.13em;
}


/* =========================================================
   SHOWCASE
   ========================================================= */

.vehicle-showcase {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.vehicle-showcase > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.vehicle-showcase-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.93),
            rgba(0, 0, 0, 0.42),
            rgba(0, 0, 0, 0.15)
        );
}

.vehicle-showcase .container {
    position: relative;

    z-index: 2;
}

.vehicle-showcase-content {
    max-width: 620px;
}

.vehicle-showcase-content h2 {
    margin: 22px 0;

    font-size: clamp(45px, 6vw, 78px);
}

.vehicle-showcase-content p {
    max-width: 500px;

    color: #999999;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   TECHNICAL
   ========================================================= */

.technical-section {
    background: var(--black);
}

.technical-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.technical-item {
    min-height: 160px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 30px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.technical-item span {
    margin-bottom: 12px;

    color: #666666;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.17em;
}

.technical-item strong {
    color: #eeeeee;

    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   FEATURES
   ========================================================= */

.vehicle-features {
    background: #0d0d0d;
}

.vehicle-feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.vehicle-feature-grid article {
    min-height: 300px;

    padding: 40px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.vehicle-feature-grid article:hover {
    background: #141414;
}

.feature-number {
    display: inline-block;

    margin-bottom: 55px;

    color: var(--red);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.1em;
}

.vehicle-feature-grid h3 {
    margin-bottom: 15px;

    font-size: 19px;
}

.vehicle-feature-grid p {
    color: #777777;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   VEHICLE CTA
   ========================================================= */

.vehicle-cta {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.vehicle-cta > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.vehicle-cta-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.25)
        );
}

.vehicle-cta-content {
    position: relative;

    z-index: 2;
}

.vehicle-cta-content h2 {
    max-width: 700px;

    margin: 22px 0;

    font-size: clamp(48px, 6vw, 82px);
}

.vehicle-cta-content h2 span {
    color: #777777;
}

.vehicle-cta-content p {
    max-width: 500px;

    margin-bottom: 30px;

    color: #999999;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   DETAIL RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .vehicle-intro-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .performance-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .technical-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-feature-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 640px) {

    .vehicle-hero {
        min-height: 700px;
    }

    .vehicle-hero > img {
        object-position: 63% center;
    }

    .vehicle-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.95),
                rgba(0, 0, 0, 0.55)
            ),
            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.92),
                transparent
            );
    }

    .vehicle-hero-content {
        padding-top: 45px;
    }

    .vehicle-category {
        margin-top: 50px;
    }

    .vehicle-hero h1 {
        font-size: 54px;
    }

    .vehicle-hero-content > p {
        font-size: 13px;
    }

    .vehicle-actions {
        align-items: stretch;

        flex-direction: column;

        max-width: 260px;
    }

    .performance-section {
        padding: 80px 0;
    }

    .performance-grid {
        grid-template-columns: 1fr 1fr;
    }

    .performance-card {
        min-height: 190px;

        padding: 25px;
    }

    .performance-card strong {
        font-size: 38px;
    }

    .vehicle-showcase {
        min-height: 570px;
    }

    .vehicle-showcase-content h2 {
        font-size: 48px;
    }

    .technical-grid {
        grid-template-columns: 1fr;
    }

    .technical-item {
        min-height: 130px;
    }

    .vehicle-feature-grid article {
        min-height: 250px;

        padding: 30px;
    }

    .vehicle-cta {
        min-height: 600px;
    }

    .vehicle-cta-content h2 {
        font-size: 50px;
    }

}

/* =========================================================
   ABOUT PAGE
   PREMIUM SHOWROOM / DEALER
   ========================================================= */


/* =========================================================
   ABOUT HERO
   ========================================================= */

.about-hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;
}

.about-hero > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.about-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.68) 45%,
            rgba(0, 0, 0, 0.2) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.9),
            transparent 55%
        );
}

.about-hero-content {
    position: relative;

    z-index: 2;

    padding-top: 90px;
}

.about-hero-label {
    margin-top: 85px;
    margin-bottom: 20px;

    color: var(--red);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.22em;
}

.about-hero h1 {
    max-width: 850px;

    margin-bottom: 25px;

    font-size: clamp(58px, 8vw, 105px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.075em;
}

.about-hero h1 span {
    display: block;

    color: #777777;
}

.about-hero-content > p {
    max-width: 540px;

    color: #a5a5a5;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   ABOUT INTRO
   ========================================================= */

.about-intro {
    background: var(--black);
}

.about-intro-grid {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 110px;

    align-items: start;
}

.about-intro-title h2 {
    max-width: 620px;

    margin-top: 22px;
}

.about-intro-title h2 span {
    display: block;

    color: #777777;
}

.about-intro-copy {
    max-width: 560px;
}

.about-intro-copy p {
    margin-bottom: 22px;

    color: #777777;

    font-size: 14px;

    line-height: 1.95;
}

.about-intro-copy .about-lead {
    color: #d0d0d0;

    font-size: 18px;

    line-height: 1.75;
}


/* =========================================================
   SHOWROOM EXPERIENCE
   ========================================================= */

.showroom-experience {
    padding: 0 0 120px;

    background: var(--black);
}

.showroom-image-wrap {
    position: relative;

    height: 680px;

    overflow: hidden;
}

.showroom-image-wrap > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;
}

.showroom-image-wrap:hover > img {
    transform: scale(1.025);
}

.showroom-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.88),
            transparent 65%
        );
}

.showroom-caption {
    position: absolute;

    left: 45px;
    bottom: 40px;

    z-index: 2;
}

.showroom-caption > span {
    display: block;

    margin-bottom: 15px;

    color: var(--red);

    font-size: 10px;
    font-weight: 800;
}

.showroom-caption strong {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 20px;

    letter-spacing: 0.03em;
}

.showroom-caption p {
    color: #888888;

    font-size: 11px;
}


/* SHOWROOM CONTENT */

.showroom-content {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 100px;

    padding-top: 90px;
}

.showroom-content h2 {
    max-width: 600px;

    margin-top: 20px;

    font-size: clamp(45px, 6vw, 75px);
}

.showroom-content h2 span {
    color: #777777;
}

.showroom-content-copy {
    max-width: 550px;
}

.showroom-content-copy p {
    margin-bottom: 20px;

    color: #777777;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   VALUES
   ========================================================= */

.about-values {
    background: #0d0d0d;
}

.values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 65px;

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.value-card {
    position: relative;

    min-height: 360px;

    padding: 35px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition:
        background var(--transition),
        transform var(--transition);
}

.value-card:hover {
    background: #131313;

    transform: translateY(-4px);
}

.value-number {
    display: block;

    color: #555555;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.value-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 50px 0 35px;

    border: 1px solid #343434;

    color: var(--red);

    font-size: 22px;
}

.value-card h3 {
    margin-bottom: 15px;

    font-size: 18px;
}

.value-card p {
    color: #707070;

    font-size: 11px;

    line-height: 1.85;
}


/* =========================================================
   FERRARI FOCUS
   ========================================================= */

.ferrari-focus {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;
}

.ferrari-focus > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.ferrari-focus-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96),
            rgba(0, 0, 0, 0.72) 42%,
            rgba(0, 0, 0, 0.15)
        );
}

.ferrari-focus-content {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 0.4fr 1fr;

    gap: 40px;

    align-items: center;
}

.ferrari-focus-number {
    color: rgba(255, 255, 255, 0.08);

    font-size: clamp(130px, 18vw, 300px);

    font-weight: 900;

    line-height: 0.8;

    letter-spacing: -0.1em;
}

.ferrari-focus-text {
    max-width: 650px;
}

.ferrari-focus-text h2 {
    margin: 22px 0;

    font-size: clamp(50px, 7vw, 90px);

    letter-spacing: -0.07em;
}

.ferrari-focus-text h2 span {
    display: block;

    color: #777777;
}

.ferrari-focus-text p {
    max-width: 510px;

    margin-bottom: 30px;

    color: #999999;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   ABOUT NUMBERS
   ========================================================= */

.about-numbers {
    background: var(--black);
}

.numbers-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.number-item {
    min-height: 190px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 30px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.number-item strong {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 60px);

    font-weight: 800;

    letter-spacing: -0.06em;
}

.number-item span {
    color: #666666;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.16em;
}


/* =========================================================
   DEALER PROCESS
   ========================================================= */

.dealer-process {
    background: #0d0d0d;
}

.dealer-process-header {
    display: grid;

    grid-template-columns: 1fr 0.65fr;

    gap: 100px;

    align-items: end;

    margin-bottom: 65px;
}

.dealer-process-header h2 {
    max-width: 650px;

    margin-top: 20px;
}

.dealer-process-header h2 span {
    display: block;

    color: #777777;
}

.dealer-process-header > p {
    max-width: 420px;

    color: #707070;

    font-size: 13px;

    line-height: 1.9;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.process-item {
    min-height: 300px;

    padding: 35px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.process-item:hover {
    background: #131313;
}

.process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 80px;

    color: #555555;

    font-size: 10px;
    font-weight: 800;
}

.process-top span:last-child {
    color: var(--red);

    font-size: 15px;
}

.process-item h3 {
    margin-bottom: 15px;

    font-size: 20px;
}

.process-item p {
    color: #707070;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   ABOUT CTA
   ========================================================= */

.about-cta {
    padding: 110px 0;

    background: var(--black);
}

.about-cta-box {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 70px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #161616,
            #0d0d0d
        );

    border: 1px solid var(--border);
}

.about-cta-box::after {
    content: "R";

    position: absolute;

    right: 30px;
    bottom: -100px;

    color: rgba(255, 255, 255, 0.025);

    font-size: 330px;

    font-weight: 900;

    line-height: 1;

    pointer-events: none;
}

.about-cta-box > div:first-child {
    position: relative;

    z-index: 2;

    max-width: 680px;
}

.about-cta-box h2 {
    margin: 20px 0;

    font-size: clamp(45px, 6vw, 75px);

    letter-spacing: -0.07em;
}

.about-cta-box h2 span {
    display: block;

    color: #777777;
}

.about-cta-box p {
    max-width: 500px;

    color: #777777;

    font-size: 13px;

    line-height: 1.85;
}

.about-cta-actions {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 12px;

    min-width: 210px;
}


/* =========================================================
   ABOUT RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .about-intro-grid,
    .showroom-content,
    .dealer-process-header {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .ferrari-focus-content {
        grid-template-columns: 1fr;
    }

    .ferrari-focus-number {
        display: none;
    }

    .about-cta-box {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 640px) {

    .about-hero {
        min-height: 650px;
    }

    .about-hero > img {
        object-position: 65% center;
    }

    .about-hero-content {
        padding-top: 50px;
    }

    .about-hero-label {
        margin-top: 55px;
    }

    .about-hero h1 {
        font-size: 55px;
    }

    .about-intro-copy .about-lead {
        font-size: 16px;
    }

    .showroom-experience {
        padding-bottom: 80px;
    }

    .showroom-image-wrap {
        height: 500px;
    }

    .showroom-caption {
        left: 25px;
        bottom: 25px;
    }

    .showroom-content {
        padding-top: 65px;
    }

    .showroom-content h2 {
        font-size: 50px;
    }

    .values-grid,
    .process-grid,
    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: 300px;
    }

    .ferrari-focus {
        min-height: 650px;
    }

    .ferrari-focus-text h2 {
        font-size: 52px;
    }

    .number-item {
        min-height: 150px;
    }

    .dealer-process-header {
        margin-bottom: 45px;
    }

    .process-item {
        min-height: 260px;
    }

    .process-top {
        margin-bottom: 60px;
    }

    .about-cta {
        padding: 80px 0;
    }

    .about-cta-box {
        padding: 40px 25px;
    }

    .about-cta-box h2 {
        font-size: 48px;
    }

    .about-cta-actions {
        width: 100%;
    }

}
/* =========================================================
   REVIEWS PAGE
   ========================================================= */


/* =========================================================
   REVIEWS HERO
   ========================================================= */

.reviews-hero {
    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;
}

.reviews-hero > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.reviews-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96),
            rgba(0, 0, 0, 0.68) 48%,
            rgba(0, 0, 0, 0.2)
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.9),
            transparent 60%
        );
}

.reviews-hero-content {
    position: relative;

    z-index: 2;

    padding-top: 90px;
}

.reviews-label {
    display: block;

    margin-top: 85px;
    margin-bottom: 20px;

    color: var(--red);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.reviews-hero h1 {
    max-width: 850px;

    margin-bottom: 25px;

    font-size: clamp(60px, 8vw, 105px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.075em;
}

.reviews-hero h1 span {
    display: block;

    color: #777777;
}

.reviews-hero-content > p {
    max-width: 510px;

    color: #9c9c9c;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   REVIEW SUMMARY
   ========================================================= */

.review-summary {
    background: var(--black);
}

.review-summary-grid {
    display: grid;

    grid-template-columns: 0.55fr 1fr;

    gap: 120px;

    align-items: center;
}

.review-score {
    padding-right: 70px;

    border-right: 1px solid var(--border);
}

.review-score strong {
    display: block;

    margin: 25px 0 8px;

    color: #ffffff;

    font-size: clamp(80px, 10vw, 130px);

    line-height: 0.9;

    letter-spacing: -0.09em;
}

.review-stars {
    color: var(--red);

    font-size: 13px;

    letter-spacing: 4px;
}

.review-score p {
    max-width: 220px;

    margin-top: 20px;

    color: #666666;

    font-size: 10px;

    line-height: 1.7;
}

.review-summary-copy h2 {
    max-width: 700px;

    margin-bottom: 25px;
}

.review-summary-copy h2 span {
    display: block;

    color: #777777;
}

.review-summary-copy p {
    max-width: 560px;

    color: #777777;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   REVIEWS LIST
   ========================================================= */

.reviews-list {
    background: #0d0d0d;
}

.reviews-list .section-heading {
    margin-bottom: 65px;
}

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.review-card {
    min-height: 410px;

    display: flex;
    flex-direction: column;

    padding: 35px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.review-card:hover {
    background: #131313;
}

.review-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 55px;
}

.review-card-top > span {
    color: #555555;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.review-card blockquote {
    margin: 0;

    color: #c6c6c6;

    font-size: 14px;

    line-height: 1.9;

    flex: 1;
}

.review-author {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #242424;
}

.author-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid #343434;

    color: #dddddd;

    font-size: 10px;
    font-weight: 800;
}

.review-author strong {
    display: block;

    margin-bottom: 5px;

    color: #eeeeee;

    font-size: 11px;
}

.review-author span {
    display: block;

    color: #626262;

    font-size: 9px;
}


/* =========================================================
   FEATURED REVIEW
   ========================================================= */

.featured-review {
    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.featured-review > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.featured-review-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96),
            rgba(0, 0, 0, 0.70) 55%,
            rgba(0, 0, 0, 0.2)
        );
}

.featured-review .container {
    position: relative;

    z-index: 2;
}

.featured-review-content {
    max-width: 850px;
}

.quote-mark {
    margin: 45px 0 15px;

    color: var(--red);

    font-size: 100px;

    font-family: Georgia, serif;

    line-height: 0.5;
}

.featured-review-content blockquote {
    margin: 0 0 35px;

    color: #eeeeee;

    font-size: clamp(28px, 4vw, 48px);

    font-weight: 500;

    line-height: 1.35;

    letter-spacing: -0.035em;
}

.featured-author strong {
    display: block;

    margin-bottom: 7px;

    color: #eeeeee;

    font-size: 11px;
}

.featured-author span {
    color: #666666;

    font-size: 9px;

    letter-spacing: 0.08em;
}


/* =========================================================
   EXPERIENCE POINTS
   ========================================================= */

.experience-points {
    background: var(--black);
}

.experience-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 65px;

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.experience-item {
    min-height: 300px;

    padding: 40px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.experience-item:hover {
    background: #111111;
}

.experience-item > span {
    display: block;

    margin-bottom: 65px;

    color: var(--red);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.experience-item h3 {
    margin-bottom: 15px;

    font-size: 19px;
}

.experience-item p {
    max-width: 300px;

    color: #707070;

    font-size: 11px;

    line-height: 1.85;
}


/* =========================================================
   REVIEWS CTA
   ========================================================= */

.reviews-cta {
    padding: 110px 0;

    background: var(--black);
}

.reviews-cta-box {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 70px;

    overflow: hidden;

    border: 1px solid var(--border);

    background:
        linear-gradient(
            135deg,
            #171717,
            #0d0d0d
        );
}

.reviews-cta-box::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -160px;
    top: -160px;

    border: 1px solid rgba(255,255,255,0.04);

    border-radius: 50%;
}

.reviews-cta-box::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: -100px;
    top: -100px;

    border: 1px solid rgba(255,255,255,0.035);

    border-radius: 50%;
}

.reviews-cta-box > div:first-child {
    position: relative;

    z-index: 2;

    max-width: 680px;
}

.reviews-cta-box h2 {
    margin: 20px 0;

    font-size: clamp(45px, 6vw, 75px);

    line-height: 1;

    letter-spacing: -0.07em;
}

.reviews-cta-box h2 span {
    display: block;

    color: #777777;
}

.reviews-cta-box p {
    max-width: 500px;

    color: #777777;

    font-size: 13px;

    line-height: 1.85;
}

.reviews-cta-actions {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 12px;

    min-width: 210px;
}


/* =========================================================
   REVIEWS RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 900px) {

    .review-summary-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .review-score {
        padding-right: 0;
        padding-bottom: 40px;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .reviews-cta-box {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 640px) {

    .reviews-hero {
        min-height: 650px;
    }

    .reviews-hero > img {
        object-position: 60% center;
    }

    .reviews-hero-content {
        padding-top: 50px;
    }

    .reviews-label {
        margin-top: 55px;
    }

    .reviews-hero h1 {
        font-size: 55px;
    }

    .review-score strong {
        font-size: 90px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: 370px;

        padding: 30px;
    }

    .featured-review {
        min-height: 650px;
    }

    .featured-review-content blockquote {
        font-size: 28px;
    }

    .experience-item {
        min-height: 250px;

        padding: 30px;
    }

    .experience-item > span {
        margin-bottom: 50px;
    }

    .reviews-cta {
        padding: 80px 0;
    }

    .reviews-cta-box {
        padding: 40px 25px;
    }

    .reviews-cta-box h2 {
        font-size: 48px;
    }

    .reviews-cta-actions {
        width: 100%;
    }

}
/* =========================================================
   FAQ PAGE
   ========================================================= */


/* =========================================================
   FAQ HERO
   ========================================================= */

.faq-hero {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;
}

.faq-hero > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.faq-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.97),
            rgba(0, 0, 0, 0.72) 50%,
            rgba(0, 0, 0, 0.2)
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.9),
            transparent 60%
        );
}

.faq-hero-content {
    position: relative;

    z-index: 2;

    padding-top: 90px;
}

.faq-label {
    display: block;

    margin-top: 85px;
    margin-bottom: 20px;

    color: var(--red);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.faq-hero h1 {
    max-width: 850px;

    margin-bottom: 25px;

    font-size: clamp(60px, 8vw, 105px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.075em;
}

.faq-hero h1 span {
    display: block;

    color: #777777;
}

.faq-hero-content > p {
    max-width: 530px;

    color: #9a9a9a;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   FAQ INTRO
   ========================================================= */

.faq-intro {
    background: var(--black);
}

.faq-intro-grid {
    display: grid;

    grid-template-columns: 0.85fr 1fr;

    gap: 130px;

    align-items: center;
}

.faq-intro-grid h2 {
    margin-top: 20px;
}

.faq-intro-grid h2 span {
    display: block;

    color: #777777;
}

.faq-intro-grid > div:last-child {
    padding-left: 50px;

    border-left: 1px solid var(--border);
}

.faq-intro-grid p {
    max-width: 600px;

    margin-bottom: 20px;

    color: #777777;

    font-size: 13px;

    line-height: 1.95;
}

.faq-intro-grid p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {
    background: #0d0d0d;
}

.faq-layout {
    display: grid;

    grid-template-columns: 0.55fr 1fr;

    gap: 110px;

    align-items: start;
}

.faq-side {
    position: sticky;

    top: 120px;
}

.faq-side-number {
    display: block;

    margin-bottom: 35px;

    color: #333333;

    font-size: 90px;
    font-weight: 800;

    line-height: 0.8;

    letter-spacing: -0.08em;
}

.faq-side h2 {
    margin: 20px 0;
}

.faq-side h2 span {
    display: block;

    color: #777777;
}

.faq-side p {
    max-width: 300px;

    color: #666666;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   FAQ ITEMS
   ========================================================= */

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    min-height: 105px;

    display: grid;

    grid-template-columns: 50px 1fr 40px;

    align-items: center;

    gap: 20px;

    list-style: none;

    cursor: pointer;

    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary > span {
    color: #444444;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.faq-item summary strong {
    color: #c7c7c7;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.5;

    transition: var(--transition);
}

.faq-item summary i {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #333333;

    color: #888888;

    font-size: 18px;
    font-style: normal;
    font-weight: 300;

    transition: transform 0.35s ease,
                background 0.35s ease,
                color 0.35s ease;
}

.faq-item:hover summary strong {
    color: #ffffff;
}

.faq-item[open] summary strong {
    color: #ffffff;
}

.faq-item[open] summary i {
    transform: rotate(45deg);

    border-color: var(--red);

    background: var(--red);

    color: #ffffff;
}

.faq-answer {
    padding:

        0
        60px
        35px
        70px;
}

.faq-answer p {
    max-width: 700px;

    color: #707070;

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================================
   FAQ BANNER
   ========================================================= */

.faq-banner {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.faq-banner > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.faq-banner-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.65) 55%,
            rgba(0, 0, 0, 0.18)
        );
}

.faq-banner .container {
    position: relative;

    z-index: 2;
}

.faq-banner-content {
    max-width: 650px;
}

.faq-banner-content h2 {
    margin: 20px 0 25px;

    font-size: clamp(50px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -0.07em;
}

.faq-banner-content h2 span {
    display: block;

    color: #777777;
}

.faq-banner-content p {
    max-width: 480px;

    margin-bottom: 35px;

    color: #888888;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   FAQ CTA
   ========================================================= */

.faq-cta {
    background: var(--black);
}

.faq-cta-inner {
    display: grid;

    grid-template-columns: 1fr 0.7fr;

    gap: 100px;

    align-items: center;

    padding: 80px 0;

    border-top: 1px solid var(--border);
}

.faq-cta-inner h2 {
    margin-top: 20px;

    font-size: clamp(45px, 6vw, 72px);

    line-height: 1;

    letter-spacing: -0.07em;
}

.faq-cta-inner h2 span {
    display: block;

    color: #777777;
}

.faq-cta-inner > div:last-child {
    padding-left: 50px;

    border-left: 1px solid var(--border);
}

.faq-cta-inner p {
    max-width: 480px;

    margin-bottom: 30px;

    color: #777777;

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================================
   FAQ RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .faq-layout {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .faq-side {
        position: static;
    }

    .faq-side-number {
        font-size: 70px;
    }

}


@media (max-width: 900px) {

    .faq-intro-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .faq-intro-grid > div:last-child {
        padding-left: 0;

        border-left: 0;
    }

    .faq-cta-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .faq-cta-inner > div:last-child {
        padding-left: 0;

        border-left: 0;
    }

}


@media (max-width: 640px) {

    .faq-hero {
        min-height: 640px;
    }

    .faq-hero > img {
        object-position: 60% center;
    }

    .faq-hero-content {
        padding-top: 50px;
    }

    .faq-label {
        margin-top: 55px;
    }

    .faq-hero h1 {
        font-size: 55px;
    }

    .faq-intro-grid h2,
    .faq-side h2 {
        font-size: 42px;
    }

    .faq-item summary {
        min-height: 90px;

        grid-template-columns: 32px 1fr 32px;

        gap: 12px;
    }

    .faq-item summary strong {
        font-size: 12px;
    }

    .faq-item summary i {
        width: 27px;
        height: 27px;
    }

    .faq-answer {
        padding:
            0
            25px
            30px
            44px;
    }

    .faq-banner {
        min-height: 600px;
    }

    .faq-banner-content h2 {
        font-size: 48px;
    }

    .faq-cta-inner {
        padding: 50px 0;
    }

}
/* =========================================================
   CONTACT PAGE
   ========================================================= */


/* =========================================================
   CONTACT HERO
   ========================================================= */

.contact-hero {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;
}

.contact-hero > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.contact-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.97),
            rgba(0, 0, 0, 0.72) 52%,
            rgba(0, 0, 0, 0.2)
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.9),
            transparent 60%
        );
}

.contact-hero-content {
    position: relative;

    z-index: 2;

    padding-top: 90px;
}

.contact-label {
    display: block;

    margin-top: 85px;
    margin-bottom: 20px;

    color: var(--red);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.contact-hero h1 {
    max-width: 850px;

    margin-bottom: 25px;

    font-size: clamp(60px, 8vw, 105px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.075em;
}

.contact-hero h1 span {
    display: block;

    color: #777777;
}

.contact-hero-content > p {
    max-width: 530px;

    color: #999999;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   CONTACT INTRO
   ========================================================= */

.contact-intro {
    background: var(--black);
}

.contact-intro-grid {
    display: grid;

    grid-template-columns: 0.85fr 1fr;

    gap: 130px;

    align-items: center;
}

.contact-intro-grid h2 {
    margin-top: 20px;
}

.contact-intro-grid h2 span {
    display: block;

    color: #777777;
}

.contact-intro-grid > div:last-child {
    padding-left: 50px;

    border-left: 1px solid var(--border);
}

.contact-intro-grid p {
    max-width: 600px;

    margin-bottom: 20px;

    color: #777777;

    font-size: 13px;

    line-height: 1.95;
}

.contact-intro-grid p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CONTACT MAIN
   ========================================================= */

.contact-main {
    background: #0d0d0d;
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.75fr 1fr;

    gap: 100px;

    align-items: start;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.contact-information {
    position: sticky;

    top: 120px;
}

.contact-information h2 {
    margin: 20px 0 60px;

    font-size: clamp(48px, 5vw, 70px);

    line-height: 0.98;

    letter-spacing: -0.07em;
}

.contact-information h2 span {
    display: block;

    color: #777777;
}

.contact-details {
    border-top: 1px solid var(--border);
}

.contact-detail {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 27px 0;

    border-bottom: 1px solid var(--border);
}

.contact-detail-number {
    color: #444444;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.1em;
}

.contact-detail small {
    display: block;

    margin-bottom: 10px;

    color: #555555;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.18em;
}

.contact-detail a {
    color: #c9c9c9;

    font-size: 13px;

    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--red);
}

.contact-detail p {
    margin: 0 0 5px;

    color: #777777;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-wrapper {
    padding: 55px;

    border: 1px solid var(--border);

    background: #111111;
}

.contact-form-heading {
    margin-bottom: 50px;
}

.contact-form-heading h2 {
    margin-top: 20px;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -0.07em;
}

.contact-form-heading h2 span {
    display: block;

    color: #777777;
}

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.form-group label {
    color: #696969;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #292929;

    outline: none;

    border-radius: 0;

    background: #0b0b0b;

    color: #d8d8d8;

    font-family: inherit;

    font-size: 12px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.form-group input,
.form-group select {
    min-height: 55px;

    padding: 0 17px;
}

.form-group textarea {
    min-height: 145px;

    padding: 17px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #444444;
}

.form-group select {
    appearance: none;

    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #555555;

    background: #0e0e0e;
}

.form-submit {
    align-self: flex-start;

    min-width: 190px;

    border: 0;

    cursor: pointer;
}

.form-note {
    margin-top: -5px;

    color: #4e4e4e;

    font-size: 9px;

    line-height: 1.7;
}


/* =========================================================
   SHOWROOM VISUAL
   ========================================================= */

.contact-showroom {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.contact-showroom > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.contact-showroom-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96),
            rgba(0, 0, 0, 0.62) 55%,
            rgba(0, 0, 0, 0.18)
        );
}

.contact-showroom .container {
    position: relative;

    z-index: 2;
}

.contact-showroom-content {
    max-width: 700px;
}

.contact-showroom-content h2 {
    margin: 20px 0 25px;

    font-size: clamp(55px, 7vw, 90px);

    line-height: 0.9;

    letter-spacing: -0.075em;
}

.contact-showroom-content h2 span {
    display: block;

    color: #777777;
}

.contact-showroom-content p {
    max-width: 430px;

    margin-bottom: 35px;

    color: #888888;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   CONTACT CTA
   ========================================================= */

.contact-cta {
    background: var(--black);
}

.contact-cta-grid {
    display: grid;

    grid-template-columns: 1fr 0.75fr;

    gap: 100px;

    align-items: center;

    padding: 90px 0;

    border-top: 1px solid var(--border);
}

.contact-cta-grid h2 {
    margin-top: 20px;

    font-size: clamp(48px, 6vw, 75px);

    line-height: 0.98;

    letter-spacing: -0.075em;
}

.contact-cta-grid h2 span {
    display: block;

    color: #777777;
}

.contact-cta-grid > div:last-child {
    padding-left: 50px;

    border-left: 1px solid var(--border);
}

.contact-cta-grid p {
    max-width: 480px;

    margin-bottom: 30px;

    color: #777777;

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================================
   CONTACT RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .contact-information {
        position: static;
    }

}


@media (max-width: 900px) {

    .contact-intro-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-intro-grid > div:last-child {
        padding-left: 0;

        border-left: 0;
    }

    .contact-cta-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-cta-grid > div:last-child {
        padding-left: 0;

        border-left: 0;
    }

}


@media (max-width: 640px) {

    .contact-hero {
        min-height: 640px;
    }

    .contact-hero > img {
        object-position: 62% center;
    }

    .contact-hero-content {
        padding-top: 50px;
    }

    .contact-label {
        margin-top: 55px;
    }

    .contact-hero h1 {
        font-size: 55px;
    }

    .contact-information h2 {
        font-size: 48px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-submit {
        width: 100%;
    }

    .contact-showroom {
        min-height: 600px;
    }

    .contact-showroom-content h2 {
        font-size: 55px;
    }

    .contact-cta-grid {
        padding: 55px 0;
    }

}
/* =========================================================
   LEGAL / PRIVACY PAGE
   ========================================================= */


/* =========================================================
   LEGAL HERO
   ========================================================= */

.legal-hero {
    position: relative;

    min-height: 610px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;
}

.legal-hero > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.legal-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.97),
            rgba(0, 0, 0, 0.75) 52%,
            rgba(0, 0, 0, 0.25)
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.9),
            transparent 65%
        );
}

.legal-hero-content {
    position: relative;

    z-index: 2;

    padding-top: 80px;
}

.legal-label {
    display: block;

    margin-top: 75px;
    margin-bottom: 20px;

    color: var(--red);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.legal-hero h1 {
    margin-bottom: 25px;

    font-size: clamp(58px, 8vw, 100px);

    line-height: 0.95;

    letter-spacing: -0.075em;
}

.legal-hero h1 span {
    display: block;

    color: #777777;
}

.legal-hero-content > p {
    max-width: 550px;

    color: #8c8c8c;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   LEGAL CONTENT
   ========================================================= */

.legal-content {
    background: #0d0d0d;
}

.legal-layout {
    display: grid;

    grid-template-columns: 230px 1fr;

    gap: 100px;

    align-items: start;
}


/* =========================================================
   LEGAL SIDEBAR
   ========================================================= */

.legal-sidebar {
    position: sticky;

    top: 120px;

    display: flex;

    flex-direction: column;

    border-top: 1px solid var(--border);
}

.legal-sidebar .section-label {
    padding: 25px 0;
}

.legal-sidebar a {
    padding: 14px 0;

    border-top: 1px solid #202020;

    color: #666666;

    font-size: 10px;

    transition: var(--transition);
}

.legal-sidebar a:hover {
    padding-left: 8px;

    color: #ffffff;
}


/* =========================================================
   LEGAL ARTICLE
   ========================================================= */

.legal-article {
    max-width: 850px;
}

.legal-section {
    position: relative;

    padding-bottom: 65px;

    margin-bottom: 65px;

    border-bottom: 1px solid var(--border);
}

.legal-section > span {
    display: block;

    margin-bottom: 20px;

    color: var(--red);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.legal-section h2 {
    margin-bottom: 25px;

    color: #eeeeee;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.legal-section p {
    max-width: 750px;

    margin-bottom: 20px;

    color: #777777;

    font-size: 13px;

    line-height: 2;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 25px 0;

    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 13px;

    padding-left: 8px;

    color: #777777;

    font-size: 12px;

    line-height: 1.7;
}

.legal-section li::marker {
    color: var(--red);
}


/* =========================================================
   LEGAL HIGHLIGHT
   ========================================================= */

.legal-highlight {
    position: relative;

    margin: 0 0 65px;

    padding: 40px;

    border-left: 2px solid var(--red);

    background: #141414;
}

.legal-highlight strong {
    display: block;

    margin-bottom: 10px;

    color: #eeeeee;

    font-size: 20px;
}

.legal-highlight p {
    max-width: 600px;

    margin: 0;

    color: #777777;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   LAST UPDATED
   ========================================================= */

.legal-updated {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 30px;
}

.legal-updated span {
    color: #444444;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.legal-updated strong {
    color: #777777;

    font-size: 10px;
    font-weight: 600;
}


/* =========================================================
   LEGAL RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .legal-layout {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .legal-sidebar {
        position: static;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 0;

        border-top: 1px solid var(--border);
    }

    .legal-sidebar .section-label {
        grid-column: 1 / -1;
    }

    .legal-sidebar a {
        border-bottom: 1px solid #202020;

        margin-right: 20px;
    }

}


@media (max-width: 640px) {

    .legal-hero {
        min-height: 590px;
    }

    .legal-hero > img {
        object-position: 60% center;
    }

    .legal-hero-content {
        padding-top: 50px;
    }

    .legal-label {
        margin-top: 55px;
    }

    .legal-hero h1 {
        font-size: 55px;
    }

    .legal-layout {
        gap: 45px;
    }

    .legal-sidebar {
        grid-template-columns: 1fr 1fr;
    }

    .legal-sidebar .section-label {
        grid-column: 1 / -1;
    }

    .legal-sidebar a {
        margin-right: 15px;
    }

    .legal-section {
        padding-bottom: 45px;

        margin-bottom: 45px;
    }

    .legal-highlight {
        padding: 30px 25px;

        margin-bottom: 45px;
    }

    .legal-updated {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

}
/* =========================================================
   404 ERROR PAGE
   ========================================================= */

.error-page {
    min-height: 100vh;

    background: #050505;
}

.error-main {
    position: relative;

    min-height: calc(100vh - 90px);

    display: flex;
    align-items: center;

    overflow: hidden;
}

.error-background {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.error-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.98),
            rgba(0, 0, 0, 0.75) 55%,
            rgba(0, 0, 0, 0.25)
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.95),
            transparent
        );
}

.error-content {
    position: relative;

    z-index: 2;

    padding-top: 80px;

    padding-bottom: 80px;
}

.error-code {
    display: block;

    margin-bottom: 15px;

    color: var(--red);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.3em;
}

.error-content h1 {
    max-width: 750px;

    margin: 20px 0 25px;

    font-size: clamp(70px, 10vw, 140px);

    line-height: 0.82;

    letter-spacing: -0.09em;
}

.error-content h1 span {
    display: block;

    color: #777777;
}

.error-content p {
    max-width: 480px;

    margin-bottom: 35px;

    color: #888888;

    font-size: 13px;

    line-height: 1.9;
}

.error-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


@media (max-width: 640px) {

    .error-main {
        min-height: calc(100vh - 75px);
    }

    .error-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .error-content h1 {
        font-size: 70px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }

}
