

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================================================
   COLORS
========================================================= */

:root {

    --red: #b5121b;
    --red-dark: #8e0c13;
    --red-light: #d51c27;

    --black: #090909;
    --black-2: #111111;
    --dark-gray: #1b1b1b;

    --gray: #6c6c6c;
    --light-gray: #f2f2f2;
    --border: #e5e5e5;

    --white: #ffffff;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.heading {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .95;
}

.heading span {
    color: var(--red);
}

.section-label {
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: .9;
}

.section-description {
    color: #666;
    max-width: 620px;
    margin-top: 18px;
    font-size: 16px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;

    padding: 0 27px;

    background: var(--red);
    color: white;

    font-size: 13px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .6px;

    border: none;

    cursor: pointer;

    transition: .25s ease;

    clip-path: polygon(
        0 0,
        calc(100% - 12px) 0,
        100% 12px,
        100% 100%,
        12px 100%,
        0 calc(100% - 12px)
    );
}

.btn:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}

.btn-dark {
    background: #111;
}

.btn-dark:hover {
    background: var(--red);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.5);
}

.btn-outline:hover {
    background: white;
    color: #111;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;

    height: 82px;

    background: rgba(255,255,255,.97);

    border-bottom: 1px solid #e7e7e7;

    backdrop-filter: blur(10px);
}

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;

    width: 230px;
}

.logo img {
    width: 100%;
    height: auto;
}

.logo-fallback {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 27px;
    font-weight: 900;
    line-height: .8;
}

.logo-fallback strong {
    color: var(--red);
}

.logo-fallback small {
    display: block;
    color: #555;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.main-nav a {
    position: relative;

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;

    color: #161616;
}

.main-nav a::after {
    content: "";

    position: absolute;

    bottom: -8px;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--red);

    transition: .25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-quote {
    margin-left: 10px;
}

.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid #ddd;

    background: white;

    cursor: pointer;
}

.mobile-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background: #111;
    margin: 4px auto;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 520px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.78) 42%,
            rgba(0,0,0,.25) 75%,
            rgba(0,0,0,.6) 100%
        ),
        url("../images/hero-wrap.jpg") center/cover no-repeat;

    overflow: hidden;

    color: white;
}

.hero::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 35%;

    height: 100%;

    background:
        linear-gradient(
            135deg,
            transparent 0%,
            transparent 35%,
            rgba(181,18,27,.85) 35%,
            rgba(181,18,27,.85) 48%,
            transparent 48%
        );

    opacity: .7;
}

.hero::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 7px;

    background: var(--red);
}

.hero-inner {
    position: relative;
    z-index: 2;

    min-height: 520px;

    display: flex;
    align-items: center;
}

.hero-content {
    width: 600px;

    padding-top: 25px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 13px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 2px;

    color: white;

    margin-bottom: 18px;
}

.hero-kicker::before {
    content: "";

    width: 45px;
    height: 3px;

    background: var(--red);
}

.hero h1 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(65px, 8vw, 112px);

    font-weight: 900;

    line-height: .78;

    text-transform: uppercase;

    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
    color: var(--red);
}

.hero-subtitle {
    max-width: 540px;

    margin-top: 30px;

    font-size: 18px;

    color: #ddd;
}

.hero-buttons {
    display: flex;
    gap: 14px;

    margin-top: 15px;
}

.hero-badges {
    position: absolute;

    bottom: 32px;
    left: 0;

    display: flex;
    gap: 35px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;

    color: white;
}

.hero-badge-icon {
    width: 42px;
    height: 42px;

    border: 2px solid white;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--red);

    font-size: 17px;
}

.hero-badge strong {
    display: block;

    font-size: 11px;

    text-transform: uppercase;

    line-height: 1.1;
}

.hero-badge small {
    color: #aaa;
    font-size: 9px;
    text-transform: uppercase;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    padding: 100px 0;

    background: white;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 45px;
}

.services-header-right {
    max-width: 400px;
    color: #666;
    font-size: 14px;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    min-height: 360px;

    overflow: hidden;

    background: #111;

    color: white;
}

.service-card-image {
    position: absolute;

    inset: 0;

    background-position: center;
    background-size: cover;

    transition: transform .5s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.06);
}

.service-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.95),
            rgba(0,0,0,.1) 70%
        );
}

.service-card-content {
    position: absolute;

    z-index: 2;

    bottom: 0;
    left: 0;

    padding: 27px;

    width: 100%;
}

.service-card h3 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 31px;

    text-transform: uppercase;

    line-height: .9;

    margin-bottom: 10px;
}

.service-card p {
    font-size: 12px;

    color: #ddd;

    margin-bottom: 15px;
}

.service-link {
    color: white;

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    color: var(--red);
}


