:root {
    --ink: #090909;
    --ink-soft: #151515;
    --paper: #f0eee6;
    --paper-bright: #f9f8f3;
    --signal: #fff200;
    --white: #fff;
    --line-dark: rgba(9, 9, 9, .16);
    --line-light: rgba(255, 255, 255, .18);
    --muted: #77776f;
    --header-h: 82px;
    --shell: min(1480px, calc(100vw - 48px));
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-snap: cubic-bezier(.77, 0, .18, 1);
    --font-display: "Sora", "Arial Black", sans-serif;
    --font-body: "Manrope", Arial, sans-serif;
    --font-mono: "DM Mono", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

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

body.menu-open {
    overflow: hidden;
}

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

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

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

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

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    background: var(--signal);
    color: var(--ink);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

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

.scroll-meter {
    position: fixed;
    inset: 0 0 auto;
    z-index: 999;
    height: 3px;
    background: transparent;
    pointer-events: none;
}

.scroll-meter span {
    display: block;
    width: var(--scroll-progress, 0%);
    height: 100%;
    background: var(--signal);
    box-shadow: 0 0 18px rgba(255, 242, 0, .7);
}

.site-shell {
    position: absolute;
    inset: 0 0 auto;
    z-index: 100;
    color: var(--white);
}

.utility-bar {
    width: var(--shell);
    height: 38px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.utility-bar p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: rgba(255, 255, 255, .7);
}

.utility-bar strong {
    color: var(--white);
    font-weight: 500;
}

.utility-bar a {
    transition: color .2s ease;
}

.utility-bar a:hover {
    color: var(--signal);
}

.status-dot,
.console-live i {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background: #72ff8e;
    box-shadow: 0 0 0 4px rgba(114, 255, 142, .12);
    animation: statusPulse 2.2s ease-in-out infinite;
}

@keyframes statusPulse {
    50% { opacity: .45; box-shadow: 0 0 0 7px rgba(114, 255, 142, 0); }
}

.site-header {
    width: var(--shell);
    height: var(--header-h);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(24px, 4vw, 72px);
    border-bottom: 1px solid rgba(255, 255, 255, .24);
    transition: background .35s ease, width .35s var(--ease-out), padding .35s var(--ease-out), transform .35s var(--ease-out);
}

.site-header.is-stuck {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    height: 70px;
    padding: 0 max(24px, calc((100vw - 1480px) / 2));
    background: rgba(9, 9, 9, .86);
    border-color: rgba(255, 255, 255, .12);
    backdrop-filter: blur(22px) saturate(1.3);
    transform: translateX(-50%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: max-content;
}

.brand-mark {
    position: relative;
    width: 31px;
    height: 31px;
    display: block;
    background: var(--signal);
    overflow: hidden;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
    content: "";
    position: absolute;
    display: block;
    background: var(--ink);
    transform: skewX(-18deg);
}

.brand-mark::before {
    width: 6px;
    height: 23px;
    left: 7px;
    top: 4px;
}

.brand-mark::after {
    width: 6px;
    height: 23px;
    left: 18px;
    top: 4px;
}

.brand-mark i:first-child {
    width: 17px;
    height: 5px;
    left: 7px;
    top: 4px;
}

.brand-mark i:last-child {
    width: 17px;
    height: 5px;
    left: 7px;
    bottom: 4px;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1;
}

.brand-name span {
    color: var(--signal);
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 2.8vw, 44px);
}

.desktop-nav a {
    position: relative;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 700;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease-out);
}

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

.button {
    position: relative;
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid transparent;
    background: none;
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    overflow: hidden;
    transition: transform .35s var(--ease-out), background .25s ease, color .25s ease, border-color .25s ease;
}

.button span {
    font-size: 17px;
    transition: transform .35s var(--ease-out);
}

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

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

.button--signal {
    background: var(--signal);
    color: var(--ink);
}

.button--signal:hover {
    background: var(--white);
}

.button--ink {
    background: var(--ink);
    color: var(--white);
}

.button--ink:hover {
    background: #252525;
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .48);
    backdrop-filter: blur(10px);
}

.button--ghost:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

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

.header-cta {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .4);
}

.header-cta:hover {
    background: var(--signal);
    color: var(--ink);
    border-color: var(--signal);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.menu-toggle i {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform .3s ease;
}

.menu-toggle i:last-child {
    transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-child {
    transform: rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 120px 24px 36px;
    display: grid;
    align-content: center;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-24px);
    transition: opacity .35s ease, visibility .35s ease, transform .5s var(--ease-out);
}

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

.mobile-nav nav {
    border-top: 1px solid var(--line-light);
}

.mobile-nav nav a {
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--font-display);
    font-size: clamp(24px, 8vw, 38px);
    font-weight: 700;
    letter-spacing: -.05em;
}

.mobile-nav nav span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--signal);
}

.mobile-nav > p {
    max-width: 430px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .55);
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
}

/* Hero */
.hero {
    position: relative;
    height: max(780px, 100svh);
    min-height: 780px;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
    isolation: isolate;
}

.hero::after {
    content: none;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: var(--ink);
    transition: opacity .85s ease, visibility .85s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .83) 39%, rgba(5, 5, 5, .24) 70%, rgba(5, 5, 5, .48) 100%);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 45%, rgba(0, 0, 0, .82));
}

.hero-slide--light::before {
    background: linear-gradient(90deg, rgba(239, 237, 229, .98) 0%, rgba(239, 237, 229, .92) 43%, rgba(239, 237, 229, .12) 72%);
    filter: saturate(.65) contrast(1.05);
}

.hero-slide--light::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), transparent 42%, rgba(0, 0, 0, .66));
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-slide.is-active::before {
    transform: none;
}

.hero-slide__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    filter: saturate(.82) contrast(1.06);
    transition: transform 7s ease-out, filter 1s ease;
    pointer-events: none;
}

.hero-slide.is-active .hero-slide__visual { transform: scale(1); }

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: .16;
    background-image: linear-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .11) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.hero-slide--light {
    color: var(--ink);
}

.hero-slide--light .hero-grid {
    background-image: linear-gradient(rgba(0, 0, 0, .13) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .13) 1px, transparent 1px);
}

.hero-content {
    position: relative;
    z-index: 5;
    width: var(--shell);
    height: 100%;
    margin: 0 auto;
    padding: clamp(190px, 22vh, 250px) 0 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .7);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow > span {
    padding: 6px 8px;
    background: var(--signal);
    color: var(--ink);
}

.eyebrow--dark {
    color: rgba(9, 9, 9, .56);
}

.eyebrow--signal {
    color: rgba(9, 9, 9, .62);
}

.eyebrow--signal > span {
    background: var(--ink);
    color: var(--signal);
}

.hero-slide--light .eyebrow {
    color: rgba(9, 9, 9, .62);
}

.hero-content .hero-title,
.section-heading h2,
.journey-heading h2,
.coverage-copy h2,
.quote-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(54px, 6.6vw, 108px);
    font-weight: 700;
    letter-spacing: -.075em;
    line-height: .92;
}

.hero-content .hero-title {
    max-width: 1020px;
}

.hero-content .hero-title em,
.section-heading h2 em,
.journey-heading h2 em,
.coverage-copy h2 em,
.quote-copy h2 em {
    color: var(--signal);
    font-style: normal;
}

.hero-slide--light .hero-content .hero-title em {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--signal);
    text-decoration-thickness: .12em;
    text-underline-offset: .08em;
}

.hero-copy {
    max-width: 630px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.65;
}

.hero-slide--light .hero-copy {
    color: rgba(9, 9, 9, .72);
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 34px;
}

.hero-slide--light .button--ghost {
    color: var(--ink);
    border-color: rgba(9, 9, 9, .42);
}

.hero-slide--light .button--ghost:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.hero-content > * {
    opacity: 0;
    transform: translateY(34px);
}

.hero-slide.is-active .hero-content > * {
    animation: heroReveal .85s var(--ease-out) forwards;
}

.hero-slide.is-active .hero-content > :nth-child(2) { animation-delay: .08s; }
.hero-slide.is-active .hero-content > :nth-child(3) { animation-delay: .16s; }
.hero-slide.is-active .hero-content > :nth-child(4) { animation-delay: .24s; }

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

.hero-tag {
    position: absolute;
    right: max(24px, calc((100vw - 1480px) / 2));
    top: 154px;
    z-index: 6;
    width: 250px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(9, 9, 9, .2);
    backdrop-filter: blur(18px);
    color: var(--white);
    opacity: 0;
    transform: translateX(20px);
}

.hero-slide.is-active .hero-tag {
    animation: tagReveal .7s var(--ease-out) .55s forwards;
}

@keyframes tagReveal {
    to { opacity: 1; transform: translateX(0); }
}

.hero-tag span,
.hero-tag strong {
    display: block;
}

.hero-tag span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .58);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-tag strong {
    font-size: 12px;
}

.hero-console {
    position: absolute;
    right: max(24px, calc((100vw - 1480px) / 2));
    bottom: 126px;
    z-index: 25;
    width: min(340px, 27vw);
    background: rgba(9, 9, 9, .8);
    border: 1px solid rgba(255, 255, 255, .28);
    color: var(--white);
    backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.hero-console__head,
.hero-console__foot {
    min-height: 38px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

.hero-console__head {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.console-live {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #72ff8e;
}

.console-live i {
    width: 5px;
    height: 5px;
}

.hero-console__body {
    padding: 8px 14px;
}

.hero-console__body > div {
    padding: 9px 0;
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.hero-console__body > div:last-child {
    border: 0;
}

.hero-console__body > div > span,
.hero-console__body em {
    font-family: var(--font-mono);
    font-size: 10px;
    font-style: normal;
    color: var(--signal);
}

.hero-console__body p {
    margin: 0;
    line-height: 1.25;
}

.hero-console__body strong,
.hero-console__body small {
    display: block;
}

.hero-console__body strong {
    font-size: 11px;
}

.hero-console__body small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .5);
    font-family: var(--font-mono);
    font-size: 10px;
}

.hero-console__foot {
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .54);
}

.hero-console__foot i {
    position: relative;
    flex: 1;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, .13);
}

.hero-console__foot i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--signal);
    transform: translateX(-100%);
    animation: consoleScan 2.8s ease-in-out infinite;
}

@keyframes consoleScan {
    60%, 100% { transform: translateX(100%); }
}

.hero-controls {
    position: absolute;
    left: max(24px, calc((100vw - 1480px) / 2));
    bottom: 108px;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 10px;
}

.round-control,
.fleet-nav button {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    background: rgba(9, 9, 9, .24);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease-out);
}

.round-control:hover,
.fleet-nav button:hover {
    background: var(--signal);
    color: var(--ink);
    border-color: var(--signal);
    transform: scale(1.07);
}

.hero-tabs {
    height: 45px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .38);
    background: rgba(9, 9, 9, .24);
    backdrop-filter: blur(10px);
}

.hero-tab {
    width: 42px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, .58);
    cursor: pointer;
}

.hero-tab span {
    font-family: var(--font-mono);
    font-size: 10px;
}

.hero-tab i {
    position: relative;
    flex: 1;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, .25);
}

.hero-tab i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left;
}

.hero-tab.is-active {
    color: var(--white);
}

.hero-tab.is-active i::after {
    transform: scaleX(1);
}

@keyframes tabProgress {
    to { transform: scaleX(1); }
}

.hero-facts {
    position: absolute;
    inset: auto 0 0;
    z-index: 30;
    min-height: 92px;
    padding: 0 max(24px, calc((100vw - 1480px) / 2));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .22);
    background: rgba(9, 9, 9, .62);
    color: var(--white);
    backdrop-filter: blur(16px);
}

.hero-facts > div {
    padding: 19px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.hero-facts > div:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.hero-facts span {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .48);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

.hero-facts strong {
    font-size: 13px;
}

.signal-strip {
    height: 46px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--signal);
    color: var(--ink);
}

.signal-strip__track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 26px;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

.signal-strip span {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.signal-strip i {
    font-style: normal;
}

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

/* Shared sections */
.section {
    position: relative;
    padding: clamp(92px, 10vw, 160px) max(24px, calc((100vw - 1480px) / 2));
    overflow: hidden;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .34;
    pointer-events: none;
    background-image: radial-gradient(rgba(9, 9, 9, .12) .7px, transparent .7px);
    background-size: 9px 9px;
    mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

.section > * {
    position: relative;
    z-index: 1;
}

.section--dark,
.section--ink {
    background: var(--ink);
    color: var(--white);
}

.section--dark::before,
.section--ink::before {
    background-image: radial-gradient(rgba(255, 255, 255, .12) .7px, transparent .7px);
}

.section--ink {
    background: #121212;
}

.section--signal {
    background: var(--signal);
    color: var(--ink);
}

.section-index {
    position: absolute;
    right: max(24px, calc((100vw - 1480px) / 2));
    top: 28px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    opacity: .48;
}

.section-heading--split {
    margin-bottom: clamp(48px, 7vw, 96px);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    align-items: end;
    gap: 8vw;
}

.section-heading h2,
.journey-heading h2,
.coverage-copy h2,
.quote-copy h2 {
    font-size: clamp(44px, 5.5vw, 82px);
}

.section-heading--split > p {
    max-width: 460px;
    margin: 0 0 6px;
    color: inherit;
    opacity: .62;
    font-size: 15px;
}

.section-heading .eyebrow,
.journey-heading .eyebrow,
.coverage-copy .eyebrow,
.quote-copy .eyebrow {
    margin-bottom: 24px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s ease, transform .9s var(--ease-out);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Journey */
.journey {
    background: var(--paper);
}

.journey-heading {
    width: min(100%, 980px);
    margin-bottom: clamp(54px, 8vw, 110px);
}

.journey-heading h2 em,
.coverage-copy h2 em {
    color: transparent;
    -webkit-text-stroke: 2px var(--ink);
}

.journey-grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(300px, .72fr) minmax(0, 1.25fr);
    border-top: 1px solid var(--ink);
}

.journey-year {
    min-width: 0;
    min-height: 370px;
    padding: 36px clamp(18px, 2vw, 32px) 38px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-right: 1px solid var(--line-dark);
}

.journey-year > span,
.journey-year > p {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.journey-year > strong {
    font-family: var(--font-display);
    font-size: clamp(88px, 9.2vw, 148px);
    font-weight: 700;
    letter-spacing: -.11em;
    line-height: .75;
    white-space: nowrap;
}

.journey-year > strong em {
    color: var(--signal);
    font-style: normal;
    -webkit-text-stroke: 1px var(--ink);
}

.journey-year > p {
    margin: 0;
    line-height: 1.6;
}

.journey-story {
    padding: 40px 0 40px clamp(36px, 6vw, 94px);
}

.journey-story .lead {
    max-width: 830px;
    margin: 0 0 58px;
    font-size: clamp(23px, 2.5vw, 38px);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1.25;
}

.journey-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.journey-columns p {
    margin: 0;
    color: rgba(9, 9, 9, .62);
    font-size: 14px;
}

.text-link {
    width: max-content;
    margin-top: 52px;
    padding-bottom: 8px;
    display: flex;
    gap: 38px;
    border-bottom: 1px solid var(--ink);
    font-size: 12px;
    font-weight: 800;
}

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

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

.journey-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.journey-rail > div {
    min-height: 138px;
    padding: 25px 24px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line-dark);
    transition: background .35s ease, color .35s ease;
}

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

.journey-rail > div:hover {
    background: var(--ink);
    color: var(--white);
}

.journey-rail span {
    margin-bottom: auto;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 10px;
}

.journey-rail strong {
    font-size: 13px;
}

.journey-rail small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 320px;
    gap: 1px;
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .22);
}

