/* MT design system — one source of truth for every page. */
:root {
    --black: #000;
    --blue: #14213d;
    --orange: #fca311;
    --grey: #e5e5e5;
    --white: #fff;
    --surface: #f6f6f6;
    --muted: #566174;
    --line: rgba(20, 33, 61, .15);
    --shadow: 0 24px 60px rgba(20, 33, 61, .14);
    --shell: 1240px;
    --wide-shell: 1360px;
    --header-height: 82px;
    --section-space: 108px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--surface);
    color: var(--blue);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
body::selection { background: var(--blue); color: var(--white); }
a { color: inherit; text-decoration: none; }
button,
input,
textarea { font: inherit; }
img { max-width: 100%; }

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

/* Every section uses this single base class. */
.mt-section { padding-block: var(--section-space); }

h1,
h2,
h3,
p { overflow-wrap: break-word; }

p {
    font-size: 17px;
    line-height: 1.72;
}

h1,
h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: .98;
}

h1 { font-size: clamp(58px, 7vw, 96px); }
h2 { margin-top: 16px; font-size: clamp(43px, 5.3vw, 70px); }
h1 em,
h2 em { color: var(--orange); font-style: normal; }

.mt-label {
    display: inline-block;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.mt-label-light { color: var(--orange); }

.skip-link {
    position: fixed;
    z-index: 999;
    top: -60px;
    left: 20px;
    padding: 12px 18px;
    background: var(--orange);
    color: var(--black);
}

.skip-link:focus { top: 20px; }

/* Shared buttons. */
.mt-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .025em;
    text-align: center;
    text-transform: uppercase;
    transition: transform .2s, background .2s, box-shadow .2s;
}

.mt-button:hover { transform: translateY(-2px); }

.mt-button-primary {
    background: var(--orange);
    color: var(--black);
    box-shadow: 0 12px 26px rgba(252, 163, 17, .22);
}

.mt-button-primary:hover { background: #ffb431; }

.mt-button-secondary { background: var(--blue); color: var(--white); }
.mt-button-light { background: var(--white); color: var(--blue); }
.mt-button-glass {
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(20, 33, 61, .38);
    color: var(--white);
    backdrop-filter: blur(7px);
}

/* One global navbar. */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid rgba(252, 163, 17, .28);
    background: rgba(0, 0, 0, .96);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
    backdrop-filter: blur(14px);
}

.nav-wrap {
    width: min(var(--wide-shell), calc(100% - 48px));
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand::before {
    content: "";
    width: 58px;
    height: 52px;
    flex: 0 0 58px;
    border: 1px solid rgba(252, 163, 17, .48);
    border-radius: 9px;
    background: rgba(255, 255, 255, .96) url("/assets/brand/favicon.svg") center / 92% auto no-repeat;
    box-shadow: 0 0 0 3px rgba(252, 163, 17, .06), 0 7px 20px rgba(0, 0, 0, .3);
}
.brand-mark { display: none; }
.brand-type { display: grid; line-height: 1; }
.brand-type strong {
    color: var(--orange);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: .025em;
}
.brand-type small {
    margin-top: 5px;
    color: var(--orange);
    opacity: .82;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 38px;
}

.desktop-nav a {
    position: relative;
    padding-bottom: 6px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--orange);
    transition: right .2s;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--white); }
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }

.header-contact {
    display: flex;
    gap: 24px;
    margin-left: auto;
}

.header-contact a {
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 700;
}

.header-contact a:hover { color: var(--orange); }
.header-contact a:first-child::before {
    content: "☎";
    margin-right: 7px;
    color: var(--orange);
}

.menu-toggle,
.mobile-menu { display: none; }

/* One shared image hero for every inner page. */
.mt-page-photo-hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    margin-top: var(--header-height);
    background: var(--black);
    color: var(--white);
    padding-block: 0;
}

.mt-hero-gallery {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--black);
}

.mt-hero > .mt-hero-gallery { top: var(--header-height); }

.mt-hero-slide {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    opacity: 0;
    transition: none;
    will-change: opacity;
}

.mt-hero-slide.is-active { z-index: 1; opacity: 1; }
.mt-hero-slide.is-transitioning { z-index: 2; opacity: 1; }
.mt-hero-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: var(--hero-position, 50% 50%);
    transform: none;
}

.mt-hero-slide--softened::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    pointer-events: none;
    background: rgba(255, 255, 255, .008);
    -webkit-backdrop-filter: blur(1.15px);
    backdrop-filter: blur(1.15px);
}

.mt-page-photo-shade {
    display: none;
}

.mt-page-photo-title {
    position: relative;
    z-index: 2;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 82px;
}

.mt-page-photo-title h1 {
    width: min(850px, 100%);
    margin-top: 17px;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, .62);
}

.mt-page-photo-title p {
    width: min(610px, 100%);
    margin: 25px 0 0;
    color: var(--white);
    font-size: 17px;
    line-height: 1.7;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .8);
}

/* Shared section headings. */
.mt-section-head { margin: 0 0 58px; }
.mt-section-head h2 { color: var(--blue); }
.mt-section-head > p {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

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

.mt-section-head-center > p { margin-inline: auto; }
.mt-split-head {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 70px;
}

.mt-split-head > p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

/* Homepage hero. */
.mt-hero {
    position: relative;
    min-height: 720px;
    height: 100svh;
    overflow: hidden;
    padding: var(--header-height) 0 0;
    background: var(--black);
    color: var(--white);
}

.mt-hero-shade {
    position: absolute;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - var(--header-height));
}

.mt-hero-shade {
    z-index: 1;
    background: transparent;
}

.mt-hero-center {
    position: relative;
    z-index: 2;
    width: min(960px, calc(100% - 40px));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    text-align: center;
}

.mt-hero-glass {
    position: relative;
    width: min(790px, 100%);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 43px 50px 34px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(20, 33, 61, .28), rgba(0, 0, 0, .1));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 20px 54px rgba(0, 0, 0, .22);
    -webkit-backdrop-filter: blur(9px) saturate(112%);
    backdrop-filter: blur(9px) saturate(112%);
}

.mt-hero-glass > .mt-label { width: 100%; color: var(--white); }
.mt-hero-center h1 {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 12px auto 0;
    color: var(--white);
    font-size: clamp(52px, 6.5vw, 88px);
    line-height: .93;
    text-align: center;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .45);
}

