/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --yellow: #FFD700;
    --yellow-dark: #E6C200;
    --yellow-glow: rgba(255, 215, 0, 0.15);
    --gray-900: #0A0A0A;
    --gray-800: #1A1A1A;
    --gray-700: #2A2A2A;
    --gray-600: #3A3A3A;
    --gray-400: #888888;
    --gray-300: #AAAAAA;
    --gray-100: #E5E5E5;
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ============================================
   SELECTION STYLE
   ============================================ */
::selection {
    background: var(--yellow);
    color: var(--black);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--yellow);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 102px;
    padding: 16px 48px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease, box-shadow 0.4s ease, top 0.4s ease;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 215, 0, 0.1);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1003;
}

.nav__logo-img {
    height: 70px;
    width: auto;
    display: block;
    position: relative;
    top: 5px;
    transition: height 0.4s ease;
}

.nav.scrolled .nav__logo-img {
    height: 50px;
    top: 0;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-300);
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 10px;
}

/* Top line — wider, like the logo mark */
.nav__link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transform: translateX(-50%);
    transition: width 0.35s var(--ease-out-expo);
}

/* Bottom line — shorter, with gap beneath */
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transform: translateX(-50%);
    transition: width 0.35s var(--ease-out-expo) 0.05s;
}

.nav__link:hover,
.nav__link.active {
    color: var(--white);
}

.nav__link:hover::before,
.nav__link.active::before {
    width: 100%;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 60%;
}

.nav__cta {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--black);
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav__cta:hover {
    background: var(--white);
    transform: scale(1.05);
}

/* Hamburger */
.nav__hamburger {
    display: none;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 1003;
    background: none;
    border: none;
    padding: 8px;
}

.nav__hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nav__hamburger-icon span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease;
    transform-origin: center;
}

.nav__hamburger-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s ease;
}

.nav__hamburger.open .nav__hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--yellow);
}

.nav__hamburger.open .nav__hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.open .nav__hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--yellow);
}

.nav__hamburger.open .nav__hamburger-label {
    color: var(--yellow);
}

/* Mobile Menu */
.nav__mobile-menu {
    display: none;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
    padding: 110px 48px 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Diagonal stripe accent */
.hero__stripe {
    position: absolute;
    top: -20%;
    right: -5%;
    width: 35%;
    height: 140%;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 30px,
        rgba(255, 215, 0, 0.04) 30px,
        rgba(255, 215, 0, 0.04) 60px
    );
    transform: skewX(-10deg);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero__text {
    position: relative;
    max-width: 540px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero__badge::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--yellow);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s var(--ease-out-expo) 0.5s forwards;
}

.hero__title em {
    font-style: normal;
    color: var(--yellow);
    position: relative;
    display: inline-block;
}

.hero__title em::after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--yellow);
}

.hero__title em::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 12px);
    height: 3px;
    background: var(--yellow);
}

.hero__description {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--white);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out-expo) 0.7s forwards;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out-expo) 0.9s forwards;
}


@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */
.commitment {
    background: var(--black);
    padding-top: 70px;
    overflow: hidden;
}

.commitment__content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding-bottom: 140px;
    position: relative;
    z-index: 2;
}

.commitment__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    line-height: 1.05;
    margin-bottom: 24px;
}

.commitment__text {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--gray-300);
    line-height: 1.9;
    margin-bottom: 36px;
}

.commitment__image {
    text-align: center;
    line-height: 0;
}

.commitment__image img {
    width: calc(100% + 100px);
    max-width: none;
    height: auto;
    display: block;
    margin-top: -220px;
    margin-left: -50px;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
    background: var(--black);
    padding-top: 65px !important;
    padding-bottom: 40px;
}

.services-preview__header {
    text-align: center;
    margin-bottom: 56px;
}

.services-preview__header .section-label {
    justify-content: center;
}

.services-preview__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    line-height: 1.05;
    margin-bottom: 16px;
}

.services-preview__subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--gray-300);
    max-width: 600px;
    line-height: 1.8;
    margin: 0 auto;
}

.services-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

a.preview-card {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.preview-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.preview-card:hover {
    border-color: var(--yellow);
    transform: translateY(-6px);
}

.preview-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.preview-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out-expo);
}

.preview-card:hover .preview-card__image img {
    transform: scale(1.05);
}

.preview-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(10, 10, 10, 0.7) 100%
    );
    pointer-events: none;
}

.preview-card__body {
    padding: 28px 28px 32px;
}

.preview-card__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.preview-card:hover .preview-card__title {
    color: var(--yellow);
}

