:root {
    --bm-bg: #070809;
    --bm-bg-soft: #0f1113;
    --bm-panel: #17191c;
    --bm-panel-2: #202327;
    --bm-border: rgba(255,255,255,.13);
    --bm-border-strong: rgba(255,122,0,.45);
    --bm-text: #f4f5f6;
    --bm-muted: #a8adb4;
    --bm-orange: #ff7a00;
    --bm-orange-2: #ff9b1b;
    --bm-shadow: 0 18px 60px rgba(0,0,0,.45);
    --bm-radius: 14px;
    --bm-radius-sm: 9px;
    --bm-container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--bm-text);
    background:
        radial-gradient(circle at 20% 0%, rgba(255,122,0,.08), transparent 28rem),
        radial-gradient(circle at 85% 10%, rgba(255,255,255,.04), transparent 20rem),
        var(--bm-bg);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--bm-muted); }
svg { width: 1.15em; height: 1.15em; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.bm-container {
    width: min(var(--bm-container), calc(100% - 48px));
    margin-inline: auto;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background: #fff;
    color: #111;
    clip: auto !important;
    clip-path: none;
    display: block;
    height: auto;
    left: 12px;
    padding: 12px;
    top: 12px;
    width: auto;
    z-index: 100000;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8,9,10,.94);
    border-bottom: 1px solid rgba(255,255,255,.09);
    backdrop-filter: blur(16px);
}
.header-inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: 260px 1fr auto;
    gap: 28px;
    align-items: center;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img,
