﻿:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f3f3f5;
    --text: #0f0f10;
    --muted: #434349;
    --primary: #d3122f;
    --primary-deep: #a80e25;
    --accent: #d3122f;
    --dark: #0a0a0b;
    --border: #d8d8dd;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 85% 0%, rgba(211, 18, 47, 0.08) 0, transparent 26%),
        radial-gradient(circle at 10% 5%, rgba(0, 0, 0, 0.04) 0, transparent 30%),
        var(--bg);
    line-height: 1.6;
}

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

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

.container {
    width: min(1120px, calc(100% - 2.4rem));
    margin-inline: auto;
}

.narrow {
    width: min(820px, 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 82px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.main-nav a {
    font-weight: 700;
    color: var(--muted);
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.nav-cta {
    margin-left: 0.5rem;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 10px;
    padding: 0.45rem 0.7rem;
    font-size: 1.1rem;
}

.hero {
    padding: 4.5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.hero-side {
    display: grid;
    gap: 1rem;
}

.hero-video {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-video video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    filter: contrast(1.06) saturate(0.95);
}

.hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.54) 14%, rgba(211, 18, 47, 0.33) 92%);
}

.eyebrow {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.15;
    margin: 0 0 0.8rem;
}

h1 {
    font-size: clamp(2rem, 3.3vw, 3.4rem);
    margin-top: 0.75rem;
}

h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}