.preview-card__text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-300);
    line-height: 1.8;
}

.services-preview__action {
    text-align: center;
    margin-top: 48px;
}

/* Buttons */
.btn {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 44px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
}

.btn--primary {
    background: var(--yellow);
    color: var(--black);
    border-radius: 4px;
}

.btn--primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.btn--outline {
    background: transparent;
    color: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 4px;
}

.btn--outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn__arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */
.service-detail {
    background: var(--black);
}

.service-detail.section-pad {
    padding-bottom: 40px;
}

.service-detail--alt {
    background: var(--black);
}

.service-detail--alt.section-pad {
    padding-top: 80px;
    padding-bottom: 100px;
}

.service-detail__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.service-detail__header .section-label {
    justify-content: center;
}

.service-detail__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.service-detail__intro {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray-300);
    line-height: 1.8;
}

.service-detail__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.detail-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 32px 28px;
    transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.service-detail--alt .detail-card {
    background: var(--gray-900);
}

.detail-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.detail-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.detail-card:hover .detail-card__title {
    color: var(--yellow);
}

.detail-card__text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-300);
    line-height: 1.75;
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
    position: relative;
}

.section-pad {
    padding: 140px 48px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--yellow);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gray-300);
    max-width: 640px;
    line-height: 1.8;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   CLIENT TICKER
   ============================================ */
.clients {
    background: var(--black);
    border-top: none;
    border-bottom: none;
    padding: 0 0 80px;
    overflow: hidden;
    position: relative;
}

.clients__label {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    margin-bottom: 120px;
}

.clients__track {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
}

.clients__track:hover {
    animation-play-state: paused;
}

.clients__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 12.5px;
    white-space: nowrap;
    border-right: none;
    transition: opacity 0.3s ease;
}

.clients__item:hover {
    opacity: 0.8;
}

.clients__logo {
    width: 400px;
    height: 400px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.clients__name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

/* Fade edges */
.clients::before,
.clients::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.clients::before {
    left: 0;
    background: linear-gradient(90deg, var(--black), transparent);
}

.clients::after {
    right: 0;
    background: linear-gradient(-90deg, var(--black), transparent);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================================
   SERVICES — ROAD LAYOUT
   ============================================ */
.road-section {
    position: relative;
    background: var(--black);
    padding: 100px 48px 120px;
    overflow: hidden;
}

/* --- The Road --- */
.road {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: calc(100% - 20px);
    display: flex;
    z-index: 0;
}

.road__edge {
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.road__surface {
    flex: 1;
    background: var(--gray-800);
    display: flex;
    justify-content: center;
}

.road__dashes {
    width: 4px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        var(--yellow) 0px,
        var(--yellow) 28px,
        transparent 28px,
        transparent 56px
    );
    opacity: 0.6;
}

/* Road fade in/out */
.road__fade {
    position: absolute;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 1;
    pointer-events: none;
}

.road__fade--top {
    top: 0;
    background: linear-gradient(to bottom, var(--black) 0%, transparent 100%);
}

.road__fade--bottom {
    bottom: 0;
    background: linear-gradient(to top, var(--black) 0%, transparent 100%);
}

/* --- Service Stops --- */
.road__stops {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.road-stop {
    display: grid;
    grid-template-columns: 1fr 40px 120px 40px 1fr;
    align-items: center;
    width: 100%;
}

/* Left stop: card(1) | connector(2) | road gap(3) | empty(4) | image(5) */
.road-stop--left .road-stop__card { grid-column: 1; }
.road-stop--left .road-stop__connector { grid-column: 2; }
.road-stop--left .road-stop__image { grid-column: 5; }

/* Right stop: image(1) | empty(2) | road gap(3) | connector(4) | card(5) */
.road-stop--right .road-stop__image { grid-column: 1; }
.road-stop--right .road-stop__connector { grid-column: 4; }
.road-stop--right .road-stop__card { grid-column: 5; }

/* --- Connector Line + Dot --- */
.road-stop__connector {
    display: flex;
    align-items: center;
    height: 2px;
}

.road-stop__line {
    display: block;
    flex: 1;
    height: 2px;
    background: var(--yellow);
    opacity: 0.4;
}

.road-stop__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--yellow);
    border: 3px solid var(--black);
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

/* --- Service Card --- */
.road-stop__card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 16px;
}

.road-stop__card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.road-stop__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--yellow);
    transition: height 0.5s var(--ease-out-expo);
}

.road-stop--right .road-stop__card::before {
    left: auto;
    right: 0;
}

.road-stop__card:hover::before {
    height: 100%;
}