.custom-logo-link img {
    display: block;
    max-width: 238px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 15px rgba(255,122,0,.14));
}
.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.nav-list a {
    position: relative;
    display: block;
    padding: 34px 0 31px;
    color: #eef0f2;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    height: 2px;
    background: var(--bm-orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}
.nav-list a:hover::after,
.nav-list .current-menu-item > a::after { transform: scaleX(1); }

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .055em;
    text-transform: uppercase;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid {
    color: #100804;
    background: linear-gradient(180deg, var(--bm-orange-2), var(--bm-orange));
    box-shadow: 0 10px 28px rgba(255,122,0,.2);
}
.btn-outline {
    color: #fff;
    background: rgba(12,12,12,.38);
    border-color: var(--bm-border-strong);
}
.btn-outline:hover { background: rgba(255,122,0,.12); }
.btn-large { min-width: 205px; min-height: 52px; }

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--bm-border-strong);
    border-radius: 8px;
    background: transparent;
    color: #fff;
}
.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--bm-orange);
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(90deg, #08090a 0%, #090a0b 50%, #111 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(430px, .92fr) minmax(0, 1.3fr);
    min-height: 560px;
    align-items: stretch;
}
.hero-copy {
    position: relative;
    z-index: 2;
    padding: 70px 0 38px;
}
.eyebrow,
.section-heading span {
    display: inline-block;
    color: var(--bm-orange);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero h1 {
    margin: 12px 0 18px;
    color: #fff;
    font-size: clamp(42px, 5.3vw, 76px);
    line-height: .9;
    font-weight: 1000;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: .01em;
    text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.hero h1 br + * { color: var(--bm-orange); }
.hero h1::first-line { color: #f5f5f5; }
.hero h1 { color: var(--bm-orange); }
.hero h1::first-line { color: #fff; }
.hero-text {
    max-width: 560px;
    color: #eef0f3;
    font-size: 16px;
    line-height: 1.58;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 28px 0 30px;
}
.hero-visual {
    position: relative;
    margin-right: calc((100vw - min(var(--bm-container), calc(100vw - 48px))) / -2);
    background:
        linear-gradient(90deg, rgba(8,9,10,.55) 0%, rgba(8,9,10,.16) 20%, rgba(8,9,10,.02) 60%),
        linear-gradient(0deg, rgba(0,0,0,.18), rgba(0,0,0,.18)),
        url('../img/hero-truck.jpg') center / cover no-repeat;
    min-height: 100%;
    box-shadow: inset 55px 0 80px rgba(0,0,0,.55);
}
.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    transform: skewX(-19deg);
    border-left: 3px solid rgba(255,122,0,.75);
    border-right: 1px solid rgba(255,122,0,.22);
    background: linear-gradient(90deg, rgba(255,122,0,.11), transparent);
}
.hero-visual::before { left: 36px; }
.hero-visual::after { left: 86px; opacity: .45; }
.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}
.feature-row div {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 8px;
    align-items: start;
    min-width: 0;
}
.feature-row svg {
    color: var(--bm-orange);
    font-size: 27px;
    grid-row: span 2;
}
.feature-row strong {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
}
.feature-row span {
    display: block;
    color: var(--bm-muted);
    font-size: 11px;
}

.services,
.process {
    background: linear-gradient(180deg, #0a0b0c, #0d0f11 58%, #080909);
    border-bottom: 1px solid rgba(255,255,255,.09);
}
.services { padding: 24px 0 18px; }
.section-heading {
    text-align: center;
    margin: 0 0 16px;
}
.section-heading h2 {
    margin: -2px 0 0;
    color: #f5f5f5;
    font-size: clamp(26px, 2.4vw, 38px);
    line-height: 1.05;
    font-weight: 1000;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.section-heading.compact { margin-bottom: 20px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.service-card {
    min-height: 208px;
    padding: 24px 18px 18px;
    text-align: center;
    background: linear-gradient(180deg, rgba(35,37,41,.88), rgba(18,20,22,.95));
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 9px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 16px 35px rgba(0,0,0,.22);
}
.card-icon {
    color: var(--bm-orange);
    font-size: 46px;
    margin-bottom: 10px;
}
.service-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 19px;
    line-height: 1.08;
    font-weight: 950;
}
.service-card p {
    min-height: 60px;
    font-size: 13px;
    line-height: 1.35;
}
.service-card a {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    margin-top: 12px;
    color: var(--bm-orange-2);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 14px 0 0;
    background: linear-gradient(180deg, rgba(32,34,37,.95), rgba(16,17,19,.95));
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 11px;
    overflow: hidden;
}
.stat-item {
    display: flex;
    gap: 18px;
    align-items: center;
    min-height: 96px;
    padding: 18px 28px;
    border-right: 1px solid rgba(255,255,255,.14);
}
.stat-item:last-child { border-right: 0; }
.stat-icon { color: var(--bm-orange); font-size: 44px; flex: 0 0 auto; }
.stat-item strong {
    display: block;
    color: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.stat-item span {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.stat-item p { margin-top: 3px; font-size: 12px; color: #c8ccd1; }

.process { padding: 22px 0 24px; }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.process-card {
    position: relative;
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 13px;
    align-items: center;
    min-height: 100px;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(31,33,36,.95), rgba(18,20,22,.98));
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
}
.process-card:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 52px;
    line-height: 1;
    z-index: 1;
}
.step-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--bm-orange-2), var(--bm-orange));
    color: #fff;
    font-size: 22px;
    font-weight: 1000;
}
.step-icon { color: #fff; font-size: 37px; }
.process-card h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.process-card p { font-size: 12px; line-height: 1.35; }

.booking {
    position: relative;
    padding: 28px 0;
    background:
        linear-gradient(90deg, rgba(5,6,7,.84), rgba(8,9,10,.82)),
        url('../img/contact-bg.jpg') center / cover no-repeat;
    border-bottom: 1px solid rgba(255,255,255,.09);
}
.booking-grid {
    display: grid;
    grid-template-columns: minmax(250px, .92fr) minmax(420px, 1.5fr) minmax(240px, .8fr);
    gap: 28px;
    align-items: center;
}
.booking-info h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(28px, 2vw, 36px);
    line-height: 1;
    font-weight: 1000;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.booking-info p { color: #e9edf2; max-width: 330px; }
.booking-info ul {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 19px 0 0;
    list-style: none;
}
.booking-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #fff;
    font-weight: 650;
}
.booking-info svg { color: var(--bm-orange); font-size: 22px; flex: 0 0 auto; margin-top: 2px; }
.booking-form-wrap {
    padding: 16px;
    background: rgba(18,20,22,.86);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 13px;
    box-shadow: var(--bm-shadow);
}
.booking-form {
    display: grid;
    gap: 10px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    min-height: 43px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 6px;
    color: #fff;
    background: rgba(14,16,18,.9);
    outline: none;
    font: inherit;
    font-size: 14px;
}
.booking-form textarea { padding-top: 13px; resize: vertical; }
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: #aeb3bb; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--bm-orange);
    box-shadow: 0 0 0 3px rgba(255,122,0,.13);
}
.submit-btn { width: 100%; border: 0; min-height: 46px; }
.form-message {
    margin-bottom: 12px;
    padding: 11px 14px;
    border-radius: 7px;
    font-weight: 800;
    font-size: 14px;
}
.form-message.success { color: #dfffe7; background: rgba(0,160,70,.18); border: 1px solid rgba(0,220,95,.24); }
.form-message.error { color: #ffe0d8; background: rgba(220,50,20,.18); border: 1px solid rgba(255,100,60,.26); }
.urgent-card {
    display: grid;
    justify-items: center;
    text-align: center;
    padding: 34px 22px;
    background: rgba(11,12,13,.75);
    border: 2px solid rgba(255,122,0,.7);
    border-radius: 12px;
    box-shadow: var(--bm-shadow);
}
.urgent-card > div { color: var(--bm-orange); font-size: 52px; margin-bottom: 10px; }
.urgent-card h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.urgent-card p { font-size: 13px; }
.urgent-card strong {
    display: block;
    margin: 8px 0 14px;
    color: var(--bm-orange);
    font-size: 24px;
    font-weight: 1000;
}

.site-footer {
    padding: 34px 0 0;
    background: #08090a;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.25fr) .65fr .85fr 1fr minmax(190px, .9fr);
    gap: 38px;
    align-items: start;
}
.footer-brand img { width: 230px; display: block; margin-bottom: 14px; }
.footer-brand p { max-width: 330px; font-size: 13px; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: #111315;
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-weight: 900;
    border-radius: 3px;
}
.footer-column h3 {
    margin: 0 0 11px;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}
.footer-column ul { padding: 0; margin: 0; list-style: none; }
.footer-column li { margin: 7px 0; }
.footer-column a,
.footer-column p {
    color: #c5c9cf;
    font-size: 13px;
}
.footer-column a:hover { color: var(--bm-orange); }
.footer-contact p {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin: 0 0 9px;
}
.footer-contact svg { color: var(--bm-orange); flex: 0 0 auto; margin-top: 1px; }
.california-card {
    min-height: 120px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 14px;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(255,122,0,.72);
    border-radius: 10px;
    background: rgba(20,21,23,.65);
}
.ca-outline {
    display: grid;
    place-items: center;
    width: 58px;
    height: 82px;
    color: var(--bm-orange);
    border: 2px solid var(--bm-orange);
    border-radius: 48% 42% 46% 50%;
    font-weight: 1000;
}
.california-card strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.california-card span { color: var(--bm-orange); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 30px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom p,
.footer-bottom a { color: #b8bdc4; font-size: 13px; }
.footer-bottom span { margin: 0 14px; color: rgba(255,255,255,.35); }

.content-page { padding: 80px 0; min-height: 50vh; }
.page-card,
.post-card {
    padding: 38px;
    background: var(--bm-panel);
    border: 1px solid var(--bm-border);
    border-radius: var(--bm-radius);
}
.page-card h1,
.post-card h2 { margin-top: 0; color: #fff; }
.entry-content { color: #d8dce1; }
.entry-content a { color: var(--bm-orange); }
.posts-grid { display: grid; gap: 24px; }
.post-meta { margin-bottom: 12px; }

@media (max-width: 1180px) {
    .header-inner { grid-template-columns: 230px auto auto; gap: 18px; }
    .nav-list { gap: 18px; }
    .nav-list a { font-size: 12px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .booking-grid { grid-template-columns: 1fr 1.35fr; }
    .urgent-card { grid-column: 1 / -1; max-width: 420px; justify-self: center; width: 100%; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .california-card { grid-column: span 1; }
}

@media (max-width: 980px) {
    .bm-container { width: min(100% - 32px, var(--bm-container)); }
    .header-inner {
        min-height: 74px;
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .brand img,
    .custom-logo-link img { max-width: 210px; }
    .menu-toggle { display: block; grid-column: 2; grid-row: 1; }
    .primary-nav {
        display: none;
        grid-column: 1 / -1;
        padding: 10px 0 18px;
    }
    .primary-nav.is-open { display: block; }
    .nav-list {
        display: grid;
        gap: 0;
        justify-content: stretch;
        background: #101113;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 10px;
        overflow: hidden;
    }
    .nav-list a { padding: 15px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .nav-list a::after { display: none; }
    .header-actions { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { padding: 54px 0 34px; }
    .hero-visual {
        min-height: 360px;
        margin-right: 0;
        border-top: 1px solid rgba(255,255,255,.1);
    }
    .feature-row { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2n) { border-right: 0; }
    .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-card:not(:last-child)::after { display: none; }
    .booking-grid { grid-template-columns: 1fr; }
    .booking-info p { max-width: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .bm-container { width: min(100% - 24px, var(--bm-container)); }
    .site-header { position: sticky; }
    .brand img,
    .custom-logo-link img { max-width: 180px; }
    .hero h1 { font-size: clamp(38px, 12.4vw, 58px); }
    .hero-actions { flex-direction: column; }
    .btn-large { width: 100%; min-width: 0; }
    .feature-row,
    .services-grid,
    .stats-strip,
    .process-grid,
    .form-row,
    .footer-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; }
    .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
    .stat-item:last-child { border-bottom: 0; }
    .booking { padding: 22px 0; }
    .booking-form-wrap { padding: 12px; }
    .urgent-card { padding: 28px 16px; }
    .footer-bottom { flex-direction: column; }
    .california-card { max-width: 330px; }
}

@media (max-width: 420px) {
    .hero-copy { padding-top: 40px; }
    .eyebrow,
    .section-heading span { font-size: 11px; }
    .section-heading h2 { font-size: 24px; }
    .process-card { grid-template-columns: auto 1fr; }
    .process-card .step-icon { display: none; }
    .stat-item { padding: 18px; }
}
