:root {
    color-scheme: dark;
    --bg: oklch(0.16 0.018 255);
    --bg-deep: oklch(0.12 0.014 255);
    --surface: oklch(0.205 0.018 255);
    --surface-high: oklch(0.245 0.02 255);
    --ink: oklch(0.96 0.006 255);
    --ink-soft: oklch(0.79 0.018 255);
    --muted: oklch(0.68 0.018 255);
    --line: oklch(0.34 0.018 255);
    --line-soft: color-mix(in oklch, var(--line) 62%, transparent);
    --brand: oklch(0.47 0.19 355);
    --brand-strong: oklch(0.39 0.17 355);
    --brand-bright: oklch(0.66 0.17 355);
    --brand-ink: oklch(0.985 0.008 355);
    --focus: oklch(0.77 0.15 355);
    --shadow-tint: 250 25% 5%;
    --radius-surface: 14px;
    --header-height: 88px;
    --shell: min(1320px, calc(100% - 48px));
    --font-display: "Avenir Next Condensed", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    --font-body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --z-sticky: 20;
    --z-float: 15;
    --z-menu: 30;
    --z-skip: 50;
}

:root[data-theme="light"] {
    color-scheme: light;
    --bg: oklch(0.975 0.004 255);
    --bg-deep: oklch(0.94 0.008 255);
    --surface: oklch(0.995 0.002 255);
    --surface-high: oklch(0.93 0.01 255);
    --ink: oklch(0.205 0.025 255);
    --ink-soft: oklch(0.37 0.025 255);
    --muted: oklch(0.44 0.02 255);
    --line: oklch(0.82 0.014 255);
    --line-soft: color-mix(in oklch, var(--line) 76%, transparent);
    --brand: oklch(0.43 0.19 355);
    --brand-strong: oklch(0.36 0.16 355);
    --brand-bright: oklch(0.54 0.18 355);
    --brand-ink: oklch(0.985 0.008 355);
    --focus: oklch(0.46 0.2 355);
    --shadow-tint: 250 28% 15%;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

main {
    overflow-x: clip;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

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

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

p,
h1,
h2,
h3 {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    line-height: 1.02;
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

::selection {
    background: var(--brand);
    color: var(--brand-ink);
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    z-index: var(--z-skip);
    left: 18px;
    top: 18px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-150%);
    transition: transform 180ms var(--ease-out);
}

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

.intro-wipe {
    display: none;
}

.scroll-progress {
    position: fixed;
    z-index: calc(var(--z-sticky) + 1);
    inset: var(--header-height) 0 auto;
    height: 2px;
    background: var(--brand-bright);
    transform: scaleX(0);
    transform-origin: left;
    pointer-events: none;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding-block: clamp(88px, 10vw, 150px);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: var(--z-sticky);
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition:
        background-color 280ms var(--ease-out),
        border-color 280ms var(--ease-out);
}

.site-header.is-scrolled {
    background: color-mix(in oklch, var(--bg) 90%, transparent);
    border-bottom-color: var(--line-soft);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 196px;
    gap: 11px;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    background: oklch(0.985 0.005 355);
}

.site-header .brand img {
    width: 60px;
    height: 60px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-family: var(--font-display);
    font-size: 1.03rem;
    letter-spacing: 0.04em;
}

.brand-copy span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.68rem;
    white-space: nowrap;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
    margin-left: auto;
}

.primary-nav a {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding-block: 10px;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.05vw, 1.08rem);
    font-weight: 650;
    white-space: nowrap;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 2px;
    height: 1px;
    background: var(--brand-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms var(--ease-out);
}

.primary-nav a:hover {
    color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.button {
    --magnet-x: 0px;
    --magnet-y: 0px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
    transition:
        transform 220ms var(--ease-out),
        background-color 220ms var(--ease-out),
        color 220ms var(--ease-out),
        box-shadow 220ms var(--ease-out);
}

.button:hover {
    transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 2px), 0);
}

.button:active {
    transform: translate3d(var(--magnet-x), calc(var(--magnet-y) + 1px), 0) scale(0.975);
}

.button-ripple {
    position: absolute;
    z-index: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.34);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    animation: button-ripple 520ms var(--ease-out) forwards;
}

.button--primary {
    background: var(--brand);
    color: var(--brand-ink);
    box-shadow: 0 6px 8px hsl(var(--shadow-tint) / 0.22);
}

.button--primary:hover {
    background: var(--brand-bright);
    color: oklch(0.16 0.025 355);
}

.button--secondary {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
}

.button--secondary:hover {
    border-color: var(--ink-soft);
    background: var(--surface);
}

.button--full {
    width: 100%;
}

.theme-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface-high);
    color: var(--ink);
    cursor: pointer;
    transition:
        transform 180ms var(--ease-out),
        border-color 180ms var(--ease-out),
        background-color 180ms var(--ease-out),
        color 180ms var(--ease-out);
}

.theme-toggle:hover {
    border-color: color-mix(in oklch, var(--brand) 56%, var(--line));
    background: var(--surface);
    color: var(--brand-bright);
    transform: translateY(-1px);
}

.theme-toggle:active {
    transform: scale(0.94);
}

.theme-toggle__icon {
    grid-area: 1 / 1;
    width: 19px;
    height: 19px;
    transition:
        opacity 180ms var(--ease-out),
        transform 240ms var(--ease-out);
}

.theme-toggle__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.theme-toggle__icon--sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle__icon--moon {
    opacity: 0;
    transform: rotate(-24deg) scale(0.72);
}

:root[data-theme="light"] .theme-toggle__icon--sun {
    opacity: 0;
    transform: rotate(90deg) scale(0.72);
}

:root[data-theme="light"] .theme-toggle__icon--moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    margin-block: 6px;
    background: currentColor;
    transition: transform 220ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
}

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

.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-height);
    background:
        radial-gradient(circle at 76% 38%, color-mix(in oklch, var(--brand) 14%, transparent), transparent 24%),
        linear-gradient(180deg, var(--bg-deep), var(--bg));
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 46vw;
    aspect-ratio: 1;
    right: -18vw;
    top: -18vw;
    border-radius: 50%;
    background: var(--brand);
    opacity: 0.08;
    filter: blur(1px);
    pointer-events: none;
}

.hero-grid {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
    align-items: center;
    gap: clamp(36px, 5vw, 84px);
    padding-block: clamp(32px, 5vw, 72px);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 610px;
}

.hero-kicker {
    margin-bottom: 20px;
    color: var(--brand-bright);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 13ch;
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 4.8vw, 4.5rem);
    letter-spacing: -0.04em;
}

.hero h1 span {
    display: block;
    transform-origin: left bottom;
}

.hero-summary {
    max-width: 49ch;
    margin-bottom: 32px;
    color: var(--ink-soft);
    font-size: clamp(1.02rem, 1.25vw, 1.18rem);
    line-height: 1.65;
}

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

.hero-visual {
    position: relative;
    z-index: 1;
    perspective: 1400px;
    transform-style: preserve-3d;
}

.hero-visual__frame {
    position: relative;
    border-radius: var(--radius-surface);
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 32px 70px hsl(var(--shadow-tint) / 0.42);
    transform:
        rotateX(var(--tilt-x, 0deg))
        rotateY(var(--tilt-y, 0deg))
        translateZ(0);
    transform-style: preserve-3d;
    transition: transform 380ms var(--ease-out);
}