.road-stop__icon {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    color: var(--yellow);
    align-self: center;
}

.road-stop__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.road-stop__title {
    grid-column: 2;
    grid-row: 1;
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    align-self: center;
}

.road-stop__card:hover .road-stop__title {
    color: var(--yellow);
}

.road-stop__text {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 1.05rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.8;
    margin-top: 16px;
}

/* --- Service Image --- */
.road-stop__image {
    overflow: hidden;
    border: 1px solid var(--gray-800);
    background: var(--gray-900);
    align-self: stretch;
}

.road-stop__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.about__stripe {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 45%;
    height: 120%;
    background: repeating-linear-gradient(
        55deg,
        transparent,
        transparent 40px,
        rgba(255, 215, 0, 0.02) 40px,
        rgba(255, 215, 0, 0.02) 80px
    );
    transform: skewX(10deg);
    pointer-events: none;
}

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

.about__content {
    position: relative;
    z-index: 2;
}

.about__text {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--gray-300);
    line-height: 1.9;
    margin-bottom: 24px;
}

.about__visual {
    position: relative;
    z-index: 2;
}

.about__image-frame {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--gray-800);
    overflow: hidden;
}

.about__image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 50%, var(--gray-800) 100%);
    z-index: 1;
}

.about__image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--yellow);
    z-index: 0;
}

/* ============================================
   STORY SECTION (About — Deep Dive)
   ============================================ */
.story-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.story__stripe {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 45%;
    height: 120%;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 40px,
        rgba(255, 215, 0, 0.02) 40px,
        rgba(255, 215, 0, 0.02) 80px
    );
    transform: skewX(-10deg);
    pointer-events: none;
}

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

.story__content {
    position: relative;
    z-index: 2;
}

.story__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 32px;
}

.story__text {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--gray-300);
    line-height: 1.9;
    margin-bottom: 24px;
}

.story__text:last-child {
    margin-bottom: 0;
}

.story__image {
    position: relative;
    z-index: 2;
}

.story__image-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--gray-800);
    overflow: hidden;
}

.story__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 60%,
        rgba(10, 10, 10, 0.6) 100%
    );
    pointer-events: none;
}

.story__nameplate {
    position: relative;
    background: var(--gray-900);
    padding: 20px 24px 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.story__nameplate-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--yellow);
}

.story__nameplate-name {
    font-family: var(--font-condensed);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.story__nameplate-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gray-400);
    letter-spacing: 0.5px;
}

.story__image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--yellow);
    z-index: -1;
}

/* ============================================
   FULL-WIDTH IMAGE DIVIDER
   ============================================ */
.fullwidth-divider {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.fullwidth-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fullwidth-divider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    pointer-events: none;
}

.fullwidth-divider--tall {
    height: 480px;
}

.fullwidth-divider--tall img {
    object-position: center 75%;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--black);
    padding: 80px 48px;
    border-top: 1px solid var(--gray-800);
}

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

.stat-block {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.stat-block::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gray-700);
}

.stat-block:last-child::after {
    display: none;
}

.stat-block__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: 2px;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-block__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
}

/* ============================================
   MISSION SECTION (About — Accent Block)
   ============================================ */
.mission-section {
    position: relative;
    overflow: hidden;
    background: var(--black);
    padding-top: 0;
}

.mission__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    overflow: hidden;
}

.mission__content {
    position: relative;
    z-index: 2;
    background: var(--black);
    display: flex;
    align-items: center;
}

.mission__content-inner {
    padding: 80px 64px 80px 0;
}

.mission__content .section-label {
    color: var(--yellow);
}

.mission__content .section-label::before {
    background: var(--yellow);
}

.mission__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.mission__divider {
    width: 80px;
    height: 3px;
    background: var(--yellow);
    margin-bottom: 32px;
}

.mission__text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 24px;
}

.mission__text:last-child {
    margin-bottom: 0;
}

.mission__image {
    position: relative;
    overflow: hidden;
}

.mission__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.mission__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 215, 0, 0.15) 0%,
        transparent 40%
    );
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.values__header {
    text-align: center;
    margin-bottom: 56px;
}

.values__header .section-label {
    justify-content: center;
}

.values__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

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

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--black);
    border: 1px solid var(--gray-800);
    transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.value-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.value-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--yellow);
}

.value-card__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.value-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.value-card__text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--yellow);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 20px,
        rgba(0, 0, 0, 0.03) 20px,
        rgba(0, 0, 0, 0.03) 40px
    );
    pointer-events: none;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--black);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
}

.cta-banner__text {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 36px;
    position: relative;
}