/* =========================================================
   WRAP FEATURE
========================================================= */

.wrap-feature {
    position: relative;

    min-height: 570px;

    background:
        linear-gradient(
            90deg,
            #080808 0%,
            #080808 42%,
            rgba(8,8,8,.55) 65%,
            rgba(8,8,8,.1) 100%
        ),
        url("../images/wrap-feature.jpg") center/cover no-repeat;

    color: white;

    overflow: hidden;
}

.wrap-feature::before {
    content: "";

    position: absolute;

    top: -50px;
    right: 25%;

    width: 300px;
    height: 700px;

    background: rgba(181,18,27,.65);

    transform: skewX(-20deg);

    opacity: .35;
}

.wrap-feature-inner {
    position: relative;
    z-index: 2;

    min-height: 570px;

    display: flex;
    align-items: center;
}

.wrap-feature-content {
    width: 520px;
}

.wrap-feature h2 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(55px, 6vw, 80px);

    font-weight: 900;

    text-transform: uppercase;

    line-height: .82;
}

.wrap-feature h2 span {
    color: var(--red);
}

.wrap-feature p {
    margin-top: 22px;

    color: #ccc;

    max-width: 490px;
}

.wrap-feature .btn {
    margin-top: 30px;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio {
    padding: 100px 0;
}

.portfolio-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 40px;
}

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}

.project {
    position: relative;

    aspect-ratio: 1 / 1.05;

    overflow: hidden;

    background: #222;
}

.project-image {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;

    transition: transform .5s ease;
}

.project:hover .project-image {
    transform: scale(1.07);
}

.project::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            transparent 65%
        );
}

.project-info {
    position: absolute;

    z-index: 2;

    bottom: 18px;
    left: 20px;

    color: white;
}

.project-info small {
    display: block;

    color: var(--red);

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;
}

.project-info strong {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 27px;

    text-transform: uppercase;

    line-height: .9;
}


/* =========================================================
   WHY US
========================================================= */

.why-us {
    position: relative;

    padding: 90px 0;

    background: #f4f4f4;

    overflow: hidden;
}

.why-us::before {
    content: "";

    position: absolute;

    left: -100px;
    top: 0;

    width: 42%;
    height: 100%;

    background: #111;

    clip-path: polygon(
        0 0,
        90% 0,
        70% 100%,
        0 100%
    );
}

.why-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 42% 58%;

    align-items: center;
}

.why-content {
    color: white;

    padding-right: 90px;
}

.why-content .section-label {
    color: #e52b34;
}

.why-content h2 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 64px;

    line-height: .85;

    text-transform: uppercase;
}

.why-content h2 span {
    color: var(--red);
}

.why-content p {
    color: #aaa;

    margin-top: 20px;

    font-size: 14px;
}

.why-content .btn {
    margin-top: 25px;
}

.benefits {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.benefit {
    background: white;

    padding: 28px;

    border: 1px solid #e5e5e5;

    display: flex;

    gap: 18px;

    align-items: flex-start;
}

.benefit-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--red);

    border-radius: 50%;

    color: var(--red);

    font-size: 22px;
}

.benefit h3 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 23px;

    text-transform: uppercase;

    line-height: 1;
}

.benefit p {
    color: #777;

    font-size: 11px;

    margin-top: 7px;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    padding: 100px 0;

    background: white;
}

.process-header {
    text-align: center;

    margin-bottom: 60px;
}

.process-header .section-description {
    margin-left: auto;
    margin-right: auto;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

.process-step {
    position: relative;

    text-align: center;
}

.process-step:not(:last-child)::after {
    content: "→";

    position: absolute;

    top: 30px;
    right: -22px;

    font-size: 28px;

    color: #aaa;
}

.step-number {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 16px;

    font-weight: 900;

    color: var(--red);

    margin-bottom: 8px;
}

.step-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 3px solid var(--red);

    border-radius: 50%;

    color: var(--red);

    font-size: 25px;
}

.process-step h3 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 27px;

    text-transform: uppercase;

    line-height: .9;
}

.process-step p {
    color: #777;

    font-size: 12px;

    margin-top: 10px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92),
            rgba(0,0,0,.65)
        ),
        url("images/cta-vehicle.jpg") center/cover no-repeat;

    color: white;

    overflow: hidden;
}

.cta::after {
    content: "";

    position: absolute;

    right: -100px;
    top: -100px;

    width: 500px;
    height: 600px;

    background: var(--red);

    opacity: .7;

    transform: skewX(-25deg);
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(55px, 7vw, 85px);

    line-height: .8;

    text-transform: uppercase;
}

.cta h2 span {
    color: var(--red);
}