.hero-visual__frame::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: -28% auto -28% -42%;
    width: 24%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.32), transparent);
    opacity: 0;
    transform: skewX(-16deg);
    pointer-events: none;
}

.hero-visual__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgb(255 255 255 / 0.15), transparent 28%, transparent 68%, rgb(255 255 255 / 0.05));
    pointer-events: none;
}

.hero-visual__frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hero-visual__plate {
    position: absolute;
    z-index: -1;
    width: 78%;
    height: 24%;
    left: 13%;
    bottom: -9%;
    border-radius: 50%;
    background: color-mix(in oklch, var(--brand) 36%, var(--bg-deep));
    filter: blur(40px);
    opacity: 0.55;
    transform: rotateX(74deg) translateZ(-80px);
}

.proof-rail {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-soft);
}

.proof-rail > div {
    min-width: 0;
    padding: 22px clamp(16px, 2vw, 28px);
    border-right: 1px solid var(--line-soft);
}

.proof-rail > div:last-child {
    border-right: 0;
}

.proof-rail strong,
.proof-rail span {
    display: block;
}

.proof-rail strong {
    font-family: var(--font-display);
    font-size: 1.12rem;
    letter-spacing: -0.01em;
}

.proof-rail span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
}

.client-proof {
    padding-block: clamp(56px, 6vw, 86px);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.section-heading {
    max-width: 820px;
    margin-bottom: clamp(38px, 5vw, 68px);
}

.section-heading--compact {
    max-width: 680px;
    margin-bottom: 34px;
}

.section-heading h2,
.about-statement h2,
.contact-intro h2 {
    margin-bottom: 20px;
    font-size: clamp(2.65rem, 5vw, 5rem);
    letter-spacing: -0.04em;
}

.section-heading--compact h2 {
    font-size: clamp(2.15rem, 3.6vw, 3.55rem);
}

.section-heading p,
.about-statement > p,
.contact-intro > p {
    max-width: 62ch;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(8px, 1vw, 14px);
}

.client-logos img {
    width: 100%;
    aspect-ratio: 2.3 / 1;
    object-fit: cover;
    border-radius: 8px;
    filter: saturate(0.72) contrast(1.05);
    transition:
        filter 240ms var(--ease-out),
        transform 240ms var(--ease-out);
}

.client-logos img:hover {
    filter: saturate(1) contrast(1);
    transform: translateY(-3px);
}

.fleet-story {
    position: relative;
    background: var(--bg-deep);
    overflow: hidden;
}

.fleet-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(54px, 8vw, 120px);
}

.fleet-copy h2 {
    max-width: 9ch;
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.4vw, 5.4rem);
    letter-spacing: -0.04em;
}

.fleet-copy > p {
    max-width: 54ch;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.fleet-points {
    margin-block: 42px 32px;
    border-top: 1px solid var(--line);
}

.fleet-points > div {
    display: grid;
    grid-template-columns: minmax(150px, 0.78fr) minmax(0, 1.22fr);
    gap: 24px;
    padding-block: 18px;
    border-bottom: 1px solid var(--line-soft);
}

.fleet-points strong {
    font-size: 0.9rem;
}

.fleet-points span {
    color: var(--muted);
    font-size: 0.88rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-bright);
    font-weight: 750;
}

.text-link span {
    transition: transform 220ms var(--ease-out);
}

.text-link:hover span {
    transform: translate(3px, -3px);
}

.fleet-stage {
    position: relative;
    min-height: 510px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    isolation: isolate;
}

.fleet-stage::before {
    content: "";
    position: absolute;
    inset: 8% 0 18%;
    z-index: -2;
    border-radius: var(--radius-surface);
    background:
        linear-gradient(145deg, color-mix(in oklch, var(--surface-high) 82%, transparent), var(--surface));
    transform: perspective(900px) rotateY(-9deg) rotateX(3deg);
    box-shadow: -18px 26px 54px hsl(var(--shadow-tint) / 0.28);
}

.fleet-stage__halo {
    position: absolute;
    z-index: -1;
    width: 56%;
    aspect-ratio: 1;
    right: 12%;
    border-radius: 50%;
    background: var(--brand);
    filter: blur(54px);
    opacity: 0.2;
}

.fleet-stage img {
    width: 112%;
    max-width: none;
    margin-left: -13%;
    filter: drop-shadow(0 30px 20px hsl(var(--shadow-tint) / 0.42));
    transform: perspective(1000px) rotateY(-6deg) translateZ(30px);
}

.fleet-stage p {
    align-self: flex-end;
    max-width: 35ch;
    margin: 30px 4% 0 0;
    color: var(--muted);
    font-size: 0.83rem;
}

.services {
    background: var(--bg);
}

.service-composition {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    grid-template-rows: repeat(2, minmax(310px, auto));
    grid-template-areas:
        "ac film"
        "ac care";
    gap: 18px;
}

.service-panel {
    --depth-x: 0deg;
    --depth-y: 0deg;
    --reveal-x: 0px;
    --reveal-y: 0px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-surface);
    background: var(--surface);
    transform:
        perspective(1000px)
        translate3d(var(--reveal-x), var(--reveal-y), 0)
        rotateX(var(--depth-x))
        rotateY(var(--depth-y));
    transform-style: preserve-3d;
    transition:
        transform 420ms var(--ease-out),
        opacity 520ms var(--ease-out),
        clip-path 720ms var(--ease-out);
}

.service-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-panel__content h3 {
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.service-panel__content p {
    max-width: 42ch;
    margin-bottom: 18px;
    color: var(--ink-soft);
}

.service-panel__content a {
    display: inline-flex;
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    color: var(--brand-bright);
    font-size: 0.88rem;
    font-weight: 750;
}

.service-panel--ac {
    grid-area: ac;
    min-height: 638px;
}

.service-panel--ac::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgb(9 11 15 / 0.88) 100%);
}

.service-panel--ac .service-panel__content {
    position: absolute;
    z-index: 1;
    inset: auto 36px 32px;
    color: oklch(0.97 0.006 255);
}

.service-panel--ac .service-panel__content p {
    color: oklch(0.8 0.018 255);
}

.service-panel--film {
    grid-area: film;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
}

.service-panel--film .service-panel__content,
.service-panel--care .service-panel__content {
    padding: clamp(26px, 3vw, 42px);
}

.service-panel--film img {
    min-height: 100%;
}

.service-panel--care {
    grid-area: care;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    background: color-mix(in oklch, var(--brand-strong) 78%, var(--surface));
    color: var(--brand-ink);
}

.service-panel--care .service-panel__content p {
    color: oklch(0.84 0.02 355);
}

.service-panel--care .service-panel__content a {
    color: var(--brand-ink);
}

.about {
    background: var(--bg-deep);
}

.about-statement {
    max-width: 930px;
    margin-bottom: clamp(54px, 8vw, 110px);
}

.about-statement h2 {
    max-width: 11ch;
}

.about-evidence {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr 1fr;
    border-top: 1px solid var(--line);
}

.about-evidence > div {
    padding: 30px clamp(18px, 2.7vw, 38px) 0;
    border-right: 1px solid var(--line-soft);
}

.about-evidence > div:first-child {
    padding-left: 0;
}