.btn--dark {
    background: var(--black);
    color: var(--yellow);
    border-radius: 4px;
}

.btn--dark:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--black);
    position: relative;
}

.contact-page .contact-section {
    padding-top: 0;
}


.contact__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.contact__info-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 24px;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact__info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
}

.contact__info-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.contact__info-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact__info-value {
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
}

.contact__info-value a {
    transition: color 0.3s ease;
}

.contact__info-value a:hover {
    color: var(--yellow);
}

/* Contact card */
.contact-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 40px 36px;
    transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.contact-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--yellow);
}

.contact-card__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.contact-card__label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card__value {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1.6;
}

.contact-card__value a {
    transition: color 0.3s ease;
}

.contact-card__value a:hover {
    color: var(--yellow);
}

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */
.page-header {
    padding: 160px 48px 80px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, var(--gray-900) 0%, var(--black) 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header--bg {
    overflow: hidden;
}

.page-header__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.page-header__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.page-header--bg .section-title {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 4px 24px rgba(0, 0, 0, 0.4);
}

.page-header--bg .section-subtitle {
    color: var(--white);
}

.page-header .section-title {
    margin-bottom: 16px;
}

.page-header .section-subtitle {
    max-width: 640px;
}

/* Diagonal accent for page headers */
.page-header__stripe {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 40%;
    height: 160%;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 30px,
        rgba(255, 215, 0, 0.03) 30px,
        rgba(255, 215, 0, 0.03) 60px
    );
    transform: skewX(-10deg);
    z-index: 1;
}

/* ============================================
   CONTACT PAGE — FULL-PAGE HAZARD STRIPE
   ============================================ */
.contact-bg-stripe {
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 30px,
        rgba(255, 215, 0, 0.03) 30px,
        rgba(255, 215, 0, 0.03) 60px
    );
    transform: skewX(-10deg);
    pointer-events: none;
    z-index: 1;
}

.contact-page__content {
    position: relative;
    overflow-x: hidden;
    background: url('../images/contact-bg.jpg') no-repeat center center / cover scroll;
}

.contact-page__content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
    pointer-events: none;
}

.contact-page__content > *:not(.contact-bg-stripe) {
    position: relative;
    z-index: 2;
}

.contact-page .page-header,
.contact-page .contact-section,
.contact-page .map-section {
    background: transparent !important;
}

.contact-page .footer {
    position: relative;
    z-index: 2;
}

