@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --blue: #0092C2;
    --blue-dark: #00779f;
    --blue-light: #eef9fc;
    --black: #0b1115;
    --charcoal: #131b20;
    --text: #151b1f;
    --muted: #65717a;
    --line: #dce4e7;
    --white: #ffffff;
    --container: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

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

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

.topbar {
    background: var(--black);
    color: rgba(255,255,255,.82);
}

.topbar-inner {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: .72rem;
    font-weight: 700;
}

.topbar-status,
.topbar-phone {
    display: flex;
    align-items: center;
    gap: 9px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.topbar-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.24);
}

.topbar-phone {
    color: #fff;
}

.topbar-phone i {
    color: var(--blue);
}

.navbar {
    position: relative;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(8,24,31,.06);
}

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

.logo-link {
    width: 215px;
}

.logo-link img {
    width: 100%;
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.desktop-nav a {
    min-height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    position: relative;
    color: #263239;
    font-size: .79rem;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 4px;
    height: 2px;
    background: transparent;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--blue-dark);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    background: var(--blue);
}

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

.dispatch-btn {
    height: 43px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--blue);
    color: #fff;
    border-radius: 4px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.dispatch-btn:hover {
    background: var(--blue-dark);
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid #d8e0e4;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--black);
    transition: .18s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

/* HERO */
.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background-color: #11191e;
    background-image:
        linear-gradient(rgba(6,11,14,.64), rgba(6,11,14,.64)),
        url("../img/hero-truck.jpg");
    background-size: cover;
    background-position: center 58%;
    color: #fff;
}

.hero-inner {
    padding: 65px 0;
}

.hero-copy {
    max-width: 690px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.82);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-location i {
    color: var(--blue);
}

.hero-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(2rem,4vw,3rem);
    font-weight: 800;
    line-height: 1;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.impound-layout h2,
.contact-main h2 {
    margin: 0;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: .95;
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(3.7rem,7vw,6.3rem);
}

