:root {
  --color-primary: #000;
  --color-secondary: white;
  --color-accent: #05DBF2;
  --color-text: black;
  --color-bg: white;
  --font-sans: Arial, Helvetica, sans-serif;
}

.page-scroll::-webkit-scrollbar {
    width: 10px;
}

.page-scroll::-webkit-scrollbar-track {
    background-color: var(--color-bg);
}

.page-scroll::-webkit-scrollbar-thumb {
    background-color: var(--color-bg);
    border: 3px solid var(--color-accent);
}

html {
    height: 100%;
    font-size: 16px;
    font-family: var(--font-sans);
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
}

.page-scroll {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.page-scroll > .main-content {
    flex: 1;
}

@supports not (scrollbar-gutter: stable) {
    .page-scroll {
        overflow-y: scroll;
    }
}

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

nav a {
    font-weight: bold;
    font-size: 1.125rem;
}

.skip-link {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--color-text);
    background: var(--color-secondary);
    border: 2px solid var(--color-accent);
    transform: translateY(-200%);
    transition: transform 0.15s ease;
}

.skip-link:focus {
    transform: translateY(0);
    outline: none;
}

a.btn {
    font-size: 1.0625rem;
    color: white;
}

a.btn--secondary {
    color: var(--color-text);
}

::placeholder {
    color: currentColor;
    opacity: 0.6;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.header {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    background: var(--color-secondary);
    height: 4.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

#hamburger-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
}

#hamburger-button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: var(--color-secondary);
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.2s ease, opacity 0.15s ease, padding 0.2s ease;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

nav.active {
    max-height: 24rem;
    padding: 1rem;
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .main-content {
        padding: 2rem 2rem 4rem;
    }

    .hero,
    .page {
        max-width: 70rem;
    }

    .hero h1,
    .page h1 {
        font-size: clamp(3rem, 5vw, 4.75rem);
    }

    .hero-subtitle,
    .page-intro {
        font-size: 1.2rem;
        max-width: 42rem;
    }

    .hero-subtitle {
        max-width: 28rem;
    }

    .about-text,
    .about-quote {
        font-size: 1.2rem;
        max-width: 42rem;
    }

    .eyebrow {
        font-size: 0.875rem;
    }

    .stat-grid li {
        font-size: 0.875rem;
    }

    .stat-grid__value {
        font-size: 1.125rem;
    }

    .btn {
        font-size: 1.125rem;
        padding: 1.125rem;
    }

    a.btn {
        font-size: 1.125rem;
    }

    .main-content--home .home-band {
        padding: 4.5rem 2rem;
    }

    .main-content--home .hero--home {
        padding: 2rem 2rem 5rem;
    }

    .form-field label,
    .contact-toggle__btn {
        font-size: 0.875rem;
    }

    .form-field input,
    .form-field textarea {
        font-size: 1.125rem;
        padding: 1rem 1.125rem;
    }

    .hero-road__track {
        position: relative;
        overflow: hidden;
        container-type: inline-size;
        min-height: 12rem;
        perspective: 28rem;
        perspective-origin: 50% 100%;
    }

    .hero-road__surface {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        overflow: hidden;
        transform: rotateX(52deg) scaleX(1.55);
        transform-origin: center bottom;
        transform-style: preserve-3d;
    }

    .hero-road__asphalt {
        position: relative;
        height: 10rem;
        overflow: hidden;
        background: #b8b8b8;
    }

    .hero-road__marking--center {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        width: 100%;
        height: 0.5rem;
        transform: translateY(-50%);
        background: repeating-linear-gradient(
            90deg,
            #ffffff 0,
            #ffffff 2.75rem,
            #b8b8b8 2.75rem,
            #b8b8b8 5rem
        );
        background-size: 5rem 100%;
        animation: road-line-scroll 0.55s linear infinite;
    }

    .hero-truck-wrap {
        position: absolute;
        bottom: 0.75rem;
        left: 0;
        z-index: 2;
        animation: truck-drive-road 8s linear infinite;
    }

    .hero-truck {
        display: block;
        width: 10rem;
        height: auto;
    }

    #hamburger-button {
        display: none;
    }

    .header {
        height: 5.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .logo {
        font-size: 2.75rem;
    }

    nav {
        position: static;
        max-height: none;
        overflow: visible;
        opacity: 1;
        pointer-events: auto;
        padding: 0;
        background-color: transparent;
    }

    nav ul {
        flex-direction: row;
        gap: 2rem;
    }

    nav a {
        display: inline-block;
        font-size: 1.35rem;
        padding-bottom: 0.2rem;
        transition: color 0.15s ease, border-color 0.15s ease;
    }

    nav a:hover {
        color: var(--color-accent);
        border-bottom-color: var(--color-accent);
    }

    nav a.selected {
        border-bottom-color: var(--color-accent);
    }

    nav a.selected:hover {
        color: var(--color-primary);
        border-bottom-color: var(--color-primary);
    }

    .service-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .service-card__title {
        font-size: 1.0625rem;
        padding: 1rem 1.125rem 1.125rem;
    }

    .service-detail__text {
        font-size: 1.2rem;
    }
}

.main-content {
    padding: 1.5rem 1.25rem 3rem;
}

.logo {
    color: var(--color-accent);
    font-family: var(--font-sans);
    font-size: 1.75rem;
    font-weight: bold;
}

.logo:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.selected {
    color: var(--color-accent);
}

.eyebrow {
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--color-accent);
    display: inline-block;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.highlight {
    color: var(--color-accent);
}

.highlight--italic {
    font-style: italic;
    font-weight: 700;
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.0625rem;
    font-weight: bold;
    text-align: center;
    color: white;
    background-color: var(--color-accent);
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.98);
    opacity: 0.92;
}

