:root {
    --navy: #062b48;
    --navy-deep: #031d31;
    --ink: #0a1116;
    --blue: #074a75;
    --yellow: #f4b400;
    --paper: #f2f0eb;
    --white: #fff;
    --muted: #9ba7af;
    --line: rgba(8, 32, 49, .16);
    --font-display: "Barlow Condensed", Arial Narrow, sans-serif;
    --font-body: "Archivo", Arial, sans-serif;
    --wrap: min(1360px, calc(100vw - 96px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: 16px; line-height: 1.55; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 16px; background: var(--yellow); color: var(--ink); transform: translateY(-140%); transition: .2s; }
.skip-link:focus { transform: translateY(0); }
.section { padding: 150px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-ink { background: var(--ink); color: var(--white); }
.section-index { margin: 0; color: #788892; font-size: 11px; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 22px; color: var(--yellow); font-size: 11px; font-weight: 500; letter-spacing: .23em; text-transform: uppercase; }
.eyebrow span { width: 44px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--yellow); }
.eyebrow-ink { color: var(--navy); }
.section-heading { margin-bottom: 80px; }
.split-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.section-heading h2, .editorial-grid h2, .detail-grid h2, .contact-info h2, .team-placeholder h2 { margin: 0; font-family: var(--font-display); font-size: clamp(62px, 6.4vw, 112px); font-weight: 400; letter-spacing: -.035em; line-height: .84; text-transform: uppercase; }
.text-link { display: inline-flex; align-items: center; gap: 24px; margin-top: 30px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { color: var(--yellow); font-size: 17px; transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.solid-button, .outline-button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 25px; border: 1px solid currentColor; font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; transition: background .25s, color .25s; }
.solid-button { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.solid-button:hover { background: #ffd14d; }
.outline-button:hover { background: var(--white); color: var(--ink); }

/* Header */
.site-header { position: fixed; z-index: 1000; top: 0; left: 0; display: grid; grid-template-columns: 245px 1fr; align-items: stretch; width: 100%; height: 92px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.2); transition: height .25s, background .25s, box-shadow .25s; }
.site-header::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(1,18,31,.77), rgba(1,18,31,0)); pointer-events: none; transition: opacity .25s; }
.site-header.is-scrolled { height: 76px; background: rgba(3,29,49,.96); box-shadow: 0 5px 35px rgba(0,0,0,.18); backdrop-filter: blur(10px); }
.site-header.is-scrolled::after { opacity: 0; }
.site-logo { display: flex; align-items: center; padding-left: 46px; border-right: 1px solid rgba(255,255,255,.2); }
.site-logo img { width: 158px; max-height: 52px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(22px, 2.6vw, 50px); padding: 0 46px; }
.desktop-nav > a, .desktop-nav-group > button { position: relative; display: flex; align-items: center; height: 100%; padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.8); cursor: pointer; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav > a::after, .desktop-nav-group > button::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.desktop-nav > a:hover, .desktop-nav > a.is-active, .desktop-nav-group:hover > button, .desktop-nav-group:focus-within > button, .desktop-nav-group.is-current > button { color: var(--white); }
.desktop-nav > a:hover::after, .desktop-nav > a.is-active::after, .desktop-nav-group:hover > button::after, .desktop-nav-group:focus-within > button::after, .desktop-nav-group.is-current > button::after { transform: scaleX(1); }
.desktop-nav-group { position: relative; display: flex; align-items: center; height: 100%; }
.desktop-nav-group > button span { margin-left: 7px; color: var(--yellow); font-size: 15px; line-height: 1; transition: transform .25s; }
.desktop-nav-group:hover > button span, .desktop-nav-group:focus-within > button span, .desktop-nav-group.is-open > button span { transform: rotate(180deg); }
.desktop-nav-submenu { position: absolute; top: calc(100% - 1px); left: 50%; width: 190px; padding: 8px; background: rgba(3,29,49,.98); border: 1px solid rgba(255,255,255,.15); box-shadow: 0 18px 45px rgba(0,0,0,.22); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, -8px); transition: opacity .2s, transform .2s, visibility 0s .2s; }
.desktop-nav-group:hover .desktop-nav-submenu, .desktop-nav-group:focus-within .desktop-nav-submenu, .desktop-nav-group.is-open .desktop-nav-submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); transition-delay: 0s; }
.desktop-nav-submenu a { display: block; padding: 13px 14px; color: #aebdc6; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; transition: background .2s, color .2s; }
.desktop-nav-submenu a:hover, .desktop-nav-submenu a.is-active { background: #0c3e5f; color: var(--white); }
.menu-toggle, .mobile-panel { display: none; }

/* Hero */
.hero { position: relative; min-height: 100svh; background-color: var(--navy); color: var(--white); isolation: isolate; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background-image: var(--hero-image); background-position: center; background-size: cover; transform: scale(1.025); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(2,28,47,.92) 0%, rgba(2,28,47,.72) 42%, rgba(2,28,47,.22) 76%, rgba(2,28,47,.48) 100%), linear-gradient(0deg, rgba(3,27,44,.58), transparent 60%); }
.hero-home::before { background-position: center 48%; background-size: cover; background-repeat: no-repeat; }
.hero-home::after { background: linear-gradient(90deg, rgba(2,28,47,.98) 0%, rgba(2,28,47,.88) 36%, rgba(2,28,47,.45) 67%, rgba(2,28,47,.32) 100%), linear-gradient(0deg, rgba(3,27,44,.68), transparent 62%); }
.hero-grid { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 8.33vw 110px; mask-image: linear-gradient(to bottom, #000, transparent 85%); }
.hero-content { min-height: 100svh; padding-top: max(180px, 20vh); padding-bottom: 72px; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-content h1 { width: min(1240px, 74vw); margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: -.045em; line-height: .79; text-transform: uppercase; }
.hero-title-solid, .hero-title-outline { display: block; white-space: nowrap; }
.hero-title-solid { font-size: clamp(76px, 7.7vw, 132px); }
.hero-title-outline { margin-top: 7px; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.48); font-size: clamp(70px, 7.15vw, 122px); }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 55px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.26); }
.hero-bottom > p { width: min(620px, 58vw); margin: 0; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.8; }
.circle-link { display: inline-flex; align-items: center; justify-content: center; width: 62px; height: 62px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; color: var(--yellow); font-size: 22px; transition: background .25s, transform .25s; }
.circle-link:hover { background: var(--white); color: var(--ink); transform: rotate(45deg); }
.hero-bottom .circle-link:hover { transform: translateY(5px); }
.hero-rail { position: absolute; right: 30px; top: 50%; display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-family: var(--font-display); font-size: 13px; }
.hero-rail i { width: 1px; height: 86px; background: linear-gradient(var(--yellow) 18%, rgba(255,255,255,.3) 18%); }

/* Manifesto */
.manifesto { position: relative; }
.manifesto::after { content: ""; position: absolute; top: 0; right: 8%; width: 1px; height: 100%; background: rgba(255,255,255,.07); }
.manifesto-grid { display: grid; grid-template-columns: .65fr 1.4fr .75fr; gap: 7vw; }
.manifesto-copy h2 { margin: 0 0 45px; max-width: 750px; font-family: var(--font-display); font-size: clamp(65px, 7.6vw, 130px); font-weight: 400; letter-spacing: -.04em; line-height: .82; text-transform: uppercase; }
.manifesto .manifesto-copy h2,
.capabilities .section-heading h2,
.projects-feature .section-heading h2,
.process .section-heading h2 { font-size: clamp(58px, 6vw, 92px); }
.manifesto-copy > p { max-width: 590px; margin: 0; color: #b8c3ca; line-height: 1.9; }
.fact-stack { padding-top: 20px; }
.fact-stack div { display: grid; grid-template-columns: 100px 1fr; align-items: center; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.fact-stack strong { color: var(--yellow); font-family: var(--font-display); font-size: 50px; font-weight: 400; line-height: 1; }
.fact-stack span { color: #a7b6bf; font-size: 11px; letter-spacing: .08em; line-height: 1.6; text-transform: uppercase; }

/* Capabilities */
.capabilities { padding-top: 80px; background: var(--paper); }
.service-stage { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-list { border-right: 1px solid var(--line); }
.service-tab { position: relative; display: grid; grid-template-columns: 1fr 30px; align-items: center; width: 100%; min-height: 112px; padding: 0 34px; border: 0; border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; text-align: left; }
.service-tab::before { content: ""; position: absolute; inset: 0; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.7,0,.2,1); }
.service-tab > * { position: relative; z-index: 1; }
.service-tab strong { font-family: var(--font-display); font-size: clamp(30px, 3vw, 47px); font-weight: 400; letter-spacing: -.02em; text-transform: uppercase; }
.service-tab i { color: var(--yellow); font-size: 18px; font-style: normal; opacity: 0; transform: translate(-8px, 8px); transition: .25s .1s; }
.service-tab.is-active { color: var(--white); }
.service-tab.is-active::before { transform: scaleX(1); }
.service-tab.is-active i { opacity: 1; transform: translate(0); }
.service-preview { position: relative; min-height: 0; overflow: hidden; }
.service-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(1,18,30,.93) 0%, rgba(1,18,30,.12) 70%); }
.service-preview > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .2s, transform .8s; }
.service-preview.is-changing > img { opacity: .25; transform: scale(1.03); }
.service-preview-copy { position: absolute; z-index: 2; right: 50px; bottom: 46px; left: 50px; color: var(--white); }
.service-preview-copy h3 { margin: 0; font-family: var(--font-display); font-size: clamp(52px, 5vw, 84px); font-weight: 400; line-height: .95; text-transform: uppercase; }
.service-preview-summary { max-width: 570px; color: rgba(255,255,255,.78); }

/* Projects showcase */
.projects-feature { padding-top: 80px; }
.projects-heading { display: grid; grid-template-columns: .75fr 1.3fr auto; gap: 35px; align-items: end; }
.projects-heading h2 { color: var(--white); }
.projects-heading .outline-button { align-self: end; }
.project-showcase { position: relative; min-height: 820px; overflow: hidden; }
.project-showcase > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .2s, transform .9s; }
.project-showcase.is-changing > img { opacity: .45; transform: scale(1.025); }
.project-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,15,24,.78), transparent 64%), linear-gradient(0deg, rgba(0,15,24,.88), transparent 55%); }
.project-copy { position: relative; z-index: 2; min-height: 670px; padding-top: 105px; color: var(--white); }
.project-copy > p:first-child { color: var(--yellow); font-size: 10px; letter-spacing: .19em; text-transform: uppercase; }
.project-copy h3 { margin: 8px 0 25px; font-family: var(--font-display); font-size: clamp(90px, 10vw, 170px); font-weight: 400; letter-spacing: -.04em; line-height: .8; text-transform: uppercase; }
.project-copy > p:not(:first-child) { max-width: 520px; color: rgba(255,255,255,.78); }
.project-copy .circle-link { margin-top: 25px; }
.project-switcher { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); color: var(--white); border-top: 1px solid rgba(255,255,255,.3); }
.project-tab { min-height: 150px; padding: 30px; border: 0; border-right: 1px solid rgba(255,255,255,.25); background: rgba(2,23,38,.35); color: rgba(255,255,255,.65); cursor: pointer; font-family: var(--font-display); font-size: 26px; text-align: left; text-transform: uppercase; transition: background .25s, color .25s; backdrop-filter: blur(4px); }
.project-tab:last-child { border-right: 0; }
.project-tab span { display: block; margin-bottom: 12px; color: var(--yellow); font-family: var(--font-body); font-size: 10px; }
.project-tab.is-active, .project-tab:hover { background: var(--yellow); color: var(--ink); }
.project-tab.is-active span, .project-tab:hover span { color: var(--ink); }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid article { min-height: 215px; display: flex; flex-direction: column; justify-content: center; padding: 35px 32px; border-right: 1px solid var(--line); }
.process-grid article:last-child { border-right: 0; }
.process-grid h3 { margin: 0 0 15px; font-family: var(--font-display); font-size: 42px; font-weight: 400; text-transform: uppercase; }
.process-grid p { color: #62707a; font-size: 13px; line-height: 1.8; }

/* Clients */
.client-marquee { padding: 58px 0 0; background: var(--navy); color: #fff; overflow: hidden; }
.client-marquee-heading { display: grid; grid-template-columns: .32fr 1.5fr .65fr; align-items: end; gap: 35px; margin-bottom: 38px; }
.client-marquee-heading p { margin: 0; font-size: 11px; letter-spacing: .17em; text-transform: uppercase; }
.client-marquee-heading h2 { grid-column: 2; margin: 0; font-family: var(--font-display); font-size: clamp(58px, 6vw, 92px); font-weight: 400; letter-spacing: -.035em; line-height: .8; text-transform: uppercase; }
.client-marquee-heading h2 span { display: block; white-space: nowrap; }
.client-marquee-heading > span { grid-column: 3; max-width: 340px; padding-bottom: 4px; font-size: 13px; line-height: 1.7; }
.logo-marquee { width: 100%; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); overflow: hidden; }
.logo-marquee-track { display: flex; width: max-content; animation: logo-marquee 44s linear infinite; }
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
.logo-marquee-row { display: flex; flex: none; }
.client-logo-placeholder { position: relative; width: 230px; height: 102px; display: grid; place-items: center; overflow: hidden; padding: 22px 30px; border-right: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.64); }
.client-logo-placeholder span { font-family: var(--font-display); font-size: 25px; letter-spacing: .06em; text-transform: uppercase; }
.client-logo-placeholder img { width: auto; max-width: 142px; max-height: 42px; object-fit: contain; filter: brightness(0) invert(1); opacity: .96; }
.client-logo-placeholder img[src*="cbw-arte-ceramico"] { max-width: 150px; max-height: 50px; }
.client-logo-placeholder img[src*="tako-gr"] { max-height: 72px; opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 .45px #fff); }
.client-logo-placeholder img[src*="bonita-luxury"] { max-height: 54px; }
.client-logo-placeholder img[src*="civilmek-color"] { max-width: 174px; max-height: 52px; filter: none; opacity: 1; }
.client-logo-placeholder img[src*="the-point"] { max-height: 58px; }
.client-logo-placeholder img[src*="grupo-luma"] { max-width: 158px; max-height: 52px; }
.client-logo-placeholder img[src*="constructora-aybar"] { max-width: 142px; max-height: 54px; }
@keyframes logo-marquee { to { transform: translateX(-50%); } }

/* News */
.news-home { padding: 105px 0 115px; background: var(--paper); }
.news-home-heading { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 58px; }
.news-home-heading h2, .blog-archive-heading h2, .related-news-heading h2 { margin: 0; font-family: var(--font-display); font-size: clamp(58px, 6vw, 92px); font-weight: 400; letter-spacing: -.035em; line-height: .82; text-transform: uppercase; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 24px; }
.blog-card { display: block; min-width: 0; }
.blog-card-media { position: relative; height: 310px; margin: 0 0 24px; overflow: hidden; background: var(--navy); }
.blog-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,24,40,.44), transparent 60%); transition: background .35s; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.blog-card-media span { position: absolute; z-index: 2; right: 18px; bottom: 18px; padding: 12px 15px; background: var(--yellow); color: var(--ink); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; transform: translateY(70px); transition: transform .3s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.035); }
.blog-card:hover .blog-card-media::after { background: rgba(2,24,40,.28); }
.blog-card:hover .blog-card-media span { transform: translateY(0); }
.blog-card time { display: block; margin-bottom: 11px; color: #71808a; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.blog-card h2, .blog-card h3 { margin: 0 0 13px; font-family: var(--font-display); font-size: clamp(35px, 3vw, 48px); font-weight: 400; letter-spacing: -.02em; line-height: .95; text-transform: uppercase; }
.blog-card > p { max-width: 520px; margin: 0; color: #637079; font-size: 13px; line-height: 1.75; }
.blog-empty { grid-column: 1 / -1; padding: 55px; border: 1px solid var(--line); background: rgba(255,255,255,.35); }
.blog-empty strong { display: block; font-family: var(--font-display); font-size: 44px; font-weight: 400; text-transform: uppercase; }
.blog-empty p { margin: 8px 0 0; color: #637079; }
.blog-hero { --inner-image: url('../images/real/fleet-01.jpg'); }
.blog-archive { padding-top: 105px; }
.blog-archive-heading { margin-bottom: 65px; }
.blog-archive-heading .eyebrow { margin-bottom: 28px; }
.blog-detail-hero { min-height: 82svh; }
.blog-detail-hero h1 { max-width: 1050px; font-size: clamp(72px, 8.5vw, 142px); }
.blog-article-section { background: var(--paper); }
.blog-article-layout { display: grid; grid-template-columns: .45fr 1.35fr; gap: 9vw; }
.blog-article-layout aside { display: flex; flex-direction: column; gap: 12px; color: #71808a; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.blog-article-body { max-width: 820px; }
.blog-article-body p { margin: 0 0 28px; color: #53626c; font-size: 17px; line-height: 1.9; }
.blog-article-body .blog-lead { margin-bottom: 45px; color: var(--navy); font-family: var(--font-display); font-size: clamp(40px, 4vw, 62px); line-height: 1.05; }
.related-news { padding: 105px 0 120px; }
.related-news-heading { margin-bottom: 55px; }
.blog-card-dark time, .blog-card-dark > p { color: #9eacb5; }
.blog-card-dark h2 { color: var(--white); }

/* CTA */
.cta-band { position: relative; padding: 125px 0; background: var(--yellow); color: var(--ink); overflow: hidden; }
.cta-band::before { content: "C"; position: absolute; top: -220px; right: -20px; color: rgba(255,255,255,.26); font-family: var(--font-display); font-size: 700px; line-height: 1; }
.cta-band .wrap { position: relative; }
.cta-band p { margin: 0 0 20px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.cta-band h2 { margin: 0; font-family: var(--font-display); font-size: clamp(85px, 10vw, 165px); font-weight: 400; letter-spacing: -.04em; line-height: .77; text-transform: uppercase; }
.home-cta { padding: 78px 0; background: #e9edf0; }
.home-cta::before { color: rgba(3,29,49,.055); }
.home-cta h2 { font-size: clamp(58px, 6vw, 92px); }
.cta-arrow { position: absolute; right: 0; bottom: 5px; display: flex; align-items: center; gap: 28px; font-family: var(--font-display); font-size: 75px; }
.cta-arrow span { padding-bottom: 7px; border-bottom: 1px solid; font-family: var(--font-body); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.compact-cta { margin-top: 0; }

/* Footer */
.site-footer { position: relative; background: #021827; color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.55fr .7fr 1fr .7fr; gap: 55px; width: var(--wrap); margin: auto; padding: 105px 0 85px; }
.footer-brand img { width: 190px; max-height: 60px; object-fit: contain; object-position: left; }
.footer-brand p { max-width: 385px; margin: 35px 0 0; color: #8799a5; font-size: 13px; line-height: 1.8; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-column > span { margin-bottom: 16px; color: var(--yellow); font-size: 10px; letter-spacing: .19em; text-transform: uppercase; }
.footer-column a, .footer-column p { margin: 0; color: #aab8c1; font-size: 12px; line-height: 1.7; }
.footer-column a:hover { color: var(--white); }
.footer-socials a { padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; min-height: 72px; padding: 0 max(48px, calc((100vw - min(1360px, calc(100vw - 96px))) / 2)); border-top: 1px solid rgba(255,255,255,.11); color: #71838f; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.footer-bottom span:nth-child(2) { text-align: right; }
.footer-credit { opacity: .58; font-size: 8px; font-weight: 400; letter-spacing: .08em; text-transform: none; }

/* Interior pages */
.inner-hero, .contact-hero { position: relative; min-height: 620px; display: flex; align-items: flex-end; padding: 200px 0 90px; background-image: linear-gradient(115deg, rgba(3,29,49,.95), rgba(4,54,85,.45)), var(--inner-image, url('../images/brand/hero.jpg')); background-position: center; background-size: cover; color: var(--white); overflow: hidden; }
.inner-hero::after, .contact-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 110px 110px; pointer-events: none; }
.inner-hero .wrap, .contact-hero .wrap { position: relative; z-index: 1; }
.team-hero { min-height: clamp(620px, 45vw, 860px); background-position: center, center 75%; background-size: cover, cover; background-repeat: no-repeat; }
.inner-hero h1, .contact-hero h1, .detail-hero h1, .not-found h1 { margin: 0; font-family: var(--font-display); font-size: clamp(88px, 10vw, 165px); font-weight: 400; letter-spacing: -.045em; line-height: .8; text-transform: uppercase; }
.inner-hero .wrap > p:last-child, .contact-hero .wrap > p:last-child { max-width: 620px; margin: 35px 0 0; color: rgba(255,255,255,.73); }
.editorial-grid, .detail-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; }
.editorial-grid h2, .detail-grid h2, .contact-info h2, .team-placeholder h2 { font-size: clamp(58px, 6vw, 96px); }
.editorial-grid .lead, .detail-grid .lead { margin: 45px 0 22px; color: var(--navy); font-size: 22px; line-height: 1.55; }
.editorial-grid div > p:last-child { max-width: 780px; color: #5d6870; line-height: 1.9; }
.values-section .section-index { color: #8ea0ab; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.14); }
.value-grid article { min-height: 225px; display: flex; flex-direction: column; justify-content: center; padding: 34px; border-right: 1px solid rgba(255,255,255,.14); }
.value-grid article:last-child { border-right: 0; }
.value-grid span { color: var(--yellow); font-size: 11px; }
.value-grid h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: 45px; font-weight: 400; text-transform: uppercase; }
.value-grid p { color: #9cadb7; font-size: 13px; line-height: 1.7; }
.statement-section { padding: 170px 0; }
.statement-section blockquote { max-width: 1140px; margin: 35px 0; color: var(--navy); font-family: var(--font-display); font-size: clamp(60px, 7vw, 115px); font-style: normal; line-height: .92; text-transform: uppercase; }
.company-media { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 340px); gap: 18px; padding-bottom: 150px; }
.company-media figure { margin: 0; overflow: hidden; }
.company-media-wide { grid-row: 1 / 3; }
.company-media img { width: 100%; height: 100%; object-fit: cover; }
.company-media-wide img { object-position: center 45%; }

/* Services archive */
.services-page-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 90px .78fr 1.1fr; gap: 55px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--line); }
.service-row-number { align-self: start; color: var(--yellow); font-size: 11px; }
.service-row-image { height: 340px; overflow: hidden; }
.service-row-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.service-row:hover .service-row-image img { transform: scale(1.035); }
.service-row-copy > p:first-child { color: var(--blue); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.service-row-copy h2 { margin: 8px 0 18px; font-family: var(--font-display); font-size: clamp(54px, 5.6vw, 94px); font-weight: 400; letter-spacing: -.03em; line-height: .9; text-transform: uppercase; }
.service-row-copy > p:not(:first-child) { max-width: 620px; color: #62707a; }

/* Projects archive */
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 90px 36px; }
.project-card { display: block; }
.project-card-wide { grid-column: 1 / -1; }
.project-card-image { position: relative; height: 580px; overflow: hidden; }
.project-card:not(.project-card-wide) .project-card-image { height: 480px; }
.project-card-image::after { content: ""; position: absolute; inset: 0; background: rgba(3,29,49,.12); transition: background .35s; }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.project-card-image span { position: absolute; z-index: 2; right: 22px; bottom: 22px; padding: 14px 18px; background: var(--yellow); color: var(--ink); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; transform: translateY(80px); transition: transform .3s; }
.project-card:hover .project-card-image img { transform: scale(1.025); }
.project-card:hover .project-card-image::after { background: rgba(3,29,49,.3); }
.project-card:hover .project-card-image span { transform: translateY(0); }
.project-card-copy { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding-top: 25px; }
.project-card-copy > p:first-child { grid-row: 1 / 3; color: #72818a; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.project-card-copy h2 { margin: 0; font-family: var(--font-display); font-size: 56px; font-weight: 400; line-height: .95; text-transform: uppercase; }
.project-card-copy > p:last-child { max-width: 650px; margin: 0; color: #637079; font-size: 13px; }

/* Details */
.detail-hero { position: relative; min-height: 88svh; display: flex; align-items: flex-end; padding: 200px 0 80px; background: var(--detail-image) center/cover; color: var(--white); }
.detail-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,24,40,.93), rgba(2,24,40,.08) 72%), linear-gradient(90deg, rgba(2,24,40,.65), transparent); }
.detail-hero .wrap { position: relative; z-index: 1; }
.detail-hero h1 { max-width: 1200px; font-size: clamp(90px, 12vw, 195px); }
.back-link { display: inline-block; margin-bottom: 80px; color: rgba(255,255,255,.74); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.detail-grid .lead { max-width: 850px; color: #596771; }
.detail-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 42px 0; }
.detail-points span { padding: 10px 14px; border: 1px solid var(--line); color: var(--navy); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.project-data { display: grid; grid-template-columns: repeat(2, minmax(170px, 260px)); gap: 1px; margin-top: 45px; background: var(--line); border: 1px solid var(--line); }
.project-data div { padding: 25px; background: var(--paper); }
.project-data span { display: block; margin-bottom: 8px; color: #71808a; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.project-data strong { color: var(--navy); font-family: var(--font-display); font-size: 28px; font-weight: 400; text-transform: uppercase; }
.project-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding-bottom: 150px; }
.project-gallery img { width: 100%; height: 550px; object-fit: cover; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 28px; }
.team-photo { height: 460px; display: flex; align-items: center; justify-content: center; background: var(--navy); color: var(--yellow); font-family: var(--font-display); font-size: 140px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card > p:first-of-type { margin: 18px 0 5px; color: var(--blue); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.team-card h2 { margin: 0; font-family: var(--font-display); font-size: 42px; font-weight: 400; text-transform: uppercase; }
.team-card > p:last-child:not(:first-of-type) { color: #64717a; font-size: 13px; }
.team-placeholder { display: grid; grid-template-columns: 1fr .9fr; gap: 7vw; align-items: center; }
.team-placeholder-copy > p:not(.section-index) { max-width: 650px; margin: 35px 0; color: #61707a; font-size: 17px; line-height: 1.8; }
.team-placeholder-copy > div { display: flex; align-items: center; gap: 30px; }
.driver-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: start; }
.driver-gallery figure { margin: 0; overflow: hidden; }
.driver-gallery figure:last-child { margin-top: 80px; }
.driver-gallery img { width: 100%; height: 560px; object-fit: cover; }
.fleet-feature { position: relative; height: 520px; margin-top: 100px; overflow: hidden; color: var(--white); }
.fleet-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,24,40,.82), transparent 68%); }
.fleet-feature > img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.fleet-feature > div { position: absolute; z-index: 1; right: 40px; bottom: 38px; left: 40px; display: flex; align-items: end; justify-content: space-between; gap: 35px; }
.fleet-feature span { color: var(--yellow); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.fleet-feature strong { max-width: 650px; font-family: var(--font-display); font-size: 42px; font-weight: 400; line-height: 1; text-align: right; text-transform: uppercase; }
.team-careers { padding: 92px 0; background: var(--navy); color: var(--white); }
.team-page { padding-bottom: 80px; }
.team-careers-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; }
.team-careers h2 { max-width: 850px; margin: 0; font-family: var(--font-display); font-size: clamp(64px, 6.8vw, 108px); font-weight: 400; letter-spacing: -.035em; line-height: .82; text-transform: uppercase; }
.team-careers-action { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; padding-bottom: 6px; }
.team-careers-action p { max-width: 480px; margin: 0; color: #b3c0c8; font-size: 14px; line-height: 1.8; }
.outline-button-light { color: var(--white); }

/* Vacancies */
.vacancies-hero { background-position: center, center 42%; }
.vacancies-heading { display: grid; grid-template-columns: .58fr 1.42fr; gap: 7vw; align-items: start; margin-bottom: 70px; }
.vacancies-heading h2 { margin: 0; font-family: var(--font-display); font-size: clamp(58px, 6vw, 92px); font-weight: 400; letter-spacing: -.035em; line-height: .82; text-transform: uppercase; }
.vacancy-list { border-top: 1px solid var(--line); }
.vacancy-card { border-bottom: 1px solid var(--line); }
.vacancy-card summary { display: grid; grid-template-columns: minmax(260px, 1.25fr) 1fr 42px; gap: 35px; align-items: center; min-height: 132px; padding: 28px 0; cursor: pointer; list-style: none; }
.vacancy-card summary::-webkit-details-marker { display: none; }
.vacancy-title { font-family: var(--font-display); font-size: clamp(38px, 3.8vw, 58px); line-height: .95; text-transform: uppercase; }
.vacancy-meta { color: #70808a; font-size: 10px; letter-spacing: .13em; line-height: 1.7; text-transform: uppercase; }
.vacancy-toggle { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); color: var(--navy); font-size: 24px; transition: transform .25s, background .25s, color .25s; }
.vacancy-card[open] .vacancy-toggle { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.vacancy-body { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; padding: 10px 42px 65px 0; }
.vacancy-lead { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: clamp(31px, 3vw, 46px); line-height: 1.08; }
.vacancy-description { color: #5d6b74; font-size: 14px; line-height: 1.9; }
.vacancy-body .solid-button { grid-column: 2; justify-self: start; margin-top: -15px; }
.vacancies-empty { padding: 58px 0; }
.vacancies-empty strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: clamp(42px, 4.6vw, 68px); font-weight: 400; line-height: 1; text-transform: uppercase; }
.vacancies-empty > p { max-width: 590px; margin: 18px 0 0; color: #637079; }

/* Contact */
.contact-hero { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.contact-info h2 { margin: 35px 0 45px; }
.contact-info > a:not(.solid-button), .contact-info > p:not(.section-index) { display: block; margin: 11px 0; color: #596b76; font-size: 15px; }
.contact-info .solid-button { margin-top: 35px; }
.contact-form-wrap { padding: 50px; background: var(--white); box-shadow: 0 30px 80px rgba(4,35,54,.08); }
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.contact-form label { display: flex; flex-direction: column; gap: 9px; }
.contact-form label > span { color: #687781; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #c9d0d4; border-radius: 0; outline: 0; background: transparent; padding: 10px 0 14px; color: var(--ink); transition: border-color .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); }
.contact-form textarea { resize: vertical; }
.form-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }
.submit-button { display: flex; align-items: center; justify-content: space-between; min-height: 62px; margin-top: 10px; padding: 0 24px; border: 0; background: var(--navy); color: var(--white); cursor: pointer; font-size: 20px; }
.submit-button span { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.form-alert { margin-bottom: 25px; padding: 16px 20px; border-left: 3px solid; font-size: 13px; }
.form-alert-success { background: #e7f6ed; border-color: #209653; color: #12572f; }
.form-alert-error { background: #fff0ec; border-color: #d25036; color: #7d2818; }

/* 404 */
.not-found { min-height: 100svh; display: flex; align-items: center; padding: 160px 0 100px; background: var(--navy); color: var(--white); }
.not-found strong { position: absolute; right: 8vw; color: rgba(255,255,255,.05); font-family: var(--font-display); font-size: 38vw; line-height: .7; }
.not-found .wrap { position: relative; z-index: 1; }
.not-found h1 { margin-bottom: 50px; }

.reveal { transition: opacity .65s ease, transform .65s ease; }
.js .reveal:not(.is-visible) { opacity: 0; transform: translateY(28px); }

@media (max-width: 1100px) {
    :root { --wrap: min(100% - 56px, 1020px); }
    .site-header { grid-template-columns: 215px 1fr; }
    .site-logo { padding-left: 28px; }
    .desktop-nav { gap: 22px; padding-right: 28px; }
    .manifesto-grid { grid-template-columns: .5fr 1.4fr; }
    .fact-stack { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); }
    .fact-stack div { grid-template-columns: 1fr; gap: 10px; }
    .projects-heading { grid-template-columns: .55fr 1.2fr; }
    .projects-heading .outline-button { grid-column: 2; justify-self: start; }
    .footer-main { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; }
    .blog-card-media { height: 270px; }
}

@media (max-width: 850px) {
    :root { --wrap: calc(100vw - 42px); }
    .section { padding: 95px 0; }
    .capabilities { padding-top: 55px; }
    .projects-feature { padding-top: 55px; }
    .site-header { height: 76px; grid-template-columns: 1fr 76px; }
    body.menu-open .site-header { background: #031d31; box-shadow: none; }
    body.menu-open .site-header::after { opacity: 0; }
    .site-logo { padding-left: 21px; border-right: 0; }
    .site-logo img { width: 145px; }
    .desktop-nav, .header-quote { display: none; }
    .menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 0 24px; border: 0; border-left: 1px solid rgba(255,255,255,.2); background: transparent; cursor: pointer; }
    .menu-toggle span { display: block; width: 27px; height: 1px; background: var(--white); transition: .25s; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .mobile-panel { position: fixed; z-index: 1002; top: 76px; right: 0; bottom: 0; left: 0; display: flex; width: 100vw; height: calc(100dvh - 76px); flex-direction: column; justify-content: space-between; overflow-y: auto; padding: 40px 21px 35px; background-color: #031d31; color: var(--white); opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(100%); isolation: isolate; transition: transform .35s cubic-bezier(.7,0,.2,1), opacity .2s ease, visibility 0s .35s; }
    .mobile-panel::before { content: ""; position: fixed; z-index: -1; inset: 76px 0 0; background: #031d31; }
    .mobile-panel.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
    .mobile-panel nav { display: flex; flex-direction: column; }
    .mobile-panel nav > a, .mobile-nav-group summary { padding: 9px 0; font-family: var(--font-display); font-size: 48px; line-height: 1.1; text-transform: uppercase; }
    .mobile-nav-group summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; list-style: none; }
    .mobile-nav-group summary::-webkit-details-marker { display: none; }
    .mobile-nav-group summary span { color: var(--yellow); font-family: var(--font-body); font-size: 25px; transition: transform .25s; }
    .mobile-nav-group[open] summary span { transform: rotate(45deg); }
    .mobile-nav-group > div { display: grid; padding: 2px 0 14px 18px; border-left: 1px solid rgba(255,255,255,.18); }
    .mobile-nav-group > div a { padding: 5px 0; color: #a9b7c0; font-family: var(--font-display); font-size: 30px; line-height: 1.1; text-transform: uppercase; }
    .mobile-socials { display: flex; flex-wrap: wrap; gap: 18px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
    .mobile-socials a { color: #9aabb6; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
    .hero-content { padding-top: 160px; padding-bottom: 48px; }
    .hero-content h1 { width: min(920px, 88vw); }
    .hero-title-solid { font-size: clamp(66px, 11vw, 110px); }
    .hero-title-outline { font-size: clamp(61px, 10.2vw, 102px); }
    .hero-bottom > p { width: 75%; }
    .hero-rail { display: none; }
    .split-heading, .projects-heading { grid-template-columns: 1fr; gap: 35px; }
    .projects-heading .outline-button { grid-column: 1; justify-self: start; }
    .section-heading { margin-bottom: 55px; }
    .manifesto-grid { grid-template-columns: 1fr; gap: 55px; }
    .fact-stack { grid-column: 1; }
    .service-stage { grid-template-columns: 1fr; }
    .service-list { border-right: 0; }
    .service-preview { min-height: 560px; }
    .project-showcase { min-height: 740px; }
    .project-copy { min-height: 600px; padding-top: 120px; }
    .project-switcher { width: 100%; }
    .project-tab { padding: 20px 15px; font-size: 21px; }
    .process-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid article:nth-child(2), .value-grid article:nth-child(2) { border-right: 0; }
    .process-grid article:nth-child(-n+2), .value-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .cta-arrow { position: static; justify-content: flex-end; margin-top: 45px; }
    .footer-main { grid-template-columns: repeat(2, 1fr); padding: 75px 0 55px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { grid-template-columns: 1fr; gap: 8px; padding: 24px 21px; text-align: left; }
    .footer-bottom span:nth-child(2) { padding-right: 0; text-align: left; }
    .editorial-grid, .detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
    .service-row { grid-template-columns: 50px 1fr; gap: 30px; }
    .service-row-image { grid-column: 2; }
    .service-row-copy { grid-column: 2; }
    .project-grid { gap: 70px 24px; }
    .project-card-image, .project-card:not(.project-card-wide) .project-card-image { height: 440px; }
    .project-card-copy { grid-template-columns: 1fr; }
    .project-card-copy > p:first-child { grid-row: auto; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-placeholder { grid-template-columns: 1fr; }
    .driver-gallery { margin-top: 10px; }
    .team-careers-grid, .vacancies-heading { grid-template-columns: 1fr; gap: 45px; }
    .vacancy-body { grid-template-columns: 1fr; gap: 28px; }
    .vacancy-body .solid-button { grid-column: 1; margin-top: 0; }
    .news-home-heading { align-items: flex-start; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-article-layout { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 560px) {
    :root { --wrap: calc(100vw - 32px); }
    .section { padding: 78px 0; }
    .eyebrow { letter-spacing: .16em; }
    .hero-content { justify-content: center; padding-top: 115px; padding-bottom: 28px; }
    .hero-content h1 { width: 100%; line-height: .78; }
    .hero-title-solid { font-size: 18.6vw; white-space: normal; }
    .hero-title-outline { margin-top: 5px; font-size: 16.8vw; white-space: normal; }
    .hero-home::before { background-position: 48% 42%; background-size: auto 165%; }
    .hero-bottom { align-items: center; margin-top: 38px; }
    .hero-bottom > p { width: calc(100% - 75px); font-size: 12px; line-height: 1.65; }
    .circle-link { width: 52px; height: 52px; }
    .section-heading h2, .manifesto-copy h2, .editorial-grid h2, .detail-grid h2, .contact-info h2, .team-placeholder h2 { font-size: 17vw; }
    .manifesto .manifesto-copy h2,
    .capabilities .section-heading h2,
    .projects-feature .section-heading h2,
    .process .section-heading h2 { font-size: 13vw; }
    .manifesto-copy h2 { margin-bottom: 30px; }
    .fact-stack { grid-template-columns: 1fr; }
    .fact-stack div { grid-template-columns: 90px 1fr; }
    .service-tab { grid-template-columns: 1fr 25px; min-height: 92px; padding: 0 18px; }
    .service-tab strong { font-size: 32px; }
    .service-preview { min-height: 480px; }
    .service-preview-copy { right: 22px; bottom: 28px; left: 22px; }
    .project-showcase { min-height: 760px; }
    .project-copy h3 { font-size: 26vw; }
    .project-switcher { grid-template-columns: 1fr; }
    .project-tab { min-height: 56px; padding: 10px 16px; display: flex; align-items: center; gap: 14px; font-family: var(--font-body); font-size: 10px; letter-spacing: .1em; }
    .project-tab span { display: inline; margin: 0; }
    .process-grid, .value-grid { grid-template-columns: 1fr; }
    .process-grid article { min-height: 0; padding: 34px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
    .value-grid article { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line); }
    .process-grid h3, .value-grid h3 { margin-top: 0; }
    .client-marquee { padding-top: 48px; }
    .client-marquee-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 45px; }
    .client-marquee-heading h2 { grid-column: 1; font-size: 13vw; }
    .client-marquee-heading > span { grid-column: 1; max-width: 290px; }
    .client-logo-placeholder { width: 180px; height: 92px; padding: 20px 24px; }
    .client-logo-placeholder img { max-width: 125px; max-height: 38px; }
    .news-home { padding: 78px 0; }
    .news-home-heading { display: block; margin-bottom: 42px; }
    .news-home-heading .outline-button { margin-top: 30px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-media { height: 300px; }
    .blog-card h2, .blog-card h3 { font-size: 48px; }
    .blog-empty { padding: 35px 24px; }
    .blog-detail-hero h1 { font-size: 18vw; }
    .blog-article-body p { font-size: 15px; }
    .cta-band { padding: 80px 0; }
    .cta-band h2 { font-size: 22vw; }
    .home-cta { padding: 58px 0 64px; }
    .home-cta h2 { font-size: 13vw; }
    .cta-arrow { font-size: 55px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 20px; }
    .footer-brand, .footer-column:nth-child(3) { grid-column: 1 / -1; }
    .inner-hero, .contact-hero { min-height: 560px; padding-bottom: 60px; }
    .team-hero { background-position: center, center bottom; background-size: cover, auto 135%; }
    .inner-hero h1, .contact-hero h1, .detail-hero h1, .not-found h1 { font-size: 22vw; }
    .service-row { grid-template-columns: 30px 1fr; gap: 18px; padding: 50px 0; }
    .service-row-image { height: 260px; }
    .service-row-copy h2 { font-size: 16vw; }
    .project-grid { grid-template-columns: 1fr; }
    .project-card-wide { grid-column: auto; }
    .project-card-image, .project-card:not(.project-card-wide) .project-card-image { height: 380px; }
    .project-card-copy h2 { font-size: 48px; }
    .detail-hero { min-height: 75svh; }
    .back-link { margin-bottom: 55px; }
    .project-data, .project-gallery, .team-grid, .form-pair { grid-template-columns: 1fr; }
    .project-gallery img { height: 340px; }
    .team-photo { height: 420px; }
    .contact-form-wrap { padding: 28px 20px; }
    .team-placeholder { grid-template-columns: 1fr; }
    .team-placeholder-copy > div { flex-direction: column; align-items: flex-start; }
    .driver-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
    .driver-gallery figure:last-child { margin-top: 28px; }
    .driver-gallery img { height: 390px; }
    .fleet-feature { height: 390px; margin-top: 60px; }
    .fleet-feature > div { right: 22px; bottom: 24px; left: 22px; display: block; }
    .fleet-feature strong { display: block; margin-top: 10px; font-size: 34px; text-align: left; }
    .team-careers { padding: 70px 0; }
    .team-careers h2 { font-size: 15vw; }
    .vacancies-heading { margin-bottom: 45px; }
    .vacancies-heading h2 { font-size: 15vw; }
    .vacancy-card summary { grid-template-columns: 1fr 42px; gap: 18px; min-height: 108px; }
    .vacancy-meta { grid-column: 1; grid-row: 2; }
    .vacancy-toggle { grid-column: 2; grid-row: 1 / 3; }
    .vacancy-body { padding: 5px 0 48px; }
    .company-media { grid-template-columns: 1fr; grid-template-rows: 460px 320px 320px; padding-bottom: 80px; }
    .company-media-wide { grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js .reveal:not(.is-visible) { opacity: 1; transform: none; }
}