.hero p {
    max-width: 620px;
    margin: 24px 0 30px;
    color: rgba(255,255,255,.86);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: .83rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.btn-blue {
    background: var(--blue);
    color: #fff;
}

.btn-blue:hover {
    background: var(--blue-dark);
}

.btn-outline-white {
    border-color: rgba(255,255,255,.72);
    color: #fff;
    background: rgba(0,0,0,.12);
}

.btn-dark {
    background: var(--black);
    color: #fff;
}

/* QUICK INFO */
.quick-info {
    background: var(--blue);
    color: #fff;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.quick-info-item {
    min-height: 104px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-right: 1px solid rgba(255,255,255,.25);
}

.quick-info-item:last-child {
    border-right: 0;
}

.quick-info-item > i {
    width: 39px;
    font-size: 1.55rem;
}

.quick-info-item strong,
.quick-info-item span {
    display: block;
}

.quick-info-item strong {
    font-size: .87rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.quick-info-item span {
    margin-top: 2px;
    color: rgba(255,255,255,.8);
    font-size: .75rem;
}

/* SECTIONS */
.section {
    padding: 92px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

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

.section-heading h2,
.about-copy h2,
.impound-layout h2 {
    font-size: clamp(2.7rem,5vw,4.1rem);
}

.section-heading p,
.about-copy p,
.impound-layout p {
    color: var(--muted);
}

.services {
    background: var(--blue-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.service {
    min-height: 245px;
    padding: 28px 23px;
    background: #fff;
    border: 1px solid #dfe8eb;
}

.service > i {
    margin-bottom: 21px;
    color: var(--blue);
    font-size: 1.55rem;
}

.service h3 {
    margin: 0 0 10px;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 1.4rem;
    line-height: 1.05;
    text-transform: uppercase;
}

.service p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}

.service-call {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.service-call p {
    color: rgba(255,255,255,.66);
}

.service-call a {
    display: inline-block;
    margin-top: 16px;
    color: var(--blue);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}

.since-badge {
    position: absolute;
    right: 18px;
    bottom: -18px;
    padding: 16px 20px;
    background: var(--blue);
    color: #fff;
}

.since-badge small,
.since-badge strong {
    display: block;
}

.since-badge small {
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
}

.since-badge strong {
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 2.2rem;
    line-height: 1;
}

.about-copy .lead {
    color: var(--text);
    font-weight: 600;
}

.about-list {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.about-list div {
    display: flex;
    gap: 11px;
    font-size: .88rem;
    font-weight: 600;
}

.about-list i {
    color: var(--blue);
    margin-top: 5px;
}

/* IMPOUNDS */
.impounds {
    background: #edf7fa;
}

.impound-layout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
}

.impound-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
    font-size: 2rem;
}

.impound-layout h2 {
    margin-bottom: 12px;
}

.impound-layout p {
    margin: 0;
}

.impound-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 210px;
}

/* REVIEWS */
.reviews {
    background: #fff;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.review {
    padding: 28px;
    border: 1px solid var(--line);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    color: var(--blue);
    font-size: .78rem;
}

.review p {
    min-height: 112px;
    margin: 0 0 20px;
    color: #333d43;
    font-size: .9rem;
}

.review strong,
.review span {
    display: block;
}

.review strong {
    font-size: .85rem;
}

.review span {
    margin-top: 2px;
    color: var(--muted);
    font-size: .72rem;
}

/* CONTACT */
.contact {
    padding: 88px 0;
    background: var(--black);
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 80px;
    align-items: center;
}

.eyebrow.light {
    color: #57c4e8;
}

.contact-main h2 {
    font-size: clamp(3rem,6vw,5rem);
}

.contact-main > p {
    max-width: 570px;
    color: rgba(255,255,255,.65);
}

.big-phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}

.big-phone > i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: var(--blue);
    font-size: 1.1rem;
}

.big-phone small,
.big-phone strong {
    display: block;
}

.big-phone small {
    color: #65c9eb;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.big-phone strong {
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 2rem;
}

.service-area {
    border-left: 1px solid rgba(255,255,255,.16);
    padding-left: 42px;
}

.service-area h3 {
    margin: 0 0 21px;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
}

.service-area-row {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 15px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

.service-area-row i {
    margin-top: 4px;
    color: var(--blue);
}

.service-area-row strong,
.service-area-row span {
    display: block;
}

.service-area-row strong {
    font-size: .86rem;
}

.service-area-row span {
    margin-top: 3px;
    color: rgba(255,255,255,.58);
    font-size: .78rem;
}

/* FOOTER */
.footer {
    background: #05080a;
    color: #fff;
}

.footer-grid {
    padding: 52px 0;
    display: grid;
    grid-template-columns: 1.5fr .7fr .8fr;
    gap: 65px;
}

.footer-brand img {
    width: 205px;
    margin-bottom: 17px;
}

.footer-brand p {
    max-width: 390px;
    color: rgba(255,255,255,.48);
    font-size: .8rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links strong {
    margin-bottom: 5px;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-links a,
.footer-links span {
    color: rgba(255,255,255,.55);
    font-size: .78rem;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-bottom {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.36);
    font-size: .72rem;
}

.mobile-call-bar {
    display: none;
}

/* TABLET */
@media (max-width: 1050px) {
    .navbar-inner {
        grid-template-columns: 200px 1fr auto;
        gap: 16px;
    }

    .logo-link {
        width: 185px;
    }

    .desktop-nav a {
        padding: 0 9px;
        font-size: .72rem;
    }

    .service-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

/* MOBILE NAV */
@media (max-width: 900px) {
    html {
        scroll-padding-top: 98px;
    }

    .navbar-inner {
        min-height: 64px;
        grid-template-columns: minmax(0,1fr) auto;
        gap: 12px;
    }

    .logo-link {
        width: min(185px, 55vw);
    }

    .desktop-nav,
    .desktop-dispatch {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: block;
        background: #fff;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 14px 30px rgba(8,24,31,.12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-5px);
        transition: .18s ease;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu-inner {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 7px;
        padding-top: 12px;
        padding-bottom: 14px;
    }

    .mobile-menu a {
        min-height: 46px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        border: 1px solid #e2e9ec;
        color: var(--text);
        font-size: .8rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .mobile-menu-call {
        grid-column: 1 / -1;
        justify-content: center;
        gap: 9px;
        background: var(--blue);
        border-color: var(--blue) !important;
        color: #fff !important;
    }

    .quick-info-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .quick-info-item:nth-child(2) {
        border-right: 0;
    }

    .quick-info-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.25);
    }

    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-area {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.16);
        padding-top: 35px;
    }

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

    .impound-actions {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review p {
        min-height: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .desktop-only,
    .topbar-divider {
        display: none;
    }

    .topbar-inner {
        min-height: 29px;
        font-size: .66rem;
    }

    .navbar-inner {
        min-height: 61px;
    }

    .logo-link {
        width: min(160px, 50vw);
    }

    .mobile-menu-inner {
        grid-template-columns: 1fr;
    }

    .mobile-menu-call {
        grid-column: auto;
    }

    .hero {
        min-height: 620px;
        align-items: flex-end;
        background-image:
            linear-gradient(rgba(6,11,14,.48), rgba(6,11,14,.78)),
            url("../img/hero-truck.jpg");
        background-position: 56% center;
    }

    .hero-inner {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: clamp(3.2rem,15vw,4.8rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .quick-info-item {
        min-height: 100px;
        padding: 16px 12px;
        justify-content: flex-start;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .quick-info-item > i {
        width: auto;
    }

    .section {
        padding: 70px 0;
    }

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

    .service {
        min-height: 0;
    }

    .about-image-wrap img {
        min-height: 330px;
    }

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

    .impound-actions {
        grid-column: auto;
        flex-direction: column;
    }

    .impound-actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 17px 0 85px;
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-call-bar {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 1100;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        background: var(--blue);
        color: #fff;
        font-size: .82rem;
        font-weight: 800;
        letter-spacing: .04em;
        text-transform: uppercase;
        box-shadow: 0 8px 22px rgba(0,0,0,.24);
    }
}