/* Contact page text legibility over background image */
.contact-page .section-title,
.contact-page .section-subtitle,
.contact-page .section-label {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.contact-page .contact-card {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-page .manager-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.contact-page .page-header::before {
    display: none;
}

.contact-page .page-header__stripe {
    display: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    border-top: 1px solid var(--gray-800);
    padding: 64px 48px 32px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-800);
}

.footer__logo {
    display: block;
}

.footer__logo-img {
    height: 70px;
    width: auto;
}

.footer__brand p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.footer__col-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__col-link {
    display: block;
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 12px;
    transition: color 0.3s ease, padding-left 0.3s var(--ease-out-expo);
}

.footer__col-link:hover {
    color: var(--yellow);
    padding-left: 8px;
}

.footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.footer__copy a {
    color: var(--yellow);
    transition: color 0.3s ease;
}

.footer__copy a:hover {
    color: var(--white);
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.footer__social-link:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
}

.footer__facebook-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.footer__facebook-link:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

.footer__facebook-link svg {
    width: 20px;
    height: 20px;
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .section-pad { padding: 100px 32px; }
    .hero { padding: 110px 32px 0; }
    .nav { padding: 16px 32px 0; }
    .footer { padding: 48px 32px 24px; }
    .about__layout { gap: 48px; }
    .story__layout { gap: 48px; }
    .mission__content-inner { padding: 60px 40px 60px 0; }
    .stats-section { padding: 60px 32px; }
    .fullwidth-divider { height: 280px; }
    .fullwidth-divider--tall { height: 380px; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .page-header { padding: 140px 32px 60px; }
    .cta-banner { padding: 80px 32px; }
    .road-section { padding: 80px 24px 100px; }
    .road-stop__card { padding: 28px 24px; }
    .road { width: 100px; }
    .road-stop { grid-template-columns: 1fr 30px 100px 30px 1fr; }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__hamburger { display: flex; }

    .nav {
        position: relative;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        min-height: auto;
        padding: 12px 24px;
    }

    .nav__logo-img {
        height: 40px;
        top: 0;
    }

    .nav.scrolled .nav__logo-img {
        height: 35px;
    }

    .nav__mobile-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(100%);
        max-height: 0;
        overflow-x: auto;
        overflow-y: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
        padding: 0 24px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid transparent;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .nav__mobile-menu::-webkit-scrollbar {
        display: none;
    }

    .nav__mobile-menu.open {
        max-height: 60px;
        padding: 14px 24px;
        border-top: 1px solid rgba(255, 215, 0, 0.15);
    }

    .nav__mobile-link {
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gray-300);
        padding: 8px 14px 14px;
        white-space: nowrap;
        transition: color 0.3s ease;
        position: relative;
    }

    .nav__mobile-link:hover,
    .nav__mobile-link.active {
        color: var(--yellow);
    }

    .section-pad { padding: 80px 24px; }
    .hero { padding: 110px 24px 110px; }
    .cta-banner { padding: 60px 24px; }
    .footer { padding: 40px 24px 20px; }
    .page-header { padding: 120px 24px 48px; }

    .page-header--bg .section-title {
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 4px 24px rgba(0, 0, 0, 0.2);
    }

    .contact-page .section-title,
    .contact-page .section-subtitle,
    .contact-page .section-label {
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .hero__title em::after { bottom: 2px; }
    .hero__title em::before { bottom: -6px; }

    .hero__stripe { width: 60%; right: -15%; }

    /* Road layout — mobile: hide road, stack card + image */
    .road-section { padding: 60px 24px 80px; }
    .road { display: none; }
    .road-stop__connector { display: none; }

    .road-stop,
    .road-stop--left,
    .road-stop--right {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .road-stop__card {
        order: 1;
        width: 100%;
    }

    .road-stop__image {
        order: 2;
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .road-stop--left .road-stop__card,
    .road-stop--right .road-stop__card,
    .road-stop--left .road-stop__image,
    .road-stop--right .road-stop__image {
        grid-column: auto;
    }

    .road-stop--right .road-stop__card::before {
        right: auto;
        left: 0;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__visual { order: -1; }

    .story__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story__image { order: -1; }

    .story__image-frame {
        aspect-ratio: 16 / 9;
    }

    .story__nameplate {
        padding: 8px 24px 8px 28px;
    }

    .story__nameplate-name {
        font-size: 1.3rem;
    }

    .story__nameplate-title {
        font-size: 0.85rem;
    }

    .story__image-accent {
        width: 80px;
        height: 80px;
        top: -12px;
        left: -12px;
    }

    .service-detail__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .mission__layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .mission__image {
        order: -1;
        height: 300px;
    }

    .mission__image img {
        object-position: center top;
    }

    .mission__content-inner {
        padding: 48px 0;
    }

    .commitment__image {
        padding-top: 0;
    }

    .commitment__image img {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }

    .commitment__content {
        padding-bottom: 40px;
    }

    .mission__image-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 215, 0, 0.15) 0%,
            transparent 40%
        );
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-block:nth-child(2)::after {
        display: none;
    }

    .stat-block::after {
        right: 0;
    }

    .stats-section {
        padding: 48px 24px;
    }

    .fullwidth-divider {
        height: 220px;
    }
    .fullwidth-divider--tall {
        height: 300px;
    }

    .about__values {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-preview__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .contact-card {
        padding: 28px 20px;
        word-break: break-word;
    }

    .contact-card__value {
        font-size: 1rem;
    }

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

    .footer__col-link {
        padding: 6px 0;
    }

    .footer__facebook-link {
        min-width: 44px;
        min-height: 44px;
    }

    .footer__facebook-link svg {
        width: 24px;
        height: 24px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .commitment { padding-top: 64px; }
    .commitment__content { padding: 0 16px 40px; }
    .section-pad { padding: 64px 16px; }
    .hero { padding: 110px 16px 110px; }
    .nav { padding: 10px 16px 10px; }
    .footer { padding: 32px 16px 16px; }
    .page-header { padding: 110px 16px 40px; }
    .cta-banner { padding: 60px 16px; }

    .nav__mobile-menu.open { padding: 14px 16px; }
    .nav__mobile-link { padding: 8px 10px; font-size: 0.9rem; }

    .hero__actions { flex-direction: column; align-items: flex-start; }
    .btn { width: 100%; justify-content: center; }

    .road-section { padding: 48px 16px 60px; }
    .road-stop__card { padding: 24px 20px; }
    .road__stops { gap: 40px; }

    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-block { padding: 16px 8px; }
    .stat-block::after { display: none; }

    .fullwidth-divider { height: 180px; }
    .fullwidth-divider--tall { height: 240px; }

    .mission__content-inner { padding: 40px 0; }
    .mission__image { height: 240px; }
}