.mt-hero-center h1 > span,
.mt-hero-center h1 > em { width: 100%; display: block; text-align: center; }
.mt-hero-center p {
    width: min(630px, 100%);
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.6;
}

.mt-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 27px;
    margin-top: 27px;
}

.mt-actions .mt-button { width: 210px; flex: 0 0 210px; }

/* Homepage form sticker. */
.mt-form-sticker {
    position: fixed;
    z-index: 60;
    right: 26px;
    bottom: 28px;
    width: 200px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border: 2px solid var(--black);
    border-radius: 50%;
    background: var(--orange);
    color: var(--black);
    box-shadow: 7px 8px 0 var(--black), 0 18px 40px rgba(0, 0, 0, .24);
    text-align: center;
    text-transform: uppercase;
    transform: rotate(5deg);
    transition: transform .2s, box-shadow .2s, opacity .25s ease;
}

.mt-form-sticker::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(0, 0, 0, .55);
    border-radius: inherit;
}

.mt-form-sticker > * { position: relative; }
.mt-form-sticker span { font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.mt-form-sticker strong { margin-top: 3px; font-size: 21px; line-height: 1; }
.mt-form-sticker small { margin-top: 11px; font-size: 9px; font-weight: 800; }
.mt-form-sticker:hover {
    transform: rotate(0) scale(1.05);
    box-shadow: 4px 5px 0 var(--black), 0 20px 45px rgba(0, 0, 0, .28);
}
.mt-form-sticker:focus-visible { outline: 4px solid var(--white); outline-offset: 4px; }
body.mt-footer-visible .mt-form-sticker { opacity: 0; pointer-events: none; transform: translateY(24px) rotate(5deg); }

/* Homepage: priority. */
.mt-priority { background: var(--grey); text-align: center; }
.mt-info-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    width: min(1540px, calc(100vw - 48px));
    margin-top: 54px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.mt-info-card {
    position: relative;
    min-height: 290px;
    display: grid;
    grid-template-rows: minmax(120px, 1fr) auto auto;
    padding: 28px;
    background: var(--white);
    color: var(--blue);
    box-shadow: 0 18px 28px rgba(20, 33, 61, .13);
    text-align: left;
    transition: transform .2s;
}

.mt-info-card:hover { transform: translateY(-5px); }
.mt-info-card::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, #ffd083 0 12%, var(--orange) 30%, #bd7100 78%);
    box-shadow: 2px 5px 7px rgba(20, 33, 61, .25);
    transform: translateX(-50%);
}

.mt-card-icon {
    position: relative;
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    display: grid;
    place-items: center;
    align-self: center;
    justify-self: center;
    border-radius: 50%;
    border: 1px solid rgba(252, 163, 17, .3);
    background: radial-gradient(circle at 35% 28%, #1d315c, var(--blue) 68%);
    color: var(--orange);
    box-shadow: 0 12px 24px rgba(20, 33, 61, .2), inset 0 1px 0 rgba(255, 255, 255, .12);
    transition: transform .2s ease, box-shadow .2s ease;
}
.mt-card-icon::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(252, 163, 17, .16);
    border-radius: inherit;
    pointer-events: none;
}
.mt-card-icon svg {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mt-info-card:hover .mt-card-icon,
.mt-service-card:hover .mt-card-icon,
.mt-offer-card:hover .mt-card-icon { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 30px rgba(20, 33, 61, .25), inset 0 1px 0 rgba(255, 255, 255, .14); }
.mt-info-card h3 { margin: 0 0 14px; color: var(--blue); font-size: 24px; }
.mt-info-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.72; }

.mt-priority-note {
    display: grid;
    grid-template-columns: 230px 1fr auto;
    align-items: center;
    gap: 35px;
    margin-top: 24px;
    padding: 30px 34px;
    border-left: 5px solid var(--orange);
    background: var(--white);
    color: var(--blue);
    text-align: left;
}

