@charset "UTF-8";

/* PV typography system: one self-hosted Manrope family for every element. */
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --red: #ef4638;
  --red-rgb: 239,70,56;
  --red-dark: var(--red);
  --bg: #090a0b;
  --surface: #111315;
  --surface-2: #17191c;
  --ink: #f4f3ef;
  --muted: #96999c;
  --line: rgba(255,255,255,.13);
  --light: #f1f0ec;
  --dark-ink: #151617;
  --shell: min(100% - 64px, 1360px);
  --radius: 18px;
  --display: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --accent-serif: var(--body);
  --emergency-height: 42px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 125px;
  color-scheme: dark;
  background: var(--bg);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; width: 0; height: 0; background: transparent; }
body { margin: 0; color: var(--ink); background: var(--bg); font-family: var(--body); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body,
body *,
button,
input,
select,
textarea,
option {
  font-family: var(--body) !important;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 { margin-bottom: 0; font-family: var(--display); line-height: .98; letter-spacing: -.045em; }
h2 { font-size: clamp(2.7rem, 5.7vw, 6.2rem); font-weight: 520; }
h3 { font-size: clamp(1.45rem, 2.5vw, 2.4rem); font-weight: 580; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(95px, 10vw, 160px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 12px 16px; color: #111; background: #fff; transform: translateY(-140%); }
.skip-link:focus { transform: none; }

.lab-switcher { position: relative; z-index: 35; width: 100%; display: grid; grid-template-columns: auto minmax(330px,520px) auto; align-items: center; justify-content: space-between; gap: 14px 28px; padding: 11px max(24px,calc((100vw - 1360px)/2)); border-bottom: 1px solid rgba(255,255,255,.16); color: #fff; background: #08090a; }
.lab-switcher-copy { min-width: 0; }
.lab-switcher-copy span, .lab-switcher-copy b { display: block; }
.lab-switcher-copy span { color: #777d81; font-size: .55rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.lab-switcher-copy b { overflow: hidden; margin-top: 3px; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.lab-switcher-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.lab-switcher button { min-height: 44px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; color: #bfc3c5; background: #111416; font-size: .67rem; font-weight: 750; cursor: pointer; }
.lab-switcher button span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 6px; border-radius: 50%; color: #fff; background: #292d30; font-size: .56rem; }
.lab-switcher button[aria-pressed="true"] { color: #fff; border-color: var(--red); background: rgba(var(--red-rgb),.13); }
.lab-switcher > a { align-self: center; color: #9da1a3; font-size: .62rem; font-weight: 700; white-space: nowrap; }

.emergency-bar {
  position: relative;
  z-index: 32;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: var(--red);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 8px 26px rgba(var(--red-rgb),.16);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  backdrop-filter: blur(14px) saturate(1.18);
}
.emergency-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 25px; font-size: .72rem; font-weight: 760; letter-spacing: .03em; }
.emergency-inner > span { display: flex; align-items: center; gap: 10px; }
.emergency-inner i {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  display: block;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.22), 0 0 14px rgba(255,255,255,.5);
  transform-origin: center;
  will-change: transform, box-shadow;
  -webkit-animation: emergency-dot-breathe 1.8s cubic-bezier(.45,0,.55,1) infinite;
  animation: emergency-dot-breathe 1.8s cubic-bezier(.45,0,.55,1) infinite;
}
.emergency-inner i::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1.5px solid rgba(255,255,255,.78);
  border-radius: inherit;
  opacity: 0;
  transform-origin: center;
  pointer-events: none;
  will-change: transform, opacity;
  -webkit-animation: emergency-dot-ring 1.8s ease-out infinite;
  animation: emergency-dot-ring 1.8s ease-out infinite;
}
@-webkit-keyframes emergency-dot-breathe {
  0%, 100% {
    -webkit-transform: scale(.82);
    transform: scale(.82);
    box-shadow: 0 0 0 5px rgba(255,255,255,.18), 0 0 8px rgba(255,255,255,.34);
  }
  48% {
    -webkit-transform: scale(1.42);
    transform: scale(1.42);
    box-shadow: 0 0 0 9px rgba(255,255,255,.12), 0 0 18px rgba(255,255,255,.72);
  }
}
@keyframes emergency-dot-breathe {
  0%, 100% {
    transform: scale(.82);
    box-shadow: 0 0 0 5px rgba(255,255,255,.18), 0 0 8px rgba(255,255,255,.34);
  }
  48% {
    transform: scale(1.42);
    box-shadow: 0 0 0 9px rgba(255,255,255,.12), 0 0 18px rgba(255,255,255,.72);
  }
}
@-webkit-keyframes emergency-dot-ring {
  0% {
    opacity: .88;
    -webkit-transform: scale(.72);
    transform: scale(.72);
  }
  78%, 100% {
    opacity: 0;
    -webkit-transform: scale(2.7);
    transform: scale(2.7);
  }
}
@keyframes emergency-dot-ring {
  0% {
    opacity: .88;
    transform: scale(.72);
  }
  78%, 100% {
    opacity: 0;
    transform: scale(2.7);
  }
}
.emergency-inner a { font-size: .85rem; letter-spacing: .08em; }
.emergency-short { display: none; }

.site-header {
  position: absolute;
  z-index: 30;
  top: var(--emergency-height);
  right: 0;
  left: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 44px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand-mark { display: inline-flex; align-items: baseline; padding-right: .08em; font-family: var(--body); font-size: 2rem; font-weight: 950; letter-spacing: -.12em; line-height: .86; }
.brand-p { color: var(--red); font-style: italic; }
.brand-v { margin-left: .04em; padding-right: .08em; color: #fff; font-style: normal; opacity: 1; transform: skewX(-12deg); transform-origin: center; }
.brand > span:last-child b, .brand > span:last-child small { display: block; }
.brand > span:last-child b { color: #fff; font-size: .77rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.brand > span:last-child small { margin-top: 1px; color: rgba(255,255,255,.84); font-size: .54rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 30px; margin-left: auto; }
.desktop-nav a, .desktop-nav button.nav-services-trigger { position: relative; padding: 30px 0; color: #fff; font-family: inherit; font-size: .74rem; font-weight: 900; letter-spacing: .01em; }
.desktop-nav button.nav-services-trigger { border: 0; background: none; cursor: pointer; }
.nav-services { position: relative; }
.nav-services-trigger { display: inline-flex; align-items: center; gap: 8px; }
.nav-services-trigger::before { width: 5px; height: 5px; flex: none; border-radius: 50%; content: ""; background: var(--red); box-shadow: 0 0 12px rgba(var(--red-rgb),.58); }
.nav-services-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% - 12px);
  left: 50%;
  width: min(340px,calc(100vw - 32px));
  display: grid;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(10,12,13,.98);
  box-shadow: 0 24px 70px rgba(0,0,0,.58), inset 0 1px rgba(255,255,255,.04);
  opacity: 0;
  transform: translate(-50%,-5px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease,transform .18s ease,visibility .18s ease;
}
.nav-services:not(.has-toggle):hover .nav-services-menu,
.nav-services:not(.has-toggle):focus-within .nav-services-menu,
.nav-services.is-open .nav-services-menu { opacity: 1; transform: translate(-50%,0); visibility: visible; pointer-events: auto; }
.desktop-nav .nav-services-menu a { display: flex; flex-direction: column; align-items: stretch; gap: 5px; padding: 14px 16px; border-radius: 9px; color: #f4f3ef; text-shadow: none; white-space: normal; }
.desktop-nav .nav-services-menu a::before, .desktop-nav .nav-services-menu a::after { content: none; display: none; }
.desktop-nav .nav-services-menu a:hover,
.desktop-nav .nav-services-menu a:focus-visible,
.desktop-nav .nav-services-menu a[aria-current="page"] { background: rgba(var(--red-rgb),.13); }
.desktop-nav .nav-services-menu b, .desktop-nav .nav-services-menu small { position: static; display: block; margin: 0; transform: none; line-height: 1.5; letter-spacing: normal; }
.desktop-nav .nav-services-menu b { font-size: 1rem; }
.desktop-nav .nav-services-menu small { color: #b1b6b8; font-size: .875rem; font-weight: 650; }
.header-phone { flex: none; text-align: right; }
.header-phone small, .header-phone b { display: block; }
.header-phone small { color: rgba(255,255,255,.86); font-size: .56rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.header-phone b { margin-top: 2px; color: #fff; font-size: .88rem; font-weight: 900; letter-spacing: .08em; }
.site-header .brand,
.site-header .desktop-nav,
.site-header .header-phone,
.site-header .menu-button {
  text-shadow:
    0 1px 2px rgba(0,0,0,1),
    0 2px 8px rgba(0,0,0,.98),
    0 0 22px rgba(0,0,0,.96);
}
.menu-button { width: 46px; height: 46px; display: none; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 50%; color: inherit; background: transparent; cursor: pointer; }
.menu-button span { width: 18px; height: 1px; display: block; background: currentColor; }
.mobile-menu { display: none; }

.hero { position: relative; min-height: min(920px, calc(100svh - 42px)); display: grid; align-items: end; overflow: hidden; isolation: isolate; }
.hero-media, .hero-shade { position: absolute; z-index: -2; inset: 0; overflow: hidden; }
.hero-media img { height: 100%; object-fit: cover; object-position: center 47%; transform: scale(1.01); }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(5,6,7,.96) 0%, rgba(5,6,7,.7) 41%, rgba(5,6,7,.08) 75%), linear-gradient(0deg, rgba(5,6,7,.9), transparent 52%); }
.hero-inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.42fr); gap: 60px; align-items: end; padding-top: 130px; padding-bottom: 70px; }
.hero-copy { max-width: 800px; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin-bottom: 24px; color: var(--red); font-size: .63rem; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.eyebrow.eyebrow-symmetric::before,
.eyebrow.eyebrow-symmetric::after { width: 32px; height: 1px; flex: 0 0 32px; background: currentColor; }
.eyebrow.eyebrow-symmetric::after { content: ""; }
.hero h1 { max-width: 940px; font-size: clamp(4.2rem, 8.2vw, 8.5rem); font-weight: 570; line-height: .86; }
.hero h1 em { color: var(--red); font-style: normal; font-weight: 450; }
.hero-lead { max-width: 680px; margin: 35px 0 0; color: #c0c3c4; font-size: clamp(.95rem,1.2vw,1.12rem); line-height: 1.75; }
.hero-links { max-width: 720px; display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 20px; }
.hero-links a { color: #aeb2b4; border-bottom: 1px solid rgba(255,255,255,.24); font-size: .62rem; font-weight: 750; }
.hero-links a:hover { color: #fff; border-color: var(--red); }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 23px; border: 1px solid transparent; border-radius: 7px; font-size: .7rem; font-weight: 800; letter-spacing: .02em; }
.button.primary { color: #fff; background: #d43a30; }
.button.primary:hover { background: #bd3027; box-shadow: 0 0 0 4px rgba(var(--red-rgb),.15); }
.button.ghost { border-color: var(--line); color: #e3e4e4; background: rgba(10,11,12,.24); backdrop-filter: blur(8px); }
.hero-control { align-self: end; padding: 24px; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; background: rgba(9,10,11,.72); backdrop-filter: blur(16px); }
.hero-control p { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.hero-control p span, .hero-control p b { display: block; }
.hero-control p span { color: var(--red); font-size: .55rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.hero-control p b { margin-top: 5px; font-size: .83rem; }
.hero-control ol { display: grid; grid-template-columns: repeat(2,1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.hero-control li { min-height: 72px; display: grid; align-content: center; gap: 3px; padding: 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .68rem; font-weight: 700; }
.hero-control li span { color: #686d70; font-size: .51rem; letter-spacing: .13em; }
.hero-control > a { min-height: 44px; display: flex; align-items: center; justify-content: space-between; margin-top: 14px; color: #cdd0d1; font-size: .64rem; font-weight: 750; }
.hero-control > a span { color: var(--red); font-size: 1rem; }
.hero-proof { position: relative; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); background: rgba(7,8,9,.74); backdrop-filter: blur(16px); }
.hero-proof div { min-height: 116px; display: grid; grid-template-columns: 38px 1fr; align-content: center; padding: 22px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-proof span { grid-row: span 2; padding-top: 2px; color: var(--red); font-size: .57rem; font-weight: 850; letter-spacing: .12em; }
.hero-proof b, .hero-proof small { display: block; }
.hero-proof b { font-size: .78rem; }
.hero-proof small { margin-top: 3px; color: #777c7f; font-size: .62rem; }

.routes { padding: 70px 0 100px; background: #0d0f10; }
.section-heading { margin-bottom: 58px; }
.section-heading.compact { margin-bottom: 28px; }
.section-heading.compact h2 { font-size: clamp(2.7rem,4vw,4.8rem); }
.section-heading.split { display: grid; grid-template-columns: 1.25fr .55fr; gap: 80px; align-items: end; }
.section-heading.split > p { max-width: 540px; margin: 0 0 5px auto; color: var(--muted); line-height: 1.75; }
.section-heading.centered { max-width: 920px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p:last-child { max-width: 670px; margin: 26px auto 0; color: var(--muted); }
.route-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.route-grid > a { min-height: 185px; display: grid; grid-template-columns: 36px 1fr 20px; align-content: center; gap: 12px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #111315; transition: background .2s, transform .2s; }
.route-grid > a:hover { background: #171a1c; transform: translateY(-4px); }
.route-grid > a > span { color: var(--red); font-size: .58rem; font-weight: 850; letter-spacing: .13em; }
.route-grid b, .route-grid small { display: block; }
.route-grid b { font-size: .98rem; }
.route-grid small { margin-top: 8px; color: #777c7e; font-size: .68rem; line-height: 1.55; }
.route-grid i { align-self: start; color: #62676a; font-style: normal; }

.cinematic-only { display: none; }
[data-theme="cinematic"] .cinematic-only { display: block; }

[data-theme="cinematic"] .cine-principle { color: #171819; background: #eeede8; }
.cine-principle-head { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(280px,.55fr); gap: 80px; align-items: end; margin-bottom: 65px; }
.cine-principle-head h2 { max-width: 950px; }
.cine-principle-head > p { max-width: 540px; margin: 0 0 6px auto; color: #666763; line-height: 1.8; }
.cine-proof-grid { display: grid; grid-template-columns: 1.12fr .78fr 1fr; gap: 12px; align-items: end; }
.cine-proof-grid article { min-width: 0; overflow: hidden; border: 1px solid rgba(0,0,0,.16); background: #f8f7f3; }
.cine-proof-grid article:nth-child(2) { transform: translateY(-42px); }
.cine-proof-grid figure { height: 420px; margin: 0; overflow: hidden; background: #1a1b1c; }
.cine-proof-grid article:nth-child(1) figure { height: 520px; }
.cine-proof-grid article:nth-child(2) figure { height: 360px; }
.cine-proof-grid img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.cine-proof-grid article:nth-child(1) img { object-position: 55% center; }
.cine-proof-grid article:nth-child(2) img { object-position: center 60%; }
.cine-proof-grid article:hover img { transform: scale(1.025); }
.cine-proof-grid article > div { min-height: 220px; padding: 27px 28px 31px; }
.cine-proof-grid article > div > span { display: block; margin-bottom: 24px; color: var(--red); font-size: .56rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.cine-proof-grid h3 { max-width: 390px; font-size: clamp(1.55rem,2.2vw,2.35rem); }
.cine-proof-grid p { max-width: 440px; margin: 18px 0 0; color: #686965; font-size: .75rem; line-height: 1.75; }

.night-stage { position: relative; min-height: 920px; overflow: hidden; isolation: isolate; }
.night-stage-media, .night-stage-shade { position: absolute; z-index: -2; inset: 0; }
.night-stage-media img { height: 100%; object-fit: cover; object-position: center 48%; transform: scale(1.015); }
.night-stage-shade { z-index: -1; background: linear-gradient(90deg,rgba(4,5,6,.94) 0%,rgba(4,5,6,.72) 43%,rgba(4,5,6,.16) 76%),linear-gradient(0deg,rgba(4,5,6,.93),transparent 48%); }
.night-stage-copy { min-height: 780px; display: grid; align-content: center; padding-top: 90px; padding-bottom: 80px; }
.night-stage-copy h2 { max-width: 920px; font-size: clamp(4rem,8vw,8.5rem); }
.night-stage-copy > p:not(.eyebrow) { max-width: 670px; margin: 30px 0 0; color: #bdc0c1; font-size: 1rem; line-height: 1.8; }
.night-stage-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.night-stage-rail { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); background: rgba(6,7,8,.74); backdrop-filter: blur(15px); }
.night-stage-rail > div { min-height: 120px; display: grid; grid-template-columns: 40px 1fr; align-content: center; padding: 22px 24px; border-right: 1px solid rgba(255,255,255,.2); }
.night-stage-rail span { grid-row: span 2; color: var(--red); font-size: .57rem; font-weight: 850; letter-spacing: .12em; }
.night-stage-rail b, .night-stage-rail small { display: block; }
.night-stage-rail b { font-size: .78rem; }
.night-stage-rail small { margin-top: 4px; color: #767b7d; font-size: .62rem; }

[data-theme="cinematic"] .handover-film { color: #f3f3ef; background: #0e1011; }
.handover-film-grid { display: grid; grid-template-columns: minmax(350px,.76fr) minmax(0,1.24fr); gap: clamp(60px,9vw,135px); align-items: center; }
.handover-film-copy > p:not(.eyebrow) { max-width: 620px; margin: 30px 0 35px; color: #929699; line-height: 1.8; }
.handover-film-image { position: relative; height: 650px; margin: 0; overflow: hidden; border-radius: 18px; }
.handover-film-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(4,5,6,.84),transparent 48%); }
.handover-film-image img { height: 100%; object-fit: cover; object-position: 48% center; }
.handover-film-image figcaption { position: absolute; z-index: 1; right: 24px; bottom: 22px; left: 24px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 14px; color: #fff; font-size: .58rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.handover-film-image figcaption i { height: 1px; display: block; background: rgba(255,255,255,.36); }
.handover-film-image figcaption span b { display: none; }

[data-theme="cinematic"].motion-ready [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease,transform .8s cubic-bezier(.2,.7,.2,1); }
[data-theme="cinematic"].motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }

.premium { background: #08090a; }
.premium-grid { display: grid; grid-template-columns: minmax(350px,.75fr) minmax(0,1.25fr); gap: clamp(55px,8vw,130px); align-items: center; }
.premium-copy h2 { max-width: 690px; }
.premium-copy > p:not(.eyebrow) { max-width: 620px; margin: 30px 0 0; color: var(--muted); line-height: 1.8; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 35px; padding: 0; list-style: none; }
.chips li { padding: 10px 13px; border: 1px solid var(--line); border-radius: 99px; color: #aeb2b4; font-size: .66rem; }
.text-link { display: inline-flex; gap: 15px; align-items: center; min-height: 44px; padding-bottom: 4px; border-bottom: 1px solid #555a5d; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.text-link span { color: var(--red); }
.premium-gallery { min-height: 660px; display: grid; grid-template-columns: 1.55fr .7fr; grid-template-rows: repeat(2,1fr); gap: 12px; }
.premium-gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 14px; background: #17191b; }
.premium-gallery .premium-main { grid-row: 1 / span 2; }
.premium-gallery img { height: 100%; object-fit: cover; }
.premium-main img { object-position: center 58%; }
.premium-gallery figure::after, .reference-card::after, .service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,5,6,.75), transparent 52%); }
.premium-gallery figcaption { position: absolute; z-index: 1; right: 18px; bottom: 17px; left: 18px; font-size: .6rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }

.services { color: var(--dark-ink); background: var(--light); }
.services .section-heading.split > p { color: #6d6d69; }
.service-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 490px; gap: 14px; }
.service-card { position: relative; grid-column: span 4; overflow: hidden; border-radius: var(--radius); color: #fff; background: #17191b; }
.service-card.service-main, .service-card.service-wide { grid-column: span 8; }
.service-card img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover img { transform: scale(1.025); }
.service-card > div { position: absolute; z-index: 2; right: 28px; bottom: 28px; left: 28px; }
.service-card > div > span { display: inline-flex; margin-bottom: 14px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 99px; background: rgba(0,0,0,.28); font-size: .56rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.service-card h3 { max-width: 650px; }
.service-card p { max-width: 580px; margin: 13px 0 17px; color: #c3c5c6; font-size: .78rem; }
.service-card a { color: #fff; font-size: .65rem; font-weight: 850; text-transform: uppercase; }

.service-details { color: var(--ink); background: #0d0f10; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.service-detail-card { min-height: 560px; display: flex; flex-direction: column; padding: clamp(28px,4vw,50px); border: 1px solid var(--line); border-radius: var(--radius); background: #131517; }
.service-detail-card > span { color: var(--red); font-size: .58rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.service-detail-card h3 { margin-top: 22px; }
.service-detail-card > p { max-width: 640px; margin: 22px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.8; }
.service-detail-card ul { display: grid; gap: 11px; margin: 30px 0 35px; padding: 0; color: #c0c3c4; font-size: .74rem; list-style: none; }
.service-detail-card li { position: relative; padding-left: 18px; }
.service-detail-card li::before { content: ""; position: absolute; top: .67em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.service-detail-card > a { display: inline-flex; justify-content: space-between; gap: 30px; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); font-size: .67rem; font-weight: 850; text-transform: uppercase; }
.service-detail-card > a span { color: var(--red); font-size: 1rem; }
.service-detail-card.service-detail-emergency { background: linear-gradient(145deg,rgba(var(--red-rgb),.13),transparent 45%),#131517; }

.transport-types { background: #0c0e0f; }
.transport-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.transport-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #121416; }
.transport-grid figure { position: relative; height: 500px; margin: 0; overflow: hidden; }
.transport-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(4,5,6,.65),transparent 45%); }
.transport-grid figure img { height: 100%; object-fit: cover; }
.transport-grid article:nth-child(2) figure img { object-position: center 62%; }
.transport-grid figcaption { position: absolute; z-index: 1; bottom: 20px; left: 20px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 99px; background: rgba(0,0,0,.34); font-size: .57rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.transport-grid article > div { position: relative; padding: 35px 36px 40px; }
.transport-grid article > div > span { position: absolute; top: 37px; right: 34px; color: var(--red); font-size: .58rem; font-weight: 850; }
.transport-grid h3 { max-width: 550px; padding-right: 42px; }
.transport-grid p { max-width: 580px; margin: 18px 0 24px; color: var(--muted); }
.transport-grid ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; color: #c0c3c4; font-size: .76rem; }
.transport-grid li::before { content: ""; width: 5px; height: 5px; display: inline-block; margin: 0 10px 2px 0; border-radius: 50%; background: var(--red); }

.process { color: var(--dark-ink); background: #edede9; }
.process-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px,9vw,140px); }
.process-intro { position: sticky; top: 130px; align-self: start; }
.process-intro > p:last-child { max-width: 520px; margin-top: 27px; color: #676764; line-height: 1.8; }
.process ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(0,0,0,.17); }
.process li { display: grid; grid-template-columns: 72px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid rgba(0,0,0,.17); }
.process li > span { padding-top: 6px; color: var(--red); font-size: .59rem; font-weight: 850; letter-spacing: .13em; }
.process li h3 { font-size: 1.45rem; }
.process li p { max-width: 680px; margin: 9px 0 0; color: #666663; font-size: .84rem; }

.fleet { background: #090b0c; }
.fleet-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(55px,8vw,120px); align-items: center; }
.fleet-gallery { display: grid; grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(2,250px); gap: 12px; }
.fleet-gallery figure { margin: 0; overflow: hidden; border-radius: 13px; }
.fleet-gallery .fleet-main { grid-row: span 2; }
.fleet-gallery img { height: 100%; object-fit: cover; }
.fleet-gallery .fleet-main img { object-position: 58% center; }
.fleet-copy > p:not(.eyebrow):not(.note) { max-width: 620px; margin: 28px 0 0; color: var(--muted); }
.spec-grid { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 32px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.spec-grid > div { min-height: 106px; display: grid; align-content: center; gap: 5px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-grid span { color: var(--red); font-size: .55rem; font-weight: 850; letter-spacing: .12em; }
.spec-grid b { font-size: .72rem; line-height: 1.45; }
.note { margin: 22px 0 0; padding-left: 16px; border-left: 2px solid var(--red); color: #767b7d; font-size: .68rem; }

.scope { padding-top: 30px; background: #090b0c; }
.scope-grid { display: grid; grid-template-columns: .7fr 1.3fr .8fr; gap: 34px; padding-top: 65px; border-top: 1px solid var(--line); align-items: start; }
.scope h2 { font-size: clamp(2.7rem,4.8vw,5rem); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud span { padding: 11px 14px; border: 1px solid var(--line); border-radius: 99px; color: #adb1b3; font-size: .67rem; }
.scope aside { padding: 26px; border: 1px solid rgba(var(--red-rgb),.35); border-radius: 13px; background: rgba(var(--red-rgb),.04); }
.scope aside small, .scope aside b { display: block; }
.scope aside small { margin-bottom: 12px; color: var(--red); font-size: .55rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.scope aside b { font-size: .86rem; line-height: 1.55; }
.scope aside p { margin: 15px 0 0; color: #818689; font-size: .68rem; line-height: 1.7; }

.references { color: var(--dark-ink); background: var(--light); }
.references .section-heading.split > p { color: #6c6c68; }
.reference-marquee { --reference-gap: 10px; --reference-speed: 92s; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent); mask-image: linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent); }
.reference-track { display: flex; width: max-content; will-change: transform; animation: references-left-to-right var(--reference-speed) linear infinite; }
.reference-sequence { display: flex; gap: var(--reference-gap); padding-right: var(--reference-gap); }
.reference-card { position: relative; width: clamp(300px,28vw,430px); height: clamp(280px,29vw,390px); flex: 0 0 auto; margin: 0; overflow: hidden; border-radius: 10px; background: #17191b; }
.reference-card.reference-wide { width: clamp(430px,42vw,650px); }
.reference-card img { height: 100%; object-fit: cover; transition: transform .55s ease; }
.reference-card:hover img { transform: scale(1.03); }
.reference-card figcaption { position: absolute; z-index: 1; right: 17px; bottom: 15px; left: 17px; color: #fff; }
.reference-card figcaption b, .reference-card figcaption span { display: block; }
.reference-card figcaption b { font-size: .76rem; }
.reference-card figcaption span { color: #c2c4c5; font-size: .6rem; }
.reference-marquee:hover .reference-track, .reference-marquee:focus-within .reference-track, .reference-marquee.is-paused .reference-track { animation-play-state: paused; }
.reference-note { margin-top: 17px; color: #73736f; font-size: .61rem; }

.reviews { background: #0b0d0e; }
.reviews-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 52px; }
.reviews-head > a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 15px; border: 1px solid var(--line); border-radius: 7px; color: #c8cbcc; font-size: .67rem; font-weight: 740; }
.reviews-score { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 20px 0 0; }
.reviews-score strong { font-family: var(--accent-serif); font-size: 1.05rem; font-weight: 400; }
.reviews-score > span { color: #fbbc04; font-size: .72rem; letter-spacing: .11em; }
.reviews-score small { color: #777c7e; font-size: .61rem; }
.review-marquee { --review-gap: 14px; --review-speed: 58s; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); mask-image: linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); }
.review-track { display: flex; width: max-content; will-change: transform; animation: reviews-left-to-right var(--review-speed) linear infinite; }
.review-sequence { display: flex; gap: var(--review-gap); padding-right: var(--review-gap); }
.review-card { width: clamp(310px,32vw,430px); min-height: 360px; display: flex; flex: 0 0 auto; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: #121416; }
.review-card > div { display: flex; justify-content: space-between; color: #fbbc04; font-size: .75rem; letter-spacing: .13em; }
.review-card i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: #4285f4; background: #fff; font-style: normal; font-weight: 900; letter-spacing: 0; }
.review-card blockquote { flex: 1; margin: 26px 0 32px; color: #d6d8d8; font-family: var(--accent-serif); font-size: 1.02rem; line-height: 1.75; }
.review-card footer { padding-top: 18px; border-top: 1px solid var(--line); }
.review-card footer a, .review-card footer span { display: block; }
.review-card footer a { color: #f1f2f2; font-size: .73rem; font-weight: 760; }
.review-card footer span { margin-top: 4px; color: #6e7375; font-size: .58rem; }
.review-marquee:hover .review-track, .review-marquee:focus-within .review-track, .review-marquee.is-paused .review-track { animation-play-state: paused; }
.review-note { margin-top: 20px; color: #64696b; font-size: .61rem; }

@keyframes reviews-left-to-right {
  from { transform: translate3d(-50%,0,0); }
  to { transform: translate3d(0,0,0); }
}

@keyframes references-left-to-right {
  from { transform: translate3d(-50%,0,0); }
  to { transform: translate3d(0,0,0); }
}

.experience { border-block: 1px solid var(--line); background: #101213; }
.experience-grid { display: grid; grid-template-columns: .5fr 1fr .5fr; gap: 60px; align-items: center; text-align: center; }
.experience-grid > div:first-child strong, .experience-grid > div:last-child strong { display: block; color: var(--red); font-family: var(--accent-serif); font-size: clamp(4rem,8vw,7rem); font-weight: 400; line-height: .85; }
.experience-grid > div:first-child span, .experience-grid > div:last-child span { display: block; margin-top: 18px; color: #777c7e; font-size: .61rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.experience-grid .eyebrow { justify-content: center; }
.experience-grid > div:nth-child(2) > p:last-child { max-width: 680px; margin: 25px auto 0; color: var(--muted); }

.about { border-block: 1px solid var(--line); background: #101213; }
.about-intro { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(300px,.62fr); gap: clamp(55px,8vw,125px); align-items: end; }
.about-intro > div:last-child p { max-width: 620px; margin-bottom: 18px; color: var(--muted); line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 70px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-stats > div { min-height: 180px; display: grid; align-content: center; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-stats strong { color: var(--red); font-family: var(--accent-serif); font-size: clamp(2.8rem,5vw,5rem); font-weight: 400; line-height: .9; }
.about-stats span { margin-top: 14px; color: #777c7e; font-size: .57rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.origin-story { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr); margin-top: 70px; border: 1px solid var(--line); background: #111315; }
.origin-story figure { position: relative; min-height: 680px; margin: 0; overflow: hidden; }
.origin-story figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 52%,rgba(0,0,0,.84)); }
.origin-story figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.18); }
.origin-story figcaption { position: absolute; z-index: 1; right: 28px; bottom: 26px; left: 28px; color: rgba(255,255,255,.78); font-size: .56rem; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.origin-story article { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px,4.5vw,68px); }
.origin-story article > span { color: var(--red); font-size: .57rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.origin-story article > p { margin: 20px 0 0; color: #aeb2b4; font-size: .8rem; line-height: 1.85; }
.origin-story blockquote { margin: 38px 0 0; padding-top: 34px; border-top: 1px solid var(--line); color: #e7e6e2; font-family: var(--accent-serif); font-size: clamp(1.28rem,2vw,2rem); line-height: 1.42; }
.origin-story blockquote footer { margin-top: 24px; color: #777c7e; font-family: var(--body); font-size: .56rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.story-timeline { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin-top: 14px; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; }
.story-timeline li { min-height: 210px; display: flex; flex-direction: column; padding: 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0f1112; }
.story-timeline li > span { color: var(--red); font-size: .58rem; font-weight: 850; letter-spacing: .13em; }
.story-timeline li > b { margin-top: auto; color: #e8e8e5; font-size: .78rem; }
.story-timeline li > p { margin: 10px 0 0; color: #7d8284; font-size: .66rem; line-height: 1.65; }
.about-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 14px; }
.about-grid article, .about-grid blockquote { min-height: 330px; margin: 0; padding: clamp(28px,4vw,46px); border: 1px solid var(--line); background: #131517; }
.about-grid article > span { color: var(--red); font-size: .56rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.about-grid article h3 { margin-top: 20px; }
.about-grid article p { margin: 22px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.8; }
.about-grid article ul { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; color: #b8bcbe; font-size: .75rem; list-style: none; }
.about-grid article li::before { content: ""; width: 5px; height: 5px; display: inline-block; margin: 0 10px 2px 0; border-radius: 50%; background: var(--red); }
.about-grid blockquote { grid-column: 1 / -1; min-height: 270px; display: grid; align-content: center; color: #e2e3e1; font-family: var(--accent-serif); font-size: clamp(1.45rem,2.7vw,2.7rem); line-height: 1.45; }
.about-grid blockquote footer { margin-top: 30px; color: #73787a; font-family: var(--body); font-size: .6rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.about-grid .about-emergency { border-color: rgba(var(--red-rgb),.5); background: linear-gradient(145deg,rgba(var(--red-rgb),.13),#131517 55%); }
.about-emergency a { width: fit-content; margin-top: auto; padding-top: 28px; color: #fff; font-size: .7rem; font-weight: 850; border-bottom: 1px solid var(--red); }

.faq { color: var(--dark-ink); background: #edede9; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px,9vw,140px); }
.faq-grid > div:first-child > p:last-child { max-width: 400px; margin-top: 25px; color: #666663; }
.faq details { border-top: 1px solid rgba(0,0,0,.17); }
.faq details:last-child { border-bottom: 1px solid rgba(0,0,0,.17); }
.faq summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; font-size: .87rem; font-weight: 720; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--red); font-size: 1.2rem; font-weight: 400; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 760px; margin: -3px 44px 25px 0; color: #666663; font-size: .8rem; line-height: 1.8; }

.inquiry { background: #08090a; }
.inquiry-grid { display: grid; grid-template-columns: 1fr .68fr; gap: clamp(60px,9vw,135px); align-items: center; }
.inquiry-grid > div > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 0; color: var(--muted); }
.inquiry aside { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #121416; }
.inquiry aside h3 { padding-bottom: 20px; border-bottom: 1px solid var(--line); font-size: 1.25rem; }
.inquiry aside ol { margin: 0; padding: 0; list-style: none; }
.inquiry aside li { display: grid; grid-template-columns: 40px 1fr; padding: 17px 0; border-bottom: 1px solid var(--line); }
.inquiry aside li:last-child { border-bottom: 0; padding-bottom: 0; }
.inquiry aside li > span { color: var(--red); font-size: .56rem; font-weight: 850; }
.inquiry aside b, .inquiry aside small { display: block; }
.inquiry aside b { font-size: .72rem; }
.inquiry aside small { margin-top: 3px; color: #727779; font-size: .61rem; }

.contact { background: #08090a; }
.contact-grid { display: grid; grid-template-columns: minmax(0,.78fr) minmax(280px,.58fr) minmax(360px,1fr); gap: 14px; align-items: start; }
.contact-info, .request-data, .contact-form { border: 1px solid var(--line); border-radius: var(--radius); background: #121416; }
.contact-info { overflow: hidden; }
.contact-info article { padding: 22px 25px; border-bottom: 1px solid var(--line); }
.contact-info article:last-child { border-bottom: 0; }
.contact-info span, .contact-info a, .contact-info p { display: block; }
.contact-info span { margin-bottom: 7px; color: #74797b; font-size: .54rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-info a { color: #f2f3f1; font-size: .78rem; font-weight: 760; overflow-wrap: anywhere; }
.contact-info p { margin: 0; color: #c1c4c5; font-size: .72rem; line-height: 1.75; }
.contact-info strong { color: var(--red); }
.request-data { padding: 28px; }
.request-data h3 { padding-bottom: 20px; border-bottom: 1px solid var(--line); font-size: 1.25rem; }
.request-data ol { margin: 0; padding: 0; list-style: none; }
.request-data li { display: grid; grid-template-columns: 38px 1fr; padding: 17px 0; border-bottom: 1px solid var(--line); }
.request-data li:last-child { border-bottom: 0; padding-bottom: 0; }
.request-data li > span { color: var(--red); font-size: .56rem; font-weight: 850; }
.request-data b, .request-data small { display: block; }
.request-data b { font-size: .72rem; }
.request-data small { margin-top: 3px; color: #727779; font-size: .61rem; }
.contact-form { display: grid; gap: 18px; padding: clamp(28px,3.5vw,42px); }
.contact-form > div:first-of-type > span { color: var(--red); font-size: .56rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.contact-form > div:first-of-type h3 { margin-top: 12px; }
.form-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.contact-form label { display: grid; gap: 8px; color: #aeb1b2; font-size: .64rem; font-weight: 750; }
.contact-form label small { color: #696e70; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 6px; color: #f4f3ef; background: #0c0e0f; font-size: .75rem; outline: 0; }
.contact-form textarea { min-height: 125px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(var(--red-rgb),.12); }
.contact-form > p:not(.honeypot) { margin: 0; color: #707577; font-size: .58rem; line-height: 1.65; }
.contact-form > p a { color: #c7cacc; text-decoration: underline; }
.contact-form .button { justify-self: start; cursor: pointer; }
.honeypot { position: absolute; left: -9999px; }

.site-footer { padding: 70px 0 55px; border-top: 1px solid var(--line); background: #060708; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 55px; }
.footer-grid > div:first-child > p { max-width: 350px; margin-top: 20px; color: #6b7072; font-size: .7rem; }
.footer-grid > div:first-child > a:not(.brand) { display: block; width: max-content; margin: 0 0 9px; color: #777c7e; font-size: .67rem; }
.footer-grid h3 { margin-bottom: 18px; font-size: .62rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) p { margin: 0 0 9px; color: #777c7e; font-size: .67rem; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 20px; border-top: 1px solid var(--line); color: #505456; font-size: .58rem; }
.mobile-actions { display: none; }

/* Vollständiger lokaler Website-Datensatz */
.website-dataset { color: #f4f2ee; background: #0d0f11; border-top: 1px solid #25292d; }
.dataset-heading { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(18rem,.75fr); gap: clamp(2rem,5vw,6rem); align-items: end; margin-bottom: 2.5rem; }
.dataset-heading h2 { max-width: 900px; }
.dataset-heading > p { max-width: 650px; margin: 0 0 .35rem; color: #a6aaad; line-height: 1.8; }
.dataset-browser { display: grid; grid-template-columns: minmax(230px,290px) minmax(0,1fr); min-height: 74rem; overflow: hidden; border: 1px solid #2a2e32; border-radius: 18px; background: #08090a; box-shadow: 0 32px 90px rgba(0,0,0,.32); }
.dataset-tabs { max-height: 74rem; overflow: auto; padding: 1rem; border-right: 1px solid #2a2e32; background: #111315; scrollbar-width: thin; }
.dataset-tab-group { display: grid; gap: .35rem; padding: .75rem 0 1.2rem; }
.dataset-tab-group + .dataset-tab-group { border-top: 1px solid #292d31; }
.dataset-tab-group > span { padding: .65rem .75rem .4rem; color: #72777b; font-size: .58rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.dataset-tab { min-height: 2.65rem; display: flex; align-items: center; padding: .65rem .75rem; color: #c4c7c9; border: 1px solid transparent; border-radius: 8px; font-size: .72rem; font-weight: 700; line-height: 1.3; transition: color .2s,background .2s,border-color .2s; }
.dataset-tab:hover { color: #fff; background: #191c1f; border-color: #30353a; }
.dataset-tab.is-active { color: #fff; background: rgba(var(--red-rgb),.12); border-color: rgba(var(--red-rgb),.48); }
.dataset-stage { min-width: 0; display: grid; grid-template-rows: auto 1fr; background: #fff; }
.dataset-stage-bar { min-height: 4.15rem; display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 1rem; align-items: center; padding: .8rem 1.2rem; color: #d9dcde; background: #17191b; border-bottom: 1px solid #2a2e32; }
.dataset-stage-bar span { color: #74797d; font-size: .55rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.dataset-stage-bar b { overflow: hidden; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.dataset-stage-bar a { padding: .55rem .7rem; color: #f4f2ee; border: 1px solid #34383c; border-radius: 6px; font-size: .62rem; font-weight: 800; white-space: nowrap; }
.dataset-stage-bar a:hover { border-color: var(--red); }
.dataset-frame { width: 100%; min-height: 70rem; display: block; border: 0; background: #fff; }

/* B – Editorial Transport Journal */
html[data-theme="editorial"] { --bg: #ece9e3; --surface: #f7f5f0; --surface-2: #e2ded6; --ink: #191a1b; --muted: #666863; --line: rgba(20,21,22,.17); --light: #f5f2ec; --dark-ink: #171819; --radius: 0; --display: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
[data-theme="editorial"] body { background: var(--bg); }
[data-theme="editorial"] .emergency-bar { background: var(--red); }
[data-theme="editorial"] .site-header { color: #171819; background: rgba(244,241,235,.92); }
[data-theme="editorial"] .brand > span:last-child small, [data-theme="editorial"] .header-phone small { color: #74736f; }
[data-theme="editorial"] .desktop-nav a { color: #5e5e5a; }
[data-theme="editorial"] .hero { min-height: 780px; color: #161718; background: #efede7; }
[data-theme="editorial"] .hero-media { left: 48%; }
[data-theme="editorial"] .hero-media img { object-position: 56% center; filter: saturate(.88) contrast(1.02); }
[data-theme="editorial"] .hero-shade { background: linear-gradient(90deg,#efede7 0%,#efede7 41%,rgba(239,237,231,.85) 49%,transparent 68%), linear-gradient(0deg,rgba(18,19,20,.18),transparent 32%); }
[data-theme="editorial"] .hero-inner { grid-template-columns: minmax(0,.94fr) minmax(250px,.38fr); padding-top: 110px; }
[data-theme="editorial"] .hero h1 { max-width: 760px; font-size: clamp(4.3rem,7.6vw,8rem); font-weight: 400; line-height: .88; }
[data-theme="editorial"] .hero h1 em { color: var(--red); }
[data-theme="editorial"] .hero-lead { max-width: 600px; color: #5f605d; }
[data-theme="editorial"] .button.ghost { color: #171819; border-color: rgba(20,21,22,.25); background: rgba(255,255,255,.38); }
[data-theme="editorial"] .hero-control { color: #f5f5f2; border-color: rgba(255,255,255,.28); background: rgba(16,17,18,.82); }
[data-theme="editorial"] .hero-proof { color: #171819; border-color: rgba(20,21,22,.17); background: rgba(241,239,233,.94); }
[data-theme="editorial"] .hero-proof div { border-color: rgba(20,21,22,.17); }
[data-theme="editorial"] .hero-proof small { color: #6b6d68; }
[data-theme="editorial"] .routes { background: #ece9e3; }
[data-theme="editorial"] .route-grid > a { background: #f6f3ed; }
[data-theme="editorial"] .route-grid > a:hover { background: #fff; }
[data-theme="editorial"] .route-grid small { color: #6a6b67; }
[data-theme="editorial"] .premium { color: #171819; background: #f6f3ed; }
[data-theme="editorial"] .premium-copy > p:not(.eyebrow) { color: #646661; }
[data-theme="editorial"] .chips li { color: #5f615d; }
[data-theme="editorial"] .text-link { border-color: #92928c; }
[data-theme="editorial"] .premium-gallery figure { border-radius: 0; }
[data-theme="editorial"] .services { background: #18191a; color: #f5f3ee; }
[data-theme="editorial"] .services .section-heading.split > p { color: #9a9c9d; }
[data-theme="editorial"] .service-grid { grid-auto-rows: 520px; gap: 2px; }
[data-theme="editorial"] .service-card { border-radius: 0; }
[data-theme="editorial"] .transport-types { color: #171819; background: #e9e5de; }
[data-theme="editorial"] .transport-grid article { background: #f5f2ec; }
[data-theme="editorial"] .transport-grid p { color: #666762; }
[data-theme="editorial"] .transport-grid ul { color: #4f504d; }
[data-theme="editorial"] .process { background: #f7f5f0; }
[data-theme="editorial"] .fleet, [data-theme="editorial"] .scope { color: #f4f3ef; background: #171819; }
[data-theme="editorial"] .fleet-gallery figure { border-radius: 0; }
[data-theme="editorial"] .references { background: #ece9e3; }
[data-theme="editorial"] .reference-marquee { --reference-gap: 2px; }
[data-theme="editorial"] .reference-card { border-radius: 0; }
[data-theme="editorial"] .reviews { color: #171819; background: #f7f5f0; }
[data-theme="editorial"] .reviews-head > a { color: #363735; }
[data-theme="editorial"] .review-card { border-radius: 0; background: #ebe7df; }
[data-theme="editorial"] .review-card blockquote { color: #2a2b29; }
[data-theme="editorial"] .review-card footer a { color: #171819; }
[data-theme="editorial"] .experience { color: #f5f3ee; background: #18191a; }
[data-theme="editorial"] .faq { background: #ece9e3; }
[data-theme="editorial"] .inquiry { color: #f5f3ee; background: #171819; }
[data-theme="editorial"] .inquiry aside { border-radius: 0; }

/* C – Precision Control */
html[data-theme="precision"] { --red: #ef4638; --red-rgb: 239,70,56; --bg: #071017; --surface: #0b151c; --surface-2: #101d25; --ink: #eef3f5; --muted: #83929b; --line: rgba(166,190,201,.18); --light: #dfe7ea; --dark-ink: #11181c; --radius: 4px; --display: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
[data-theme="precision"] body { background-color: var(--bg); background-image: linear-gradient(rgba(160,186,198,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(160,186,198,.045) 1px,transparent 1px); background-size: 48px 48px; }
[data-theme="precision"] .site-header { background: rgba(6,14,20,.93); }
[data-theme="precision"] .hero { min-height: 850px; background-image: linear-gradient(rgba(160,186,198,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(160,186,198,.06) 1px,transparent 1px); background-size: 64px 64px; }
[data-theme="precision"] .hero-media { top: 70px; right: 0; bottom: 70px; left: 46%; border: 1px solid var(--line); }
[data-theme="precision"] .hero-media::before { content: "PV / TRANSPORT VISUAL"; position: absolute; z-index: 2; top: 14px; left: 15px; padding: 6px 8px; color: #eef3f5; background: rgba(5,10,14,.8); font-family: var(--body); font-size: .5rem; letter-spacing: .14em; }
[data-theme="precision"] .hero-media img { object-position: 54% center; }
[data-theme="precision"] .hero-shade { background: linear-gradient(90deg,#071017 0%,rgba(7,16,23,.97) 41%,rgba(7,16,23,.35) 64%,rgba(7,16,23,.12)),linear-gradient(0deg,#071017,transparent 35%); }
[data-theme="precision"] .hero-inner { grid-template-columns: minmax(0,.86fr) minmax(280px,.42fr); }
[data-theme="precision"] .hero h1 { max-width: 820px; font-size: clamp(3.9rem,7.4vw,7.6rem); font-weight: 700; text-transform: uppercase; }
[data-theme="precision"] .hero h1 em { color: transparent; -webkit-text-stroke: 1px var(--red); }
[data-theme="precision"] .eyebrow, [data-theme="precision"] .hero-control, [data-theme="precision"] .route-grid, [data-theme="precision"] .spec-grid { font-family: var(--body); }
[data-theme="precision"] .hero-control { border-radius: 3px; background: rgba(6,14,20,.88); }
[data-theme="precision"] .hero-proof { background: rgba(6,14,20,.94); }
[data-theme="precision"] .routes { background: rgba(7,16,23,.95); }
[data-theme="precision"] .route-grid > a { background: #0b151c; }
[data-theme="precision"] .route-grid > a:hover { background: #111e26; transform: none; }
[data-theme="precision"] .premium { background: #071017; }
[data-theme="precision"] .premium-gallery { gap: 5px; }
[data-theme="precision"] .premium-gallery figure { border: 1px solid var(--line); border-radius: 3px; }
[data-theme="precision"] .services { color: #edf2f4; background: #0c171e; }
[data-theme="precision"] .services .section-heading.split > p { color: #83929b; }
[data-theme="precision"] .service-grid { gap: 5px; }
[data-theme="precision"] .service-card { border: 1px solid var(--line); border-radius: 3px; }
[data-theme="precision"] .transport-types { background: #071017; }
[data-theme="precision"] .transport-grid article { border-radius: 3px; background: #0b151c; }
[data-theme="precision"] .process { background: #dfe7ea; }
[data-theme="precision"] .fleet, [data-theme="precision"] .scope { background: #071017; }
[data-theme="precision"] .fleet-gallery { gap: 5px; }
[data-theme="precision"] .fleet-gallery figure { border: 1px solid var(--line); border-radius: 3px; }
[data-theme="precision"] .references { background: #dfe7ea; }
[data-theme="precision"] .reference-marquee { --reference-gap: 5px; }
[data-theme="precision"] .reference-card { border-radius: 3px; }
[data-theme="precision"] .reviews { background: #071017; }
[data-theme="precision"] .review-marquee { --review-gap: 5px; }
[data-theme="precision"] .review-card { border-radius: 3px; background: #0b151c; }
[data-theme="precision"] .experience { background: #0b151c; }
[data-theme="precision"] .faq { background: #dfe7ea; }
[data-theme="precision"] .inquiry { background: #071017; }
[data-theme="precision"] .inquiry aside { border-radius: 3px; background: #0b151c; }

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

@media (max-width: 1120px) {
  :root { --shell: min(100% - 48px, 1040px); }
  .desktop-nav { gap: 18px; }
  .header-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr .42fr; gap: 35px; }
  .hero-control { padding: 18px; }
  .route-grid { grid-template-columns: repeat(2,1fr); }
  .premium-grid, .fleet-grid { grid-template-columns: 1fr; }
  .premium-copy, .fleet-copy { max-width: 820px; }
  .premium-gallery { min-height: 620px; }
  .fleet-gallery { order: 2; grid-template-rows: repeat(2,320px); }
  .scope-grid { grid-template-columns: 1fr 1.4fr; }
  .scope aside { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-form { grid-column: 1 / -1; }
  .reference-card { width: clamp(300px,36vw,410px); }
  .reference-card.reference-wide { width: clamp(430px,52vw,590px); }
  .cine-principle-head { grid-template-columns: 1fr; gap: 35px; }
  .cine-principle-head > p { max-width: 740px; margin-left: 0; }
  .cine-proof-grid { grid-template-columns: repeat(2,1fr); }
  .cine-proof-grid article:nth-child(2) { transform: none; }
  .cine-proof-grid article:nth-child(3) { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .cine-proof-grid article:nth-child(3) figure { height: 360px; }
  [data-theme="editorial"] .hero-media { left: 43%; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 96px; }
  .desktop-nav { display: none; }
  .menu-button { display: grid; margin-left: auto; }
  .mobile-menu { position: fixed; z-index: 29; top: calc(var(--emergency-height) + var(--header-height)); right: 0; left: 0; display: grid; align-content: start; padding: 20px max(24px,calc((100vw - 700px)/2)); color: var(--ink); background: var(--bg); border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(-8px); visibility: hidden; pointer-events: none; transition: .2s; }
  .mobile-menu.is-open { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
  .mobile-menu a { min-height: 50px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: .9rem; font-weight: 700; }
  .hero { min-height: auto; padding-top: 0; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-control { max-width: 520px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { border-bottom: 1px solid rgba(255,255,255,.18); }
  .section-heading.split, .process-grid, .faq-grid, .inquiry-grid { grid-template-columns: 1fr; gap: 45px; }
  .section-heading.split > p { margin-left: 0; }
  .service-detail-grid, .about-intro, .about-grid, .contact-grid, .origin-story { grid-template-columns: 1fr; }
  .origin-story figure { min-height: 500px; }
  .story-timeline { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .story-timeline li:last-child { grid-column: 1 / -1; }
  .service-detail-card { min-height: 0; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .about-grid blockquote, .contact-form { grid-column: auto; }
  .service-grid { grid-auto-rows: 440px; }
  .service-card, .service-card.service-main, .service-card.service-wide { grid-column: span 6; }
  .transport-grid { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .review-card { width: min(430px,72vw); }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .experience-grid > div:nth-child(2) { grid-column: 1 / -1; grid-row: 1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .night-stage { min-height: 820px; }
  .night-stage-copy { min-height: 690px; }
  .handover-film-grid { grid-template-columns: 1fr; }
  .handover-film-copy { max-width: 780px; }
  .handover-film-image { height: 580px; }
  [data-theme="editorial"] .hero { color: #fff; background: #111; }
  [data-theme="editorial"] .hero-inner, [data-theme="precision"] .hero-inner { grid-template-columns: 1fr; }
  [data-theme="editorial"] .hero-media { left: 0; }
  [data-theme="editorial"] .hero-shade { background: linear-gradient(90deg,rgba(7,8,9,.88),rgba(7,8,9,.12)),linear-gradient(0deg,rgba(7,8,9,.9),transparent 60%); }
  [data-theme="editorial"] .hero-lead { color: #d0d1cf; }
  [data-theme="editorial"] .hero .button.ghost { color: #fff; border-color: rgba(255,255,255,.32); background: rgba(0,0,0,.2); }
  [data-theme="editorial"] .hero-proof { color: #171819; }
  [data-theme="precision"] .hero-media { inset: 55px 0 55px 35%; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 32px); --emergency-height: 34px; --header-height: 66px; }
  body { padding-bottom: 76px; }
  .section { padding: 82px 0; }
  h2 { font-size: clamp(2.05rem, 9vw, 2.8rem); overflow-wrap: normal; word-break: normal; hyphens: none; }
  h3 { overflow-wrap: anywhere; }
  .section-heading.split > *, .experience-grid > *, .faq-grid > * { min-width: 0; }
  .lab-switcher { grid-template-columns: 1fr auto; padding: 9px 16px; }
  .lab-switcher-actions { grid-column: 1 / -1; grid-row: 2; gap: 4px; }
  .lab-switcher button { padding-inline: 6px; font-size: .6rem; }
  .lab-switcher button span { display: none; }
  .lab-switcher > a { font-size: .55rem; }
  .emergency-inner { min-height: 34px; font-size: .59rem; }
  .emergency-long { display: none; }
  .emergency-short { display: inline; }
  .emergency-inner a { font-size: .65rem; }
  .header-inner { min-height: 66px; }
  .brand-mark { font-size: 1.7rem; }
  .brand > span:last-child b { font-size: .67rem; }
  .brand > span:last-child small { font-size: .47rem; }
  .mobile-menu { top: calc(var(--emergency-height) + var(--header-height)); padding-inline: 16px; }
  .hero-inner { gap: 38px; padding-top: 100px; padding-bottom: 45px; }
  .hero h1 { font-size: clamp(3.25rem,16vw,5rem); }
  .hero-lead { margin-top: 25px; font-size: .87rem; }
  .hero-links { gap: 9px 14px; margin-top: 17px; }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-control { max-width: none; }
  .hero-proof { width: 100%; }
  .hero-proof div { min-height: 92px; }
  .routes { padding: 70px 0; }
  .route-grid { grid-template-columns: 1fr; }
  .route-grid > a { min-height: 128px; }
  .premium-grid { gap: 45px; }
  .premium-gallery { min-height: 560px; grid-template-columns: 1fr 1fr; grid-template-rows: 360px 190px; }
  .premium-gallery .premium-main { grid-column: 1 / -1; grid-row: auto; }
  .service-grid { grid-template-columns: 1fr; grid-auto-rows: 430px; }
  .service-card, .service-card.service-main, .service-card.service-wide { grid-column: auto; }
  .service-card > div { right: 20px; bottom: 21px; left: 20px; }
  .service-detail-card { padding: 27px 22px; }
  .transport-grid figure { height: 380px; }
  .transport-grid article > div { padding: 28px 24px 32px; }
  .process li { grid-template-columns: 48px 1fr; }
  .fleet-gallery { grid-template-rows: 280px 165px; gap: 6px; }
  .fleet-gallery .fleet-main { grid-column: 1 / -1; grid-row: auto; }
  .spec-grid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope aside { grid-column: auto; }
  .reference-marquee { --reference-gap: 6px; --reference-speed: 78s; -webkit-mask-image: linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent); mask-image: linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent); }
  .reference-card { width: min(280px,78vw); height: 300px; }
  .reference-card.reference-wide { width: min(390px,88vw); }
  .cine-principle-head { margin-bottom: 45px; }
  .cine-proof-grid { grid-template-columns: 1fr; gap: 8px; }
  .cine-proof-grid article:nth-child(3) { grid-column: auto; display: block; }
  .cine-proof-grid article:nth-child(n) figure { height: 330px; }
  .cine-proof-grid article > div { min-height: 0; padding: 24px 22px 28px; }
  .night-stage { min-height: auto; }
  .night-stage-media img { object-position: 62% center; }
  .night-stage-copy { min-height: 680px; padding-top: 90px; }
  .night-stage-copy h2 { font-size: clamp(3rem,15vw,5rem); }
  .night-stage-copy > p:not(.eyebrow) { font-size: .85rem; }
  .night-stage-actions { display: grid; }
  .night-stage-rail { width: 100%; grid-template-columns: 1fr; }
  .night-stage-rail > div { min-height: 92px; border-bottom: 1px solid rgba(255,255,255,.18); }
  .handover-film-image { height: 440px; border-radius: 12px; }
  .handover-film-image figcaption { right: 15px; bottom: 16px; left: 15px; gap: 7px; font-size: .48rem; }
  .reviews-head { align-items: start; flex-direction: column; }
  .review-marquee { -webkit-mask-image: linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent); mask-image: linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent); }
  .review-card { width: min(330px,84vw); min-height: 350px; padding: 24px; }
  .experience-grid { gap: 50px 15px; }
  .experience-grid > div:first-child strong, .experience-grid > div:last-child strong { font-size: 4rem; }
  .experience-grid > div:first-child span, .experience-grid > div:last-child span { font-size: .52rem; }
  .about-stats { grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 45px; }
  .about-stats > div { min-width: 0; min-height: 145px; grid-template-columns: minmax(0,1fr); padding: 20px; }
  .about-stats span { overflow-wrap: anywhere; }
  .origin-story { margin-top: 45px; }
  .origin-story figure { min-height: 360px; }
  .origin-story article { padding: 28px 22px 34px; }
  .origin-story blockquote { margin-top: 30px; padding-top: 28px; }
  .story-timeline { grid-template-columns: 1fr; }
  .story-timeline li, .story-timeline li:last-child { min-height: 155px; grid-column: auto; }
  .about-grid article, .about-grid blockquote { min-height: 0; padding: 27px 22px; }
  .about-grid blockquote { font-size: 1.35rem; }
  .faq summary { font-size: .79rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info article { padding: 20px; }
  .request-data, .contact-form { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 60; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; color: #fff; background: #0a0b0c; box-shadow: 0 -10px 30px rgba(0,0,0,.28); }
  .mobile-actions a { min-height: 68px; display: grid; align-content: center; padding: 8px 16px; border-top: 1px solid rgba(255,255,255,.14); }
  .mobile-actions a + a { border-left: 1px solid rgba(255,255,255,.14); }
  .mobile-actions span, .mobile-actions b { display: block; }
  .mobile-actions span { color: #858a8c; font-size: .51rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
  .mobile-actions b { margin-top: 3px; font-size: .67rem; }
  [data-theme="editorial"] .hero h1 { font-size: clamp(3.4rem,16vw,5rem); }
  [data-theme="precision"] .hero-media { inset: 80px 0 100px 24%; }
  [data-theme="precision"] .hero h1 { font-size: clamp(3rem,14vw,4.6rem); }
}

@media (max-width: 860px) {
  .dataset-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .dataset-heading > p { max-width: 760px; }
  .dataset-browser { grid-template-columns: 1fr; min-height: 0; border-radius: 14px; }
  .dataset-tabs { max-height: none; display: flex; gap: .5rem; overflow-x: auto; padding: .8rem; border-right: 0; border-bottom: 1px solid #2a2e32; scroll-snap-type: x proximity; }
  .dataset-tab-group { min-width: max-content; display: flex; gap: .35rem; align-items: center; padding: 0 .6rem 0 0; }
  .dataset-tab-group + .dataset-tab-group { padding-left: .6rem; border-top: 0; border-left: 1px solid #292d31; }
  .dataset-tab-group > span { padding: .65rem .55rem; }
  .dataset-tab { min-height: 2.55rem; scroll-snap-align: start; }
  .dataset-frame { min-height: 55rem; }
}

@media (max-width: 620px) {
  .website-dataset { padding-bottom: 40px; }
  .dataset-browser { width: 100%; border-right: 0; border-left: 0; border-radius: 0; }
  .dataset-stage-bar { grid-template-columns: minmax(0,1fr) auto; gap: .35rem .7rem; padding: .75rem .9rem; }
  .dataset-stage-bar span { grid-column: 1 / -1; }
  .dataset-stage-bar b { font-size: .7rem; }
  .dataset-stage-bar a { padding: .48rem .55rem; font-size: .54rem; }
  .dataset-frame { min-height: 44rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .emergency-inner i, .emergency-inner i::after { animation: none !important; transform: none; }
  .hero-media img, .service-card:hover img, .reference-card:hover img { transform: none; }
  .reference-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; scroll-snap-type: x mandatory; }
  .reference-track { animation: none; transform: none; }
  .reference-sequence[data-reference-clone] { display: none; }
  .reference-card { scroll-snap-align: start; }
  .review-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; scroll-snap-type: x mandatory; }
  .review-track { animation: none; transform: none; }
  .review-sequence[data-review-clone] { display: none; }
  .review-card { scroll-snap-align: start; }
}