.lead {
    color: var(--muted);
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.hero-card {
    background: linear-gradient(145deg, #101114, #1a1b20);
    color: #f2f2f5;
    border: 1px solid rgba(211, 18, 47, 0.35);
    padding: 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.kpi-grid article {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 0.8rem;
}

.kpi-grid span,
.stats-band span {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.section {
    padding: 4rem 0;
}

.truck-strip {
    padding-top: 0.8rem;
}

.truck-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.facility-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.truck-photo,
.photo-panel {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.photo-panel {
    height: 360px;
}

.section-head {
    margin-bottom: 1.6rem;
}

.section-head.center {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.card,
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.section-dark {
    background: linear-gradient(150deg, #101113, #17181c);
    color: #f4f4f6;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-dark .eyebrow,
.section-dark .text-link {
    color: #ff4a66;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.checks {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.7rem;
}

.checks li::marker {
    color: var(--primary);
}

.cta-band {
    background: linear-gradient(100deg, #0a0a0b 10%, #4d0714 68%, #b50f29 100%);
    color: #f7f7f8;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 0.72rem 1.15rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(211, 18, 47, 0.3);
}

.btn-primary:hover {
    background: var(--primary-deep);
}

.btn-outline {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
}

.text-link {
    color: var(--primary);
    font-weight: 700;
}

.page-hero {
    padding: 3.2rem 0 1.8rem;
}

.service-hero .container {
    background: linear-gradient(132deg, #0f1013 0%, #191b22 58%, #2b0c13 100%);
    border: 1px solid rgba(211, 18, 47, 0.38);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(1.3rem, 2.7vw, 2.2rem);
    color: #f3f3f5;
}

.service-hero .eyebrow {
    color: #ff5b74;
}

.service-hero h1 {
    margin-top: 0.6rem;
    margin-bottom: 0.65rem;
}

.service-showcase {
    padding-top: 2.4rem;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 360px) 1fr;
    gap: 1rem;
    align-items: stretch;
}

.service-column {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.service-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid rgba(211, 18, 47, 0.75);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem 1rem 0.95rem;
}

.service-item-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.service-item h3 {
    margin: 0;
    font-size: 1.06rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(211, 18, 47, 0.35);
    background: linear-gradient(145deg, rgba(211, 18, 47, 0.14), rgba(211, 18, 47, 0.06));
    color: #b10b23;
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.service-points li {
    position: relative;
    padding-left: 1rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.45;
}

.service-points li::before {
    content: '';
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--primary);
}

.service-center {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(211, 18, 47, 0.42);
    box-shadow: var(--shadow);
    background: linear-gradient(178deg, #111318, #090a0d);
    min-height: 100%;
    padding: 0.8rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-center::before,
.service-center::after {
    content: '';
    position: absolute;
    top: 4%;
    width: 48%;
    height: 54%;
    background: linear-gradient(180deg, rgba(255, 204, 89, 0.55), rgba(255, 204, 89, 0));
    z-index: 0;
}

.service-center::before {
    left: 4%;
    clip-path: polygon(0 0, 100% 0, 38% 100%);
}

.service-center::after {
    right: 4%;
    clip-path: polygon(0 0, 100% 0, 62% 100%);
}

.service-center-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 710px;
    border-radius: 14px;
    overflow: hidden;
}

.service-center-photo img {
    width: 100%;
    height: 100%;
    min-height: 710px;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.95);
}

.service-center-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.14) 40%, rgba(10, 10, 12, 0.72) 100%);
}

.service-center-label {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    font-size: 0.74rem;
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    white-space: nowrap;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    text-align: center;
}

.stats-band article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem;
}

.form-wrap {
    width: min(760px, 100%);
}

.business-form {
    display: grid;
    gap: 0.8rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.3rem;
    box-shadow: var(--shadow);
}

.business-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--muted);
}

.business-form input,
.business-form select,
.business-form textarea {
    width: 100%;
    border: 1px solid #cbccd2;
    border-radius: 10px;
    padding: 0.7rem;
    font: inherit;
    color: var(--text);
    background: #fff;
}

.form-success {
    background: #e7f7ec;
    border: 1px solid #9fd5ad;
    color: #1d6c34;
    border-radius: 12px;
    padding: 0.65rem 0.8rem;
    font-weight: 700;
}

.inline-form {
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.legal h2 {
    margin-top: 1.8rem;
}

.site-footer {
    margin-top: 3rem;
    padding-top: 2.6rem;
    background: #09090a;
    border-top: 3px solid var(--primary);
    color: #d8d8dc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.2rem;
}

.footer-grid h3,
.footer-grid h4 {
    color: #fff;
    margin-bottom: 0.6rem;
}

.footer-grid a {
    display: block;
    margin-bottom: 0.35rem;
    color: #d8d8dc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    margin-top: 1.2rem;
    padding: 1rem 0;
    font-size: 0.92rem;
    color: #bfc1c8;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1160px) {
    .service-layout {
        grid-template-columns: 1fr 1fr;
    }

    .service-center {
        grid-column: 1 / -1;
        min-height: 350px;
    }

    .service-center-photo,
    .service-center-photo img {
        min-height: 350px;
        max-height: 390px;
    }
}

@media (max-width: 960px) {
    .hero-grid,
    .split-grid,
    .footer-grid,
    .cards-3,
    .stats-band,
    .truck-gallery,
    .facility-gallery {
        grid-template-columns: 1fr;
    }

    .photo-panel,
    .truck-photo {
        height: 220px;
    }

    .inline-form {
        grid-template-columns: 1fr;
    }

    .main-nav,
    .nav-cta {
        display: none;
    }

    .main-nav.open {
        display: grid;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.2rem;
        gap: 0.8rem;
        z-index: 40;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .cta-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-center {
        min-height: 280px;
    }

    .service-center-photo,
    .service-center-photo img {
        min-height: 280px;
    }
}
/* Homepage + layout refresh (2026-02-26) */
:root {
    --bg: #f6f7f9;
    --surface-soft: #eef1f4;
    --text: #111418;
    --muted: #4b5562;
    --primary: #cf132f;
    --primary-deep: #9f0c22;
    --accent: #f25d2e;
    --dark: #090b0f;
    --border: #d9dee5;
}

body {
    background:
        radial-gradient(circle at 90% 0%, rgba(242, 93, 46, 0.08) 0, transparent 28%),
        radial-gradient(circle at 6% 8%, rgba(10, 20, 40, 0.07) 0, transparent 30%),
        var(--bg);
}

.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(17, 20, 24, 0.09);
}

.nav-wrap {
    min-height: 84px;
}

.brand {
    gap: 0.75rem;
}

.brand strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brand small {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.main-nav {
    gap: 0.35rem;
    padding: 0.28rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
}

.main-nav a {
    font-size: 0.92rem;
    padding: 0.46rem 0.76rem;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    background: rgba(207, 19, 47, 0.1);
}

.hero {
    padding: 4.8rem 0 3.2rem;
}

.hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.2rem;
}

h1 {
    font-size: clamp(2.1rem, 3.4vw, 3.65rem);
}

.lead {
    max-width: 56ch;
    font-size: 1.05rem;
}

.hero-card {
    background: linear-gradient(150deg, #101319, #1a1f28);
}

.hero-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.hero-list li {
    position: relative;
    padding-left: 1.1rem;
}

.hero-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: #ff5f7f;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.hero-stats article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.8rem 0.7rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.hero-stats span {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-stats p {
    margin: 0;
    font-size: 0.84rem;
}

.card h3 {
    margin-bottom: 0.55rem;
}

.cta-band {
    background: linear-gradient(100deg, #0b1017 10%, #3b1220 62%, #c71a37 100%);
}

.site-footer {
    background: #080a0d;
    border-top: 3px solid #bf1731;
}

.footer-brand p {
    max-width: 42ch;
}

.footer-chips {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.footer-chips span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.25rem 0.55rem;
    color: #eef0f5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.footer-bottom a {
    color: #d5d7de;
}

@media (max-width: 960px) {
    .main-nav.open {
        top: 84px;
        border-radius: 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