.about-evidence > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.about-evidence span,
.about-evidence strong {
    display: block;
}

.about-evidence span {
    margin-bottom: 18px;
    color: var(--brand-bright);
    font-size: 0.75rem;
    font-weight: 750;
}

.about-evidence strong {
    max-width: 18ch;
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.2vw, 2.15rem);
    line-height: 1.12;
}

.about-evidence p {
    max-width: 38ch;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.detail-gallery {
    padding-top: clamp(78px, 9vw, 130px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    grid-template-rows: repeat(2, minmax(230px, 1fr));
    gap: 18px;
}

.gallery-grid figure {
    position: relative;
    min-height: 260px;
    margin: 0;
    border-radius: var(--radius-surface);
    overflow: hidden;
    background: var(--surface);
}

.gallery-grid__large {
    grid-row: 1 / 3;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease-out);
}

.gallery-grid figure:hover img {
    transform: scale(1.025);
}

.gallery-grid figcaption {
    position: absolute;
    inset: auto 18px 18px;
    max-width: 40ch;
    padding: 10px 13px;
    border-radius: 8px;
    background: rgb(12 15 20 / 0.82);
    color: oklch(0.96 0.006 255);
    font-size: 0.78rem;
}

.contact {
    position: relative;
    padding-bottom: 72px;
    background:
        radial-gradient(circle at 15% 18%, color-mix(in oklch, var(--brand) 24%, transparent), transparent 26%),
        var(--bg-deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
    gap: clamp(54px, 8vw, 120px);
    align-items: start;
}

.contact-intro {
    position: sticky;
    top: calc(var(--header-height) + 42px);
}

.contact-intro h2 {
    max-width: 10ch;
}

.contact-directory {
    margin-top: 46px;
    border-top: 1px solid var(--line);
}

.contact-directory a {
    display: grid;
    grid-template-columns: minmax(100px, 0.66fr) minmax(150px, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding-block: 17px;
    border-bottom: 1px solid var(--line-soft);
    transition:
        color 200ms var(--ease-out),
        padding-left 200ms var(--ease-out);
}

.contact-directory a:hover {
    padding-left: 6px;
    color: var(--brand-bright);
}

.contact-directory span {
    color: var(--muted);
    font-size: 0.76rem;
}

.contact-directory strong {
    font-size: 0.86rem;
}

.contact-directory b {
    font-size: 0.82rem;
    white-space: nowrap;
}

.contact-form-wrap {
    border-radius: var(--radius-surface);
    background: var(--surface);
    box-shadow: 0 28px 54px hsl(var(--shadow-tint) / 0.24);
}

.service-form {
    padding: clamp(28px, 4.5vw, 58px);
}

.form-heading {
    margin-bottom: 36px;
}

.form-heading h3 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 3vw, 3rem);
}

.form-heading p {
    max-width: 48ch;
    margin: 0;
    color: var(--ink-soft);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.form-field label {
    font-size: 0.82rem;
    font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg);
    color: var(--ink);
    transition:
        border-color 180ms var(--ease-out),
        background-color 180ms var(--ease-out);
}

.form-field input,
.form-field select {
    min-height: 52px;
    padding: 0 14px;
}

.form-field textarea {
    min-height: 122px;
    padding: 13px 14px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--muted);
    opacity: 1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--focus);
    background: var(--surface-high);
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--focus) 24%, transparent);
}

.form-field [aria-invalid="true"] {
    border-color: oklch(0.63 0.2 28);
}

.field-error {
    min-height: 1.2em;
    color: oklch(0.76 0.15 30);
    font-size: 0.76rem;
}

.field-help {
    color: var(--muted);
    font-size: 0.75rem;
}

.form-status {
    min-height: 1.6em;
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.form-status a {
    color: var(--brand-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.service-form.is-shaking {
    animation: form-shake 320ms var(--ease-out);
}

.service-form .button.is-confirmed {
    animation: button-confirm 480ms var(--ease-out);
}

.contact-meta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    margin-top: clamp(58px, 7vw, 96px);
    padding-top: 25px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
}

.contact-meta span {
    text-align: center;
}

.contact-meta a:hover {
    color: var(--brand-bright);
}

.site-footer {
    padding-block: 72px 28px;
    background: var(--bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.65fr 1fr;
    gap: clamp(42px, 7vw, 100px);
}

.brand--footer {
    min-width: 0;
}

.footer-brand > p {
    max-width: 44ch;
    margin: 24px 0 0;
    color: var(--muted);
}

.footer-social {
    margin-top: 28px;
}

.footer-social__label {
    display: block;
    margin-bottom: 11px;
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-size: 0.84rem;
    font-weight: 700;
}

.footer-social__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink-soft);
    transition:
        transform 180ms var(--ease-out),
        border-color 180ms var(--ease-out),
        background-color 180ms var(--ease-out),
        color 180ms var(--ease-out);
}

.social-icon:hover {
    border-color: var(--brand);
    background: var(--brand);
    color: var(--brand-ink);
    transform: translateY(-2px);
}

.social-icon:active {
    transform: scale(0.94);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-links strong,
.footer-contact strong {
    margin-bottom: 7px;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: var(--muted);
    font-size: 0.85rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--brand-bright);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 64px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    color: var(--muted);
    font-size: 0.75rem;
}

.whatsapp-float {
    position: fixed;
    z-index: var(--z-float);
    inset-inline-end: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand);
    color: var(--brand-ink);
    box-shadow: 0 6px 8px hsl(var(--shadow-tint) / 0.28);
    transition:
        transform 200ms var(--ease-out),
        background-color 200ms var(--ease-out),
        box-shadow 200ms var(--ease-out);
}

.whatsapp-float:hover {
    background: var(--brand-bright);
    color: oklch(0.16 0.025 355);
    box-shadow: 0 8px 8px hsl(var(--shadow-tint) / 0.34);
    transform: translateY(-3px);
}

.whatsapp-float:active {
    transform: scale(0.94);
}

.whatsapp-float svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}