.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn--secondary {
    margin-top: 0.75rem;
    color: var(--color-text);
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.15);
}

.btn--secondary:active {
    opacity: 0.85;
}

.main-content--home {
    padding: 0;
}

.main-content--home .hero--home {
    max-width: 70rem;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 4rem;
}

.main-content--home .hero .stat-grid {
    border-top: none;
    padding-top: 0;
    margin: 0 0 1.5rem;
}

.main-content--home .hero .btn {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.home-band {
    padding: 3.5rem 1.25rem;
}

.home-band--alt {
    background: rgba(0, 0, 0, 0.03);
}

.home-band--cta {
    background: rgba(5, 219, 242, 0.1);
    padding-bottom: 4rem;
}

.home-band--map {
    background: linear-gradient(180deg, rgba(5, 219, 242, 0.03) 0%, rgba(0, 0, 0, 0.02) 100%);
}

.home-band__inner {
    max-width: 70rem;
    margin: 0 auto;
}

.home-section__header {
    margin-bottom: 2rem;
    max-width: 40rem;
}

.home-section__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.875rem, 5vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.home-section__intro {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
}

.home-band .about-text {
    margin: 0 0 1.25rem;
    max-width: 40rem;
}

.home-band__inner--map {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.home-band__inner--map .home-section__header {
    margin-bottom: 1.25rem;
    max-width: none;
}

.home-band__inner--map .about-text {
    max-width: none;
    margin-bottom: 0;
}

.home-band__copy-btn {
    margin-top: 1.75rem;
}

.home-map__areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.home-map__areas a {
    display: inline-block;
    padding: 0.45rem 0.8rem;
    font-size: 0.8125rem;
    font-weight: bold;
    color: var(--color-text);
    text-decoration: none;
    border: 2px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.75);
    transition: border-color 0.15s ease, color 0.15s ease;
}

.home-map__areas a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.home-map-card {
    margin: 0;
    background: var(--color-bg);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.home-map-card::before {
    content: "";
    display: block;
    height: 3px;
    background: var(--color-accent);
}

.home-map {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(5, 219, 242, 0.1), rgba(0, 0, 0, 0.04));
}

.home-map.is-loaded {
    background: none;
}

.home-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-map-card__caption {
    margin: 0;
    padding: 0.875rem 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.55);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.home-band .btn {
    margin-top: 1.5rem;
}

.home-band .home-section__stats {
    margin-bottom: 0;
}

.home-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.home-gallery__item {
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.home-gallery__item picture {
    display: block;
    height: 100%;
}

.home-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-gallery__item:hover .home-gallery__image,
.home-gallery__item:focus-within .home-gallery__image {
    transform: scale(1.04);
}

.reveal {
    opacity: 1;
    transform: none;
}

html.js .reveal {
    opacity: 0;
    transform: translateY(0.75rem);
    transition:
        opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

html.js .reveal--delay-1 {
    transition-delay: 0.05s;
}

html.js .reveal--delay-2 {
    transition-delay: 0.1s;
}

@media (min-width: 768px) {
    html.js .reveal--from-left {
        transform: translateX(-1rem);
    }

    html.js .reveal--from-right {
        transform: translateX(1rem);
    }

    html.js .reveal--from-left.is-visible,
    html.js .reveal--from-right.is-visible {
        transform: translateX(0);
    }
}

.home-cta__actions {
    display: grid;
    gap: 0.75rem;
    max-width: 40rem;
}

.home-cta__actions .btn {
    margin-top: 0;
}

.home-cta__actions .btn--secondary {
    margin-top: 0;
}

@media (min-width: 540px) {
    .home-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

@media (min-width: 768px) {
    .home-section__title {
        font-size: clamp(2.25rem, 4vw, 3rem);
    }

    .home-section__intro,
    .home-band .about-text {
        font-size: 1.125rem;
    }

    .home-band__inner--map {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 4rem;
        align-items: center;
    }

    .home-band__copy-btn {
        width: auto;
        display: inline-block;
        min-width: 11rem;
    }

    .home-map {
        aspect-ratio: 16 / 11;
        min-height: 22rem;
    }
}

.hero,
.page {
    max-width: 70rem;
    margin: 0 auto;
}

.page h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.5rem, 11vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.page-intro {
    margin: 0 0 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 36rem;
}

.page .btn {
    margin-top: 1.5rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.stat-grid li {
    font-size: 0.75rem;
    line-height: 1.3;
}

.stat-grid__item--boxed {
    padding: 0.85rem 0.4rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.stat-grid__value {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.15rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form[hidden] {
    display: none !important;
}

.form .btn {
    margin-top: 0.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field label {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1.0625rem;
    line-height: 1.4;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.form-field textarea {
    resize: vertical;
    min-height: 8rem;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-toggle__btn {
    padding: 0.85rem 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    cursor: pointer;
    box-sizing: border-box;
}

.contact-toggle__btn--active {
    background: #fff;
    border-color: var(--color-primary);
}

.contact-toggle__btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.hero .eyebrow {
    animation: hero-fade-up 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.5rem, 11vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    animation: hero-fade-up 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.hero .highlight {
    display: inline-block;
    animation: hero-pop 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-subtitle {
    margin: 0 0 1.75rem;
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 22rem;
    animation: hero-fade-up 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-road {
    margin: 0 0 1.75rem;
    padding-top: 2.5rem;
    animation: hero-fade-up 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@media (min-width: 768px) {
    .hero-road {
        padding-top: 3.5rem;
        margin-bottom: 3rem;
    }
}

.hero-road__track {
    position: relative;
}

@media (max-width: 767px) {
    .hero-road__surface {
        display: none;
    }
}

.hero-truck {
    display: block;
    width: 11rem;
    height: auto;
}

.hero .btn {
    margin-bottom: 0;
    animation: hero-fade-up 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    transition: transform 0.12s ease, opacity 0.12s ease;
}

.hero .stat-grid {
    padding: 0;
    border-top: none;
    animation: hero-fade-up 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.about-rule {
    width: 2.5rem;
    height: 3px;
    margin: 0 0 1.5rem;
    background: var(--color-accent);
}

.about-text {
    margin: 0 0 1rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    max-width: 36rem;
}

.about-text em {
    font-style: normal;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--color-accent);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.about-text strong {
    font-weight: 700;
    background: linear-gradient(180deg, transparent 55%, rgba(254, 42, 1, 0.2) 55%);
}

.about-quote {
    margin: 0 0 1.25rem;
    padding: 0 0 0 1.25rem;
    border: none;
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 36rem;
    position: relative;
}

.about-quote::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -0.35rem;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: bold;
    line-height: 1;
    color: var(--color-accent);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.service-card {
    border: 2px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

a.service-card {
    display: block;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.page > picture {
    display: block;
    max-width: 42rem;
    margin: 0 0 1.5rem;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.page > picture .service-detail__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail__text {
    margin: 0 0 1rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    max-width: 42rem;
}

.service-detail__text a {
    color: var(--color-accent);
    font-weight: bold;
}

.home-band__copy .about-text {
    margin-bottom: 0;
}

.page .service-detail__text:last-of-type {
    margin-bottom: 1.5rem;
}

.service-detail__content .btn {
    margin-top: 0;
}

.faq {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 42rem;
}

.faq__title {
    margin: 0 0 1.25rem;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.faq__list {
    display: grid;
    gap: 1.25rem;
}

.faq__item {
    margin: 0;
    padding: 1rem 1.125rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}

.faq__question {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.faq__answer {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
}

.faq__answer a {
    color: var(--color-accent);
    font-weight: bold;
}

@media (min-width: 768px) {
    .page:has(.service-detail__image) {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 3rem;
        row-gap: 1rem;
        align-items: start;
    }

    .page:has(.service-detail__image) > .eyebrow,
    .page:has(.service-detail__image) > h1 {
        grid-column: 1 / -1;
    }

    .page:has(.service-detail__image) > picture {
        grid-column: 1;
        grid-row: 4;
        max-width: none;
        margin-bottom: 0;
    }

    .page:has(.service-detail__image) > .service-detail__content {
        grid-column: 2;
        grid-row: 4;
        max-width: none;
    }

    .page:has(.service-detail__image) > .service-detail__content .btn {
        width: auto;
        min-width: 11rem;
    }

    .page:has(.service-detail__image) > .faq {
        grid-column: 1 / -1;
        grid-row: 5;
        max-width: none;
        margin-top: 2.5rem;
    }
}

.service-card:focus {
    outline: none;
}

.service-card:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.service-card:hover,
.service-card:focus-within {
    border-color: var(--color-accent);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.service-card__media {
    overflow: hidden;
    background: #f4f4f4;
    aspect-ratio: 4 / 3;
}

.service-card__media picture {
    display: block;
    height: 100%;
}

.service-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-card:hover .service-card__image,
.service-card:focus-within .service-card__image {
    transform: scale(1.04);
}

.service-card__title {
    margin: 0;
    padding: 0.9rem 1rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.35;
}

.service-card__title::after {
    content: "";
    display: block;
    width: 2rem;
    height: 3px;
    margin-top: 0.5rem;
    background: var(--color-accent);
}

@media (hover: none) {
    .service-card:hover,
    .service-card:focus-within {
        border-color: rgba(0, 0, 0, 0.15);
        box-shadow: none;
    }

    .service-card:hover .service-card__image,
    .service-card:focus-within .service-card__image {
        transform: none;
    }
}

@media (min-width: 540px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(0.6rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-pop {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes road-line-scroll {
    to {
        background-position: -5rem 0;
    }
}

@keyframes truck-drive-road {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100cqw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero .eyebrow,
    .hero h1,
    .hero .highlight,
    .hero-subtitle,
    .hero-road,
    .hero .btn,
    .hero .stat-grid {
        animation: none;
    }

    @media (min-width: 768px) {
        .hero-road__marking--center,
        .hero-truck-wrap {
            animation: none;
        }

        .hero-truck-wrap {
            left: 50%;
            transform: translateX(-50%);
        }
    }

    .hero .btn {
        transition: none;
    }

    html.js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-gallery__image {
        transition: none;
    }

    .home-gallery__item:hover .home-gallery__image,
    .home-gallery__item:focus-within .home-gallery__image {
        transform: none;
    }

    .service-card,
    .service-card__image,
    .service-card__title,
    .service-card__title::after {
        transition: none;
    }

    .service-card:hover .service-card__image,
    .service-card:focus-within .service-card__image {
        transform: none;
    }
}

.site-footer {
    flex-shrink: 0;
    padding: 1.5rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}

.site-footer__inner {
    max-width: 70rem;
    margin: 0 auto;
}

.site-footer__brand {
    margin: 0 0 0.2rem;
    font-size: 0.875rem;
    font-weight: bold;
}

.site-footer__brand a {
    color: var(--color-accent);
    text-decoration: none;
}

.site-footer__location {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.45);
}

.site-footer__phone {
    color: var(--color-accent);
    font-weight: bold;
    text-decoration: none;
}

.site-footer__phone:hover {
    text-decoration: underline;
}

.legal-updated {
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.45);
}

.legal-section {
    margin-top: 1.75rem;
}

.legal-section h2 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.legal-section .about-text {
    margin-bottom: 0.75rem;
}

.legal-list {
    margin: 0 0 0.75rem;
    padding-left: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    max-width: 42rem;
}

.legal-section a {
    color: var(--color-accent);
    font-weight: bold;
}

.form-notice {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.55);
    max-width: 42rem;
}

.form-notice a {
    color: var(--color-accent);
    font-weight: bold;
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.25rem 0;
    margin: 0 0 0.875rem;
    padding: 0;
    list-style: none;
}

.site-footer__links li {
    display: inline-flex;
    align-items: center;
}

.site-footer__links li + li::before {
    content: "·";
    margin: 0 0.5rem;
    color: rgba(0, 0, 0, 0.22);
    font-weight: bold;
    pointer-events: none;
}

.site-footer__links a {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.62);
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer__links a:hover {
    color: var(--color-accent);
}

.site-footer__copy {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.35);
}

.site-footer__copy a {
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.site-footer__copy a:hover {
    text-decoration-thickness: 2px;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 1.75rem 2rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    }

    .site-footer__links a {
        font-size: 0.875rem;
    }
}