.cta p {
    max-width: 550px;

    color: #ddd;

    margin-top: 20px;
}

.cta .btn {
    margin-top: 28px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {
    padding: 90px 0;

    background: #f6f6f6;
}

.testimonials-header {
    text-align: center;

    margin-bottom: 45px;
}

.testimonials-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.testimonial {
    background: white;

    padding: 35px;

    border: 1px solid #e7e7e7;
}

.stars {
    color: var(--red);

    font-size: 16px;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.testimonial p {
    font-size: 14px;

    color: #555;

    line-height: 1.7;
}

.testimonial-author {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #eee;

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;
}

.testimonial-author span {
    display: block;

    color: #888;

    font-weight: 500;

    margin-top: 4px;
}


/* =========================================================
   CONTACT / QUOTE
========================================================= */

.quote-section {
    padding: 100px 0;

    background: white;
}

.quote-grid {
    display: grid;

    grid-template-columns: 40% 60%;

    gap: 60px;
}

.quote-info h2 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 65px;

    line-height: .85;

    text-transform: uppercase;
}

.quote-info h2 span {
    color: var(--red);
}

.quote-info > p {
    color: #666;

    margin-top: 20px;

    max-width: 420px;
}

.contact-list {
    margin-top: 35px;
}

.contact-item {
    display: flex;

    gap: 15px;

    margin-bottom: 20px;
}

.contact-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--red);

    color: white;

    font-size: 16px;
}

.contact-item strong {
    display: block;

    font-size: 11px;

    text-transform: uppercase;

    color: #999;
}

.contact-item span {
    display: block;

    font-size: 14px;

    font-weight: 700;

    margin-top: 2px;
}

.quote-form {
    background: #f6f6f6;

    padding: 40px;

    border-top: 5px solid var(--red);
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;

    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    min-height: 48px;

    padding: 13px 15px;

    border: 1px solid #ddd;

    background: white;

    outline: none;

    font-size: 13px;

    transition: .2s;
}

.form-group textarea {
    min-height: 130px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
}

.file-upload {
    border: 2px dashed #ccc;

    background: white;

    padding: 25px;

    text-align: center;

    color: #777;

    font-size: 12px;

    margin-bottom: 20px;
}

.file-upload strong {
    display: block;

    color: #222;

    margin-bottom: 5px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;

    background: #0b0b0b;

    color: white;

    overflow: hidden;
}

.site-footer::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: -150px;

    width: 450px;
    height: 350px;

    background: var(--red);

    transform: skewX(-30deg);

    opacity: .8;
}

.footer-main {
    position: relative;
    z-index: 2;

    padding: 75px 0;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.2fr;

    gap: 45px;
}

.footer-logo {
    width: 210px;

    margin-bottom: 20px;
}

.footer-description {
    max-width: 350px;

    color: #999;

    font-size: 12px;

    line-height: 1.7;
}

.footer-column h3 {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 23px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 9px;
}

.footer-column li a {
    color: #aaa;

    font-size: 12px;

    transition: .2s;
}

.footer-column li a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;

    gap: 12px;

    margin-bottom: 15px;

    color: #aaa;

    font-size: 12px;
}

.footer-contact-item i {
    color: var(--red);
}

.socials {
    display: flex;

    gap: 8px;

    margin-top: 18px;
}

.social {
    width: 35px;
    height: 35px;

    border: 1px solid #444;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;

    transition: .2s;
}

.social:hover {
    background: var(--red);

    border-color: var(--red);
}

.footer-bottom {
    position: relative;
    z-index: 2;

    border-top: 1px solid #252525;

    padding: 18px 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #777;

    font-size: 10px;
}

.footer-tagline {
    color: #aaa;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 15px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-us::before {
        display: none;
    }

    .why-content {
        background: #111;

        padding: 45px;

        margin-bottom: 30px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:nth-child(2)::after {
        display: none;
    }

    .quote-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 750px) {

    .site-header {
        height: 70px;
    }

    .logo {
        width: 160px;
    }

    .main-nav {
        display: none;
    }

    .header-quote {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: 650px;
    }

    .hero-inner {
        min-height: 650px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 67px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-badges {
        display: none;
    }

    .services,
    .portfolio,
    .process,
    .quote-section {
        padding: 70px 0;
    }

    .services-header,
    .portfolio-header {
        display: block;
    }

    .services-header-right {
        margin-top: 20px;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 400px;
    }

    .wrap-feature,
    .wrap-feature-inner {
        min-height: 600px;
    }

    .wrap-feature-content {
        width: 100%;
    }

    .why-content {
        padding: 35px 25px;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        padding: 55px 0;
    }

    .footer-bottom {
        display: block;
    }

    .footer-tagline {
        margin-top: 10px;
    }
}