.service-card {
    position: relative;
    min-width: 0;
    padding: 26px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--ink);
    isolation: isolate;
}

.service-card--wide {
    grid-column: span 2;
}

.service-card::before,
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    transition: opacity .55s ease, filter .55s ease, transform .9s var(--ease-out);
}

.service-card::before {
    background-image: var(--card-image);
    background-size: cover;
    background-position: center;
    opacity: .30;
    filter: grayscale(.78) contrast(1.08);
    transform: scale(1.05);
}

.service-card__video {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: .38;
    filter: grayscale(.72) contrast(1.08);
    transform: scale(1.05);
    transition: opacity .55s ease, filter .55s ease, transform .9s var(--ease-out);
    pointer-events: none;
}

.service-card--has-video::before {
    opacity: 0;
}

.service-card::after {
    z-index: -1;
    background: linear-gradient(180deg, rgba(9, 9, 9, .08), rgba(9, 9, 9, .38) 44%, rgba(9, 9, 9, .88));
}

.service-card:hover::before {
    opacity: .66;
    filter: grayscale(.08) contrast(1.04);
    transform: scale(1);
}

.service-card:hover .service-card__video {
    opacity: .70;
    filter: grayscale(.08) contrast(1.04);
    transform: scale(1);
}

.service-card__number,
.service-card__code {
    position: absolute;
    top: 24px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

.service-card__number {
    left: 26px;
    color: rgba(255, 255, 255, .52);
}

.service-card__code {
    right: 26px;
    padding: 3px 6px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .62);
}

.service-card__body {
    width: min(100%, 520px);
    margin-top: auto;
    transform: translateY(30px);
    transition: transform .55s var(--ease-out);
}

.service-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(23px, 2.2vw, 35px);
    letter-spacing: -.055em;
    line-height: 1.05;
}

.service-card p {
    max-width: 460px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    line-height: 1.55;
    opacity: 0;
    transition: opacity .4s ease;
}

.service-card__arrow {
    position: absolute;
    right: 25px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    font-size: 19px;
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .4s var(--ease-out);
}

.service-card:hover .service-card__body {
    transform: translateY(0);
}

.service-card:hover p {
    opacity: 1;
}

.service-card:hover .service-card__arrow {
    background: var(--signal);
    color: var(--ink);
    border-color: var(--signal);
    transform: rotate(8deg);
}

.services-all {
    grid-column: span 2;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--signal);
    color: var(--ink);
}

.services-all > span:first-child {
    display: flex;
    align-items: baseline;
    gap: 13px;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
}

.services-all strong {
    font-family: var(--font-display);
    font-size: clamp(46px, 5vw, 78px);
    letter-spacing: -.07em;
}

.services-all > span:last-child {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 12px;
    font-weight: 800;
}

.services-all i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 18px;
    font-style: normal;
    transition: background .3s ease, color .3s ease, transform .3s var(--ease-out);
}

.services-all:hover i {
    background: var(--ink);
    color: var(--signal);
    transform: rotate(8deg);
}

/* Process */
.process-list {
    border-top: 1px solid var(--ink);
}

.process-step {
    min-height: 150px;
    padding: 24px 0;
    display: grid;
    grid-template-columns: 100px 1fr 70px;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--line-dark);
    transition: padding .45s var(--ease-out), background .3s ease, color .3s ease;
}

.process-step:hover {
    padding-right: 24px;
    padding-left: 24px;
    background: var(--ink);
    color: var(--white);
}

.process-step > span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--muted);
}

.process-step > div {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(280px, 1fr);
    align-items: center;
    gap: 8vw;
}

.process-step h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(24px, 2.7vw, 41px);
    letter-spacing: -.055em;
}

.process-step p {
    max-width: 530px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.process-step > i {
    justify-self: end;
    font-size: 24px;
    font-style: normal;
    transition: color .3s ease, transform .4s var(--ease-out);
}

.process-step:hover > i {
    color: var(--signal);
    transform: rotate(-45deg);
}

/* Fleet */
.fleet-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.fleet-nav button {
    width: 50px;
    height: 50px;
}

.fleet-track {
    margin-right: calc(max(24px, (100vw - 1480px) / 2) * -1);
    padding-right: max(24px, calc((100vw - 1480px) / 2));
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 38vw);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.fleet-track::-webkit-scrollbar {
    display: none;
}

.fleet-card {
    scroll-snap-align: start;
    border: 1px solid var(--line-light);
    background: var(--ink);
}

.fleet-card__image {
    position: relative;
    aspect-ratio: 1.55;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .18) 45%, rgba(0, 0, 0, .56)), var(--fleet-image);
    background-position: center;
    background-size: cover;
    filter: grayscale(.25) saturate(.94) contrast(1.04);
    transition: filter .55s ease, background-size 1s var(--ease-out);
}

.fleet-card:hover .fleet-card__image {
    filter: grayscale(0) saturate(1.06) contrast(1.02);
}

.fleet-card__image span,
.fleet-card__image i {
    position: absolute;
    top: 18px;
    padding: 6px 8px;
    background: rgba(9, 9, 9, .72);
    font-family: var(--font-mono);
    font-size: 10px;
    font-style: normal;
    letter-spacing: .08em;
    backdrop-filter: blur(8px);
}

.fleet-card__image span { left: 18px; }
.fleet-card__image i { right: 18px; color: var(--signal); text-transform: uppercase; }

.fleet-card__body {
    min-height: 170px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 24px;
}

.fleet-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(23px, 2.5vw, 36px);
    letter-spacing: -.055em;
    line-height: 1.05;
}

.fleet-card p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    line-height: 1.55;
}

/* Coverage */
.coverage {
    background: var(--paper-bright);
}

.coverage-layout {
    display: grid;
    grid-template-columns: minmax(290px, .8fr) minmax(390px, 1.15fr) minmax(270px, .72fr);
    align-items: stretch;
    gap: clamp(28px, 4vw, 70px);
}

.coverage-copy {
    padding: 8px 0;
}

.coverage-copy h2 {
    font-size: clamp(42px, 4.5vw, 70px);
}

.coverage-copy > p:not(.eyebrow) {
    margin: 34px 0 36px;
    color: rgba(9, 9, 9, .6);
    font-size: 13px;
}

.coverage-map {
    position: relative;
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--ink);
    background-color: #e7e5dc;
    background-image: linear-gradient(rgba(9, 9, 9, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(9, 9, 9, .08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.coverage-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: grayscale(1) contrast(1.2);
}

.coverage-map__scan {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.coverage-map__scan::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--signal);
    box-shadow: 0 0 20px var(--signal);
    animation: mapScan 5s ease-in-out infinite;
}

@keyframes mapScan {
    0%, 100% { top: 12%; opacity: 0; }
    15% { opacity: 1; }
    75% { opacity: 1; }
    86% { top: 86%; opacity: 0; }
}

.coverage-map figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    padding: 12px 14px;
    background: var(--ink);
    color: var(--white);
}

.coverage-map figcaption span,
.coverage-map figcaption strong {
    display: block;
}

.coverage-map figcaption span {
    margin-bottom: 4px;
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 10px;
}

.coverage-map figcaption strong {
    font-size: 11px;
}

.coverage-list {
    border-top: 1px solid var(--ink);
}

.coverage-list > div {
    min-height: 62px;
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--line-dark);
    transition: padding .3s var(--ease-out), background .25s ease;
}

.coverage-list > div:hover {
    padding-right: 10px;
    padding-left: 10px;
    background: var(--signal);
}

.coverage-list span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--muted);
}

.coverage-list strong {
    font-size: 12px;
}

.coverage-list i {
    font-style: normal;
}

/* Quote */
.quote {
    padding-top: clamp(90px, 10vw, 150px);
    padding-bottom: clamp(90px, 10vw, 150px);
}

.quote::after {
    content: "OPS";
    position: absolute;
    right: -2vw;
    bottom: -8vw;
    z-index: 0;
    color: transparent;
    font-family: var(--font-display);
    font-size: 33vw;
    font-weight: 800;
    letter-spacing: -.12em;
    line-height: .7;
    -webkit-text-stroke: 1px rgba(9, 9, 9, .13);
    pointer-events: none;
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .75fr);
    align-items: center;
    gap: clamp(60px, 10vw, 160px);
}

.quote-copy h2 {
    font-size: clamp(54px, 7vw, 102px);
}

.quote-copy h2 em {
    color: transparent;
    -webkit-text-stroke: 2px var(--ink);
}

.quote-copy > p:not(.eyebrow) {
    max-width: 570px;
    margin: 34px 0 44px;
    font-size: 15px;
}

.quote-phone {
    width: max-content;
    display: flex;
    flex-direction: column;
}

.quote-phone span {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
}

.quote-phone strong {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.5vw, 54px);
    letter-spacing: -.06em;
}

.quote-builder {
    position: relative;
    padding: clamp(28px, 4vw, 52px);
    background: var(--paper-bright);
    border: 1px solid var(--ink);
    box-shadow: 18px 18px 0 var(--ink);
}

.quote-builder__head {
    padding-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ink);
}

.quote-builder__head span {
    font-family: var(--font-mono);
    font-size: 10px;
}

.quote-builder__head strong {
    font-size: 12px;
}

.quote-builder fieldset {
    margin: 28px 0 0;
    padding: 0;
    border: 0;
}

.quote-builder legend {
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.choice-grid label {
    cursor: pointer;
}

.choice-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-grid label span {
    min-height: 68px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--line-dark);
    background: var(--white);
    font-size: 10px;
    font-weight: 700;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.choice-grid label span i {
    font-family: var(--font-mono);
    font-size: 10px;
    font-style: normal;
    color: var(--muted);
}

.choice-grid input:checked + span {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-2px);
}

.choice-grid input:checked + span i {
    color: var(--signal);
}

.choice-grid input:focus-visible + span {
    outline: 3px solid var(--ink);
    outline-offset: 2px;
}

.select-wrap {
    position: relative;
    display: block;
}