@media (prefers-reduced-transparency: reduce) {
    .site-header.is-scrolled {
        background: var(--bg);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@media (max-width: 1100px) {
    :root {
        --shell: min(100% - 36px, 980px);
    }

    .header-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
        gap: 28px;
    }

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

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

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

    .service-panel--film,
    .service-panel--care {
        grid-template-columns: 1fr;
    }

    .service-panel--film img,
    .service-panel--care img {
        height: 170px;
    }

    .service-panel--film img {
        order: -1;
    }
}

@media (max-width: 860px) {
    :root {
        --shell: min(100% - 32px, 720px);
    }

    body.menu-open {
        overflow: hidden;
        overscroll-behavior: none;
    }

    body.menu-open .site-header {
        z-index: calc(var(--z-menu) + 1);
        border-bottom-color: rgb(255 255 255 / 0.14);
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.menu-open .site-header .brand,
    body.menu-open .site-header .header-actions {
        position: relative;
        z-index: calc(var(--z-menu) + 1);
    }

    body.menu-open .site-header .brand-copy strong,
    body.menu-open .site-header .brand-copy span {
        color: oklch(0.97 0.006 255);
    }

    body.menu-open .site-header .theme-toggle,
    body.menu-open .site-header .language-switch,
    body.menu-open .site-header .menu-toggle {
        border-color: rgb(255 255 255 / 0.25);
        background: rgb(16 18 23 / 0.72);
        color: oklch(0.97 0.006 255);
    }

    .primary-nav {
        position: fixed;
        z-index: var(--z-menu);
        inset: 0;
        width: 100%;
        height: 100dvh;
        display: grid;
        align-content: center;
        gap: 0;
        margin: 0;
        padding:
            calc(var(--header-height) + clamp(36px, 8vh, 76px))
            max(24px, env(safe-area-inset-right))
            max(44px, env(safe-area-inset-bottom))
            max(24px, env(safe-area-inset-left));
        border: 0;
        border-radius: 0;
        background:
            radial-gradient(
                circle at 12% 88%,
                color-mix(in oklch, var(--brand) 30%, transparent) 0,
                transparent 36%
            ),
            oklch(0.11 0.018 255);
        box-shadow: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition:
            opacity 240ms var(--ease-out),
            transform 420ms var(--ease-out),
            visibility 420ms;
    }

    .primary-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .primary-nav a {
        width: 100%;
        min-height: clamp(86px, 15vh, 126px);
        justify-content: flex-start;
        padding: clamp(18px, 3vh, 28px) 0;
        border-bottom: 1px solid rgb(255 255 255 / 0.2);
        color: oklch(0.97 0.006 255);
        font-family: var(--font-display);
        font-size: clamp(2.7rem, 11.5vw, 5rem);
        font-weight: 700;
        line-height: 0.95;
        letter-spacing: -0.03em;
        white-space: normal;
    }

    .primary-nav a:last-child {
        border-bottom: 0;
    }

    .primary-nav a::after {
        inset: auto 0 0;
        height: 2px;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 100dvh;
        justify-content: flex-end;
    }

    .hero-grid {
        position: relative;
        width: 100%;
        min-height: 100dvh;
        display: flex;
        align-items: flex-end;
        padding: var(--header-height) 20px 76px;
    }

    .hero-copy {
        max-width: 600px;
        padding: 24px 0;
        color: oklch(0.97 0.006 255);
    }

    .hero-summary {
        max-width: 44ch;
        color: oklch(0.82 0.018 255);
    }

    .hero-visual {
        position: absolute;
        inset: 0;
    }

    .hero-visual__frame,
    .hero-visual__frame picture,
    .hero-visual__frame img {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .hero-visual__frame img {
        object-fit: cover;
        object-position: 68% center;
    }

    .hero-visual__frame::before {
        content: "";
        position: absolute;
        z-index: 1;
        inset: 0;
        background: linear-gradient(180deg, rgb(10 13 18 / 0.24) 22%, rgb(10 13 18 / 0.94) 86%);
        animation: none;
    }

    .hero-visual__frame::after,
    .hero-visual__plate {
        display: none;
    }

    .proof-rail {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        padding-inline: 20px;
        background: var(--bg-deep);
    }

    .proof-rail > div:nth-child(2) {
        border-right: 0;
    }

    .proof-rail > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line-soft);
    }

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

    .fleet-copy h2,
    .contact-intro h2 {
        max-width: 11ch;
    }

    .fleet-stage {
        min-height: 430px;
    }

    .about-evidence {
        grid-template-columns: 1fr;
        border-top: 0;
    }

    .about-evidence > div,
    .about-evidence > div:first-child,
    .about-evidence > div:last-child {
        padding: 28px 0;
        border-top: 1px solid var(--line);
        border-right: 0;
    }

    .contact-intro {
        position: static;
    }

    .contact-grid {
        gap: 60px;
    }

    .contact-meta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-meta span {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1.35fr 0.65fr;
    }

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

@media (max-width: 680px) {
    :root {
        --header-height: 80px;
        --shell: calc(100% - 32px);
    }

    .section {
        padding-block: 78px;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .site-header .brand img {
        width: 52px;
        height: 52px;
    }

    .brand-copy span {
        display: none;
    }

    .header-actions {
        gap: 4px;
    }

    .hero-grid {
        padding-inline: 16px;
    }

    .hero h1 {
        max-width: 9ch;
        font-size: clamp(3rem, 14vw, 4.6rem);
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-actions .button {
        padding-inline: 15px;
    }

    .client-logos {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
    }

    .client-logos img {
        flex: 0 0 54%;
        scroll-snap-align: start;
    }

    .fleet-points > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .fleet-stage {
        min-height: 320px;
    }

    .fleet-stage::before {
        inset: 6% 0 20%;
    }

    .fleet-stage img {
        width: 118%;
        margin-left: -12%;
    }

    .service-composition {
        display: flex;
        flex-direction: column;
    }

    .service-panel,
    .service-panel--ac {
        min-height: 0;
    }

    .service-panel--ac {
        height: 520px;
    }

    .service-panel--ac .service-panel__content {
        inset: auto 24px 24px;
    }

    .service-panel--film,
    .service-panel--care {
        display: flex;
        flex-direction: column;
    }

    .service-panel--film img,
    .service-panel--care img {
        order: -1;
        height: 220px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .gallery-grid__large {
        grid-row: auto;
    }

    .gallery-grid figure {
        min-height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-directory a {
        grid-template-columns: 1fr auto;
        gap: 4px 14px;
    }

    .contact-directory span {
        grid-column: 1 / -1;
    }

    .contact-form-wrap {
        margin-inline: -4px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        margin-top: 44px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .intro-wipe {
        position: fixed;
        z-index: 40;
        inset: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        pointer-events: none;
    }

    .intro-wipe span {
        background: var(--brand-strong);
        transform-origin: top;
        animation: intro-curtain 820ms var(--ease-out) forwards;
    }

    .intro-wipe span:nth-child(2) {
        background: var(--bg-deep);
        animation-delay: 70ms;
    }

    .intro-wipe span:nth-child(3) {
        animation-delay: 140ms;
    }

    @supports (animation-timeline: scroll()) {
        .scroll-progress {
            animation: page-progress linear both;
            animation-timeline: scroll(root);
        }
    }

    .hero::before {
        animation: ambient-orbit 10s var(--ease-out) infinite alternate;
    }

    .hero-kicker {
        animation: hero-item-in 640ms 250ms var(--ease-out) both;
    }

    .hero h1 span {
        animation: hero-line-in 820ms 300ms var(--ease-out) both;
    }

    .hero h1 span:nth-child(2) {
        animation-delay: 410ms;
    }

    .hero-summary {
        animation: hero-item-in 700ms 520ms var(--ease-out) both;
    }

    .hero-actions {
        animation: hero-item-in 700ms 620ms var(--ease-out) both;
    }

    .hero-visual {
        animation: hero-stage-in 980ms 260ms var(--ease-out) both;
    }

    .hero-visual__frame::before {
        animation: light-sweep 1100ms 940ms var(--ease-out) both;
    }

    .proof-rail > div {
        animation: proof-in 560ms calc(720ms + (var(--i) * 70ms)) var(--ease-out) both;
    }

    .motion-ready [data-reveal] {
        --reveal-x: 0px;
        --reveal-y: 20px;
        opacity: 0.9;
        transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
        transition:
            opacity 620ms var(--ease-out),
            transform 720ms var(--ease-out),
            filter 720ms var(--ease-out),
            clip-path 720ms var(--ease-out);
    }

    .motion-ready [data-reveal].is-revealed {
        --reveal-x: 0px;
        --reveal-y: 0px;
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: none;
    }

    .motion-ready [data-motion="slide-left"] {
        --reveal-x: 48px;
        --reveal-y: 0px;
    }

    .motion-ready [data-motion="slide-right"] {
        --reveal-x: -48px;
        --reveal-y: 0px;
    }

    .motion-ready [data-motion="depth-in"] {
        --reveal-y: 34px;
        filter: blur(3px);
    }

    .motion-ready [data-motion="text-in"] {
        --reveal-y: 26px;
        filter: blur(2px);
    }

    .motion-ready .service-panel[data-reveal] {
        transform:
            perspective(1000px)
            translate3d(var(--reveal-x), var(--reveal-y), 0)
            rotateX(var(--depth-x))
            rotateY(var(--depth-y));
    }

    .motion-ready [data-motion="clip-in"] {
        clip-path: inset(0 0 22% 0 round var(--radius-surface));
    }

    .motion-ready [data-motion="clip-in"].is-revealed {
        clip-path: inset(0 0 0 0 round var(--radius-surface));
    }

    .motion-ready .client-logos:not(.is-revealed) img {
        opacity: 0.5;
        transform: translateY(20px) rotateX(-10deg);
    }

    .motion-ready .client-logos.is-revealed img {
        animation: logo-in 580ms calc(var(--i) * 65ms) var(--ease-out) both;
    }

    .motion-ready .about-evidence:not(.is-revealed) > div {
        opacity: 0.55;
        transform: translateY(20px);
    }

    .motion-ready .about-evidence.is-revealed > div {
        animation: evidence-in 620ms calc(var(--i) * 90ms) var(--ease-out) both;
    }

    .motion-ready .gallery-grid:not(.is-revealed) figure {
        opacity: 0.55;
        transform: scale(0.965);
        clip-path: inset(0 0 14% 0 round var(--radius-surface));
    }

    .motion-ready .gallery-grid.is-revealed figure {
        animation: gallery-in 700ms calc(var(--i) * 90ms) var(--ease-out) both;
    }

    .fleet-stage img {
        animation: vehicle-breathe 7s var(--ease-out) infinite alternate;
    }

    @keyframes intro-curtain {
        0% {
            transform: scaleY(1);
        }

        100% {
            transform: scaleY(0);
        }
    }

    @keyframes page-progress {
        to {
            transform: scaleX(1);
        }
    }

    @keyframes ambient-orbit {
        from {
            transform: translate3d(0, 0, 0) scale(0.92);
            opacity: 0.06;
        }

        to {
            transform: translate3d(-9vw, 7vw, 0) scale(1.12);
            opacity: 0.12;
        }
    }

    @keyframes hero-line-in {
        from {
            opacity: 0.3;
            filter: blur(7px);
            transform: translate3d(0, 52%, 0) rotateX(-14deg);
        }

        to {
            opacity: 1;
            filter: blur(0);
            transform: translate3d(0, 0, 0) rotateX(0);
        }
    }

    @keyframes hero-item-in {
        from {
            opacity: 0.25;
            filter: blur(5px);
            transform: translate3d(0, 20px, 0);
        }

        to {
            opacity: 1;
            filter: blur(0);
            transform: translate3d(0, 0, 0);
        }
    }

    @keyframes hero-stage-in {
        from {
            opacity: 0.25;
            filter: blur(10px);
            transform: translate3d(44px, 12px, 0) scale(0.91) rotateY(-6deg);
        }

        to {
            opacity: 1;
            filter: blur(0);
            transform: translate3d(0, 0, 0) scale(1) rotateY(0);
        }
    }

    @keyframes light-sweep {
        0% {
            opacity: 0;
            transform: translateX(0) skewX(-16deg);
        }

        25% {
            opacity: 0.7;
        }

        100% {
            opacity: 0;
            transform: translateX(620%) skewX(-16deg);
        }
    }

    @keyframes proof-in {
        from {
            opacity: 0.2;
            transform: translateY(16px);
        }

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

    @keyframes logo-in {
        from {
            opacity: 0.45;
            transform: translateY(24px) rotateX(-12deg);
        }

        to {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }
    }

    @keyframes evidence-in {
        from {
            opacity: 0.45;
            transform: translateY(22px);
        }

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

    @keyframes gallery-in {
        from {
            opacity: 0.5;
            transform: scale(0.96);
            clip-path: inset(0 0 16% 0 round var(--radius-surface));
        }

        to {
            opacity: 1;
            transform: scale(1);
            clip-path: inset(0 0 0 0 round var(--radius-surface));
        }
    }

    @keyframes vehicle-breathe {
        from {
            transform: perspective(1000px) rotateY(-6deg) translate3d(0, 0, 30px);
        }

        to {
            transform: perspective(1000px) rotateY(-4deg) translate3d(6px, -5px, 34px);
        }
    }

    @keyframes button-ripple {
        to {
            opacity: 0;
            transform: translate(-50%, -50%) scale(18);
        }
    }

    @keyframes form-shake {
        0%,
        100% {
            transform: translateX(0);
        }

        30% {
            transform: translateX(-5px);
        }

        65% {
            transform: translateX(4px);
        }
    }

    @keyframes button-confirm {
        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(0.975);
            filter: saturate(1.25);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .intro-wipe,
    .scroll-progress {
        display: none;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Multi-page editorial system inspired by cinematic European campaign sites. */

.primary-nav a[aria-current="page"] {
    color: var(--ink);
}

.primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.page-home .site-header.is-scrolled {
    background: rgb(8 10 13 / 0.58);
    border-bottom-color: rgb(255 255 255 / 0.13);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.page-home .site-header .brand-copy strong,
.page-home .site-header .primary-nav a {
    color: oklch(0.97 0.006 255);
}

.page-home .site-header .brand-copy span {
    color: oklch(0.78 0.012 255);
}

.page-home .site-header .theme-toggle,
.page-home .site-header .menu-toggle {
    border-color: rgb(255 255 255 / 0.25);
    background: rgb(16 18 23 / 0.54);
}

.page-home .site-header .theme-toggle {
    color: oklch(0.97 0.006 255);
}

.page-home .site-header .theme-toggle:hover {
    border-color: rgb(255 255 255 / 0.48);
    background: rgb(30 34 42 / 0.82);
    color: oklch(0.8 0.14 355);
}

.page-home .site-header .menu-toggle {
    color: oklch(0.97 0.006 255);
}

.hero--cinematic {
    min-height: 100dvh;
    justify-content: flex-end;
    padding-top: 0;
    background: oklch(0.09 0.014 255);
    color: oklch(0.97 0.006 255);
    isolation: isolate;
}

.hero--cinematic::before {
    z-index: 1;
    inset: 0;
    width: auto;
    aspect-ratio: auto;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgb(5 7 10 / 0.76) 0%, rgb(5 7 10 / 0.42) 43%, transparent 72%),
        linear-gradient(180deg, rgb(5 7 10 / 0.3) 0%, transparent 34%, rgb(5 7 10 / 0.62) 100%);
    opacity: 1;
    filter: none;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-backdrop picture {
    display: contents;
}

.hero-backdrop img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: scale(1.045);
    filter: saturate(0.86) contrast(1.06);
}

.hero-stage {
    position: relative;
    z-index: 2;
    min-height: calc(100dvh - 100px);
    display: flex;
    align-items: center;
    padding-block: calc(var(--header-height) + 44px);
}

.hero--cinematic .hero-copy {
    max-width: 760px;
}

.hero--cinematic .hero-kicker {
    color: oklch(0.76 0.15 355);
}

.hero--cinematic h1 {
    max-width: 13ch;
    margin-bottom: 24px;
    font-size: clamp(4.6rem, 7.4vw, 7.3rem);
    font-weight: 620;
    line-height: 0.94;
}

.hero-line {
    display: block;
    overflow: hidden;
}

.hero-line > span {
    display: block;
    white-space: nowrap;
    transform-origin: left bottom;
}

.hero--cinematic .hero-summary {
    max-width: 47ch;
    color: oklch(0.88 0.012 255);
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    line-height: 1.6;
}

.hero-link {
    position: relative;
    display: inline-flex;
    width: max-content;
    align-items: center;
    min-height: 44px;
    padding-block: 8px;
    color: inherit;
    font-size: 0.93rem;
    font-weight: 700;
}

.hero-link::after {
    content: "";
    position: absolute;
    inset: auto 0 4px;
    height: 1px;
    background: currentColor;
    transform-origin: left;
    transition: transform 240ms var(--ease-out);
}

.hero-link:hover::after {
    transform: scaleX(0.42);
}

.hero--cinematic .proof-rail {
    z-index: 2;
    width: 100%;
    border-color: rgb(255 255 255 / 0.2);
    background: rgb(5 7 10 / 0.54);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero--cinematic .proof-rail > div {
    border-color: rgb(255 255 255 / 0.16);
}

.hero--cinematic .proof-rail span {
    color: oklch(0.73 0.012 255);
}

.home-contact-cta {
    background: var(--brand-strong);
    color: var(--brand-ink);
}

.home-contact-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(40px, 8vw, 120px);
}

.home-contact-cta h2 {
    max-width: 13ch;
    margin-bottom: 20px;
    font-size: clamp(3rem, 6vw, 6.4rem);
    letter-spacing: -0.045em;
}

.home-contact-cta p {
    max-width: 56ch;
    margin-bottom: 0;
    color: color-mix(in oklch, var(--brand-ink) 78%, transparent);
}

.home-contact-cta .button {
    background: var(--brand-ink);
    color: var(--brand-strong);
}

.page-hero {
    position: relative;
    min-height: clamp(620px, 68dvh, 760px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    background: oklch(0.09 0.014 255);
    color: oklch(0.97 0.006 255);
}

.page-hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgb(5 7 10 / 0.84) 0%, rgb(5 7 10 / 0.48) 46%, transparent 76%),
        linear-gradient(180deg, rgb(5 7 10 / 0.34), transparent 38%, rgb(5 7 10 / 0.64));
}

.page-hero__media {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
}

.page-hero__media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: scale(1.045);
    filter: saturate(0.8) contrast(1.08);
}

.page-hero--services .page-hero__media img {
    object-position: center;
}

.page-hero--contact .page-hero__media img {
    object-position: 63% center;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding-block: calc(var(--header-height) + 72px) clamp(72px, 11vh, 118px);
}

.page-hero .hero-kicker {
    color: oklch(0.76 0.15 355);
}

.page-hero h1 {
    max-width: 14ch;
    margin-bottom: 24px;
    font-size: clamp(4.35rem, 7.2vw, 7.1rem);
    font-weight: 620;
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.page-hero__content > p:not(.hero-kicker) {
    max-width: 52ch;
    margin-bottom: 26px;
    color: oklch(0.87 0.012 255);
    font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.service-index {
    background: var(--bg);
}

.service-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: clamp(48px, 7vw, 106px);
}

.service-feature + .service-duo,
.service-duo + .service-feature {
    margin-top: clamp(90px, 12vw, 170px);
}

.service-feature__media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-surface);
    background: var(--surface);
    box-shadow: 0 30px 70px hsl(var(--shadow-tint) / 0.34);
    transform:
        perspective(1100px)
        rotateX(var(--depth-x, 0deg))
        rotateY(var(--depth-y, 0deg));
    transition: transform 360ms var(--ease-out);
}

.service-feature__media img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.service-feature__copy h2,
.service-detail h2,
.service-boundary h2,
.company-contact h2 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 5.4vw, 5.8rem);
    letter-spacing: -0.045em;
}

.service-feature__copy > p,
.service-detail p,
.service-boundary p,
.company-contact p {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.service-facts {
    margin-block: 38px 30px;
    border-top: 1px solid var(--line);
}

.service-facts > div {
    display: grid;
    grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    padding-block: 17px;
    border-bottom: 1px solid var(--line-soft);
}

.service-facts strong {
    font-size: 0.9rem;
}

.service-facts span {
    color: var(--muted);
    font-size: 0.88rem;
}

.service-duo {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(20px, 3vw, 42px);
}

.service-detail {
    min-height: 660px;
    display: grid;
    grid-template-rows: minmax(300px, 1.05fr) auto;
    overflow: hidden;
    border-radius: var(--radius-surface);
    background: var(--surface);
    box-shadow: 0 22px 56px hsl(var(--shadow-tint) / 0.24);
    transform:
        perspective(1100px)
        rotateX(var(--depth-x, 0deg))
        rotateY(var(--depth-y, 0deg));
    transition: transform 360ms var(--ease-out);
}

.service-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail > div {
    padding: clamp(30px, 4vw, 54px);
}

.service-detail h2 {
    font-size: clamp(2.65rem, 4.3vw, 4.7rem);
}

.service-detail a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--brand-bright);
    font-weight: 750;
}

.service-detail--film {
    grid-template-rows: auto minmax(320px, 1.1fr);
    margin-top: clamp(56px, 7vw, 96px);
}

.service-feature--care {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.service-feature--care .service-feature__media img {
    min-height: 580px;
}

.care-list {
    display: grid;
    margin-block: 36px;
    border-top: 1px solid var(--line);
}

.care-list span {
    padding-block: 15px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink-soft);
    font-weight: 650;
}

.service-boundary {
    background: var(--bg-deep);
    text-align: center;
}

.service-boundary__inner {
    display: grid;
    justify-items: center;
}

.service-boundary h2 {
    max-width: 14ch;
}

.service-boundary p {
    max-width: 62ch;
}

.service-boundary .hero-link {
    margin-top: 20px;
    color: var(--brand-bright);
}

.contact--page {
    background: var(--bg);
}

.contact--page .contact-intro {
    top: calc(var(--header-height) + 38px);
}

.company-contact {
    background: var(--bg-deep);
}

.company-contact__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(54px, 9vw, 130px);
    align-items: start;
}

.company-contact h2 {
    max-width: 8ch;
}

.company-contact__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.company-contact__details > * {
    display: grid;
    align-content: start;
    min-height: 142px;
    padding: 24px;
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.company-contact__details > *:nth-child(2n) {
    border-right: 0;
}

.company-contact__details span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.company-contact__details strong {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.company-contact__details a:hover strong {
    color: var(--brand-bright);
}

@media (max-width: 980px) {
    .hero--cinematic::before,
    .page-hero::after {
        background:
            linear-gradient(180deg, rgb(5 7 10 / 0.3) 0%, rgb(5 7 10 / 0.2) 30%, rgb(5 7 10 / 0.84) 100%);
    }

    .hero-stage {
        min-height: calc(100dvh - 180px);
    }

    .page-hero__content {
        align-self: flex-end;
    }

    .hero-backdrop img {
        object-position: 62% center;
    }

    .service-feature,
    .service-feature--care,
    .company-contact__grid {
        grid-template-columns: 1fr;
    }

    .service-feature--care .service-feature__media {
        order: -1;
    }

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

    .home-contact-cta__inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .home-contact-cta__inner .button {
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .hero-stage {
        min-height: 780px;
        padding-block: calc(var(--header-height) + 64px);
    }

    .hero--cinematic h1,
    .page-hero h1 {
        max-width: 10ch;
        font-size: clamp(3.45rem, 16vw, 5rem);
    }

    .hero-line > span {
        white-space: normal;
    }

    .hero--cinematic .hero-summary {
        max-width: 34ch;
    }

    .hero--cinematic .hero-actions {
        display: flex;
        grid-template-columns: none;
        align-items: center;
        gap: 20px;
    }

    .hero--cinematic .proof-rail {
        padding-inline: 16px;
    }

    .page-hero {
        min-height: 700px;
    }

    .page-hero__content {
        padding-block: calc(var(--header-height) + 70px) 76px;
    }

    .page-hero--services .page-hero__media img {
        object-position: 58% center;
    }

    .page-hero--contact .page-hero__media img {
        object-position: 68% center;
    }

    .service-feature__media img,
    .service-feature--care .service-feature__media img {
        min-height: 340px;
    }

    .service-facts > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

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

    .service-detail {
        min-height: 0;
    }

    .service-detail--film {
        margin-top: 0;
    }

    .service-detail img {
        min-height: 260px;
    }

    .service-feature + .service-duo,
    .service-duo + .service-feature {
        margin-top: 84px;
    }

    .company-contact__details {
        grid-template-columns: 1fr;
    }

    .company-contact__details > *,
    .company-contact__details > *:nth-child(2n) {
        min-height: 0;
        padding: 22px 0;
        border-right: 0;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .page-home .hero::before {
        animation: none;
    }

    .hero--cinematic .hero-kicker,
    .hero--cinematic .hero-summary,
    .hero--cinematic .hero-actions {
        animation-name: cinematic-item-in;
    }

    .hero--cinematic h1 span {
        animation: none;
    }

    .hero--cinematic .hero-line > span,
    .page-hero .hero-line > span {
        animation: cinematic-line-in 980ms 260ms var(--ease-out) both;
    }

    .hero--cinematic .hero-line:nth-child(2) > span,
    .page-hero .hero-line:nth-child(2) > span {
        animation-delay: 390ms;
    }

    .hero-backdrop img,
    .page-hero__media img {
        animation: cinematic-drift 14s var(--ease-out) both;
    }

    .page-hero .hero-kicker {
        animation: cinematic-item-in 640ms 220ms var(--ease-out) both;
    }

    .page-hero__content > p:not(.hero-kicker),
    .page-hero__content > .hero-link {
        animation: cinematic-item-in 700ms 560ms var(--ease-out) both;
    }

    @keyframes cinematic-line-in {
        from {
            opacity: 0.25;
            filter: blur(6px);
            transform: translate3d(0, 108%, 0) rotate(1.5deg);
        }

        to {
            opacity: 1;
            filter: blur(0);
            transform: translate3d(0, 0, 0) rotate(0);
        }
    }

    @keyframes cinematic-item-in {
        from {
            opacity: 0;
            filter: blur(4px);
            transform: translate3d(0, 18px, 0);
        }

        to {
            opacity: 1;
            filter: blur(0);
            transform: translate3d(0, 0, 0);
        }
    }

    @keyframes cinematic-drift {
        from {
            transform: scale(1.1) translate3d(-1.2%, 0.8%, 0);
        }

        to {
            transform: scale(1.045) translate3d(0, 0, 0);
        }
    }
}

@media (prefers-reduced-transparency: reduce) {
    .page-home .site-header.is-scrolled,
    .hero--cinematic .proof-rail {
        background: oklch(0.12 0.014 255);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Diversified BAATCO service system */
.section-kicker {
    margin-bottom: 14px;
    color: var(--brand-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.client-logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.client-logos img {
    aspect-ratio: 2.28 / 1;
    border: 1px solid var(--line-soft);
    background: #fff;
    object-fit: cover;
}

.client-logos:not(.is-expanded) img:nth-child(n + 11) {
    display: none;
}

.client-disclosure {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.client-toggle {
    min-width: 190px;
}

.division-atlas {
    position: relative;
    overflow: hidden;
    background: var(--bg-deep);
}

.division-atlas::before {
    content: "";
    position: absolute;
    width: 45vw;
    aspect-ratio: 1;
    top: 10%;
    right: -24vw;
    border-radius: 50%;
    background: var(--brand);
    filter: blur(110px);
    opacity: 0.1;
    pointer-events: none;
}

.division-atlas__heading {
    max-width: 900px;
}

.division-clusters {
    display: grid;
    grid-template-columns: 1.06fr 0.92fr 1.02fr;
    align-items: stretch;
    gap: 16px;
}

.division-cluster {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 3.4vw, 48px);
    border: 1px solid var(--line);
    border-radius: var(--radius-surface);
    background:
        linear-gradient(155deg, color-mix(in oklch, var(--surface-high) 90%, transparent), var(--surface));
    box-shadow: 0 28px 64px hsl(var(--shadow-tint) / 0.22);
}

.division-cluster--maroon {
    margin-top: 56px;
    border-color: transparent;
    background:
        linear-gradient(155deg, color-mix(in oklch, var(--brand-strong) 88%, black), var(--brand-strong));
    color: var(--brand-ink);
}

.division-cluster__number {
    color: var(--brand-bright);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.4rem);
}

.division-cluster--maroon .division-cluster__number,
.division-cluster--maroon > p {
    color: color-mix(in oklch, var(--brand-ink) 74%, transparent);
}

.division-cluster > p {
    margin: 48px 0 12px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.division-cluster h3 {
    max-width: 13ch;
    margin-bottom: 42px;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.division-cluster ul {
    display: grid;
    gap: 0;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.division-cluster li {
    border-top: 1px solid currentColor;
    border-color: color-mix(in oklch, currentColor 16%, transparent);
}

.division-cluster a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 700;
}

.division-cluster a::after {
    content: "↗";
    color: var(--brand-bright);
    transition: transform 220ms var(--ease-out);
}

.division-cluster--maroon a::after {
    color: inherit;
}

.division-cluster a:hover::after {
    transform: translate(3px, -3px);
}

.division-atlas__cta {
    margin-top: 42px;
}

.division-catalog {
    background: var(--bg);
}

.division-catalog__intro {
    max-width: 850px;
    margin-bottom: clamp(54px, 8vw, 100px);
}

.division-catalog__intro h2 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 6vw, 6.1rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.division-catalog__intro > p:last-child {
    max-width: 64ch;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.division-catalog__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.division-card {
    scroll-margin-top: calc(var(--header-height) + 24px);
    grid-column: span 5;
    min-height: 400px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-content: space-between;
    gap: 32px;
    padding: clamp(28px, 3.5vw, 50px);
    border: 1px solid var(--line);
    border-radius: var(--radius-surface);
    background: var(--surface);
    box-shadow: 0 24px 54px hsl(var(--shadow-tint) / 0.16);
}

.division-card:nth-child(4n + 1),
.division-card:nth-child(4n) {
    grid-column: span 7;
}

.division-card--maroon {
    border-color: transparent;
    background: var(--brand-strong);
    color: var(--brand-ink);
}

.division-card__number {
    color: var(--brand-bright);
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.division-card--maroon .division-card__number,
.division-card--maroon .division-card__category {
    color: color-mix(in oklch, var(--brand-ink) 72%, transparent);
}

.division-card__category {
    margin-bottom: 15px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.division-card h3 {
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.division-card p:not(.division-card__category) {
    max-width: 54ch;
    color: var(--ink-soft);
}

.division-card--maroon p:not(.division-card__category) {
    color: color-mix(in oklch, var(--brand-ink) 80%, transparent);
}

.division-card ul {
    display: grid;
    gap: 8px;
    margin: 24px 0 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.division-card li {
    position: relative;
    padding-left: 18px;
}

.division-card li::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    top: 0.72em;
    left: 0;
    border-radius: 50%;
    background: var(--brand-bright);
}

.division-card--maroon li {
    color: color-mix(in oklch, var(--brand-ink) 74%, transparent);
}

.division-card .text-link {
    margin-top: 26px;
}

.vehicle-care-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    align-items: end;
    gap: clamp(40px, 8vw, 110px);
    margin-top: clamp(80px, 12vw, 150px);
    padding: clamp(34px, 5vw, 70px);
    border-radius: var(--radius-surface);
    background: var(--surface-high);
}

.vehicle-care-note h2 {
    max-width: 14ch;
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.vehicle-care-note > div:last-child > p {
    color: var(--ink-soft);
}

.contact-service-strip {
    border-block: 1px solid var(--line-soft);
    background: var(--bg-deep);
}

.contact-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-service-list span {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.footer-grid {
    grid-template-columns: 1.35fr 0.55fr 0.85fr 1fr;
    gap: clamp(30px, 4vw, 70px);
}

.footer-services {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-services strong {
    margin-bottom: 7px;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.footer-services a {
    color: var(--muted);
    font-size: 0.82rem;
}

.footer-services a:hover {
    color: var(--brand-bright);
}

@media (max-width: 1100px) {
    .client-logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .client-logos:not(.is-expanded) img:nth-child(n + 9) {
        display: none;
    }

    .division-clusters {
        grid-template-columns: 1fr 1fr;
    }

    .division-cluster:last-child {
        grid-column: 1 / -1;
        min-height: 420px;
    }

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

    .footer-services {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .footer-services strong {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .client-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .client-logos:not(.is-expanded) img:nth-child(n + 7) {
        display: none;
    }

    .division-clusters {
        grid-template-columns: 1fr;
    }

    .division-cluster,
    .division-cluster--maroon,
    .division-cluster:last-child {
        grid-column: auto;
        min-height: 440px;
        margin-top: 0;
    }

    .division-card,
    .division-card:nth-child(4n + 1),
    .division-card:nth-child(4n) {
        grid-column: 1 / -1;
    }

    .vehicle-care-note {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-services {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .client-logos {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        padding-bottom: 0;
    }

    .client-logos img {
        width: 100%;
        flex: none;
    }

    .client-logos:not(.is-expanded) img:nth-child(n + 5) {
        display: none;
    }

    .division-cluster {
        min-height: 410px;
        padding: 28px;
    }

    .division-cluster > p {
        margin-top: 34px;
    }

    .division-card {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 28px;
    }

    .division-card h3 {
        font-size: clamp(2.25rem, 12vw, 3.3rem);
    }

    .vehicle-care-note {
        padding: 28px;
    }

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

    .contact-service-list span {
        border-radius: 12px;
    }

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

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

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

    .footer-bottom {
        padding-inline-end: 72px;
    }

    .whatsapp-float {
        inset-inline-end: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 54px;
        height: 54px;
    }

    .whatsapp-float svg {
        width: 27px;
        height: 27px;
    }
}

/* Arabic localization and language control */
.language-switch {
    min-width: 48px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1;
    transition:
        border-color 220ms var(--ease-out),
        background-color 220ms var(--ease-out),
        color 220ms var(--ease-out);
}

.language-switch:hover {
    border-color: var(--ink-soft);
    background: var(--surface);
    color: var(--ink);
}

.page-home .site-header .language-switch {
    border-color: rgb(255 255 255 / 0.25);
    background: rgb(16 18 23 / 0.54);
    color: oklch(0.97 0.006 255);
}

.page-home .site-header .language-switch:hover {
    border-color: rgb(255 255 255 / 0.48);
    background: rgb(30 34 42 / 0.82);
}

html[lang="ar"] {
    --font-display: "Geeza Pro", "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
    --font-body: "Geeza Pro", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

[dir="rtl"] body {
    text-align: right;
}

[dir="rtl"] .primary-nav {
    margin-right: auto;
    margin-left: 0;
}

[dir="rtl"] .hero-line > span {
    transform-origin: right bottom;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] .brand-copy strong {
    letter-spacing: 0;
}

[dir="rtl"] .hero--cinematic h1,
[dir="rtl"] .page-hero h1 {
    line-height: 1.08;
}

[dir="rtl"] .division-card li {
    padding-right: 18px;
    padding-left: 0;
}

[dir="rtl"] .division-card li::before {
    right: 0;
    left: auto;
}

[dir="rtl"] .contact-directory b,
[dir="rtl"] [dir="ltr"] {
    unicode-bidi: isolate;
}

[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea {
    text-align: right;
}

[dir="rtl"] input[dir="ltr"] {
    text-align: left;
}

@media (max-width: 1100px) {
    .language-switch {
        min-width: 46px;
        padding-inline: 10px;
    }
}

@media (max-width: 680px) {
    .language-switch {
        min-width: 42px;
        min-height: 44px;
        padding-inline: 8px;
        font-size: 0.8rem;
    }

    [dir="rtl"] .hero--cinematic h1,
    [dir="rtl"] .page-hero h1 {
        max-width: 11ch;
        font-size: clamp(3.1rem, 13.5vw, 4.4rem);
    }
}

/* Responsive navigation reliability */
@media (max-width: 860px) {
    .page-home .site-header .primary-nav {
        background:
            radial-gradient(
                circle at 12% 88%,
                color-mix(in oklch, var(--brand) 30%, transparent) 0,
                transparent 36%
            ),
            oklch(0.11 0.018 255);
        box-shadow: none;
    }

    .page-home .site-header .primary-nav a {
        border-bottom-color: rgb(255 255 255 / 0.2);
        color: oklch(0.97 0.006 255);
    }

    [dir="rtl"] .primary-nav {
        margin: 0;
    }
}

@media (max-width: 860px) and (max-height: 540px) {
    .primary-nav {
        align-content: start;
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 24px;
    }

    .primary-nav a {
        min-height: 70px;
        padding-block: 14px;
        font-size: clamp(2.2rem, 8vw, 3.4rem);
    }
}

@media (max-width: 360px) {
    .site-header .brand-copy {
        display: none;
    }
}