.mt-priority-note > span { color: #955700; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mt-priority-note p { margin: 0; color: var(--muted); line-height: 1.65; }
.mt-priority-note a { font-size: 12px; font-weight: 800; white-space: nowrap; }

/* Homepage: services. */
.mt-destinations {
    background-color: transparent;
    background-image: url('/assets/photos/fleet/mamas-taxi-fleet-front.webp?v=20260824-new');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
}
.mt-destinations h2 { color: var(--white); }
.mt-destinations .mt-split-head > p { color: rgba(255, 255, 255, .8); }
.mt-destinations h2,
.mt-destinations .mt-split-head > p { text-shadow: 0 3px 20px rgba(0, 0, 0, .72); }
.mt-destinations .mt-section-head,
.mt-process .mt-section-head {
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 18px 48px rgba(20, 33, 61, .16);
    -webkit-backdrop-filter: blur(8px) saturate(108%);
    backdrop-filter: blur(8px) saturate(108%);
}
.mt-destinations .mt-section-head { background: linear-gradient(145deg, rgba(20, 33, 61, .3), rgba(0, 0, 0, .12)); }
.mt-process .mt-section-head { background: linear-gradient(145deg, rgba(255, 255, 255, .56), rgba(255, 255, 255, .28)); }
.mt-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mt-service-card {
    min-height: 390px;
    display: grid;
    grid-template-rows: minmax(150px, 1fr) auto;
    padding: 28px;
    background: var(--white);
    color: var(--blue);
    transition: transform .2s, box-shadow .2s;
}
.mt-service-card:nth-child(2) { background: #eef1f7; }
.mt-service-card:nth-child(3) { background: #fff1d9; }
.mt-destinations .mt-service-card {
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 45px rgba(20, 33, 61, .18);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.mt-service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, .22); }
.mt-service-card h3 { margin: 0 0 13px; color: var(--blue); font-size: 27px; }
.mt-service-card p { margin: 0 0 22px; color: var(--muted); line-height: 1.65; }
.mt-service-card b { color: var(--blue); font-size: 11px; text-transform: uppercase; }

/* Homepage: story and live map. */
.mt-story { background: var(--white); }
.mt-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 95px; align-items: center; }
.mt-photo-stack { position: relative; min-height: 610px; }
.mt-photo { position: absolute; overflow: hidden; margin: 0; box-shadow: var(--shadow); }
.mt-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.mt-photo-main { inset: 0 50px 55px 0; }
.mt-photo-small { right: 0; bottom: 0; width: 42%; height: 36%; border: 10px solid var(--white); }
.mt-photo-caption {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 24px;
    max-width: 240px;
    padding: 14px 17px;
    background: var(--orange);
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.mt-story-copy h2 { color: var(--blue); }
.mt-story-copy p { margin: 26px 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.mt-story-copy ul { display: grid; gap: 13px; margin: 0 0 30px; padding: 0; list-style: none; }
.mt-story-copy li { color: var(--blue); font-weight: 700; }
.mt-story-copy li::before { content: "✓"; margin-right: 10px; color: var(--orange); }

.mt-location-card {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    min-height: 520px;
    margin-top: 105px;
    overflow: hidden;
    background: var(--blue);
    box-shadow: 0 26px 65px rgba(20, 33, 61, .18);
}
.mt-location-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 58px; color: var(--white); }
.mt-location-copy h2 { color: var(--white); font-size: clamp(38px, 4.2vw, 58px); }
.mt-location-copy p { margin: 25px 0 0; color: rgba(255, 255, 255, .84); line-height: 1.75; }
.mt-location-copy small { margin-top: 18px; color: rgba(255, 255, 255, .5); line-height: 1.55; }
.mt-location-copy .mt-button { margin-top: 28px; }

.mt-map-demo {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background-color: #dfe3e9;
    background-image: linear-gradient(32deg, transparent 48%, rgba(255, 255, 255, .8) 49% 53%, transparent 54%), linear-gradient(122deg, transparent 44%, rgba(255, 255, 255, .62) 45% 48%, transparent 49%);
    background-size: 180px 180px, 240px 240px;
}
.mt-map-demo svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mt-map-street { fill: none; stroke: rgba(255, 255, 255, .9); stroke-width: 26; stroke-linecap: round; }
.mt-map-street-thin { stroke-width: 17; }
.mt-map-route { fill: none; stroke: var(--orange); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 12 14; }
.mt-map-pulse { fill: rgba(252, 163, 17, .22); animation: mapPulse 2.2s ease-out infinite; transform-box: fill-box; transform-origin: center; }
.mt-map-position { fill: var(--orange); stroke: var(--white); stroke-width: 5; }
@keyframes mapPulse { from { transform: scale(.55); opacity: 1; } to { transform: scale(1.7); opacity: 0; } }
.mt-map-pin,
.mt-map-car,
.mt-map-badge { position: absolute; z-index: 2; box-shadow: 0 12px 28px rgba(20, 33, 61, .18); }
.mt-map-pin { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50% 50% 50% 8px; background: var(--blue); color: var(--white); font-size: 13px; font-weight: 800; transform: rotate(-45deg); }
.mt-map-pin small { position: absolute; top: 49px; left: 14px; width: 95px; color: var(--blue); font-size: 10px; transform: rotate(45deg); }
.mt-map-start { bottom: 19%; left: 10%; }
.mt-map-finish { top: 14%; right: 12%; background: var(--orange); color: var(--black); }
.mt-map-car { top: 39%; left: 46%; min-width: 150px; display: grid; padding: 12px 16px; border: 3px solid var(--white); background: var(--blue); color: var(--orange); font-size: 24px; }
.mt-map-car small { color: var(--white); font-size: 10px; font-weight: 700; }
.mt-map-badge { top: 20px; left: 20px; padding: 9px 13px; background: rgba(255, 255, 255, .9); color: var(--blue); font-size: 10px; font-weight: 800; text-transform: uppercase; }

/* Homepage: process, fleet, team. */
.mt-process {
    background-color: transparent;
    background-image: url('/assets/photos/stock/children-walking-with-driver-istock-1695372247.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
.mt-process .mt-section-head h2,
.mt-process .mt-section-head > p { text-shadow: 0 2px 18px rgba(255, 255, 255, .88); }
.mt-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.mt-process-grid li { min-height: 280px; display: grid; grid-template-rows: minmax(130px, 1fr) auto; padding: 30px; background: rgba(255, 255, 255, .92); color: var(--blue); box-shadow: 0 18px 45px rgba(20, 33, 61, .16); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.mt-process-grid h3 { margin: 0 0 12px; color: var(--blue); font-size: 23px; }
.mt-process-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.mt-fleet { background: var(--grey); }
.mt-fleet-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.mt-fleet-gallery figure {
    position: relative;
    z-index: 1;
    overflow: visible;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(20, 33, 61, .1);
    border-top: 4px solid var(--orange);
    border-radius: 4px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(20, 33, 61, .1);
    transform: none;
    transform-origin: center top;
    transition: transform 260ms cubic-bezier(.2, .8, .2, 1), box-shadow 260ms ease;
}
@media (hover: hover) and (pointer: fine) {
    .mt-fleet-gallery figure:hover {
        z-index: 30;
        transform: scale(1.25);
        box-shadow: 0 34px 72px rgba(24, 21, 15, .28);
    }

    .mt-fleet-gallery figure:hover .mt-fleet-card-media {
        width: calc(100% + 24px);
        height: calc(clamp(280px, 24vw, 355px) + 52px);
        margin: -12px -12px 20px;
        border-radius: 4px;
        box-shadow: 0 18px 38px rgba(24, 21, 15, .22);
    }
}
.mt-fleet-card-media {
    width: 100%;
    height: clamp(280px, 24vw, 355px);
    overflow: hidden;
    margin: 0;
    background: var(--white);
    transition:
        width 300ms cubic-bezier(.2, .8, .2, 1),
        height 300ms cubic-bezier(.2, .8, .2, 1),
        margin 300ms cubic-bezier(.2, .8, .2, 1),
        border-radius 300ms ease,
        box-shadow 300ms ease;
}
.mt-fleet-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.mt-fleet-card--vehicle img { padding: clamp(18px, 2.5vw, 34px); background: var(--white); }
.mt-fleet-gallery figcaption { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; border-top: 1px solid rgba(20, 33, 61, .08); }
.mt-fleet-gallery b { color: var(--blue); font-size: 18px; }
.mt-fleet-gallery span { max-width: 170px; color: var(--muted); font-size: 12px; line-height: 1.45; text-align: right; }

.mt-team { background: var(--white); }
.mt-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.mt-team-grid article { min-width: 0; display: flex; flex-direction: column; overflow: hidden; background: var(--grey); color: var(--blue); }
.mt-team-grid img { width: 100%; height: auto; aspect-ratio: .78; flex: 0 0 auto; display: block; object-fit: cover; }
.mt-team-grid article > div { flex: 1; padding: 20px; text-align: center; }
.mt-team-grid h3 { margin: 0; color: var(--blue); font-size: 20px; }
.mt-team-grid p { margin: 7px 0 0; color: var(--muted); }

/* Homepage: continuous reviews. */
.mt-reviews { background: var(--grey); }
.mt-reviews .mt-section-head > div { max-width: 760px; }
.reviews-slider { width: 100%; overflow: hidden; cursor: grab; touch-action: pan-y; user-select: none; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.reviews-slider.is-dragging { cursor: grabbing; }
.reviews-track { width: max-content; display: flex; align-items: stretch; gap: 18px; transition: none; will-change: transform; }
.review-slide { width: 380px; flex: 0 0 380px; display: flex; flex-direction: column; padding: 26px; background: var(--white); color: var(--blue); pointer-events: none; }
.review-card-top { display: flex; align-items: center; justify-content: space-between; }
.review-stars { color: #a86200; letter-spacing: .08em; }
.review-slide blockquote { flex: 1; margin: 26px 0 32px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.review-slide footer { display: grid; gap: 5px; }
.review-slide footer small { color: #a86200; }

/* Homepage contact/form. */
.mt-contact { background: var(--white); }
.mt-contact-wrap { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; box-shadow: var(--shadow); }
.mt-contact-copy,
.mt-contact-form { padding: 58px; }
.mt-contact-copy { background: var(--blue); color: var(--white); }
.mt-contact-copy h2 { color: var(--white); }
.mt-contact-copy p { margin: 26px 0; color: rgba(255, 255, 255, .84); line-height: 1.75; }
.mt-contact-copy dl { display: grid; gap: 18px; margin: 34px 0 0; }
.mt-contact-copy dl div { display: grid; gap: 6px; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, .15); }
.mt-contact-copy dt { color: rgba(255, 255, 255, .55); font-size: 10px; text-transform: uppercase; }
.mt-contact-copy dd { margin: 0; color: var(--white); font-weight: 700; }
.mt-contact-form { background: var(--grey); }
.mt-contact-form h3 { margin: 14px 0 30px; color: var(--blue); font-size: 32px; }
.form-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.mt-contact-form label { display: grid; gap: 7px; color: var(--blue); font-size: 12px; font-weight: 800; }
.form-grid .full { grid-column: 1 / -1; }
.mt-contact-form input,
.mt-contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(20, 33, 61, .18);
    border-radius: 6px;
    outline: 0;
    background: var(--white);
    color: var(--blue);
    font-size: 15px;
}
.mt-contact-form input:focus,
.mt-contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(252, 163, 17, .14); }
.mt-contact-form textarea { resize: vertical; }
.mt-contact-form .mt-button { margin-top: 22px; }
.mt-form-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.mt-form-consent { grid-template-columns: auto 1fr; align-items: start; gap: 10px !important; font-weight: 500 !important; line-height: 1.5; }
.mt-form-consent input { width: 18px; height: 18px; margin-top: 1px; padding: 0; accent-color: var(--orange); }
.mt-form-consent a { color: var(--blue); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }
.mt-contact-form button:disabled { cursor: wait; opacity: .65; }
.form-message { display: none; margin-bottom: 0; padding: 12px; border-left: 4px solid var(--blue); background: var(--white); color: var(--blue); }
.form-message.show { display: block; animation: messageIn .45s cubic-bezier(.22, 1, .36, 1) both; }
.form-message.is-success { border-color: #2d7a46; background: #edf8f0; color: #174c2a; }
.form-message.is-error { border-color: #a52a2a; background: #fff0f0; color: #761d1d; }

@keyframes messageIn {
    from { opacity: 0; transform: translateY(10px) scale(.98); }
    to { opacity: 1; transform: none; }
}

/* Merged service page. */
.mt-page-nav { position: sticky; z-index: 12; top: var(--header-height); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .94); backdrop-filter: blur(12px); }
.mt-page-nav .shell { display: grid; grid-template-columns: repeat(3, 1fr); }
.mt-page-nav a { display: flex; justify-content: center; gap: 10px; padding: 22px; border-right: 1px solid var(--line); color: var(--blue); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.mt-page-nav a:first-child { border-left: 1px solid var(--line); }
.mt-page-nav a:hover { background: var(--orange); color: var(--black); }
.mt-page-nav a span { color: #955700; }
.mt-page-nav ~ .mt-section[id] { scroll-margin-top: 145px; }
.mt-offer { background: var(--grey); }
.mt-offer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.mt-offer-card { min-height: 350px; display: grid; grid-template-rows: minmax(140px, 1fr) auto auto; padding: 28px; border-top: 4px solid var(--orange); background: var(--white); color: var(--blue); box-shadow: 0 16px 35px rgba(20, 33, 61, .09); }
.mt-offer-card h3 { margin: 0 0 12px; color: var(--blue); font-size: 24px; }
.mt-offer-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.mt-offer-card-dark { background: var(--blue); color: var(--white); }
.mt-offer-card-dark h3 { color: var(--white); }
.mt-offer-card-dark p { color: rgba(255, 255, 255, .84); }

.mt-safety { background: var(--blue); color: var(--white); }
.mt-safety .mt-card-icon {
    border-color: rgba(255, 255, 255, .24);
    background: radial-gradient(circle at 35% 28%, #ffc967, var(--orange) 68%);
    color: var(--blue);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.mt-safety .mt-card-icon::after { border-color: rgba(20, 33, 61, .16); }
.mt-safety-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.mt-safety-copy h2 { color: var(--white); }
.mt-safety-copy p { max-width: 520px; margin: 28px 0 30px; color: rgba(255, 255, 255, .84); font-size: 17px; line-height: 1.75; }
.mt-safety-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 0; padding: 1px; background: rgba(255, 255, 255, .14); list-style: none; }
.mt-safety-list li { min-height: 300px; display: grid; grid-template-rows: minmax(130px, 1fr) auto; padding: 30px; background: var(--blue); }
.mt-safety-list h3 { margin: 0 0 12px; color: var(--white); font-size: 23px; }
.mt-safety-list p { margin: 0; color: rgba(255, 255, 255, .8); line-height: 1.7; }

.mt-about { background: var(--white); }
.mt-about-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.mt-about-photo { position: relative; min-height: 650px; overflow: hidden; background: var(--grey); }
.mt-about-photo img { width: 100%; height: 650px; display: block; object-fit: cover; }
.mt-about-photo span,
.mt-owner-photo span { position: absolute; right: 24px; bottom: 24px; left: 24px; padding: 16px; background: var(--orange); color: var(--black); font-size: 11px; font-weight: 800; text-align: center; text-transform: uppercase; }
.mt-about-copy h2 { color: var(--blue); }
.mt-about-copy p { color: var(--muted); line-height: 1.75; }
.mt-about-copy .mt-about-lead { color: var(--blue); font-size: 21px; font-weight: 700; }
.mt-about-values { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; border-top: 1px solid var(--line); }
.mt-about-values span { display: grid; gap: 7px; padding: 25px 15px 0 0; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.mt-about-values b { color: var(--blue); font-size: 25px; }

.mt-cta { background: var(--orange); color: var(--black); text-align: center; }
.mt-cta .shell,
.mt-cta-inner { display: flex; flex-direction: column; align-items: center; }
.mt-cta h2 { max-width: 900px; color: var(--black); }
.mt-cta h2 em,
.mt-cta .mt-label { color: var(--blue); }
.mt-cta p { max-width: 600px; margin: 24px auto 30px; color: rgba(0, 0, 0, .68); line-height: 1.7; }
.mt-cta .mt-button { margin-top: 30px; }

/* FAQ. */
.mt-faq { background: var(--white); }
.mt-faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.mt-faq-layout aside { position: sticky; top: 130px; align-self: start; }
.mt-faq-layout aside h2 { color: var(--blue); }
.mt-faq-layout aside p { color: var(--muted); line-height: 1.7; }
.mt-faq-layout aside .mt-button { margin-top: 20px; }
.mt-faq-list { border-top: 1px solid var(--line); }
.mt-faq-list details { border-bottom: 1px solid var(--line); background: transparent; transition: background .25s ease, box-shadow .25s ease; }
.mt-faq-list details[data-expanded="true"] { background: linear-gradient(90deg, rgba(252, 163, 17, .07), transparent 72%); box-shadow: inset 3px 0 var(--orange); }
.mt-faq-list summary { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 15px; padding: 28px 10px; cursor: pointer; list-style: none; color: var(--blue); font-size: 19px; font-weight: 700; transition: color .2s ease, padding-left .25s ease; }
.mt-faq-list summary:hover { padding-left: 15px; color: #213764; }
.mt-faq-list summary::-webkit-details-marker { display: none; }
.mt-faq-list summary span { color: #955700; font-size: 10px; }
.mt-faq-list summary i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; font-size: 25px; font-style: normal; transition: transform .35s cubic-bezier(.22, 1, .36, 1), background .2s ease, color .2s ease; }
.mt-faq-list summary:hover i { background: var(--grey); }
.mt-faq-list details[open] summary i,
.mt-faq-list details[data-expanded="true"] summary i { background: var(--orange); color: var(--blue); transform: rotate(45deg); }
.mt-faq-answer { padding: 0 55px 30px; }
.mt-faq-answer p { margin: 0; color: var(--muted); line-height: 1.7; }
.mt-faq-answer ul { display: grid; gap: 11px; margin: 20px 0 0; padding: 0; list-style: none; }
.mt-faq-answer li { display: grid; grid-template-columns: 26px 1fr; align-items: start; color: var(--blue); line-height: 1.65; }
.mt-faq-answer li::before {
    content: "✓";
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    margin-top: 4px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}
.mt-faq-list details[data-expanded="true"] .mt-faq-answer p { animation: faqContentIn .4s .06s cubic-bezier(.22, 1, .36, 1) both; }
.mt-faq-list details[data-expanded="true"] .mt-faq-answer li { animation: faqContentIn .42s cubic-bezier(.22, 1, .36, 1) both; }
.mt-faq-list details[data-expanded="true"] .mt-faq-answer li:nth-child(1) { animation-delay: .1s; }
.mt-faq-list details[data-expanded="true"] .mt-faq-answer li:nth-child(2) { animation-delay: .15s; }
.mt-faq-list details[data-expanded="true"] .mt-faq-answer li:nth-child(3) { animation-delay: .2s; }
.mt-faq-list details[data-expanded="true"] .mt-faq-answer li:nth-child(n+4) { animation-delay: .25s; }

@keyframes faqContentIn {
    from { opacity: 0; transform: translateY(9px); }
    to { opacity: 1; transform: none; }
}

/* Direct owner contact. */
.mt-owner { background: var(--surface); }
.mt-owner-layout { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.mt-owner-photo { position: relative; min-height: 660px; overflow: hidden; background: var(--grey); }
.mt-owner-photo img { width: 100%; height: 100%; min-height: 660px; display: block; object-fit: cover; }
.mt-owner-copy { display: flex; flex-direction: column; justify-content: center; padding: 65px; background: var(--blue); color: var(--white); }
.mt-owner-copy h2 { color: var(--white); }
.mt-owner-lead { max-width: 680px; margin: 26px 0 32px; color: rgba(255, 255, 255, .8); font-size: 18px; line-height: 1.75; }
.mt-owner-contacts { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255, 255, 255, .18); }
.mt-owner-contacts a { min-width: 0; display: grid; gap: 8px; padding: 23px; border-right: 1px solid rgba(255, 255, 255, .18); color: var(--white); }
.mt-owner-contacts a:last-child { border-right: 0; }
.mt-owner-contacts a:hover { background: var(--orange); color: var(--black); }
.mt-owner-contacts small { color: var(--orange); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.mt-owner-contacts a:hover small { color: var(--black); }
.mt-owner-contacts strong { overflow-wrap: anywhere; font-size: 17px; }
.mt-owner-contacts span { margin-top: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.mt-owner-details { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 30px 0 0; }
.mt-owner-details div { display: grid; gap: 5px; }
.mt-owner-details dt { color: rgba(255, 255, 255, .5); font-size: 10px; text-transform: uppercase; }
.mt-owner-details dd { margin: 0; color: var(--white); font-weight: 700; }
.mt-template-note { margin-top: 28px; color: rgba(255, 255, 255, .48); line-height: 1.55; }

.mt-map-placeholder {
    min-height: 420px;
    display: grid;
    place-items: center;
    background-color: var(--grey);
    background-image: linear-gradient(30deg, rgba(255, 255, 255, .6) 12%, transparent 12.5% 87%, rgba(255, 255, 255, .6) 87.5%), linear-gradient(150deg, rgba(255, 255, 255, .6) 12%, transparent 12.5% 87%, rgba(255, 255, 255, .6) 87.5%);
    background-size: 120px 210px;
    text-align: center;
}
.mt-map-placeholder span { width: 70px; height: 70px; display: grid; place-items: center; margin: auto; border-radius: 50% 50% 50% 12px; background: var(--orange); color: var(--black); font-weight: 800; transform: rotate(-45deg); }
.mt-map-placeholder p { color: var(--blue); font-size: 11px; font-weight: 700; }

/* Legal page. */
.mt-plain-hero { margin-top: var(--header-height); background: linear-gradient(135deg, var(--grey), var(--white)); }
.mt-plain-hero p { max-width: 590px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.mt-legal { background: var(--white); }
.mt-legal-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 95px; }
.mt-legal-layout aside { position: sticky; top: 130px; align-self: start; }
.mt-legal-layout aside p { color: var(--muted); line-height: 1.7; }
.mt-legal-layout aside .mt-button { margin-top: 20px; }
.mt-legal-copy { border-top: 1px solid var(--line); }
.mt-legal-copy > div { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.mt-legal-copy > div > span { color: #955700; font-size: 11px; font-weight: 800; }
.mt-legal-copy h2 { margin: 0 0 15px; color: var(--blue); font-size: 28px; letter-spacing: -.03em; }
.mt-legal-copy p { margin: 0; color: var(--muted); line-height: 1.75; }
.mt-legal-copy p + p { margin-top: 12px; }
.mt-legal-copy ul { display: grid; gap: 8px; margin: 14px 0; padding-left: 22px; color: var(--muted); }
.mt-legal-copy li { padding-left: 4px; line-height: 1.65; }
.mt-legal-copy li::marker { color: var(--orange); }
.mt-legal-copy a { color: #8a5000; font-weight: 800; text-decoration: underline; text-decoration-color: rgba(252, 163, 17, .6); text-underline-offset: 3px; }
.mt-legal-copy a:hover { color: var(--blue); }

/* One footer. */
.site-footer { position: relative; padding: 0; background: linear-gradient(145deg, #090d13, #101925); color: var(--white); }
.mt-footer-main { width: min(var(--wide-shell), calc(100% - 48px)); display: grid; grid-template-columns: minmax(300px, 1.3fr) minmax(240px, .9fr) minmax(175px, .65fr) minmax(200px, .75fr); align-items: start; gap: clamp(26px, 3vw, 42px); padding-block: clamp(75px, 8vw, 112px); }
.mt-footer-column { display: grid; align-content: start; gap: 14px; }
.mt-footer-column h2 { margin: 0 0 20px; color: var(--white); font-size: clamp(24px, 2.2vw, 31px); letter-spacing: -.035em; line-height: 1.1; }
.mt-footer-kicker { margin-bottom: 2px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.mt-footer-intro p { max-width: 590px; margin: 0; color: rgba(255, 255, 255, .72); font-size: 16px; line-height: 1.75; }
.mt-footer-cta { width: fit-content; display: inline-flex; align-items: center; gap: 16px; margin-top: 16px; padding: 14px 18px; border: 1px solid rgba(252, 163, 17, .45); border-radius: 6px; color: var(--orange); font-size: 13px; font-weight: 800; text-transform: uppercase; transition: background .2s ease, color .2s ease, transform .2s ease; }
.mt-footer-cta span { font-size: 18px; transition: transform .2s ease; }
.mt-footer-cta:hover { background: var(--orange); color: var(--black); transform: translateY(-2px); }
.mt-footer-cta:hover span { transform: translateX(3px); }
.mt-footer-company address { display: grid; gap: 20px; margin: 0; font-style: normal; }
.mt-footer-company address div { display: grid; gap: 5px; }
.mt-footer-company address strong,
.mt-footer-contact-label { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.mt-footer-company address span { color: rgba(255, 255, 255, .82); font-size: 15px; line-height: 1.55; }
.mt-footer-contact { gap: 8px; }
.mt-footer-contact h2 { margin-bottom: 22px; }
.mt-footer-contact-label:not(:first-of-type) { margin-top: 14px; }
.mt-footer-contact > a { width: fit-content; color: var(--white); font-size: 16px; font-weight: 700; border-bottom: 1px solid rgba(252, 163, 17, .38); transition: color .2s ease, border-color .2s ease; }
.mt-footer-contact > a:hover { color: var(--orange); border-color: var(--orange); }
.mt-footer-links { gap: 6px; }
.mt-footer-links h2 { margin-bottom: 22px; }
.mt-footer-links a { width: fit-content; padding: 5px 0; color: rgba(255, 255, 255, .78); font-size: 16px; transition: color .2s ease, transform .2s ease; }
.mt-footer-links a:hover { color: var(--orange); transform: translateX(5px); }
.mt-footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); background: rgba(0, 0, 0, .22); }
.mt-footer-bottom-inner { width: min(var(--wide-shell), calc(100% - 48px)); min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: rgba(255, 255, 255, .58); font-size: 13px; }
.mt-zunix-powered { display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 999px; background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .64); font-size: 13px; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.mt-zunix-powered strong { color: var(--white); }
.mt-zunix-powered:hover { border-color: rgba(252, 163, 17, .35); background: rgba(255, 255, 255, .13); transform: translateY(-2px); }
.mt-footer-top { position: absolute; right: 250px; bottom: 88px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(252, 163, 17, .45); background: var(--orange); color: var(--black); font-size: 21px; transition: transform .2s ease, background .2s ease; }
.mt-footer-top:hover { background: var(--white); transform: translateY(-3px); }

@media (min-width: 1180px) {
    .mt-footer-column h2 { white-space: nowrap; }
}

/* Shared reveal behavior. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.js .delay-1 { transition-delay: .1s; }
.js .delay-2 { transition-delay: .2s; }
.js .delay-3 { transition-delay: .3s; }
.js .motion-item { opacity: 0; transform: translateY(18px); transition: opacity .55s ease var(--motion-delay, 0ms), transform .55s cubic-bezier(.22, 1, .36, 1) var(--motion-delay, 0ms); }
.js .motion-item.visible { opacity: 1; transform: none; }

.js .mt-fleet-gallery figure.reveal {
    transition: opacity .65s ease, transform 260ms cubic-bezier(.2, .8, .2, 1), box-shadow 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .js .mt-fleet-gallery figure.reveal.visible:hover {
        transform: scale(1.25);
        transition-delay: 0s;
    }
}

@media (max-width: 1100px) {
    .header-contact { display: none; }
    .desktop-nav { margin-left: auto; }
    .mt-info-grid,
    .mt-offer-grid { grid-template-columns: 1fr 1fr; }
    .mt-info-grid { width: 100%; margin-left: 0; transform: none; }
    .mt-footer-main { grid-template-columns: 1fr 1fr; gap: 55px 70px; }
}

@media (max-width: 900px) {
    .mt-split-head,
    .mt-story-grid,
    .mt-safety-layout,
    .mt-about-layout,
    .mt-owner-layout,
    .mt-contact-wrap,
    .mt-faq-layout,
    .mt-legal-layout { grid-template-columns: 1fr; gap: 45px; }
    .mt-faq-layout aside,
    .mt-legal-layout aside { position: static; }
    .mt-location-card { grid-template-columns: 1fr; }
    .mt-map-demo { min-height: 440px; }
    .mt-team-grid { grid-template-columns: 1fr 1fr; }
    .mt-fleet-gallery { gap: 16px; }
    .mt-owner-layout,
    .mt-contact-wrap { gap: 0; }
    .mt-footer-main { grid-template-columns: 1fr 1fr; gap: 55px 70px; }
    .mt-footer-intro { grid-column: auto; }
}

@media (max-width: 820px) {
    :root { --header-height: 68px; }
    .site-header { height: var(--header-height); backdrop-filter: none; }
    .nav-wrap { width: calc(100% - 28px); }
    .desktop-nav,
    .header-contact { display: none; }
    .form-grid { grid-template-columns: 1fr 1fr; }
    .brand { gap: 8px; }
    .brand::before { width: 44px; height: 42px; flex-basis: 44px; border-radius: 7px; }
    .brand-type strong { font-size: 20px; }
    .brand-type small { font-size: 7px; }
    .menu-toggle { position: relative; z-index: 2; width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; margin-left: auto; padding: 0; border: 0; border-radius: 7px; background: var(--orange); box-shadow: 0 7px 18px rgba(0, 0, 0, .2); }
    .menu-toggle span { width: 19px; height: 2px; background: var(--black); transition: transform .2s; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
    .mobile-menu {
        position: fixed;
        z-index: 95;
        inset: 0;
        min-height: 100vh;
        min-height: 100dvh;
        display: grid;
        grid-template-rows: 1fr auto;
        gap: 30px;
        overflow-y: auto;
        padding: calc(var(--header-height) + 34px) max(24px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
        background:
            radial-gradient(circle at 92% 14%, rgba(252, 163, 17, .22), transparent 29%),
            radial-gradient(circle at 4% 88%, rgba(255, 255, 255, .08), transparent 32%),
            linear-gradient(145deg, #0c152a, var(--blue) 52%, #1b2f59);
        color: var(--white);
        opacity: 0;
        visibility: hidden;
        transform: scale(1.025);
        transform-origin: top right;
        transition: opacity .32s ease, visibility .32s, transform .42s cubic-bezier(.22, 1, .36, 1);
    }
    .mobile-menu::before {
        content: "";
        position: fixed;
        inset: var(--header-height) 0 auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--orange), transparent);
    }
    .mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
    .mobile-menu-links { display: grid; align-content: center; }
    .mobile-menu-links > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 19px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
        color: rgba(255, 255, 255, .78);
        font-size: clamp(26px, 7vw, 38px);
        font-weight: 800;
        letter-spacing: -.035em;
        opacity: 0;
        transform: translateX(22px);
        transition: color .2s ease, opacity .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
    }
    .mobile-menu-links > a::after { content: "↗"; color: var(--orange); font-size: .62em; font-weight: 400; opacity: .7; }
    .mobile-menu-links > a[aria-current="page"] { color: var(--orange); }
    .mobile-menu.open .mobile-menu-links > a { opacity: 1; transform: none; }
    .mobile-menu.open .mobile-menu-links > a:nth-child(1) { transition-delay: .07s; }
    .mobile-menu.open .mobile-menu-links > a:nth-child(2) { transition-delay: .12s; }
    .mobile-menu.open .mobile-menu-links > a:nth-child(3) { transition-delay: .17s; }
    .mobile-menu.open .mobile-menu-links > a:nth-child(4) { transition-delay: .22s; }
    .mobile-menu-bottom { display: grid; gap: 20px; opacity: 0; transform: translateY(15px); transition: opacity .35s .2s ease, transform .45s .2s cubic-bezier(.22, 1, .36, 1); }
    .mobile-menu.open .mobile-menu-bottom { opacity: 1; transform: none; }
    .mobile-menu-bottom .mt-button { width: 100%; color: var(--black); }
    .mobile-menu-bottom > div { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 20px; }
    .mobile-menu-bottom > div a { color: rgba(255, 255, 255, .62); font-size: 12px; font-weight: 700; }
}

@media (max-width: 600px) {
    :root { --section-space: 76px; }
    .shell { width: calc(100% - 24px); }
    h2 { font-size: clamp(39px, 11vw, 52px); }
    .mt-page-photo-hero,
    .mt-page-photo-title { min-height: 610px; }
    .mt-page-photo-title { padding-bottom: 55px; }
    .mt-page-photo-title h1 { font-size: clamp(39px, 11vw, 48px); line-height: .98; }
    .mt-contact-hero .mt-page-photo-title h1 { font-size: clamp(36px, 9.5vw, 40px); }
    .mt-page-photo-title p { font-size: 15px; }
    .mt-page-nav { overflow-x: auto; top: var(--header-height); }
    .mt-page-nav .shell { width: max-content; min-width: 100%; }
    .mt-page-nav a { min-width: 165px; padding: 18px 14px; }
    .mt-page-nav ~ .mt-section[id] { scroll-margin-top: 125px; }
    .mt-split-head { gap: 24px; }
    .mt-process { background-attachment: scroll; background-position: 48% center; }
    .mt-destinations { background-attachment: scroll; background-position: center center; }
    .mt-destinations .mt-section-head,
    .mt-process .mt-section-head { padding: 20px 18px; border-radius: 16px; -webkit-backdrop-filter: blur(7px) saturate(106%); backdrop-filter: blur(7px) saturate(106%); }

    .mt-hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: var(--hero-position-mobile, var(--hero-position, 50% 50%));
        transform: translateX(var(--hero-mobile-offset-x, 0vw));
        box-shadow: none;
    }
    .mt-hero-shade { background: transparent; }
    .mt-hero-center { width: calc(100% - 24px); align-items: flex-end; padding-bottom: 96px; }
    .mt-hero-glass {
        width: calc(100% - 58px);
        padding: 14px 10px 10px;
        border-color: rgba(255, 255, 255, .22);
        border-radius: 14px;
        background: linear-gradient(145deg, rgba(20, 33, 61, .2), rgba(0, 0, 0, .07));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 12px 30px rgba(0, 0, 0, .16);
        -webkit-backdrop-filter: blur(5px) saturate(106%);
        backdrop-filter: blur(5px) saturate(106%);
    }
    .mt-hero-glass > .mt-label { font-size: 7px; }
    .mt-hero-center h1 { margin-top: 5px; font-size: clamp(26px, 7.4vw, 32px); }
    .mt-hero-center p { display: none; }
    .mt-actions { flex-direction: column; gap: 0; margin-top: 8px; }
    .mt-actions .mt-button { width: 100%; min-height: 39px; padding: 8px 13px; flex-basis: auto; font-size: 10px; }
    .mt-hero-glass .mt-button-glass { display: none; }
    .mt-form-sticker {
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        width: calc(100% - 24px);
        min-height: 68px;
        aspect-ratio: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        column-gap: 14px;
        padding: 12px 13px 12px 18px;
        border-width: 1px;
        border-radius: 12px;
        box-shadow: 0 10px 0 -6px var(--black), 0 16px 34px rgba(0, 0, 0, .3);
        text-align: left;
        transform: none;
    }
    .mt-form-sticker::before { inset: 5px; border-radius: 8px; opacity: .55; }
    .mt-form-sticker span { align-self: end; margin: 0; font-size: 8px; letter-spacing: .15em; }
    .mt-form-sticker strong { align-self: start; margin: 2px 0 0; font-size: 18px; }
    .mt-form-sticker small { grid-column: 2; grid-row: 1 / 3; align-self: stretch; display: flex; align-items: center; max-width: 112px; margin: 0; padding: 0 12px; border-radius: 8px; background: var(--blue); color: var(--white); font-size: 9px; line-height: 1.35; text-align: center; }
    .mt-form-sticker:hover { transform: translateY(-2px); box-shadow: 0 10px 0 -6px var(--black), 0 19px 38px rgba(0, 0, 0, .34); }
    .menu-open .mt-form-sticker { opacity: 0; pointer-events: none; transform: translateY(20px); }

    .mt-info-grid,
    .mt-service-grid,
    .mt-process-grid,
    .mt-team-grid,
    .mt-fleet-gallery,
    .mt-offer-grid,
    .mt-safety-list,
    .mt-about-values,
    .mt-owner-contacts,
    .mt-owner-details,
    .form-grid { grid-template-columns: 1fr; }
    .mt-info-card { min-height: 230px; }
    .mt-fleet-card-media { height: 270px; }
    .mt-fleet-gallery figcaption { min-height: 0; align-items: flex-start; flex-direction: column; gap: 5px; }
    .mt-fleet-gallery span { max-width: none; text-align: left; }
    .mt-priority-note { grid-template-columns: 1fr; gap: 18px; padding: 28px 24px; }
    .mt-service-card { min-height: 330px; }
    .mt-photo-stack { min-height: 480px; }
    .mt-photo-main { right: 25px; bottom: 45px; }
    .mt-photo-small { width: 45%; height: 34%; }
    .mt-location-card { width: 100%; margin-top: 75px; }
    .mt-location-copy { padding: 42px 24px; }
    .mt-map-demo { min-height: 380px; }
    .mt-map-car { left: 37%; min-width: 138px; }
    .review-slide { width: min(310px, calc(100vw - 54px)); flex-basis: min(310px, calc(100vw - 54px)); }
    .mt-contact-copy,
    .mt-contact-form,
    .mt-owner-copy { padding: 42px 24px; }
    .form-grid .full { grid-column: auto; }

    .mt-about-photo,
    .mt-about-photo img { min-height: 480px; height: 480px; }
    .mt-owner-photo,
    .mt-owner-photo img { min-height: 430px; }
    .mt-owner-contacts a { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
    .mt-owner-contacts a:last-child { border-bottom: 0; }
    .mt-faq-list summary { font-size: 16px; }
    .mt-faq-answer { padding-right: 5px; padding-left: 5px; }
    .mt-plain-hero h1 { font-size: clamp(44px, 13vw, 58px); }
    .mt-legal-hero h1 { width: 100%; font-size: clamp(38px, 10.5vw, 44px); }
    .mt-map-placeholder { min-height: 330px; }
    .mt-footer-main { grid-template-columns: 1fr; gap: 44px; padding-block: 62px; }
    .mt-footer-intro { grid-column: auto; }
    .mt-footer-column h2 { margin-bottom: 10px; }
    .mt-footer-bottom { padding-bottom: 92px; }
    .mt-footer-bottom-inner { min-height: 0; align-items: flex-start; flex-direction: column; gap: 15px; padding: 22px 0; }
    .mt-footer-top { right: 14px; bottom: 118px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .js .reveal,
    .js .motion-item { opacity: 1; transform: none; transition: none; }
    .mt-map-pulse { animation: none; }
    .mt-hero-slide { transition: none; transform: none; }
    .form-message.show,
    .mt-faq-list details[data-expanded="true"] .mt-faq-answer p,
    .mt-faq-list details[data-expanded="true"] .mt-faq-answer li { animation: none; }
    .mobile-menu,
    .mobile-menu-links > a,
    .mobile-menu-bottom { transition: none; }
}