.select-wrap::after {
    content: "↓";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.select-wrap select {
    width: 100%;
    height: 58px;
    padding: 0 46px 0 15px;
    border: 1px solid var(--line-dark);
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    font-size: 11px;
    appearance: none;
}

.quote-builder .button {
    margin-top: 28px;
}

.quote-builder__note {
    margin: 14px 0 0;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 10px;
}

/* Footer */
.site-footer {
    padding: 80px max(24px, calc((100vw - 1480px) / 2)) 24px;
    background: var(--ink);
    color: var(--white);
}

.footer-top {
    padding-bottom: 72px;
    display: grid;
    grid-template-columns: minmax(260px, .7fr) 1fr auto;
    align-items: center;
    gap: 8vw;
    border-bottom: 1px solid var(--line-light);
}

.brand--footer .brand-name {
    font-size: 23px;
}

.footer-top > p {
    max-width: 580px;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

.footer-grid {
    padding: 58px 0 66px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.footer-grid > div > span {
    margin-bottom: 13px;
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

.footer-grid a,
.footer-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .56);
    font-size: 11px;
    line-height: 1.7;
    transition: color .2s ease;
}

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

.footer-bottom {
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, .42);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .04em;
}

.footer-bottom a {
    color: var(--white);
}

/* Tablet */
@media (max-width: 1100px) {
    :root {
        --shell: calc(100vw - 40px);
    }

    .desktop-nav {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto auto;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        z-index: 90;
    }

    .hero-console {
        display: none;
    }

    .hero-tag {
        width: 220px;
    }

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

    .service-card--wide {
        grid-column: span 1;
    }

    .services-all {
        grid-column: span 1;
    }

    .coverage-layout {
        grid-template-columns: minmax(300px, 1fr) minmax(380px, 1.1fr);
    }

    .coverage-list {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid var(--ink);
    }

    .coverage-list > div {
        padding: 0 14px;
        border-right: 1px solid var(--line-dark);
    }

    .quote-layout {
        gap: 60px;
    }
}

@media (max-width: 820px) {
    :root {
        --shell: calc(100vw - 32px);
    }

    .utility-bar {
        height: 34px;
    }

    .utility-bar p strong,
    .utility-bar p:not(.status-dot) {
        font-size: 10px;
    }

    .site-header {
        height: 68px;
    }

    .site-header.is-stuck {
        height: 64px;
        padding: 0 16px;
    }

    .header-cta {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .hero {
        height: auto;
        min-height: 860px;
    }

    .hero-slide::before,
    .hero-slide--light::before {
        background: linear-gradient(180deg, rgba(8, 8, 8, .7) 0%, rgba(8, 8, 8, .56) 35%, rgba(8, 8, 8, .85) 73%, rgba(8, 8, 8, .98) 100%);
        background-position: 60% center;
        filter: saturate(.68) contrast(1.08);
    }

    .hero-slide--light {
        color: var(--white);
    }

    .hero-slide--light .eyebrow,
    .hero-slide--light .hero-copy {
        color: rgba(255, 255, 255, .72);
    }

    .hero-slide--light .hero-content .hero-title em {
        color: var(--signal);
        text-decoration: none;
    }

    .hero-slide--light .button--ghost {
        color: var(--white);
        border-color: rgba(255, 255, 255, .48);
    }

    .hero-content {
        width: var(--shell);
        min-height: 860px;
        height: 100%;
        padding: 170px 0 190px;
        justify-content: flex-start;
    }

    .hero-content .hero-title {
        font-size: clamp(45px, 12.5vw, 70px);
    }

    .hero-tag {
        display: none;
    }

    .hero-controls {
        left: 16px;
        bottom: 108px;
    }

    .hero-facts {
        min-height: 82px;
        padding: 0 16px;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-facts > div {
        display: none;
        padding: 14px;
    }

    .hero-facts > div:nth-child(1),
    .hero-facts > div:nth-child(3) {
        display: flex;
    }

    .section-heading--split,
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section-heading--split > p {
        max-width: 620px;
    }

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

    .journey-year {
        min-height: 300px;
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .journey-story {
        padding-left: 0;
    }

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

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

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

    .process-step {
        grid-template-columns: 55px 1fr 34px;
    }

    .process-step > div {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fleet-track {
        grid-auto-columns: minmax(310px, 78vw);
    }

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

    .coverage-map {
        min-height: 520px;
    }

    .coverage-list {
        grid-column: auto;
    }

    .quote-layout {
        align-items: stretch;
    }

    .quote-builder {
        box-shadow: 12px 12px 0 var(--ink);
    }

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

    .footer-top .button {
        width: max-content;
    }

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

@media (max-width: 560px) {
    .utility-bar p {
        display: none;
    }

    .utility-bar {
        justify-content: flex-end;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-mark {
        width: 28px;
        height: 28px;
        transform: scale(.9);
    }

    .hero {
        min-height: 820px;
    }

    .hero-content {
        min-height: 820px;
        padding-top: 145px;
        padding-bottom: 190px;
    }

    .hero-content .hero-title {
        font-size: clamp(41px, 13.7vw, 62px);
        line-height: .96;
    }

    .hero-copy {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.55;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        margin-top: 27px;
    }

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

    .hero-controls {
        right: 16px;
        justify-content: space-between;
    }

    .hero-tabs {
        flex: 1;
    }

    .hero-tab {
        flex: 1;
    }

    .signal-strip {
        height: 40px;
    }

    .section {
        padding: 84px 20px;
    }

    .section-index {
        right: 20px;
        top: 20px;
    }

    .journey-columns {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .journey-story .lead {
        margin-bottom: 34px;
    }

    .journey-rail {
        grid-template-columns: 1fr;
    }

    .journey-rail > div,
    .journey-rail > div:nth-child(2) {
        min-height: 118px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .journey-rail > div:last-child {
        border-bottom: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .service-card--wide,
    .services-all {
        grid-column: span 1;
    }

    .service-card__body {
        transform: translateY(0);
    }

    .service-card p {
        padding-right: 50px;
        opacity: 1;
    }

    .services-all {
        min-height: 210px;
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .services-all > span:first-child {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-step {
        padding: 24px 0;
        grid-template-columns: 34px 1fr;
        gap: 14px;
    }

    .process-step > i {
        display: none;
    }

    .process-step:hover {
        padding-right: 12px;
        padding-left: 12px;
    }

    .fleet-nav {
        justify-content: flex-start;
    }

    .fleet-track {
        margin-right: -20px;
        padding-right: 20px;
        grid-auto-columns: 87vw;
    }

    .fleet-card__body {
        grid-template-columns: 1fr;
        min-height: 190px;
    }

    .coverage-map {
        min-height: 430px;
    }

    .coverage-list {
        grid-template-columns: 1fr;
    }

    .coverage-list > div {
        border-right: 0;
    }

    .quote-copy h2 {
        font-size: clamp(48px, 15vw, 70px);
    }

    .quote-builder {
        padding: 24px 18px;
        box-shadow: 8px 8px 0 var(--ink);
    }

    .quote-builder__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

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

    .choice-grid label span {
        min-height: 56px;
    }

    .site-footer {
        padding-top: 64px;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Shared approved-logo slots and internal-link transition. */
.brand-logo-image { width: auto; height: 42px; display: block; object-fit: contain; }
.brand-logo-placeholder { position: relative; max-width: min(290px, 72vw); padding: 5px 8px 19px; display: inline-flex; align-items: center; border: 1px dashed rgba(255,242,0,.62); color: var(--white); box-sizing: border-box; }
.brand-logo-placeholder__identity { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo-placeholder > small { position: absolute; right: 7px; bottom: 4px; left: 7px; overflow: hidden; color: var(--signal); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0; line-height: 1; text-overflow: ellipsis; white-space: nowrap; }
.brand--footer .brand-logo-image { height: 56px; }
.brand--footer .brand-logo-placeholder { max-width: 360px; }
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: grid;
    place-content: center;
    gap: 22px;
    background: var(--ink);
    color: var(--white);
    text-align: center;
    pointer-events: none;
    transform: translateY(-101%);
    transition: transform .55s var(--ease-snap);
}
.page-transition > div { display: flex; align-items: center; justify-content: center; gap: 14px; }
.page-transition .brand-logo-image { height: 72px; }
.page-transition .brand-logo-placeholder { max-width: min(680px, 90vw); padding: 20px 25px 40px; }
.page-transition .brand-logo-placeholder > small { right: 25px; bottom: 14px; left: 25px; text-align: center; }
.page-transition .brand-mark { width: 52px; height: 52px; }
.page-transition .brand-name { font-size: clamp(27px, 5vw, 54px); }
.page-transition > span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; }
body.is-leaving .page-transition { transform: translateY(0); }

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9996;
    width: clamp(220px, 19vw, 320px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,242,0,.09) 0%, rgba(255,242,0,.04) 30%, rgba(255,242,0,.015) 52%, transparent 74%);
    filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity .18s ease;
    will-change: transform, opacity;
}
.cursor-glow.is-visible { opacity: .55; }
@media (pointer: coarse), (prefers-reduced-motion: reduce) { .cursor-glow { display: none; } }

.journey-heading h2 em,
.coverage-copy h2 em,
.quote-copy h2 em {
    color: var(--ink);
    font-family: var(--font-display);
    font-style: normal;
    font-weight: inherit;
    -webkit-text-stroke: 0;
}

.about-video .media-frame,
.about-video iframe,
.about-video .youtube-placeholder { width: 100%; height: 100%; min-height: 640px; border: 0; }
.youtube-placeholder { position: relative; padding: clamp(30px, 5vw, 70px); display: flex; align-items: center; justify-content: center; gap: 28px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 58px), repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 58px), #151515; color: var(--white); }
.youtube-placeholder__play { width: 80px; height: 80px; display: grid; place-content: center; padding-left: 5px; border-radius: 50%; background: var(--signal); color: var(--ink); font-size: 24px; }
.youtube-placeholder small { color: var(--signal); font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; }
.youtube-placeholder strong { display: block; margin-top: 8px; font-family: var(--font-display); font-size: clamp(24px, 3vw, 44px); line-height: 1; letter-spacing: -.055em; }
.youtube-placeholder p { margin: 10px 0 0; color: rgba(255,255,255,.5); font-size: 11px; }
.about-team-section { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; gap: clamp(45px, 8vw, 130px); }
.about-team-section > * { margin: 0; }
.about-team-section__media { min-height: 580px; background: #111; border: 1px solid rgba(9,9,9,.22); }
.about-team-section__media .media-frame { height: 100%; min-height: inherit; }
.about-team-section__media .about-team__slot .media-placeholder { position: relative; min-height: inherit; height: 100%; padding: clamp(35px, 6vw, 75px); justify-content: center; align-items: center; border: 1px solid rgba(255,242,0,.55); text-align: center; }
.about-team-section__media .about-team__slot .media-placeholder::before { content: none; }
.about-team-section__media .about-team__slot .media-placeholder span { color: var(--signal); opacity: 1; }
.about-team-section__media .about-team__slot .media-placeholder strong { max-width: 520px; font-family: var(--font-display); font-size: clamp(24px, 3vw, 43px); line-height: 1.05; letter-spacing: -.045em; }
.about-team-section__media .about-team__slot .media-placeholder small { margin-top: 8px; opacity: .75; }
.about-team-section__copy { align-self: center; }
.about-team-section__copy h2 { margin: 24px 0; font-family: var(--font-display); font-size: clamp(42px, 5.5vw, 86px); line-height: .9; letter-spacing: -.07em; }
.about-team-section__copy h2 em { font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.about-team-section__copy > p:not(.eyebrow) { color: #5f5f58; }

@media (max-width: 900px) {
    .about-team-section { grid-template-columns: 1fr; }
    .about-video .media-frame, .about-video iframe, .about-video .youtube-placeholder { min-height: 520px; }
}

@media (max-width: 600px) {
    .youtube-placeholder { align-items: flex-start; flex-direction: column; }
    .about-video .media-frame, .about-video iframe, .about-video .youtube-placeholder { min-height: 450px; }
    .about-team-section__media .media-frame { min-height: 430px; }
}

/* Content-rich service layouts: shared structure with deliberate visual variation. */
.inner-hero--media-left .inner-hero__media { order: -1; }
.inner-hero--media-left .inner-hero__media::after { background: linear-gradient(270deg, rgba(9,9,9,.38), transparent 35%); }
.inner-hero--technical { grid-template-columns: 1.2fr .8fr; }
.inner-hero--technical .inner-hero__copy { background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 55px 55px; }

.service-detail { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 8vw, 130px); align-items: start; background: var(--paper-bright); }
.service-detail > * { margin: 0; }
.service-detail__media { position: sticky; top: 95px; min-height: 690px; overflow: hidden; background: var(--ink); }
.service-detail__media .media-frame { min-height: 690px; height: 100%; }
.service-detail__media > div:last-child { position: absolute; right: 16px; bottom: 16px; left: 16px; padding: 13px; display: flex; justify-content: space-between; gap: 20px; background: rgba(9,9,9,.8); color: var(--white); font-family: var(--font-mono); font-size: 10px; backdrop-filter: blur(12px); }
.service-detail__media > div:last-child span { color: var(--signal); }
.service-detail__content .section-heading { margin-bottom: 48px; }
.service-detail__content .section-heading h2 { font-size: clamp(42px, 5vw, 78px); }
.service-copy-block { padding: 30px 0; display: grid; grid-template-columns: 46px 1fr; gap: 18px; border-top: 1px solid var(--line-dark); }
.service-copy-block:last-child { border-bottom: 1px solid var(--line-dark); }
.service-copy-block > span { padding-top: 5px; color: #72726a; font-family: var(--font-mono); font-size: 10px; }
.service-copy-block h3 { margin: 0 0 18px; font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 39px); line-height: 1.03; letter-spacing: -.055em; }
.service-copy-block p { margin: 0 0 14px; color: #565650; font-size: 14px; line-height: 1.75; }
.service-copy-block ul { margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; list-style: none; border-top: 1px solid var(--line-dark); }
.service-copy-block li { padding: 10px 12px 10px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: 10px; line-height: 1.5; }
.service-copy-block li:nth-child(odd) { border-right: 1px solid var(--line-dark); }
.service-copy-block li:nth-child(even) { padding-left: 12px; }

.service-detail--media-right { grid-template-columns: 1.1fr .9fr; background: var(--mist); }
.service-detail--media-right .service-detail__media { order: 2; }
.service-detail--editorial { grid-template-columns: 1fr; background: var(--paper-bright); }
.service-detail--editorial .service-detail__media { position: relative; top: auto; min-height: 620px; }
.service-detail--editorial .service-detail__media .media-frame { min-height: 620px; }
.service-detail--editorial .service-detail__content { display: grid; grid-template-columns: .55fr 1fr; gap: clamp(45px, 8vw, 130px); }
.service-detail--editorial .service-detail__content .section-heading { position: static; top: auto; align-self: auto; }
.service-detail--technical { grid-template-columns: .72fr 1.28fr; background: var(--mist); }
.service-detail--technical .service-detail__media { min-height: 600px; }
.service-detail--technical .service-detail__media .media-frame { min-height: 600px; }
.service-detail--technical .service-copy-block { grid-template-columns: 58px 1fr; }

@media (max-width: 960px) {
    .inner-hero--media-left .inner-hero__media { order: 0; }
    .inner-hero--technical { grid-template-columns: 1fr; }
    .service-detail,
    .service-detail--media-right,
    .service-detail--technical { grid-template-columns: 1fr; }
    .service-detail--media-right .service-detail__media { order: 0; }
    .service-detail__media { position: relative; top: auto; min-height: 520px; }
    .service-detail__media .media-frame { min-height: 520px; }
    .service-detail--editorial .service-detail__content { grid-template-columns: 1fr; }
    .service-detail--editorial .service-detail__content .section-heading { position: static; }
}

@media (max-width: 600px) {
    .service-detail__media,
    .service-detail__media .media-frame,
    .service-detail--editorial .service-detail__media,
    .service-detail--editorial .service-detail__media .media-frame,
    .service-detail--technical .service-detail__media,
    .service-detail--technical .service-detail__media .media-frame { min-height: 410px; }
    .service-copy-block { grid-template-columns: 32px 1fr; }
    .service-copy-block ul { grid-template-columns: 1fr; }
    .service-copy-block li:nth-child(odd) { border-right: 0; }
    .service-copy-block li:nth-child(even) { padding-left: 0; }
}

@media (forced-colors: active) {
    .brand-mark,
    .eyebrow > span,
    .button--signal,
    .signal-strip {
        forced-color-adjust: none;
    }
}

/* ========================================================================== 
   COMPLETE MULTI-PAGE SITE LAYER
   Shared by the homepage, service engine, editorial pages and forms.
   ========================================================================== */

:root {
    --mist: #e8e6dd;
    --utility-h: 40px;
    --header-h: 76px;
    --page-x: clamp(22px, 4.2vw, 76px);
    --max-content: 1600px;
}

body {
    background: var(--paper-bright);
}

.utility-bar {
    position: relative;
    z-index: 220;
    width: 100%;
    height: var(--utility-h);
    padding: 0 var(--page-x);
    background: var(--signal);
    color: var(--ink);
    border: 0;
}

.utility-bar p,
.utility-bar a {
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .06em;
}

.utility-bar p span,
.utility-bar a span {
    margin-right: 9px;
    opacity: .58;
}

.utility-bar a:hover { color: var(--ink); opacity: .66; }

.site-header {
    position: relative;
    z-index: 210;
    width: 100%;
    height: var(--header-h);
    margin: 0;
    padding: 0 var(--page-x);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(18px, 2.4vw, 42px);
    background: var(--ink);
    color: var(--white);
    border-color: rgba(255,255,255,.13);
}

.site-header.is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 68px;
    padding: 0 var(--page-x);
    transform: none;
}

.site-header.is-stuck + .mobile-nav { top: 0; }

.desktop-nav { gap: clamp(10px, 1.3vw, 25px); }
.desktop-nav > a,
.nav-group > a { font-size: 11px; white-space: nowrap; }
.desktop-nav a.is-active::after { transform: scaleX(1); }
.nav-group { position: static; }
.nav-group > a { display: flex; gap: 5px; }
.nav-group > a > span { color: var(--signal); }

.mega-menu {
    position: absolute;
    z-index: 10;
    top: calc(100% - 1px);
    left: var(--page-x);
    right: var(--page-x);
    display: grid;
    grid-template-columns: minmax(230px, .7fr) 2fr;
    background: #101010;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .22s ease, transform .35s var(--ease-out), visibility .22s;
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu__intro {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--signal);
    color: var(--ink);
}

.mega-menu__intro span,
.mega-menu__intro a,
.mega-menu__links a span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

.mega-menu__intro strong {
    margin: 28px 0;
    font-family: var(--font-display);
    font-size: clamp(25px, 2.2vw, 40px);
    line-height: .98;
    letter-spacing: -.06em;
}

.mega-menu__intro a { font-weight: 600; }
.mega-menu__intro a::after,
.mega-menu__links a::after { display: none; }

.mega-menu__links {
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.mega-menu__links a {
    min-height: 50px;
    padding: 10px 14px;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 12px;
}

.mega-menu__links a:nth-last-child(-n+2) { border-bottom: 0; }
.mega-menu__links a:hover { background: rgba(255,255,255,.06); }
.mega-menu__links a span { color: var(--signal); }
.mega-menu__links a i { font-style: normal; color: var(--signal); }

.header-quote { min-height: 44px; padding: 0 16px; }
.button--large { min-height: 58px; padding: 0 25px; }

.mobile-nav {
    z-index: 200;
    padding-top: 115px;
    color: var(--white);
}

.mobile-nav nav a { justify-content: flex-start; }
.mobile-nav nav a i { margin-left: auto; color: var(--signal); font-style: normal; }
.mobile-nav > div { display: grid; gap: 7px; margin-top: 25px; font-family: var(--font-mono); font-size: 11px; }

.section-pad {
    position: relative;
    padding: clamp(90px, 10vw, 160px) var(--page-x);
}

.section-pad > * { max-width: var(--max-content); margin-right: auto; margin-left: auto; }
.section-pad--dark { background: var(--ink); color: var(--white); }
.section-pad--mist { background: var(--mist); color: var(--ink); }
.section-pad--signal { background: var(--signal); color: var(--ink); }

.section-heading { margin-bottom: clamp(45px, 6vw, 86px); }
.section-heading h2,
.story-section h2,
.contact-intro h1,
.quote-page__intro h1 {
    max-width: 900px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(43px, 6.6vw, 108px);
    line-height: .9;
    letter-spacing: -.075em;
}

.section-heading h2 em,
.story-section h2 em,
.contact-intro h1 em,
.quote-page__intro h1 em {
    color: inherit;
    font-family: var(--font-display);
    font-style: normal;
    font-weight: inherit;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr);
    align-items: end;
    gap: clamp(38px, 7vw, 120px);
}

.section-heading--split > div { min-width: 0; }
.section-heading--split > p {
    max-width: 520px;
    margin: 0 0 8px;
    color: currentColor;
    opacity: .68;
    font-size: 15px;
}

.section-heading .eyebrow { margin-bottom: 22px; }
.eyebrow--dark { color: var(--ink); }
.text-link--dark { color: var(--ink); }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease var(--delay, 0ms), transform .85s var(--ease-out) var(--delay, 0ms);
}

.reveal.is-revealed,
.no-js .reveal { opacity: 1; transform: none; }

.media-frame {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    background: #222;
}

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

.media-frame video { background: #111; }
.media-frame--cover { position: absolute; inset: 0; height: 100%; }
.media-frame--hero { height: 100%; min-height: 540px; }
.media-frame--brand-art { background: #050505; }
.media-frame--brand-art img { object-fit: contain; padding: clamp(24px, 4vw, 58px); background: #050505; }

/* Keep service detail media filled; percentage image heights need a real frame height. */
.service-detail__media {
    height: 690px;
}

.service-detail__media .media-frame {
    height: 100%;
    min-height: 0;
}

.service-detail--editorial .service-detail__media {
    height: 620px;
}

.service-detail--technical .service-detail__media {
    height: 600px;
}

@media (max-width: 1100px) {
    .service-detail__media,
    .service-detail--editorial .service-detail__media,
    .service-detail--technical .service-detail__media {
        height: 500px;
    }
}

@media (max-width: 650px) {
    .service-detail__media,
    .service-detail--editorial .service-detail__media,
    .service-detail--technical .service-detail__media {
        height: min(390px, 108vw);
    }
}

.media-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(125deg, transparent 45%, rgba(255,242,0,.15) 45% 46%, transparent 46%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 50px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 50px),
        #171717;
    border: 1px solid rgba(255, 242, 0, .55);
    color: var(--white);
    box-sizing: border-box;
}

.media-placeholder::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 48px;
    transform: translate(-50%, -50%);
}

.media-placeholder span,
.media-placeholder small {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    opacity: .65;
}

.media-placeholder strong { margin: 5px 0; font-size: 18px; }
.media-placeholder .media-placeholder__path {
    width: min(100%, 720px);
    margin-top: 12px;
    color: var(--signal);
    opacity: 1;
    overflow-wrap: anywhere;
}
.media-chip {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 10px;
    background: var(--signal);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.media-chip--pending { max-width: calc(100% - 32px); background: rgba(9,9,9,.86); color: var(--signal); overflow-wrap: anywhere; }
.media-chip i { width: 6px; height: 6px; display: inline-block; margin-right: 5px; border-radius: 50%; background: #f00; }

/* Intro transition */
.site-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-content: center;
    background: var(--ink);
    color: var(--white);
    transition: opacity .55s ease, visibility .55s ease, transform .8s var(--ease-snap);
    animation: introFailsafe .55s 2.5s both;
}

.site-intro.is-done { opacity: 0; visibility: hidden; transform: translateY(-100%); }
.site-intro__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; }
.site-intro__brand { position: relative; display: flex; justify-content: center; animation: introName .8s var(--ease-out) both; }
.site-intro__brand .brand-logo-image { width: auto; height: clamp(64px, 8vw, 110px); }
.site-intro__brand .brand-logo-placeholder { max-width: min(680px, 90vw); padding: 20px 25px 40px; }
.site-intro__brand .brand-logo-placeholder > small { right: 25px; bottom: 14px; left: 25px; text-align: center; }
.site-intro > div:last-child { position: relative; margin-top: 22px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; }
.site-intro > div:last-child i { height: 1px; background: var(--signal); transform-origin: center; animation: introLine 1s .2s var(--ease-out) both; }
@keyframes introName { from { opacity: 0; transform: translateY(25px); letter-spacing: .02em; } }
@keyframes introLine { from { transform: scaleX(0); } }
@keyframes introFailsafe { to { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-100%); } }

/* Homepage hero */
.home-hero {
    position: relative;
    min-height: calc(100svh - var(--utility-h) - var(--header-h));
    height: max(720px, calc(100svh - var(--utility-h) - var(--header-h)));
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.home-hero__media { position: absolute; inset: 0; }
.home-hero__media .media-frame img { object-position: center 44%; transform: scale(1.02); animation: heroDrift 14s ease-out both; }
@keyframes heroDrift { to { transform: scale(1.09); } }
.home-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.52) 52%, rgba(0,0,0,.18) 78%), linear-gradient(0deg, rgba(0,0,0,.82), transparent 42%); }
.hero-grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: clamp(45px, 6.25vw, 100px) clamp(45px, 6.25vw, 100px); mask-image: linear-gradient(90deg, black, transparent 74%); }
.home-hero__copy { position: absolute; z-index: 3; top: clamp(70px, 12vh, 150px); left: var(--page-x); width: min(850px, calc(100% - var(--page-x) * 2)); }
.home-hero__copy h1 { margin: 26px 0 24px; font-family: var(--font-display); font-size: clamp(54px, 7.7vw, 132px); line-height: .84; letter-spacing: -.085em; }
.home-hero__copy h1 em { color: var(--signal); font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.home-hero__copy > p:not(.eyebrow) { max-width: 600px; margin: 0; color: rgba(255,255,255,.77); font-size: clamp(15px, 1.35vw, 20px); }
.home-hero .hero-actions { margin-top: 34px; }

.hero-console {
    position: absolute;
    z-index: 4;
    right: var(--page-x);
    bottom: 110px;
    width: min(330px, 31vw);
    background: rgba(8,8,8,.76);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(18px);
}
.hero-console__head { min-height: 40px; padding: 0 14px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,.16); font-family: var(--font-mono); font-size: 10px; letter-spacing: .07em; }
.hero-console__head > span:last-child { color: #72ff8e; }
.hero-console__head i { width: 5px; height: 5px; display: inline-block; margin-right: 4px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }
.hero-console__body > div { min-height: 57px; padding: 10px 14px; display: grid; grid-template-columns: 26px 1fr auto; align-items: center; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-console__body > div:last-child { border: 0; }
.hero-console__body > div > span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; }
.hero-console__body p { margin: 0; }
.hero-console__body strong, .hero-console__body small { display: block; }
.hero-console__body strong { font-size: 11px; }
.hero-console__body small { color: rgba(255,255,255,.48); font-family: var(--font-mono); font-size: 10px; }
.hero-console__body em { color: var(--signal); font-style: normal; }

.home-hero__ticker { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; height: 82px; padding: 0 var(--page-x); display: grid; grid-template-columns: repeat(4, 1fr); background: var(--signal); color: var(--ink); }
.home-hero__ticker > div { padding: 0 clamp(15px, 2vw, 30px); display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(0,0,0,.2); }
.home-hero__ticker > div:last-child { border-right: 1px solid rgba(0,0,0,.2); }
.home-hero__ticker span { font-family: var(--font-display); font-size: 20px; font-weight: 800; line-height: 1; }
.home-hero__ticker strong { margin-top: 5px; font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.hero-scroll { position: absolute; z-index: 5; right: var(--page-x); top: 26px; display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; transform: rotate(90deg) translateX(100%); transform-origin: right top; }
.hero-scroll i { width: 60px; height: 1px; background: var(--signal); }

/* Journey */
.journey-layout { display: grid; grid-template-columns: .7fr 1.25fr 1fr; gap: clamp(24px, 4vw, 70px); align-items: stretch; }
.journey-year { padding: 28px; display: flex; flex-direction: column; background: var(--signal); }
.journey-year > span, .journey-year > p { font-family: var(--font-mono); font-size: 10px; letter-spacing: .07em; }
.journey-year > strong { margin: auto 0; font-family: var(--font-display); font-size: clamp(70px, 10vw, 160px); line-height: .75; letter-spacing: -.1em; writing-mode: vertical-rl; transform: rotate(180deg); }
.journey-year > strong em { color: transparent; -webkit-text-stroke: 1px var(--ink); font-style: normal; }
.journey-media { position: relative; min-height: 610px; }
.journey-media > .media-frame { height: 100%; }
.journey-media > .media-frame img { filter: grayscale(.35) contrast(1.06); }
.journey-media > div:last-child, .furniture-section__media > div:last-child { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 16px; display: flex; justify-content: space-between; gap: 20px; background: rgba(9,9,9,.78); color: var(--white); backdrop-filter: blur(12px); }
.journey-media span, .furniture-section__media span { font-family: var(--font-mono); font-size: 10px; color: var(--signal); }
.journey-media strong, .furniture-section__media strong { font-size: 11px; }
.journey-story { display: flex; flex-direction: column; justify-content: flex-end; }
.journey-story .lead { font-family: var(--font-display); font-size: clamp(23px, 2.4vw, 38px); font-weight: 700; line-height: 1.1; letter-spacing: -.045em; }
.journey-story > p:not(.lead) { color: #595950; font-size: 14px; }
.journey-story .text-link { margin-top: 28px; }
.journey-rail { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.journey-rail > div { min-height: 105px; padding: 18px; display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); }
.journey-rail > div:last-child { border: 0; }
.journey-rail span, .journey-rail small { font-family: var(--font-mono); font-size: 10px; }
.journey-rail span { color: #85857c; }
.journey-rail strong { margin-top: auto; font-size: 12px; }
.journey-rail small { margin-top: 2px; color: #77776f; }

/* Service cards */
.services-directory .services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.services-directory .service-card, .services-directory .service-card--wide { grid-column: auto; min-height: 0; background: var(--ink-soft); overflow: hidden; }
.services-directory .service-card::before, .services-directory .service-card::after { display: none; }
.services-directory .service-card > a { height: 100%; display: flex; flex-direction: column; }
.services-directory .service-card__media { position: relative; height: 270px; min-height: 270px; overflow: hidden; }
.services-directory .service-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.55), transparent 60%); }
.services-directory .service-card__media img, .services-directory .service-card__media video { transition: transform .8s var(--ease-out), filter .5s ease; }
.services-directory .service-card:hover .service-card__media img, .services-directory .service-card:hover .service-card__media video { transform: scale(1.055); filter: saturate(1.08); }
.services-directory .service-card__body { position: relative; padding: 24px; display: flex; flex: 1; flex-direction: column; color: var(--white); transform: none; }
.services-directory .service-card__top { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; color: var(--signal); }
.services-directory .service-card__top i { font-style: normal; font-size: 16px; transition: transform .3s ease; }
.services-directory .service-card:hover .service-card__top i { transform: translate(3px,-3px); }
.services-directory .service-card h3 { margin: 30px 0 12px; font-size: clamp(23px, 2.2vw, 35px); }
.services-directory .service-card p { min-height: 76px; margin: 0 0 25px; color: rgba(255,255,255,.58); font-size: 13px; opacity: 1; }
.services-directory .service-card__body > strong { margin-top: auto; color: var(--white); font-family: var(--font-mono); font-size: 10px; letter-spacing: .04em; }
.services-directory .service-card__body > strong span { color: var(--signal); }
.services-directory .services-grid { grid-auto-rows: auto; align-items: stretch; }
.services-directory .service-card { position: relative; min-height: clamp(350px, 31vw, 470px); }
.services-directory .service-card > a { position: relative; display: grid; grid-template: 1fr / 1fr; min-height: inherit; color: var(--white); }
.services-directory .service-card__media { grid-area: 1 / 1; height: 100%; min-height: inherit; }
.services-directory .service-card__media img,
.services-directory .service-card__media video { width: 100%; height: 100%; object-fit: cover; }
.services-directory .service-card__media::after { z-index: 1; background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.22) 42%, rgba(0,0,0,.08)); pointer-events: none; }
.services-directory .service-card__body { position: relative; z-index: 2; grid-area: 1 / 1; align-self: end; margin: clamp(18px, 2vw, 30px); min-height: 0; padding: 18px 20px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; flex: none; background: rgba(5,5,5,.86); border: 1px solid rgba(255,255,255,.16); color: var(--white); transform: none; backdrop-filter: blur(10px); }
.services-directory .service-card__top { grid-column: 1 / -1; align-items: center; letter-spacing: .08em; text-transform: uppercase; }
.services-directory .service-card h3 { grid-column: 1; margin: 0; align-self: end; font-size: clamp(22px, 2vw, 34px); line-height: 1; letter-spacing: 0; }
.services-directory .service-card p,
.services-directory .service-card__body > strong { display: none; }
.services-directory .service-card--brand { display: grid; place-items: center; min-height: clamp(350px, 31vw, 470px); padding: clamp(30px, 4vw, 60px); background: radial-gradient(circle at 50% 45%, rgba(255,237,51,.16), rgba(0,0,0,0) 58%), #2a2a2a; }
.services-directory .service-card--brand::before { content: ""; position: absolute; inset: 0; display: block; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 38px 38px; opacity: .42; }
.services-directory .service-card__brand { position: relative; z-index: 1; width: 100%; display: grid; place-items: center; gap: 22px; text-align: center; }
.services-directory .service-card__brand img { width: min(78%, 420px); height: auto; display: block; object-fit: contain; filter: drop-shadow(0 24px 44px rgba(0,0,0,.38)); }
.services-directory .service-card__brand span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.services-all { margin-top: 1px; min-height: 92px; padding: 0 28px; display: grid; grid-template-columns: .5fr 1fr auto; align-items: center; gap: 25px; background: var(--signal); color: var(--ink); }
.services-all > span, .services-all strong { position: static; transform: none; }
.services-all > span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; }
.services-all strong { font-family: var(--font-display); font-size: clamp(18px, 2vw, 30px); }
.services-all i { display: inline; font-style: normal; background: none; }

/* Scale, process, featured */
.segmented-control { justify-self: end; display: flex; padding: 4px; border: 1px solid var(--line-dark); }
.segmented-control button { min-height: 42px; padding: 0 17px; border: 0; background: transparent; color: var(--ink); font-family: var(--font-mono); font-size: 10px; cursor: pointer; }
.segmented-control button.is-active { background: var(--ink); color: var(--white); }
.scale-panel { display: none; }
.scale-panel.is-active { display: block; }
.scale-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow-x: auto; scroll-snap-type: x mandatory; background: var(--line-dark); border: 1px solid var(--line-dark); scrollbar-width: none; }
.scale-track::-webkit-scrollbar { display: none; }
.scale-card { position: relative; min-width: 290px; min-height: 420px; padding: 28px; display: flex; flex-direction: column; background: var(--paper-bright); scroll-snap-align: start; }
.scale-card > span { font-family: var(--font-mono); font-size: 10px; color: #74746c; }
.scale-card > strong { margin: auto 0 20px; font-family: var(--font-display); font-size: clamp(27px, 2.6vw, 42px); line-height: 1; letter-spacing: -.055em; }
.scale-card > p { min-height: 100px; color: #64645c; font-size: 13px; }
.scale-card > i { margin-top: 20px; font-style: normal; font-size: 22px; }
.scale-card--signal { background: var(--signal); }
.scale-card--signal > span, .scale-card--signal > p { color: var(--ink); }
.track-controls { margin-top: 20px; display: flex; justify-content: flex-end; align-items: center; gap: 12px; }
.track-controls button { width: 48px; height: 48px; border: 1px solid var(--line-dark); background: transparent; cursor: pointer; }
.track-controls span { font-family: var(--font-mono); font-size: 10px; }
.fleet-feature { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 550px; background: var(--ink); color: var(--white); }
.fleet-feature > div:first-child .media-frame { height: 100%; }
.fleet-feature > div:last-child { padding: clamp(35px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.fleet-feature h3 { margin: 24px 0; font-family: var(--font-display); font-size: clamp(35px, 4vw, 65px); line-height: .96; letter-spacing: -.065em; }
.fleet-feature p:not(.eyebrow) { color: rgba(255,255,255,.6); }
.fleet-feature .text-link { margin-top: 22px; color: var(--white); }

.process-cards { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.process-cards li { min-height: 340px; padding: 26px; display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); }
.process-cards li:last-child { border: 0; background: var(--signal); }
.process-cards span { font-family: var(--font-mono); font-size: 10px; }
.process-cards strong { margin: auto 0 18px; font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 35px); line-height: 1.05; letter-spacing: -.045em; }
.process-cards p { min-height: 70px; margin: 0; color: #5d5d55; font-size: 13px; }
.process-cards i { margin-top: 25px; font-style: normal; font-size: 20px; }

.featured-project__layout { display: grid; grid-template-columns: 1.35fr .65fr; min-height: 680px; border: 1px solid rgba(255,255,255,.14); }
.featured-project__media { position: relative; display: block; min-height: 600px; overflow: hidden; }
.featured-project__media .media-frame { height: 100%; }
.featured-project__media > span { position: absolute; right: 20px; bottom: 20px; padding: 12px 15px; background: var(--signal); color: var(--ink); font-family: var(--font-mono); font-size: 10px; }
.featured-project__copy { padding: clamp(32px, 5vw, 70px); display: flex; flex-direction: column; justify-content: center; background: #121212; }
.project-status { font-family: var(--font-mono); font-size: 10px; color: #72ff8e; letter-spacing: .08em; }
.project-status i { width: 6px; height: 6px; display: inline-block; margin-right: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.project-client { margin: 34px 0 22px; color: var(--signal); font-family: var(--font-display); font-size: clamp(29px, 3vw, 48px); font-weight: 800; line-height: .86; letter-spacing: -.065em; }
.featured-project__copy h3 { margin: 0 0 18px; font-family: var(--font-display); font-size: clamp(25px, 2.4vw, 38px); line-height: 1.05; letter-spacing: -.05em; }
.featured-project__copy > p:not(.project-client) { color: rgba(255,255,255,.58); font-size: 13px; }
.featured-project__copy ul { margin: 20px 0 30px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.featured-project__copy li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-family: var(--font-mono); font-size: 10px; }

/* Furniture, coverage and posts */
.furniture-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 7vw, 120px); align-items: center; }
.furniture-section__copy { max-width: 620px; margin: 0; }
.furniture-section__copy h2 { margin: 24px 0; font-family: var(--font-display); font-size: clamp(45px, 6vw, 95px); line-height: .9; letter-spacing: -.075em; }
.furniture-section__copy h2 em { font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.furniture-section__copy > p:not(.eyebrow) { color: #62625b; }
.furniture-points { margin: 30px 0; display: flex; flex-wrap: wrap; gap: 7px; }
.furniture-points span { padding: 7px 9px; border: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: 10px; }
.furniture-section__media { position: relative; min-height: 650px; margin: 0; }
.furniture-section__media .media-frame { height: 100%; }

.coverage-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(45px, 7vw, 110px); }
.coverage-section__copy { margin: 0; align-self: center; }
.coverage-section__copy h1,
.coverage-section__copy h2 { margin: 22px 0; font-family: var(--font-display); font-size: clamp(44px, 6vw, 92px); line-height: .9; letter-spacing: -.075em; }
.coverage-section__copy h1 em,
.coverage-section__copy h2 em { color: var(--signal); font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.coverage-section__copy > p:not(.eyebrow) { max-width: 540px; color: rgba(255,255,255,.6); }
.coverage-section__copy .text-link { margin-top: 24px; }
.coverage-radar { position: relative; min-height: 650px; margin: 0; overflow: hidden; background: #121212; border: 1px solid rgba(255,255,255,.18); }
.coverage-radar .media-frame { position: absolute; inset: 8%; min-height: 0; opacity: .82; }
.coverage-radar .media-frame img { object-fit: contain; filter: contrast(1.3) saturate(.7); }
.radar-ring { position: absolute; z-index: 2; top: 50%; left: 50%; border: 1px solid rgba(255,242,0,.45); border-radius: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.radar-ring--1 { width: 45%; aspect-ratio: 1; }
.radar-ring--2 { width: 75%; aspect-ratio: 1; }
.radar-sweep { position: absolute; z-index: 3; top: 50%; left: 50%; width: 45%; height: 1px; background: linear-gradient(90deg, var(--signal), transparent); transform-origin: left center; animation: radar 6s linear infinite; }
@keyframes radar { to { transform: rotate(360deg); } }
.coverage-radar figcaption { position: absolute; z-index: 5; right: 16px; bottom: 16px; left: 16px; padding: 13px; display: flex; justify-content: space-between; background: rgba(9,9,9,.82); font-family: var(--font-mono); font-size: 10px; }
.coverage-radar figcaption span { color: var(--signal); }
.coverage-map--hero { min-height: 690px; }
.coverage-list { grid-column: 1 / -1; margin: 15px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.15); }
.coverage-list a { min-height: 64px; padding: 0 15px; display: grid; grid-template-columns: 30px 1fr auto; align-items: center; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.coverage-list span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; }
.coverage-list strong { font-size: 12px; }
.coverage-list i { color: var(--signal); font-style: normal; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.post-card { background: var(--paper-bright); }
.post-card > a { height: 100%; display: flex; flex-direction: column; }
.post-card__media { height: 270px; min-height: 270px; }
.post-card__media img { transition: transform .7s var(--ease-out); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card > a > div:last-child { padding: 24px; display: flex; flex: 1; flex-direction: column; }
.post-card span { color: #717169; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.post-card h3 { margin: 28px 0 13px; font-family: var(--font-display); font-size: clamp(22px, 2vw, 31px); line-height: 1.04; letter-spacing: -.05em; }
.post-card p { color: #686860; font-size: 13px; }
.post-card strong { margin-top: auto; padding-top: 18px; font-family: var(--font-mono); font-size: 10px; }
.section-pad--dark .post-grid { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.15); }
.section-pad--dark .post-card { background: #141414; color: var(--white); }
.section-pad--dark .post-card p { color: rgba(255,255,255,.55); }

/* Shared inner heroes */
.inner-hero { position: relative; min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: var(--white); }
.inner-hero__copy { padding: clamp(70px, 8vw, 135px) var(--page-x) 150px; display: flex; flex-direction: column; justify-content: center; }
.inner-hero__copy h1 { max-width: 820px; margin: 27px 0 25px; font-family: var(--font-display); font-size: clamp(52px, 6.8vw, 110px); line-height: .86; letter-spacing: -.08em; }
.inner-hero__copy h1 em { color: var(--signal); font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.inner-hero__copy > p:not(.eyebrow) { max-width: 610px; margin: 0; color: rgba(255,255,255,.66); font-size: clamp(15px, 1.25vw, 19px); }
.inner-hero__copy > .button { margin-top: 32px; align-self: flex-start; }
.inner-hero__media { position: relative; min-height: 640px; overflow: hidden; }
.inner-hero__media > .media-frame { height: 100%; }
.inner-hero__media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(9,9,9,.38), transparent 30%); }
.media-coordinate { position: absolute; z-index: 2; right: 18px; bottom: 105px; left: 18px; padding: 14px; display: flex; justify-content: space-between; gap: 20px; background: rgba(9,9,9,.78); font-family: var(--font-mono); font-size: 10px; backdrop-filter: blur(12px); }
.media-coordinate span { color: var(--signal); }
.inner-hero__stats { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; height: 86px; padding: 0 var(--page-x); display: grid; grid-template-columns: repeat(3, 1fr); background: var(--signal); color: var(--ink); }
.inner-hero__stats > div { padding: 0 clamp(16px, 2vw, 30px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(0,0,0,.2); }
.inner-hero__stats > div:first-child { border-left: 1px solid rgba(0,0,0,.2); }
.inner-hero__stats span { font-family: var(--font-mono); font-size: 10px; opacity: .62; text-transform: uppercase; }
.inner-hero__stats strong { margin-top: 3px; font-size: 13px; }

.page-hero { min-height: 560px; padding: clamp(75px, 9vw, 140px) var(--page-x); display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 60px; }
.page-hero--signal { background: var(--signal); color: var(--ink); }
.page-hero--ink { background: var(--ink); color: var(--white); }
.page-hero > div { width: 100%; max-width: var(--max-content); }
.page-hero h1 { margin: 24px 0; font-family: var(--font-display); font-size: clamp(55px, 8vw, 125px); line-height: .84; letter-spacing: -.085em; }
.page-hero h1 em { font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.page-hero--ink h1 em { color: var(--signal); }
.page-hero > div:first-child > p:not(.eyebrow) { max-width: 650px; margin: 0; font-size: 17px; opacity: .65; }
.page-hero__index { justify-self: end; min-height: 280px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid currentColor; font-family: var(--font-mono); }
.page-hero__index span { font-size: 10px; }
.page-hero__index strong { font-family: var(--font-display); font-size: clamp(28px, 3vw, 48px); line-height: .85; letter-spacing: -.07em; }
.page-hero__index i { align-self: flex-end; font-style: normal; font-size: 60px; opacity: .32; }
.page-hero.page-hero--services { position: relative; min-height: clamp(640px, calc(100svh - var(--utility-h) - var(--header-h)), 820px); grid-template-columns: minmax(0, 1fr); align-items: end; overflow: hidden; background: var(--ink); color: var(--white); }
.page-hero--services .page-hero__copy { position: relative; z-index: 2; align-self: end; max-width: 980px; padding-bottom: clamp(18px, 4vh, 46px); }
.page-hero--services h1 { max-width: 980px; margin: 22px 0 24px; font-size: clamp(54px, 6.7vw, 112px); line-height: .86; }
.page-hero--services h1 em { color: var(--signal); }
.page-hero--services .page-hero__copy > p:not(.eyebrow) { max-width: 640px; color: rgba(255,255,255,.76); opacity: 1; font-size: clamp(15px, 1.2vw, 19px); }
.page-hero--services .eyebrow { color: rgba(255,255,255,.72); }
.page-hero--services .page-hero__side { position: absolute; inset: 0; z-index: 0; width: 100%; max-width: none; display: block; pointer-events: none; }
.page-hero--services .page-hero__media { position: absolute; inset: 0; min-height: 100%; border: 0; }
.page-hero--services .page-hero__media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.68) 43%, rgba(0,0,0,.24) 78%, rgba(0,0,0,.38) 100%), linear-gradient(0deg, rgba(0,0,0,.78), transparent 48%); }
.page-hero--services .page-hero__media img { position: absolute; inset: 0; transform: scale(1.02); object-position: 62% 52%; }
.page-hero--services .page-hero__media figcaption { z-index: 2; right: var(--page-x); left: auto; bottom: 28px; min-width: min(450px, calc(100% - var(--page-x) * 2)); }
.page-hero__media { position: relative; min-height: 420px; margin: 0; overflow: hidden; border: 1px solid currentColor; background: var(--ink); }
.page-hero__media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 62%; }
.page-hero__media figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 13px 15px; display: flex; justify-content: space-between; gap: 18px; background: rgba(9,9,9,.82); color: var(--white); font-family: var(--font-mono); font-size: 10px; backdrop-filter: blur(12px); }
.page-hero__media figcaption span { color: var(--signal); }
.page-hero__media figcaption strong { font-size: 11px; text-align: right; }

/* Service template */
.service-overview { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(50px, 9vw, 150px); align-items: start; }
.service-overview .section-heading, .service-overview__copy { margin: 0; }
.service-overview__copy p { margin: 0 0 20px; color: #55554f; font-size: 16px; }
.service-overview__copy p:first-child { color: var(--ink); font-size: 21px; font-weight: 600; }
.service-overview__copy .text-link { margin-top: 24px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); }
.feature-card { position: relative; min-height: 330px; padding: 25px; display: flex; flex-direction: column; background: #141414; }
.feature-card > span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; }
.feature-card h3 { margin: auto 0 15px; font-family: var(--font-display); font-size: clamp(22px, 2.1vw, 34px); line-height: 1.05; letter-spacing: -.05em; }
.feature-card p { min-height: 72px; margin: 0; color: rgba(255,255,255,.54); font-size: 13px; }
.feature-card > i { margin-top: 22px; color: var(--signal); font-style: normal; }
.coverage-fleet-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.coverage-fleet-grid .fleet-card { min-width: 0; }
.coverage-fleet-grid .fleet-card__image,
.coverage-fleet-grid .fleet-card:hover .fleet-card__image { filter: none; }
.coverage-fleet-grid .fleet-card__body { min-height: 205px; }
.coverage-fleet-grid .fleet-card__image i { max-width: calc(100% - 105px); text-align: right; }
.process-rail { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.process-rail li { position: relative; min-height: 190px; padding: 22px; display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); }
.process-rail li:last-child { border-right: 0; background: var(--signal); }
.process-rail span { font-family: var(--font-mono); font-size: 10px; }
.process-rail strong { margin-top: auto; font-family: var(--font-display); font-size: clamp(18px, 1.8vw, 29px); line-height: 1; letter-spacing: -.045em; }
.process-rail i { position: absolute; top: 50%; right: -17px; z-index: 2; width: 34px; height: 34px; border: 1px solid var(--line-dark); border-radius: 50%; background: var(--paper-bright); transform: translateY(-50%); }
.process-rail i::after { content: "→"; position: absolute; inset: 0; display: grid; place-content: center; font-style: normal; font-size: 13px; }
.process-rail li:last-child i { display: none; }
.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 145px); }
.faq-section .section-heading { margin: 0; }
.accordion { margin: 0; border-top: 1px solid var(--line-dark); }
.accordion-item { border-bottom: 1px solid var(--line-dark); }
.accordion-item h3 { margin: 0; }
.accordion-item button { width: 100%; min-height: 88px; padding: 0; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 15px; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.accordion-item button > span { font-family: var(--font-mono); font-size: 10px; }
.accordion-item button > i { width: 34px; height: 34px; display: grid; place-content: center; border: 1px solid var(--line-dark); border-radius: 50%; font-style: normal; transition: transform .25s ease; }
.accordion-item button[aria-expanded="true"] > i { transform: rotate(45deg); background: var(--signal); }
.accordion-panel { padding: 0 50px 28px; }
.accordion-panel p { margin: 0; color: #5d5d55; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.15); }
.related-card { min-height: 110px; padding: 22px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; background: #151515; transition: background .25s ease; }
.related-card:hover { background: #202020; }
.related-card span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; }
.related-card strong { font-size: 14px; }
.related-card i { color: var(--signal); font-style: normal; }

/* Supporting pages */
.service-combinations .combination-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.combination-grid article { min-height: 340px; padding: 28px; display: flex; flex-direction: column; background: var(--paper-bright); }
.combination-grid span { font-family: var(--font-mono); font-size: 10px; }
.combination-grid h3 { margin: auto 0 18px; font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 39px); line-height: 1; letter-spacing: -.055em; }
.combination-grid p { color: #64645c; font-size: 13px; }
.combination-grid a { margin-top: 20px; font-family: var(--font-mono); font-size: 10px; }

.story-section { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(50px, 9vw, 150px); }
.story-section > * { margin: 0; }
.story-section__copy .lead { color: var(--ink); font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 37px); line-height: 1.1; letter-spacing: -.045em; }
.story-section__copy p:not(.lead) { color: #5f5f58; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.timeline article { min-height: 270px; padding: 24px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.timeline article:last-child { background: var(--signal); }
.timeline span { font-family: var(--font-mono); font-size: 10px; }
.timeline h3 { margin: 80px 0 15px; font-family: var(--font-display); font-size: 24px; line-height: 1.03; letter-spacing: -.045em; }
.timeline p { color: #5f5f58; font-size: 13px; }
.timeline article:last-child p { color: var(--ink); }

.size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.size-grid article { min-height: 300px; padding: 25px; display: flex; flex-direction: column; background: var(--paper-bright); }
.size-grid article:last-child { background: var(--signal); }
.size-grid span { font-family: var(--font-mono); font-size: 10px; }
.size-grid strong { margin: auto 0 16px; font-family: var(--font-display); font-size: 28px; line-height: 1; letter-spacing: -.05em; }
.size-grid p { color: #5e5e57; font-size: 13px; }
.storage-benefits .feature-card { color: var(--white); }

.furniture-path .path-rail { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--line-dark); }
.path-rail li { min-height: 290px; padding: 25px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.path-rail li:last-child { background: var(--signal); }
.path-rail span { font-family: var(--font-mono); font-size: 10px; }
.path-rail h3 { margin: 100px 0 12px; font-family: var(--font-display); font-size: 32px; letter-spacing: -.05em; }
.path-rail p { color: #5e5e57; font-size: 13px; }
.muf-feature { display: grid; grid-template-columns: 1.2fr .8fr; align-items: stretch; gap: clamp(45px, 7vw, 110px); }
.muf-feature > div { margin: 0; }
.muf-feature > div:first-child .media-frame { height: 100%; min-height: 560px; }
.muf-feature > div:last-child { align-self: center; }
.muf-feature h2 { margin: 25px 0; font-family: var(--font-display); font-size: clamp(45px, 6vw, 90px); line-height: .9; letter-spacing: -.075em; }
.muf-feature h2 em { color: var(--signal); font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.muf-feature p:not(.eyebrow) { color: rgba(255,255,255,.6); }
.muf-feature .button { margin-top: 25px; }

.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.case-card:first-child { grid-column: 1 / -1; }
.case-card { background: var(--paper-bright); }
.case-card > a { height: 100%; display: grid; grid-template-columns: 1.15fr .85fr; }
.case-card:not(:first-child) > a { display: block; }
.case-card__media { min-height: 430px; }
.case-card:not(:first-child) .case-card__media { min-height: 310px; }
.case-card > a > div:last-child { padding: clamp(26px, 4vw, 58px); display: flex; flex-direction: column; justify-content: center; }
.case-card > a > div:last-child > span { color: #6d6d65; font-family: var(--font-mono); font-size: 10px; }
.case-card > a > div:last-child > p:first-of-type { margin: 30px 0 8px; color: #5f5f58; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.case-card h2 { margin: 0 0 18px; font-family: var(--font-display); font-size: clamp(27px, 3.3vw, 53px); line-height: .95; letter-spacing: -.065em; }
.case-card > a > div:last-child > p:not(:first-of-type) { color: #64645d; font-size: 13px; }
.case-card strong { margin-top: 25px; font-family: var(--font-mono); font-size: 10px; }
.case-note { max-width: none; }
.case-note > * { max-width: 820px; margin-right: auto; margin-left: auto; }
.case-note h2 { margin: 23px auto; font-family: var(--font-display); font-size: clamp(42px, 6vw, 92px); line-height: .9; letter-spacing: -.075em; }
.case-note h2 em { font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.case-note > p:not(.eyebrow) { color: #62625b; }
.case-note .text-link { margin-top: 22px; }

.case-study__hero, .article-hero { min-height: 700px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: var(--white); }
.case-study__hero > div:first-child, .article-hero > div:first-child { padding: clamp(70px, 8vw, 135px) var(--page-x); display: flex; flex-direction: column; justify-content: center; }
.case-study__hero h1, .article-hero h1 { margin: 25px 0; font-family: var(--font-display); font-size: clamp(48px, 6.5vw, 105px); line-height: .88; letter-spacing: -.075em; }
.case-study__hero > div:first-child > p:last-child, .article-hero > div:first-child > p:last-child { color: rgba(255,255,255,.62); }
.case-study__hero > div:last-child .media-frame, .article-hero > div:last-child .media-frame { height: 100%; }
.case-study__meta { padding: 0 var(--page-x); display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); background: var(--signal); }
.case-study__meta > div { min-height: 82px; padding: 14px 20px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(0,0,0,.2); }
.case-study__meta span { font-family: var(--font-mono); font-size: 10px; opacity: .6; }
.case-study__meta strong { font-size: 12px; }
.case-card__facts { margin: 24px 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.case-card__facts div { min-height: 74px; padding: 11px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.case-card__facts dt { margin-bottom: 7px; color: #73736b; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.case-card__facts dd { margin: 0; color: var(--ink); font-size: 11px; line-height: 1.35; }
.case-study__body, .article-layout { display: grid; grid-template-columns: .35fr 1fr; gap: clamp(50px, 10vw, 170px); }
.case-study__body aside, .article-layout aside { position: sticky; top: 100px; align-self: start; display: grid; border-top: 1px solid var(--line-dark); }
.case-study__body aside > span, .article-layout aside > span { padding: 13px 0; font-family: var(--font-mono); font-size: 10px; }
.case-study__body aside a, .article-layout aside a { padding: 11px 0; border-top: 1px solid var(--line-dark); color: #66665e; font-size: 11px; }
.case-study__body > div > section, .article-body > .article-block--section { padding: 0 0 80px; margin-bottom: 80px; border-bottom: 1px solid var(--line-dark); }
.case-study__body section > span, .article-body section > span { color: #717169; font-family: var(--font-mono); font-size: 10px; }
.case-study__body h2, .article-body h2 { margin: 22px 0; font-family: var(--font-display); font-size: clamp(35px, 4vw, 64px); line-height: .98; letter-spacing: -.06em; }
.case-study__body section p, .article-body section p { max-width: 780px; color: #50504a; font-size: 17px; line-height: 1.8; }
.article-block { scroll-margin-top: 110px; }
.article-block--section > small { display: block; margin-top: 10px; color: #717169; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.article-block--section ul { margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); list-style: none; }
.article-block--section li { min-height: 72px; padding: 16px; display: flex; align-items: center; background: var(--paper-bright); font-size: 13px; line-height: 1.45; }
.article-media { margin: -35px 0 80px; display: grid; grid-template-columns: minmax(0, 1fr) 190px; overflow: hidden; background: var(--ink); color: var(--white); border: 1px solid var(--ink); }
.article-media__visual { min-height: 430px; }
.article-media figcaption { min-height: 190px; padding: 22px 18px; display: flex; flex-direction: column; justify-content: space-between; gap: 35px; }
.article-media figcaption span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; letter-spacing: .04em; }
.article-media figcaption p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.55; }
.article-media--offset { grid-template-columns: 190px minmax(0, 1fr); }
.article-media--offset .article-media__visual { order: 2; }
.article-media--offset figcaption { order: 1; }
.article-media--closing { grid-template-columns: 1fr; }
.article-media--closing .article-media__visual { min-height: 390px; }
.article-media--closing figcaption { min-height: 0; padding: 16px 18px; display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 24px; }
.article-quote { position: relative; margin: -25px 0 80px; padding: clamp(38px, 6vw, 78px); overflow: hidden; background: var(--ink); color: var(--white); border-left: 8px solid var(--signal); }
.article-quote > span { position: absolute; top: -35px; right: 22px; color: rgba(255,242,0,.18); font-family: Georgia, serif; font-size: 190px; line-height: 1; }
.article-quote p { position: relative; max-width: 850px; margin: 0; font-family: var(--font-display); font-size: clamp(29px, 4.2vw, 58px); line-height: 1; letter-spacing: -.055em; }
.article-quote cite { position: relative; display: block; margin-top: 28px; color: var(--signal); font-family: var(--font-mono); font-size: 10px; font-style: normal; text-transform: uppercase; }
.article-split { margin: -25px 0 80px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); overflow: hidden; background: var(--mist); border: 1px solid var(--line-dark); }
.article-split__media { min-height: 500px; }
.article-split__copy { padding: clamp(28px, 4.5vw, 58px); display: flex; flex-direction: column; justify-content: center; }
.article-split__copy > span { color: #696961; font-family: var(--font-mono); font-size: 10px; }
.article-split__copy h2 { margin: 20px 0; font-size: clamp(31px, 3.4vw, 50px); }
.article-split__copy p { margin: 0 0 14px; color: #55554e; font-size: 14px; line-height: 1.65; }
.article-split--right .article-split__media { order: 2; }
.article-split--right .article-split__copy { order: 1; }
.article-gallery { margin: -25px 0 80px; }
.article-gallery__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.article-gallery__media { min-height: 390px; }
.article-gallery--feature .article-gallery__media:first-child:nth-last-child(n+3) { grid-column: 1 / -1; min-height: 470px; }
.article-gallery figcaption { padding: 13px 0; color: #66665e; font-size: 12px; line-height: 1.5; border-bottom: 1px solid var(--line-dark); }
.article-checklist { margin: -25px 0 80px; padding: clamp(28px, 5vw, 60px); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 6vw, 80px); background: var(--signal); }
.article-checklist > div > span { color: rgba(0,0,0,.58); font-family: var(--font-mono); font-size: 10px; }
.article-checklist h2 { margin: 20px 0 0; font-size: clamp(34px, 4.2vw, 59px); }
.article-checklist ul { margin: 0; padding: 0; display: grid; background: rgba(0,0,0,.18); gap: 1px; list-style: none; }
.article-checklist li { min-height: 64px; padding: 14px 16px; display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 10px; background: var(--signal); font-size: 13px; }
.article-checklist li i { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 10px; font-style: normal; }
.article-stats { margin: -25px 0 80px; display: grid; grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); gap: 1px; background: rgba(255,255,255,.18); border: 1px solid var(--ink); }
.article-stats div { min-height: 165px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; background: var(--ink); }
.article-stats dt { color: var(--signal); font-family: var(--font-display); font-size: clamp(36px, 4vw, 58px); line-height: .9; }
.article-stats dd { margin: 0; color: rgba(255,255,255,.72); font-family: var(--font-mono); font-size: 10px; line-height: 1.45; text-transform: uppercase; }
.article-callout { margin: -25px 0 80px; padding: clamp(28px, 5vw, 60px); display: grid; grid-template-columns: 170px 1fr; gap: clamp(30px, 6vw, 80px); background: var(--paper-bright); border: 1px solid var(--line-dark); }
.article-callout > span { color: #6a6a62; font-family: var(--font-mono); font-size: 10px; }
.article-callout h2 { margin: 0 0 20px; }
.article-callout p { max-width: 700px; color: #5b5b54; font-size: 15px; line-height: 1.7; }
.article-callout .text-link { margin-top: 20px; }
.case-results { max-width: 860px; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); list-style: none; }
.case-results li { min-height: 160px; padding: 22px; display: flex; align-items: flex-end; background: var(--paper-bright); font-family: var(--font-display); font-size: clamp(18px, 2vw, 26px); line-height: 1.08; }
.case-study__gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.case-study__gallery .media-frame { min-height: 360px; }

.blog-index__intro { margin-bottom: 65px; display: flex; justify-content: space-between; align-items: flex-end; }
.blog-index__intro > span { font-family: var(--font-mono); font-size: 10px; color: var(--signal); }
.blog-index__intro h2 { margin: 0; text-align: right; font-family: var(--font-display); font-size: clamp(45px, 6vw, 90px); line-height: .9; letter-spacing: -.075em; }
.blog-index__intro h2 em { color: var(--signal); font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.publish-note { display: grid; grid-template-columns: 1fr .7fr; gap: 60px; align-items: end; }
.publish-note > * { margin: 0; }
.publish-note h2 { margin: 20px 0 0; font-family: var(--font-display); font-size: clamp(43px, 5vw, 80px); line-height: .9; letter-spacing: -.07em; }
.publish-note h2 em { font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.publish-note > p { color: #606059; }
.article-inline-cta { padding: clamp(28px, 5vw, 65px); background: var(--signal); }
.article-inline-cta > span { font-family: var(--font-mono); font-size: 10px; }
.article-inline-cta h2 { margin-bottom: 15px; }
.article-inline-cta p { color: var(--ink); }
.article-back { margin-top: 20px; color: var(--ink) !important; font-weight: 700; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-item { grid-column: span 5; margin: 0; }
.gallery-item--wide { grid-column: span 7; }
.gallery-item .media-frame { min-height: 500px; }
.gallery-item:nth-child(3n+2) .media-frame { min-height: 620px; }
.gallery-item figcaption { padding: 13px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line-dark); }
.gallery-item figcaption span { color: #6f6f68; font-family: var(--font-mono); font-size: 10px; }
.gallery-item figcaption strong { font-size: 11px; }
.gallery-video-note { display: grid; grid-template-columns: 1fr .7fr; gap: 70px; align-items: end; }
.gallery-video-note > * { margin: 0; }
.gallery-video-note h2 { margin: 20px 0 0; font-family: var(--font-display); font-size: clamp(42px, 6vw, 90px); line-height: .9; letter-spacing: -.075em; }
.gallery-video-note h2 em { font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.gallery-video-note > p { color: #5e5e57; }

.coverage-hero { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(45px, 7vw, 110px); align-items: stretch; }
.coverage-radar--hero { min-height: 690px; }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.area-grid article { min-height: 270px; padding: 25px; display: flex; flex-direction: column; background: var(--paper-bright); scroll-margin-top: 90px; }
.area-grid article:nth-child(2n) { background: var(--mist); }
.area-grid span { font-family: var(--font-mono); font-size: 10px; }
.area-grid h2 { margin: auto 0 10px; font-family: var(--font-display); font-size: 30px; letter-spacing: -.05em; }
.area-grid p { color: #606059; font-size: 12px; }
.area-grid a { margin-top: 10px; font-family: var(--font-mono); font-size: 10px; }
.area-grid--media article { min-height: 500px; padding: 0 25px 25px; }
.area-grid--media .area-card__media { height: clamp(270px, 20vw, 380px); min-height: 0; margin: 0 -25px 22px; }
.area-grid--media h2 { margin: auto 0 10px; }
.area-grid article > strong { margin-top: 15px; font-family: var(--font-mono); font-size: 10px; font-weight: 500; text-transform: uppercase; }
.content-list { margin: 24px 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); list-style: none; }
.content-list li { min-height: 78px; padding: 18px; display: flex; align-items: center; background: var(--paper-bright); font-size: 13px; }
.coverage-list--light { background: var(--line-dark); border-top-color: var(--line-dark); }
.coverage-list--light a { background: var(--paper-bright); border-color: var(--line-dark); }
.coverage-list--light strong { color: var(--ink); }
.nationwide-band { max-width: none; text-align: center; }
.nationwide-band > * { max-width: 880px; margin-right: auto; margin-left: auto; }
.nationwide-band > span { font-family: var(--font-mono); font-size: 10px; }
.nationwide-band h2 { margin-top: 18px; font-family: var(--font-display); font-size: clamp(44px, 6vw, 90px); letter-spacing: -.07em; }
.nationwide-band .button { margin-top: 25px; }

/* Forms */
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.contact-layout > *, .quote-page > * { margin: 0; }
.contact-intro { position: sticky; top: 100px; }
.contact-intro h1 { margin: 26px 0; }
.contact-intro h1 em { color: var(--signal); }
.contact-intro > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.contact-direct { margin-top: 55px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-direct > div { padding: 17px 0; display: grid; grid-template-columns: 75px 1fr; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-direct span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; }
.contact-direct a { font-size: 14px; }
.contact-direct p { margin: 0; color: rgba(255,255,255,.66); font-size: 12px; }
.form-shell { max-width: 850px; padding: clamp(25px, 4vw, 55px); background: var(--paper-bright); color: var(--ink); }
.form-shell--light { border: 1px solid var(--line-dark); }
.form-shell__head { margin-bottom: 35px; padding-bottom: 16px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: 10px; }
.form-shell__head i { color: #74746d; font-style: normal; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.form-grid label { display: grid; gap: 8px; }
.form-grid label > span { font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 54px; padding: 13px 14px; border: 1px solid #c9c7bd; border-radius: 0; background: transparent; color: var(--ink); outline: none; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 2px var(--signal); }
.form-full { grid-column: 1 / -1; }
.check-label { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 11px !important; }
.check-label input { width: 18px; min-height: 18px; accent-color: var(--ink); }
.check-label span { line-height: 1.5; text-transform: none !important; }
.form-submit { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.form-submit p { margin: 0; color: #67675f; font-size: 11px; }
.form-submit a { color: var(--ink); font-weight: 700; }
.honeypot { position: absolute; left: -10000px; }
.form-alert { margin-bottom: 24px; padding: 15px; border: 1px solid; font-size: 13px; }
.form-alert--success { background: #e3fbe5; border-color: #4f9858; }
.form-alert--error { background: #fff2ea; border-color: #b55332; }
.quote-page { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.quote-page__intro { position: sticky; top: 100px; }
.quote-page__intro h1 { margin: 25px 0; }
.quote-page__intro > p:not(.eyebrow) { color: #606059; }
.quote-page__intro ol { margin: 45px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.quote-page__intro li { min-height: 57px; display: grid; grid-template-columns: 42px 1fr; align-items: center; border-bottom: 1px solid var(--line-dark); font-size: 12px; }
.quote-page__intro li span { font-family: var(--font-mono); font-size: 10px; }
.quote-assurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.quote-assurance > div { margin: 0; min-height: 105px; padding: 22px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(255,255,255,.14); }
.quote-assurance span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; }
.quote-assurance strong { margin-top: 8px; font-size: 13px; }

/* Closing and footer */
.closing-cta { overflow: hidden; background: var(--signal); color: var(--ink); text-align: center; }
.closing-cta::before { content: "OPS"; position: absolute; right: -2vw; bottom: -5vw; color: transparent; font-family: var(--font-display); font-size: 28vw; font-weight: 800; line-height: .7; letter-spacing: -.12em; -webkit-text-stroke: 1px rgba(0,0,0,.13); pointer-events: none; }
.closing-cta__signal { position: relative; width: min(500px, 70vw); margin-bottom: 45px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 15px; }
.closing-cta__signal span { height: 1px; background: var(--ink); }
.closing-cta__signal i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.closing-cta .eyebrow { justify-content: center; }
.closing-cta h2 { position: relative; margin: 25px auto 38px; font-family: var(--font-display); font-size: clamp(51px, 8vw, 125px); line-height: .84; letter-spacing: -.085em; }
.closing-cta h2 em { font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.closing-cta__actions { position: relative; display: flex; justify-content: center; align-items: center; gap: 30px; }

.site-footer { padding: 0 var(--page-x); background: var(--ink); color: var(--white); }
.footer-main { max-width: var(--max-content); margin: 0 auto; padding: 80px 0 55px; display: grid; grid-template-columns: 1.5fr .6fr .8fr .9fr; gap: clamp(35px, 6vw, 100px); }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.brand--footer { margin-bottom: 25px; }
.footer-brand > p { max-width: 430px; color: rgba(255,255,255,.52); font-size: 13px; }
.footer-status { margin-top: 28px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.15); font-family: var(--font-mono); font-size: 10px; }
.footer-status i { width: 6px; height: 6px; display: inline-block; margin-right: 6px; border-radius: 50%; background: #72ff8e; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links > span, .footer-contact > span { margin-bottom: 14px; color: var(--signal); font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a, .footer-contact a { width: max-content; color: rgba(255,255,255,.7); font-size: 12px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,.48); font-size: 11px; }
.footer-contact .footer-quote { margin-top: 12px; padding-bottom: 4px; color: var(--white); border-bottom: 1px solid var(--signal); }
.footer-bottom { max-width: var(--max-content); min-height: 68px; margin: 0 auto; padding: 15px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.43); font-family: var(--font-mono); font-size: 10px; }
.footer-bottom p { margin: 0; }
.floating-quote { position: fixed; z-index: 180; right: 18px; bottom: 18px; width: 70px; height: 70px; display: none; place-content: center; border-radius: 50%; background: var(--signal); color: var(--ink); box-shadow: 0 15px 40px rgba(0,0,0,.25); text-align: center; }
.floating-quote span { display: block; font-family: var(--font-mono); font-size: 10px; }
.floating-quote i { font-style: normal; }

.not-found { min-height: 650px; display: flex; flex-direction: column; justify-content: center; background: var(--ink); color: var(--white); }
.not-found > span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; }
.not-found h1 { margin: 25px 0; font-family: var(--font-display); font-size: clamp(60px, 9vw, 140px); line-height: .84; letter-spacing: -.08em; }
.not-found p { max-width: 600px; color: rgba(255,255,255,.6); }
.not-found > div { margin-top: 25px; display: flex; align-items: center; gap: 25px; }

@media (max-width: 1220px) {
    .desktop-nav, .header-quote { display: none; }
    .site-header { grid-template-columns: 1fr auto; }
    .menu-toggle { display: flex; }
    .floating-quote { display: grid; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .scale-track { grid-template-columns: repeat(4, minmax(310px, 1fr)); }
    .home-hero__copy { top: 80px; }
    .journey-layout { grid-template-columns: .65fr 1.35fr; }
    .journey-story { grid-column: 1 / -1; }
    .journey-year > strong { writing-mode: initial; transform: none; }
    .journey-year { min-height: 610px; }
}

@media (max-width: 960px) {
    :root { --page-x: clamp(18px, 4vw, 38px); }
    .desktop-nav, .header-quote { display: none; }
    .site-header { grid-template-columns: 1fr auto; }
    .menu-toggle { display: flex; }
    .floating-quote { display: grid; }
    .section-heading--split, .service-overview, .faq-section, .story-section, .publish-note, .gallery-video-note { grid-template-columns: 1fr; }
    .section-heading--split > p { justify-self: start; }
    .segmented-control { justify-self: start; }
    .home-hero__copy h1 { font-size: clamp(58px, 12vw, 110px); }
    .home-hero__copy { top: 80px; }
    .hero-console { width: 300px; bottom: 102px; }
    .home-hero__ticker { grid-template-columns: repeat(2, 1fr); height: 98px; }
    .home-hero__ticker > div:nth-child(n+3) { display: none; }
    .journey-rail, .process-cards, .process-rail, .timeline, .size-grid, .furniture-path .path-rail { grid-template-columns: repeat(2, 1fr); }
    .process-cards li:nth-child(2), .process-rail li:nth-child(2), .timeline article:nth-child(2), .size-grid article:nth-child(2), .path-rail li:nth-child(2) { border-right: 0; }
    .featured-project__layout, .furniture-section, .coverage-section, .coverage-hero, .inner-hero, .case-study__hero, .article-hero, .contact-layout, .quote-page, .muf-feature { grid-template-columns: 1fr; }
    .featured-project__media, .furniture-section__media, .coverage-radar, .coverage-map--hero { min-height: 560px; }
    .inner-hero__copy { padding-bottom: 130px; }
    .inner-hero__media { min-height: 600px; }
    .inner-hero__stats { position: relative; grid-column: 1 / -1; }
    .page-hero { grid-template-columns: 1fr; }
    .page-hero__index { display: none; }
    .page-hero.page-hero--services { min-height: 660px; grid-template-columns: 1fr; }
    .page-hero--services .page-hero__side { max-width: none; }
    .page-hero--services .page-hero__media { min-height: 100%; }
    .service-overview__copy { max-width: 760px; }
    .case-study__body, .article-layout { grid-template-columns: 1fr; }
    .case-study__body aside, .article-layout aside, .contact-intro, .quote-page__intro { position: static; }
    .case-study__body aside, .article-layout aside { display: none; }
    .case-study__meta { grid-template-columns: 1fr; }
    .case-card__facts { grid-template-columns: 1fr; }
    .case-study__meta > div { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.2); }
    .case-card > a { grid-template-columns: 1fr; }
    .case-card__media { min-height: 420px; }
    .gallery-item, .gallery-item--wide { grid-column: span 6; }
    .area-grid { grid-template-columns: repeat(2, 1fr); }
    .case-study__meta { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
    :root { --utility-h: 34px; --header-h: 68px; }
    .utility-bar p { display: none; }
    .utility-bar { justify-content: center; }
    .brand-name { font-size: 15px; }
    .brand-mark { width: 28px; height: 28px; }
    .section-pad { padding-top: 78px; padding-bottom: 78px; }
    .section-heading h2, .contact-intro h1, .quote-page__intro h1 { font-size: clamp(40px, 13vw, 66px); }
    .story-section > * { min-width: 0; }
    .story-section h2 { font-size: clamp(36px, 11.5vw, 58px); }
    .home-hero { min-height: 690px; height: calc(100svh - var(--utility-h) - var(--header-h)); }
    .home-hero__shade { background: linear-gradient(0deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.54) 68%, rgba(0,0,0,.32)); }
    .home-hero__copy { top: auto; bottom: 120px; }
    .home-hero__copy h1 { margin: 18px 0; font-size: clamp(49px, 15vw, 80px); }
    .home-hero__copy > p:not(.eyebrow) { font-size: 13px; }
    .home-hero .hero-actions { margin-top: 23px; }
    .hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 9px; }
    .hero-actions .button { width: 100%; }
    .hero-console, .hero-scroll { display: none; }
    .home-hero__ticker { height: 92px; padding: 0 14px; }
    .home-hero__ticker > div { padding: 0 12px; }
    .journey-layout { grid-template-columns: 1fr; }
    .journey-year { min-height: 290px; }
    .journey-year > strong { margin: auto 0; font-size: 95px; }
    .journey-media { min-height: 440px; }
    .journey-rail, .services-grid, .feature-grid, .coverage-fleet-grid, .process-cards, .process-rail, .timeline, .size-grid, .furniture-path .path-rail, .coverage-list, .post-grid, .related-grid, .service-combinations .combination-grid, .area-grid, .quote-assurance, .case-results, .case-study__gallery, .content-list { grid-template-columns: 1fr; }
    .case-study__meta { grid-template-columns: 1fr; }
    .services-all { min-height: 110px; grid-template-columns: 1fr auto; }
    .services-all strong { grid-column: 1 / -1; grid-row: 1; }
    .service-card__media { height: 245px; min-height: 245px; }
    .scale-track { grid-template-columns: repeat(4, minmax(82vw, 1fr)); }
    .scale-card { min-height: 390px; }
    .process-cards li, .process-rail li { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
    .process-rail i { display: none; }
    .featured-project__media, .furniture-section__media, .coverage-radar, .coverage-radar--hero, .coverage-map--hero { min-height: 430px; }
    .featured-project__copy ul { grid-template-columns: 1fr; }
    .coverage-section__copy h1, .coverage-section__copy h2 { font-size: 54px; }
    .coverage-radar .media-frame { inset: 3%; }
    .coverage-list a { border-right: 0; }
    .closing-cta__actions { flex-direction: column; }
    .inner-hero { min-height: 0; }
    .inner-hero__copy { padding: 70px var(--page-x) 80px; }
    .inner-hero__copy h1 { font-size: clamp(48px, 15vw, 75px); }
    .inner-hero__media { min-height: 460px; }
    .inner-hero__stats { height: auto; grid-template-columns: 1fr; padding: 0 18px; }
    .inner-hero__stats > div { min-height: 67px; border-right: 0; border-bottom: 1px solid rgba(0,0,0,.2); }
    .inner-hero__stats > div:first-child { border-left: 0; }
    .media-coordinate { bottom: 18px; }
    .page-hero { min-height: 500px; padding-top: 80px; }
    .page-hero h1 { font-size: clamp(50px, 15vw, 78px); }
    .feature-card { min-height: 270px; }
    .accordion-item button { grid-template-columns: 28px 1fr auto; }
    .accordion-panel { padding-left: 42px; }
    .timeline article, .size-grid article, .path-rail li { border-right: 0; }
    .case-grid { grid-template-columns: 1fr; }
    .case-card:first-child { grid-column: auto; }
    .case-study__hero, .article-hero { min-height: 0; }
    .case-study__hero > div:first-child, .article-hero > div:first-child { padding: 75px var(--page-x); }
    .case-study__hero > div:last-child, .article-hero > div:last-child { min-height: 430px; }
    .case-study__body section p, .article-body section p { font-size: 15px; }
    .blog-index__intro { display: block; }
    .blog-index__intro h2 { margin-top: 30px; text-align: left; }
    .gallery-item, .gallery-item--wide { grid-column: 1 / -1; }
    .gallery-item .media-frame, .gallery-item:nth-child(3n+2) .media-frame { min-height: 420px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-full { grid-column: auto; }
    .form-submit { align-items: stretch; flex-direction: column; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .not-found > div { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .radar-sweep, .home-hero__media .media-frame img { animation: none; }
}

/* --------------------------------------------------------------------------
   Final submission polish
   Normal browser zoom is the reference. These proportions reproduce the
   tighter 75%-zoom impression requested by the team without requiring zoom.
   -------------------------------------------------------------------------- */

.section-pad { padding-top: clamp(74px, 7.2vw, 118px); padding-bottom: clamp(74px, 7.2vw, 118px); }
.section-heading { margin-bottom: clamp(38px, 4.5vw, 64px); }
.inner-hero { min-height: 690px; }
.inner-hero__copy { padding-top: clamp(64px, 6.5vw, 104px); padding-bottom: 128px; }
.inner-hero__media { min-height: 580px; }
.page-hero { min-height: 490px; padding-top: clamp(65px, 6.5vw, 105px); padding-bottom: clamp(65px, 6.5vw, 105px); }
.page-hero__index { min-height: 235px; }
.feature-card { min-height: 285px; }
.process-rail li { min-height: 165px; }
.case-study__hero, .article-hero { min-height: 620px; }
.gallery-item .media-frame { min-height: 440px; }
.gallery-item:nth-child(3n+2) .media-frame { min-height: 540px; }
.about-video .media-frame,
.about-video iframe,
.about-video .youtube-placeholder { min-height: 560px; }
.about-team-section__media .media-frame { min-height: 510px; }
.service-detail__media,
.service-detail__media .media-frame { min-height: 600px; }
.service-detail > * { width: 100%; margin-right: 0; margin-left: 0; }
.service-detail--editorial .service-detail__media,
.service-detail--editorial .service-detail__media .media-frame { min-height: 555px; }
.service-detail--technical .service-detail__media,
.service-detail--technical .service-detail__media .media-frame { min-height: 535px; }

/* Service-page hero actions are a compact decision rail, not another billboard. */
.inner-hero--service .hero-actions {
    width: min(100%, 650px);
    margin-top: 34px;
    padding: 14px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.035);
}
.inner-hero--service .hero-actions .button { width: 100%; min-height: 54px; }

/* Compact closing project desk used site-wide, with service-aware copy/links. */
.closing-cta {
    background: var(--ink);
    color: var(--white);
    text-align: left;
}
.closing-cta::before {
    right: auto;
    bottom: -8vw;
    left: -1.5vw;
    color: transparent;
    font-size: 24vw;
    -webkit-text-stroke-color: rgba(255,255,255,.055);
}
.closing-cta__frame {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    align-items: stretch;
    gap: clamp(34px, 7vw, 110px);
}
.closing-cta__copy { align-self: center; }
.closing-cta__copy .eyebrow { justify-content: flex-start; }
.closing-cta__copy h2 {
    margin: 24px 0 26px;
    font-family: var(--font-display);
    font-size: clamp(46px, 5.5vw, 86px);
    line-height: .88;
    letter-spacing: -.075em;
}
.closing-cta__copy h2 em { color: var(--signal); font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.closing-cta__copy > p:last-child { max-width: 640px; margin: 0; color: rgba(255,255,255,.58); font-size: 15px; }
.closing-cta__panel {
    min-height: 330px;
    padding: clamp(24px, 3.2vw, 46px);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,.2);
    background: var(--signal);
    color: var(--ink);
}
.closing-cta__panel-top { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; }
.closing-cta__panel-top i { font-style: normal; font-size: 21px; }
.closing-cta__panel > strong { max-width: 460px; margin: auto 0 28px; font-family: var(--font-display); font-size: clamp(28px, 3vw, 48px); line-height: .94; letter-spacing: -.055em; }
.closing-cta__actions { display: grid; grid-template-columns: 1fr; align-items: stretch; justify-content: stretch; gap: 16px; }
.closing-cta__actions .button { width: 100%; background: var(--ink); color: var(--white); }
.closing-cta__actions .text-link { width: max-content; color: var(--ink); border-color: rgba(0,0,0,.35); }
.closing-cta__meta { margin-top: 28px; padding-top: 15px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border-top: 1px solid rgba(0,0,0,.24); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.closing-cta__meta span::before { content: "•"; margin-right: 6px; }

/* Switch to the mobile navigation before the desktop links become cramped. */
@media (max-width: 1100px) {
    .desktop-nav, .header-quote { display: none; }
    .site-header { grid-template-columns: 1fr auto; }
    .menu-toggle { display: flex; }
    .floating-quote { display: grid; }
    .inner-hero, .case-study__hero, .article-hero { grid-template-columns: 1fr; }
    .inner-hero__copy { padding-bottom: 78px; }
    .inner-hero__media { min-height: 540px; }
    .inner-hero__stats { position: relative; grid-column: 1 / -1; }
    .service-detail,
    .service-detail--media-right,
    .service-detail--technical { grid-template-columns: 1fr; }
    .service-detail--media-right .service-detail__media { order: 0; }
    .service-detail__media,
    .service-detail__media .media-frame,
    .service-detail--editorial .service-detail__media,
    .service-detail--editorial .service-detail__media .media-frame,
    .service-detail--technical .service-detail__media,
    .service-detail--technical .service-detail__media .media-frame { position: relative; top: auto; min-height: 500px; }
    .service-detail--editorial .service-detail__content { grid-template-columns: 1fr; }
    .service-detail--editorial .service-detail__content .section-heading { position: static; }
    .closing-cta__frame { grid-template-columns: 1fr; gap: 46px; }
    .closing-cta__copy > p:last-child { max-width: 720px; }
}

@media (max-width: 650px) {
    .section-pad { padding-top: 64px; padding-bottom: 64px; }
    .section-heading { margin-bottom: 38px; }
    .inner-hero__copy { padding-top: 64px; padding-bottom: 68px; }
    .inner-hero__media,
    .inner-hero__media > .media-frame { min-height: min(420px, 112vw); }
    .inner-hero__stats { height: auto; }
    .page-hero { min-height: 430px; padding-top: 66px; padding-bottom: 66px; }
    .page-hero.page-hero--services { min-height: 610px; }
    .page-hero--services h1 { font-size: clamp(42px, 12vw, 64px); }
    .page-hero--services .page-hero__side { display: block; }
    .page-hero--services .page-hero__media { min-height: 100%; }
    .page-hero--services .page-hero__media figcaption { right: 12px; left: 12px; bottom: 12px; min-width: 0; }
    .page-hero__media { min-height: 280px; }
    .page-hero__media figcaption { right: 12px; bottom: 12px; left: 12px; display: grid; gap: 6px; }
    .page-hero__media figcaption strong { text-align: left; }
    .feature-card { min-height: 245px; }
    .process-rail li { min-height: 205px; }
    .case-study__hero > div:last-child,
    .article-hero > div:last-child { min-height: min(400px, 108vw); }
    .article-media,
    .article-media--offset,
    .article-media--closing { margin-top: -15px; margin-bottom: 58px; grid-template-columns: 1fr; }
    .article-media--offset .article-media__visual,
    .article-media--offset figcaption { order: initial; }
    .article-media__visual,
    .article-media--closing .article-media__visual { min-height: min(390px, 92vw); }
    .article-media figcaption,
    .article-media--closing figcaption { min-height: 0; padding: 17px; display: grid; grid-template-columns: 110px 1fr; align-items: start; gap: 18px; }
    .article-block--section ul { grid-template-columns: 1fr; }
    .article-quote { margin-top: -10px; padding: 36px 24px; }
    .article-quote > span { right: 8px; font-size: 130px; }
    .article-split,
    .article-checklist,
    .article-callout { margin-top: -10px; grid-template-columns: 1fr; }
    .article-split--right .article-split__media,
    .article-split--right .article-split__copy { order: initial; }
    .article-split__media { min-height: min(390px, 92vw); }
    .article-split__copy { padding: 26px 20px; }
    .article-gallery { margin-top: -10px; }
    .article-gallery__grid { grid-template-columns: 1fr; }
    .article-gallery--feature .article-gallery__media:first-child:nth-last-child(n+3) { grid-column: auto; min-height: min(390px, 92vw); }
    .article-gallery__media { min-height: min(390px, 92vw); }
    .article-checklist { padding: 28px 20px; }
    .article-stats { margin-top: -10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .article-stats div { min-height: 135px; padding: 16px; }
    .article-callout { padding: 28px 20px; gap: 20px; }
    .gallery-item .media-frame,
    .gallery-item:nth-child(3n+2) .media-frame { min-height: min(390px, 108vw); }
    .about-video .media-frame,
    .about-video iframe,
    .about-video .youtube-placeholder { min-height: min(390px, 105vw); }
    .about-team-section__media .media-frame { min-height: min(390px, 105vw); }
    .service-detail__media,
    .service-detail__media .media-frame,
    .service-detail--editorial .service-detail__media,
    .service-detail--editorial .service-detail__media .media-frame,
    .service-detail--technical .service-detail__media,
    .service-detail--technical .service-detail__media .media-frame { min-height: min(390px, 108vw); }
    .inner-hero--service .hero-actions { padding: 10px; grid-template-columns: 1fr; }
    .inner-hero--service .hero-actions .button { min-height: 52px; }
    .closing-cta__frame { gap: 38px; }
    .closing-cta__copy h2 { font-size: clamp(43px, 13vw, 66px); }
    .closing-cta__panel { min-height: 315px; padding: 24px 20px; }
    .closing-cta__panel > strong { margin-top: 55px; }
    .closing-cta__meta { grid-template-columns: 1fr; gap: 7px; }
    .closing-cta__actions { flex-direction: initial; }
}

.mobile-services { margin-top: 20px; border: 1px solid rgba(255,255,255,.2); color: var(--white); }
.mobile-services summary { min-height: 55px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.mobile-services summary::-webkit-details-marker { display: none; }
.mobile-services summary::after { content: "+"; color: var(--signal); font-family: var(--font-display); font-size: 22px; }
.mobile-services[open] summary::after { content: "−"; }
.mobile-services summary strong { margin-left: auto; color: var(--signal); font-size: 10px; }
.mobile-services > div { padding: 0 12px 12px; display: grid; grid-template-columns: 1fr; }
.mobile-services > div a { min-height: 44px; padding: 0 6px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 8px; border-top: 1px solid rgba(255,255,255,.12); color: var(--white); font-size: 12px; text-decoration: none; }
.mobile-services > div a small { color: var(--signal); font-family: var(--font-mono); font-size: 10px; }
.mobile-services > div a i { color: var(--signal); font-style: normal; }
