@font-face {
  font-family: 'Syne';
  src: url('assets/fonts/Syne.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #0d0d0c;
  --surface: #111110;
  --surface-soft: #1a1a18;
  --ink: #f0eeea;
  --muted: rgba(240, 238, 234, 0.44);
  --line: rgba(240, 238, 234, 0.1);
  --dark: #0d0d0c;
  --dark-soft: #181815;
  --dark-muted: rgba(255, 255, 255, 0.68);
  --accent: #c33a3f;
  --accent-dark: #922a30;
  --max: 1320px;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.is-loading {
  overflow: hidden;
}

@property --cursor-sweep {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@media (pointer: fine) {
  html.has-studio-cursor,
  html.has-studio-cursor body,
  html.has-studio-cursor a,
  html.has-studio-cursor button,
  html.has-studio-cursor summary,
  html.has-studio-cursor [role="button"],
  html.has-studio-cursor [data-capability] {
    cursor: none;
  }
}

.studio-cursor {
  --cursor-sweep: 0deg;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: normal;
  transition: opacity 180ms ease;
}

.studio-cursor::before,
.studio-cursor::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.studio-cursor::before {
  width: 26px;
  height: 26px;
  background: conic-gradient(
    from -90deg,
    var(--accent) 0deg var(--cursor-sweep),
    rgba(195, 58, 63, 0.42) var(--cursor-sweep) 360deg
  );
  mask: radial-gradient(circle, transparent calc(50% - 1px), #000 calc(50% - 0.5px));
  transition:
    width 320ms cubic-bezier(0.16, 1, 0.3, 1),
    height 320ms cubic-bezier(0.16, 1, 0.3, 1),
    --cursor-sweep 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-cursor::after {
  width: 4px;
  height: 4px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(195, 58, 63, 0.75);
  transition: width 220ms ease, height 220ms ease, box-shadow 220ms ease;
}

.studio-cursor.is-visible {
  opacity: 1;
}

.studio-cursor.is-interactive::before {
  --cursor-sweep: 360deg;
  width: 42px;
  height: 42px;
}

.studio-cursor.is-interactive::after {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 16px rgba(195, 58, 63, 0.95);
}

.studio-cursor.is-pressed::before {
  width: 34px;
  height: 34px;
  background: rgba(195, 58, 63, 0.18);
}

.consent-layer {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 18px;
  background: rgba(8, 8, 8, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.consent-layer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.consent-panel {
  width: min(680px, 100%);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(24px, 4vw, 42px);
  background: rgba(13, 13, 12, 0.97);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
  color: #fff;
  transform: translateY(24px);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.consent-layer.is-open .consent-panel {
  transform: translateY(0);
}

.consent-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.consent-panel > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.68);
}

.consent-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.consent-categories div {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
}

.consent-categories div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.consent-categories span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

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

.scroll-progress {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--accent);
}

.site-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0d0d0c;
  color: #fff;
  transition: transform 700ms cubic-bezier(0.76, 0, 0.24, 1), visibility 700ms;
}

.loader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.site-loader::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 49.95%, rgba(255, 255, 255, 0.06) 50%, transparent 50.05%),
    linear-gradient(0deg, transparent 0 49.9%, rgba(255, 255, 255, 0.04) 50%, transparent 50.1%);
  pointer-events: none;
}

.site-loader.is-complete {
  transform: translateY(-100%);
  visibility: hidden;
}

.loader-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(460px, calc(100% - 56px));
}

.loader-mark {
  width: clamp(86px, 12vw, 132px);
  overflow: visible;
}

.loader-v {
  fill: none;
  stroke: #fff;
  stroke-width: 12;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: loader-draw 760ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.loader-scan {
  transform-origin: center;
  fill: var(--accent);
  animation: loader-scan 650ms 420ms cubic-bezier(0.65, 0, 0.35, 1) both;
}

.loader-brand {
  margin: 24px 0 0;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.loader-status {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.loader-progress {
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.loader-progress::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--accent);
  transform: translateX(-100%);
  animation: loader-progress 1050ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes loader-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes loader-scan {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes loader-progress {
  to {
    transform: translateX(0);
  }
}

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

figure {
  margin: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 20px clamp(20px, 4vw, 56px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 13, 12, 0.34);
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(13, 13, 12, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 70px;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand span {
  font-size: 1.05rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.72rem, 0.86vw, 0.9rem);
  font-weight: 650;
  text-transform: uppercase;
}

.site-nav a {
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.nav-utility {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: clamp(18px, 2vw, 32px);
  color: rgba(255, 255, 255, 0.48);
}

.nav-utility b {
  color: #fff;
}

.site-nav .social-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 850;
  text-transform: none;
}

.site-nav .social-instagram {
  font-size: 1.35rem;
  line-height: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.section-dark {
  color: #fff;
  background: var(--dark);
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.97), rgba(10, 10, 9, 0.76) 43%, rgba(10, 10, 9, 0.28) 78%),
    linear-gradient(0deg, rgba(10, 10, 9, 0.9), rgba(10, 10, 9, 0.12) 48%, rgba(10, 10, 9, 0.64));
}
/* 3D canvas hero — no overlay, shader handles background */
.hero-media:has(#hero-3d-canvas)::after {
  display: none;
}

/* Soft vignette fade around the 3D canvas — sits between canvas and text */
.hero-media:has(#hero-3d-canvas)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(to bottom, #0d0d0c 0%, transparent 14%, transparent 70%, #0d0d0c 100%),
    linear-gradient(to right,  #0d0d0c 0%, transparent 16%, transparent 78%, #0d0d0c 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  filter: saturate(0.78) contrast(1.12) brightness(0.9);
}
#hero-3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.hero-blob-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: none;
  filter: brightness(0.72) saturate(0.9);
  opacity: 1;
  transition: opacity 0.35s ease;
  animation: hero-fallback-drift 8s ease-in-out infinite alternate;
}
.hero-media.hero-3d-ready .hero-blob-fallback {
  opacity: 0;
}
@media (max-width: 740px) {
  .hero-blob-fallback {
    object-position: 58% center;
    animation-duration: 6s;
  }
}

@keyframes hero-fallback-drift {
  from { transform: scale(1.02) translate3d(-0.6%, 0, 0); }
  to { transform: scale(1.07) translate3d(0.8%, -0.5%, 0); }
}
#hero-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(195, 58, 63, 0.85);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  box-shadow: 0 0 32px 12px rgba(195, 58, 63, 0.35), 0 0 80px 30px rgba(195, 58, 63, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  width: min(var(--max), calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 0 72px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100svh - 132px - 72px);
}

.hero-copy h1 {
  max-width: 1100px;
  font-size: clamp(3.8rem, 11vw, 13rem);
  letter-spacing: -0.05em;
  line-height: 0.86;
  margin-bottom: 0;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: clamp(40px, 6vw, 80px);
}

.hero-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.8;
}

.hero-sub span {
  color: rgba(255, 255, 255, 0.2);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-rotator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.hero-rotator strong {
  min-width: 190px;
  color: #fff;
  font-weight: 820;
}

.hero-rotator strong::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  background: var(--accent);
  vertical-align: -0.13em;
  animation: blink 900ms steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 8.8vw, 7.6rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  font-weight: 840;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.12rem;
}

.lead {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.hero-actions,
.contact-data {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof span {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 13px 22px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #171715;
}

.button-primary:hover {
  background: #d2494e;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  color: var(--accent-dark);
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.dark-button {
  border-color: rgba(23, 23, 21, 0.24);
  color: var(--ink);
}

.dark-button:hover {
  border-color: rgba(23, 23, 21, 0.42);
  background: rgba(23, 23, 21, 0.05);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(18, 18, 16, 0.74);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  margin-bottom: 12px;
  color: #fff;
  font-weight: 800;
}

.hero-panel p:not(.panel-kicker) {
  color: var(--dark-muted);
}

.hero-panel dl {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.hero-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.hero-panel dt {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0;
  color: #fff;
  font-weight: 750;
  text-align: right;
}

.intro,
.three-pillars,
.projects,
.transformation,
.mobility-feature,
.services,
.studio,
.studio-capabilities,
.editorial-feature,
.testimonials,
.faq,
.page-cta,
.shop-teaser,
.applications,
.process,
.network,
.decision-entry,
.engagement-models,
.project-formats,
.recognition,
.contact {
  padding: clamp(72px, 10vw, 132px) 0;
}

.decision-entry {
  background: #fff;
}

.decision-entry-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: clamp(34px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.decision-entry-heading h2 {
  max-width: 900px;
}

.decision-entry-heading > p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.decision-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.decision-entry-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 28px clamp(22px, 3vw, 42px) 32px 0;
}

.decision-entry-card + .decision-entry-card {
  padding-left: clamp(22px, 3vw, 42px);
}

.decision-entry-card:last-child {
  border-right: 0;
}

.decision-entry-card > span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.decision-entry-card h3 {
  max-width: 390px;
  margin: clamp(52px, 6vw, 82px) 0 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.decision-entry-card p {
  max-width: 390px;
  color: var(--muted);
}

.decision-entry-card .text-link {
  margin-top: auto;
}

.decision-entry-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.engagement-models {
  background: #fff;
}

.engagement-heading,
.recognition-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.engagement-heading {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.engagement-heading > p,
.recognition-intro > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.engagement-card {
  min-height: 390px;
  border-right: 1px solid var(--line);
  padding: 24px clamp(20px, 3vw, 40px) 28px 0;
}

.engagement-card + .engagement-card {
  padding-left: clamp(20px, 3vw, 40px);
}

.engagement-card:last-child {
  border-right: 0;
}

.engagement-card > span,
.engagement-kicker,
.engagement-card small {
  display: block;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.engagement-kicker {
  margin: 64px 0 14px;
}

.engagement-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.engagement-card > p:not(.engagement-kicker) {
  color: var(--muted);
}

.engagement-card small {
  margin-top: 30px;
  color: var(--muted);
  line-height: 1.6;
}

.engagement-note {
  margin: 34px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.project-formats {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(195, 58, 63, 0.14), transparent 28%),
    #111210;
}

.project-formats-heading {
  display: grid;
  grid-template-columns: 0.95fr 0.75fr;
  gap: clamp(34px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 84px);
}

.project-formats-heading h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  line-height: 0.96;
}

.project-formats-heading > p {
  max-width: 600px;
  color: var(--dark-muted);
  font-size: 1.05rem;
}

.project-format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-format-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.018);
  transition: background 220ms ease, transform 220ms ease;
}

.project-format-card + .project-format-card {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.project-format-card:hover {
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-5px);
}

.project-format-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-format-card h3 {
  margin: clamp(58px, 7vw, 92px) 0 18px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.project-format-promise {
  max-width: 390px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.project-format-result {
  max-width: 390px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
  color: var(--dark-muted);
  line-height: 1.55;
}

.project-format-result span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-format-card .text-link {
  margin-top: auto;
  color: #fff;
}

.project-formats-note {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--dark-muted);
  font-size: 0.88rem;
}

.recognition {
  background: #111210;
}

.recognition-intro {
  position: sticky;
  top: 130px;
}

.recognition-intro h2 {
  color: #fff;
}

.recognition-intro > p {
  color: var(--dark-muted);
}

.recognition-links {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.recognition-link {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 28px 0 32px;
  color: #fff;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.recognition-link:hover {
  border-color: var(--accent);
  transform: translateX(6px);
}

.recognition-link span,
.recognition-link strong {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recognition-link h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
}

.recognition-link p {
  max-width: 720px;
  color: var(--dark-muted);
}

/* ── Testimonials ────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(40px, 5vw, 64px);
  background: rgba(255,255,255,0.06);
}

.testimonial-card {
  background: var(--surface);
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.testimonial-card p {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card footer strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.testimonial-card footer span {
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonial-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 3px 8px;
  width: fit-content;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-inner {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: clamp(20px, 2.5vw, 32px) 0;
}

.faq-item dt {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.faq-item dd {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 800px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─────────────────────────────────────────────────── */
.contact-assurance {
  max-width: 560px;
  border-left: 2px solid var(--accent);
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.intro-grid,
.applications-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading.wide {
  max-width: 840px;
  margin-bottom: 44px;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.12rem;
}

.manifesto .intro-copy {
  font-size: clamp(1.18rem, 2.1vw, 1.65rem);
  line-height: 1.45;
}

.manifesto .intro-copy p + p {
  margin-top: 26px;
}

.three-pillars {
  padding-top: 0;
}

.projects {
  background: var(--surface);
}

.process-visuals {
  padding: clamp(5.5rem, 9vw, 10rem) 0;
}

.process-visuals-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.process-visuals-heading h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.process-visuals-heading > p {
  max-width: 34rem;
  color: var(--text-muted-dark);
}

.process-visual-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.process-visual {
  position: relative;
  min-height: 24rem;
  margin: 0;
  overflow: hidden;
  background: #090a0b;
}

.process-visual-main {
  grid-column: span 8;
  min-height: clamp(28rem, 42vw, 40rem);
}

.process-visual-portrait {
  grid-column: span 4;
  min-height: clamp(34rem, 53vw, 50rem);
}

.process-visual-detail {
  grid-column: span 6;
  min-height: clamp(25rem, 36vw, 36rem);
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04) brightness(0.82);
  transition: transform 1.4s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.8s ease;
}

.process-visual:hover img {
  transform: scale(1.025);
  filter: saturate(0.82) contrast(1.02) brightness(0.92);
}

.process-visual figcaption {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(4, 5, 6, 0.88));
}

.process-visual figcaption span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
}

.process-visual figcaption strong {
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-visuals-note {
  margin-top: 1rem;
  color: var(--text-muted-dark);
  font-size: 0.72rem;
}

.control-development .process-visual-main img {
  object-position: center 48%;
}

.control-development .process-visual-detail img {
  object-position: center 42%;
}

.control-development .process-visual-portrait img {
  object-position: center center;
}

.control-development .process-visual:last-child img {
  object-position: center 58%;
}

.studio-inside {
  position: relative;
  min-height: min(82vh, 58rem);
  overflow: hidden;
}

.studio-inside-media,
.studio-inside-media::after {
  position: absolute;
  inset: 0;
}

.studio-inside-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.06) brightness(0.7);
}

.studio-inside-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.96) 0%, rgba(5, 6, 7, 0.64) 44%, rgba(5, 6, 7, 0.08) 80%);
}

.studio-inside-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  min-height: min(82vh, 58rem);
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.studio-inside-copy {
  max-width: 42rem;
}

.studio-inside-copy h2 {
  max-width: 13ch;
}

.studio-inside-copy p:last-child {
  max-width: 34rem;
  color: var(--text-muted-dark);
}

.transformation {
  background:
    linear-gradient(120deg, rgba(13, 13, 12, 0.98), rgba(13, 13, 12, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0, rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 24vw);
}

.transformation-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
}

.transformation .section-heading h2 {
  color: #fff;
}

.transformation-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.transformation-flow {
  display: grid;
  gap: 18px;
}

.story-image,
.project-visual,
.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--dark);
  box-shadow: none;
}

.cinematic-media {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.cinematic-media::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.62;
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.72) 0 18%, transparent 42% 62%, rgba(13, 13, 12, 0.64) 86%),
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.1) 50%, transparent 52%);
  background-size: 100% 100%, 220% 100%;
  transform: translateX(-7%);
  transition: opacity 900ms ease, transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-media::after {
  z-index: 3;
  opacity: 0.88;
  background:
    linear-gradient(0deg, rgba(13, 13, 12, 0.58), transparent 58%),
    linear-gradient(90deg, var(--accent) 0 44px, transparent 44px) top 22px left 22px / 100% 1px no-repeat,
    linear-gradient(0deg, var(--accent) 0 44px, transparent 44px) top 22px left 22px / 1px 100% no-repeat;
  transition: opacity 800ms ease;
}

.cinematic-media.is-active::before {
  opacity: 0.34;
  transform: translateX(7%);
  animation: cinematic-light 8s 1.1s ease-in-out infinite alternate;
}

.cinematic-media.is-active::after {
  opacity: 0.54;
}

.cinematic-media:hover::before {
  opacity: 0.2;
}

/* Process-visual interlude — kompakter und dunkler */
section.process-visual .cinematic-media {
  max-height: 52vh;
}
section.process-visual .cinematic-media img {
  filter: saturate(0.45) contrast(1.15) brightness(0.52);
}
section.process-visual .cinematic-media.is-active img {
  filter: saturate(0.55) contrast(1.12) brightness(0.60);
}
section.process-visual .cinematic-media::after {
  background:
    linear-gradient(0deg, rgba(13,13,12,0.85) 0%, transparent 45%),
    linear-gradient(180deg, rgba(13,13,12,0.75) 0%, transparent 40%);
  opacity: 1;
}

.cinematic-media img {
  filter: saturate(0.72) contrast(1.1) brightness(0.78);
  transform: scale(1.055);
  transition: filter 900ms ease, transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-media.is-active img {
  filter: saturate(0.84) contrast(1.08) brightness(0.88);
  transform: scale(1.025);
}

.cinematic-media:hover img {
  filter: saturate(0.92) contrast(1.06) brightness(0.94);
  transform: scale(1.015);
}

.concept-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0d0d0c;
}

.hero-media.concept-frame {
  position: absolute;
  inset: 0;
}

.concept-frame::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.68;
  background:
    linear-gradient(115deg, rgba(8, 8, 8, 0.54), transparent 34%, rgba(195, 58, 63, 0.08) 53%, transparent 70%, rgba(8, 8, 8, 0.42)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
}

.concept-frame::after {
  position: absolute;
  z-index: 5;
  inset: -20%;
  content: "";
  pointer-events: none;
  opacity: 0.46;
  background:
    radial-gradient(ellipse at center, transparent 26%, rgba(8, 8, 8, 0.46) 74%),
    linear-gradient(90deg, transparent 35%, rgba(255, 255, 255, 0.08) 49.5%, transparent 51%);
  background-size: 100% 100%, 220% 100%;
  animation: optical-sweep 11s ease-in-out infinite alternate;
}

.concept-image {
  filter: saturate(0.58) contrast(1.18) brightness(0.72) sepia(0.08);
  animation: concept-camera 18s ease-in-out infinite alternate;
  will-change: transform;
}

.concept-frame:hover .concept-image,
.concept-frame.is-active .concept-image {
  filter: saturate(0.72) contrast(1.14) brightness(0.82) sepia(0.04);
}

.concept-frame:hover::before {
  opacity: 0.48;
}

.hero-media.concept-frame::before {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.97), rgba(10, 10, 9, 0.77) 43%, rgba(10, 10, 9, 0.34) 78%),
    linear-gradient(0deg, rgba(10, 10, 9, 0.9), rgba(10, 10, 9, 0.12) 48%, rgba(10, 10, 9, 0.64)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 4px);
  mix-blend-mode: normal;
}

.hero-media.concept-frame:hover::before {
  opacity: 1;
}

.concept-image-wrap {
  min-width: 0;
  min-height: 100%;
}

.case-study:nth-child(even) .concept-image-wrap {
  order: 2;
}

@keyframes optical-sweep {
  from {
    background-position: center, 30% 0;
    transform: translateX(-3%);
  }

  to {
    background-position: center, -60% 0;
    transform: translateX(3%);
  }
}

@keyframes concept-camera {
  from {
    transform: scale(1.045) translate3d(-0.4%, -0.2%, 0);
  }

  to {
    transform: scale(1.075) translate3d(0.5%, 0.3%, 0);
  }
}

@keyframes cinematic-light {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, -120% 0;
  }
}

.story-image img,
.project-visual img,
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image:not(.cinematic-media)::after,
.project-visual:not(.cinematic-media)::after,
.feature-image:not(.cinematic-media)::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(13, 13, 12, 0.22), rgba(13, 13, 12, 0));
}

.story-image-dark {
  aspect-ratio: 16 / 7;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.transformation-steps div {
  min-height: 240px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(20px, 3vw, 30px);
}

.transformation-steps div:last-child {
  border-right: 0;
}

.transformation-steps span {
  display: block;
  margin-bottom: 72px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
}

.transformation-steps strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.transformation-steps p {
  color: var(--dark-muted);
}

.mobility-feature {
  background: var(--surface);
}

.mobility-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.mobility-media {
  position: relative;
  min-height: clamp(420px, 55vw, 720px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.mobility-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.9);
  transform: scale(1.05);
}

.mobility-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.mobility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mobility-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
}

.shop-teaser {
  background: var(--dark);
  color: #fff;
}

.production-equipment {
  padding: clamp(72px, 10vw, 132px) 0;
  background: #101111;
}

.production-equipment-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.production-equipment-copy {
  position: sticky;
  top: 120px;
}

.production-equipment-copy > p:not(.eyebrow) {
  color: var(--dark-muted);
  font-size: 1.05rem;
}

.production-equipment-copy h2 {
  color: #fff;
}

.production-equipment .studio-tags span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.76);
}

.production-equipment-media {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1px;
  height: clamp(32rem, 43vw, 42rem);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.production-equipment-media figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #090a0a;
}

.production-equipment-media .production-equipment-main {
  grid-row: span 2;
}

.production-equipment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.28) contrast(1.14) brightness(0.68);
  transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.7s ease;
}

.production-equipment-media figure:hover img {
  transform: scale(1.02);
  filter: saturate(0.64) contrast(1.08) brightness(0.78);
}

.production-equipment-main img {
  object-position: 52% 44%;
}

.production-equipment-media figure:nth-child(2) img {
  object-position: center 45%;
}

.production-equipment-media figure:nth-child(3) img {
  object-position: center 55%;
}

.production-equipment-media figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1rem 1rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-teaser-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.shop-teaser-copy {
  color: var(--dark-muted);
  font-size: 1.08rem;
}

.shop-teaser-copy .button {
  margin-top: 20px;
}

.shop-teaser-head {
  display: grid;
  gap: 26px;
}

.shop-image {
  aspect-ratio: 4 / 3;
}

.reimagined-portfolio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.reimagined-portfolio-item {
  position: relative;
  min-height: clamp(16rem, 25vw, 25rem);
  margin: 0;
  overflow: hidden;
  background: #080909;
}

.reimagined-portfolio-main {
  grid-column: span 2;
  min-height: clamp(22rem, 38vw, 36rem);
}

.reimagined-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.05) brightness(0.82);
  transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.7s ease;
}

.reimagined-portfolio-item:hover img {
  transform: scale(1.025);
  filter: saturate(0.92) contrast(1.03) brightness(0.92);
}

.reimagined-portfolio-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem 1rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reimagined-proof-line {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  color: #fff;
  font-weight: 680;
}

.feature-image-section {
  padding: 0 0 clamp(72px, 10vw, 132px);
  background: var(--bg);
}

.feature-image {
  aspect-ratio: 16 / 7;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
}

.project-visual {
  aspect-ratio: 4 / 3;
  margin-bottom: clamp(42px, 7vw, 90px);
}

.project-card {
  min-height: 260px;
  border: 0;
  border-top: 1px solid var(--ink);
  border-radius: 0;
  padding: 22px 0 0;
  background: transparent;
  box-shadow: none;
}

.project-card span {
  display: block;
  margin-bottom: clamp(44px, 6vw, 84px);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card p {
  color: var(--muted);
}

.subpage-hero {
  position: relative;
  min-height: min(82svh, 860px);
  overflow: hidden;
  isolation: isolate;
}

.subpage-hero .hero-media::after {
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.96), rgba(10, 10, 9, 0.7) 52%, rgba(10, 10, 9, 0.28)),
    linear-gradient(0deg, rgba(10, 10, 9, 0.78), transparent 60%);
}

.subpage-hero .hero-media img {
  transform: scale(1.15);
}

.subpage-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(82svh, 860px);
  padding-top: 160px;
  padding-bottom: clamp(58px, 8vw, 96px);
}

.subpage-hero-copy h1 {
  max-width: 1050px;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

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

.project-scope {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 820px);
  margin-top: clamp(38px, 6vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.project-scope span {
  display: flex;
  gap: 12px;
  padding: 16px 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.project-scope small {
  color: var(--accent);
  font: inherit;
}

.projects-page .subpage-hero {
  min-height: 94svh;
}

.projects-page .subpage-hero-copy {
  min-height: 94svh;
}

.projects-page .subpage-hero-copy h1 {
  max-width: 10ch;
  color: #fff;
  font-size: clamp(4rem, 9vw, 8.2rem);
}

.projects-page .subpage-hero .hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.94) 0%, rgba(7, 7, 6, 0.58) 52%, rgba(7, 7, 6, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 7, 6, 0.86), transparent 58%);
}

.projects-page .subpage-hero .hero-media img {
  filter: saturate(0.7) contrast(1.12) brightness(0.78);
}

/* ── Mobility hero — copy right-anchored ── */
.mobility-page-hero .subpage-hero-copy {
  align-items: flex-end;
  text-align: right;
}
.mobility-page-hero .subpage-hero-copy h1 {
  max-width: 14ch;
}
.mobility-page-hero .subpage-hero-copy .lead {
  max-width: 54ch;
}
.mobility-page-hero .hero-actions {
  justify-content: flex-end;
}

/* ── Studio hero — copy centered ── */
.studio-page-hero .subpage-hero-copy {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}
.studio-page-hero .subpage-hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  max-width: 18ch;
}
.studio-page-hero .subpage-hero-copy .lead {
  max-width: 60ch;
}
.studio-page-hero .hero-media::after {
  background:
    linear-gradient(180deg, rgba(10,10,9,0.55) 0%, rgba(10,10,9,0.15) 45%, rgba(10,10,9,0.72) 100%),
    linear-gradient(90deg, rgba(10,10,9,0.28), rgba(10,10,9,0.28));
}

/* ── Cinematic full-bleed break ── */
.cinematic-break {
  width: 100%;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}
.cinematic-break-figure {
  margin: 0;
  width: 100%;
  height: clamp(360px, 52vw, 660px);
  overflow: hidden;
}
.cinematic-break-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.5) contrast(1.1) brightness(0.65);
  transform: scale(1.04);
  transition: transform 12s ease;
}
.cinematic-break:hover .cinematic-break-figure img {
  transform: scale(1.0);
}

/* ── Section hairline transitions ── */
.intro,
.editorial-feature,
.studio-capabilities,
.studio-gallery,
.network,
.rene-background-feature,
.cinematic-break,
.services:not(.studio-inside) {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.projects-page .process-visuals .section-inner {
  width: min(1500px, calc(100% - 40px));
}

.projects-page .process-visual-grid {
  gap: 10px;
  border: 0;
  background: transparent;
}

.projects-page .process-visual {
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.projects-page .process-visual figcaption {
  padding: 1.6rem 1.8rem;
}

.projects-page .project-journal {
  padding-top: clamp(110px, 14vw, 190px);
  padding-bottom: clamp(110px, 14vw, 190px);
}

.projects-page .project-journal .section-heading {
  max-width: 980px;
  margin-bottom: clamp(60px, 9vw, 110px);
}

.projects-page .case-study-grid {
  gap: clamp(90px, 14vw, 190px);
  counter-reset: project-journal;
}

.projects-page .case-study {
  position: relative;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-top: 22px;
  counter-increment: project-journal;
}

.projects-page .case-study:nth-child(even) {
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
}
.projects-page .case-study:nth-child(even) img {
  order: 2;
}
.projects-page .case-study:nth-child(even) > div {
  order: 1;
  padding-left: 0;
  padding-right: clamp(36px, 6vw, 80px);
}

.projects-page .case-study::before {
  position: absolute;
  top: 21px;
  right: 0;
  content: "0" counter(project-journal);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 850;
}

.projects-page .case-study img {
  min-height: clamp(480px, 52vw, 720px);
  filter: saturate(0.62) contrast(1.1) brightness(0.82);
}

.projects-page .case-study > div {
  align-self: end;
  padding: clamp(36px, 6vw, 80px);
  padding-bottom: 0;
}

.projects-page .case-study h3 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.projects-page .process {
  background: #121211;
  color: #fff;
}

.projects-page .process .section-heading {
  max-width: 980px;
}

.projects-page .process-grid {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.projects-page .process-step {
  min-height: 330px;
  background: #121211;
}

.projects-page .process-step p {
  color: var(--dark-muted);
}

.projects-page .page-cta {
  padding: clamp(120px, 18vw, 240px) 0;
}

.case-study-grid {
  display: grid;
  gap: 30px;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  box-shadow: 0 14px 44px rgba(23, 23, 21, 0.06);
}

.case-study:nth-child(even) {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.case-study:nth-child(even) img {
  order: 2;
}

.case-study img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.case-study > div {
  padding: clamp(28px, 5vw, 58px);
}

.case-study h3 {
  font-size: clamp(1.65rem, 3vw, 2.8rem);
}

.case-study p:not(.eyebrow) {
  color: var(--muted);
}

.case-study dl {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.case-study dl div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.case-study dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-study dd {
  margin: 4px 0 0;
  font-weight: 750;
}

.pillar-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillar,
.process-step {
  min-height: 250px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface);
}

.pillar span,
.process-step span {
  display: block;
  margin-bottom: 74px;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.pillar p,
.process-step p,
.service-card p,
.application p {
  color: var(--muted);
}

.services {
  background: var(--dark);
  color: #fff;
}

.services .section-heading {
  max-width: 920px;
}

.services .section-heading h2 {
  max-width: 900px;
}

.services .section-intro {
  color: var(--dark-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

.service-card {
  min-height: 330px;
  border: 0;
  border-radius: 0;
  padding: clamp(24px, 3vw, 34px);
  background: #1b1b18;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  background: #22221e;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.service-card h3 {
  color: #fff;
  max-width: 520px;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}

.service-card p {
  max-width: 560px;
  color: var(--dark-muted);
  font-size: 1.04rem;
}

.service-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 5vw, 54px);
  height: clamp(44px, 5vw, 54px);
  margin-bottom: 86px;
  border: 0;
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 300ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-icon::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.gauge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.gauge-ring-track,
.gauge-ring-progress {
  fill: none;
  stroke-width: 1.5;
}

.gauge-ring-track {
  stroke: rgba(195, 58, 63, 0.18);
}

.gauge-ring-progress {
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  transition: stroke-dashoffset 1050ms cubic-bezier(0.65, 0, 0.35, 1);
}

.service-icon::after {
  top: -2px;
  left: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(195, 58, 63, 0.72);
  opacity: 0;
  transform-origin: 2px calc(50% + 2px);
}

.service-icon.is-gauge-active {
  opacity: 1;
  transform: scale(1);
}

.service-icon.is-gauge-active .gauge-ring-progress {
  stroke-dashoffset: 0;
  transition-delay: var(--gauge-delay, 0ms);
}

.service-icon.is-gauge-active::after {
  opacity: 1;
  animation: gauge-point 1050ms cubic-bezier(0.65, 0, 0.35, 1) var(--gauge-delay, 0ms) forwards;
}

@keyframes gauge-point {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.laser {
  position: relative;
  overflow: hidden;
}

.studio {
  background: var(--surface);
}

.studio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.studio-head {
  display: grid;
  gap: 26px;
}

.studio-image {
  aspect-ratio: 3 / 4;
}

.studio-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.studio-capabilities {
  background: var(--surface);
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(24px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 5vw, 54px) 0;
}

.capability > span {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.capability h3 {
  font-size: clamp(1.55rem, 3vw, 2.8rem);
}

.capability p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.editorial-feature {
  background: var(--surface-soft);
}

.portrait-statement {
  position: relative;
  min-height: min(82svh, 900px);
  overflow: hidden;
  isolation: isolate;
}

.portrait-statement-media {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
}

.portrait-statement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.portrait-statement-media::before {
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.1), rgba(13, 13, 12, 0.1) 40%, rgba(13, 13, 12, 0.84) 76%),
    linear-gradient(0deg, rgba(13, 13, 12, 0.48), transparent 55%);
}

.portrait-statement-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: min(82svh, 900px);
  padding: clamp(96px, 12vw, 160px) 0;
}

.portrait-statement-copy {
  max-width: 590px;
  color: var(--dark-muted);
}

.portrait-statement-copy h2 {
  color: #fff;
}

.portrait-statement-copy p:not(.eyebrow) {
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

.portrait-statement-copy span {
  display: block;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 750;
}

.project-proof {
  position: relative;
  min-height: min(78svh, 860px);
  overflow: hidden;
  isolation: isolate;
}

.project-proof-media {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
}

.project-proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scaleX(-1);
}

.studio-image img {
  filter: saturate(0.36) contrast(1.2) brightness(0.62);
}

.studio-image::before {
  background:
    linear-gradient(115deg, rgba(8, 9, 10, 0.24), transparent 48%, rgba(8, 9, 10, 0.22)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
  opacity: 0.58;
}

.process-visual img.red-bearing-accent {
  filter: hue-rotate(132deg) saturate(1.42) contrast(1.08) brightness(0.82);
}

.process-visual:hover img.red-bearing-accent {
  filter: hue-rotate(132deg) saturate(1.52) contrast(1.1) brightness(0.88);
}

.project-proof-media::before {
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.92), rgba(13, 13, 12, 0.56) 44%, rgba(13, 13, 12, 0.08) 76%),
    linear-gradient(0deg, rgba(13, 13, 12, 0.4), transparent 58%);
}

.project-proof-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  min-height: min(78svh, 860px);
  padding: clamp(90px, 11vw, 150px) 0;
}

.project-proof-copy {
  max-width: 570px;
  color: var(--dark-muted);
}

.project-proof-copy h2 {
  color: #fff;
}

.project-proof-copy p:not(.eyebrow) {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.editorial-grid,
.page-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.editorial-image {
  aspect-ratio: 4 / 3;
}

.editorial-copy {
  min-width: 0;
}

.editorial-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.clean-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-weight: 750;
}

.page-cta {
  background: var(--dark);
}

.inline-cta {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.inline-cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
  flex-wrap: wrap;
}

.inline-cta-grid p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 50ch;
}

.page-cta-grid {
  align-items: end;
}

.page-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 0;
}

.page-cta-grid > div:last-child {
  color: var(--dark-muted);
  font-size: 1.08rem;
}

.page-cta .button {
  margin-top: 20px;
}

.studio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.studio-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
}

.studio-capability {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.studio-capability h3 {
  color: var(--ink);
}

.studio-capability p:not(.eyebrow) {
  color: var(--muted);
}

.laser.is-compact .laser-grid {
  grid-template-columns: 0.95fr 1.05fr;
  padding: clamp(54px, 7vw, 88px) 0;
}

.laser.is-compact h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.25rem);
}

.laser.is-compact .laser-list {
  background: rgba(255, 255, 255, 0.045);
}

.laser-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(13, 13, 12, 0.98), rgba(13, 13, 12, 0.78)),
    radial-gradient(circle at 75% 20%, rgba(195, 58, 63, 0.2), transparent 36%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0, rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 18px);
}

.laser-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: clamp(78px, 11vw, 142px) 0;
}

.laser-copy p:not(.eyebrow),
.laser-list li {
  color: var(--dark-muted);
}

.laser-list {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.laser-list h3 {
  color: #fff;
}

.laser-spec {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 0 18px;
  margin-bottom: 18px;
}

.laser-spec span {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 850;
  letter-spacing: 0;
}

.laser-spec p {
  margin-bottom: 0;
  color: var(--dark-muted);
}

.laser-list ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.laser-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.application-list {
  display: grid;
  gap: 18px;
}

.application {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 26px;
}

.process {
  background: var(--surface-soft);
}

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

.capability-atlas {
  padding: clamp(78px, 11vw, 150px) 0;
  background: #121211;
}

.capability-intro {
  max-width: 1100px;
  margin-bottom: clamp(54px, 8vw, 100px);
}

.capability-type-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(2rem, 5vw, 5.4rem);
  line-height: 1.05;
}

.capability-type-line span,
.capability-type-line strong {
  display: block;
}

.capability-type-line span {
  white-space: nowrap;
}

.capability-type-line strong {
  position: relative;
  width: fit-content;
  min-height: 1.08em;
  color: var(--accent);
  font-weight: 700;
}

.capability-type-line strong::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 5px;
  background: var(--accent);
  vertical-align: -0.08em;
  animation: blink 900ms steps(1) infinite;
}

@media (max-width: 720px) {
  .capability-type-line span {
    white-space: normal;
  }
}

.capability-atlas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.we-are-line span,
.we-are-line strong {
  display: block;
}

.we-are-line strong {
  min-height: 2.15em;
  color: var(--accent);
  font-weight: inherit;
}

.capability-system {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.capability-map {
  position: relative;
  min-height: clamp(390px, 47vw, 610px);
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 7.5% 100%, 100% 25%;
}

.capability-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #121211 0%, transparent 15%, transparent 85%, #121211 100%);
}

.capability-map-label {
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(5rem, 16vw, 16rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.capability-map-label-start {
  bottom: 4%;
  left: -1%;
}

.capability-map-label-end {
  top: 4%;
  right: -2%;
}

.capability-map svg {
  position: absolute;
  z-index: 2;
  inset: 5% 3%;
  width: 94%;
  height: 90%;
}

.capability-track {
  fill: none;
  stroke-width: 2;
}

.capability-track-muted {
  stroke: rgba(255, 255, 255, 0.16);
}

.capability-track-burn {
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 860;
  stroke-dashoffset: 860;
  opacity: 0;
  filter: drop-shadow(0 0 3px rgba(211, 61, 69, 0.96)) drop-shadow(0 0 10px rgba(195, 58, 63, 0.72));
  animation: none;
}

.capability-track-live {
  display: none;
}

.capability-moving-dot-halo {
  fill: rgba(211, 61, 69, 0.16);
  filter: url("#capability-laser-glow");
  opacity: 0;
}

.capability-moving-dot {
  fill: #fff;
  stroke: #fff;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  filter: url("#capability-laser-glow");
  opacity: 0;
}

.capability-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  gap: 6px;
  width: clamp(92px, 12vw, 150px);
  border: 0;
  padding: 0;
  background: transparent;
  z-index: 5;
  color: rgba(255, 255, 255, 0.48);
  justify-items: center;
  text-align: center;
  transform: translate(-50%, -9px);
  cursor: pointer;
}

.capability-node::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-bottom: 6px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #121211;
  box-shadow: 0 0 0 0 rgba(195, 58, 63, 0.3);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.capability-node span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 850;
}

.capability-node strong {
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.capability-node:hover,
.capability-node.is-active {
  color: #fff;
}

.capability-node.is-active::before {
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(195, 58, 63, 0.12), 0 0 30px rgba(195, 58, 63, 0.8);
  transform: scale(1.15);
}

.capability-node.is-burn-hit::before {
  animation: capability-hit 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-detail {
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.9fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(28px, 5vw, 64px);
}

.capability-detail-index,
.capability-status {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-detail h3 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 3.1rem);
}

.capability-detail p {
  color: var(--dark-muted);
}

.capability-detail-list {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: clamp(20px, 3vw, 42px);
}

@keyframes capability-burn {
  0%, 5% {
    stroke-dashoffset: 860;
    opacity: 0;
  }
  8% {
    opacity: 0.92;
  }
  92% {
    stroke-dashoffset: 0;
    opacity: 0.82;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes capability-laser-head {
  0%, 5% { stroke-dashoffset: 34; opacity: 0; }
  8% { opacity: 1; }
  92% { stroke-dashoffset: -826; opacity: 1; }
  100% { stroke-dashoffset: -826; opacity: 0; }
}

@keyframes capability-laser-halo {
  from { opacity: 0.45; }
  to { opacity: 1; }
}

@keyframes capability-node-burn {
  0%, 5%, 14%, 100% {
    background: #121211;
    box-shadow: 0 0 0 0 rgba(195, 58, 63, 0);
    transform: scale(1);
  }
  7% {
    background: #fff;
    box-shadow:
      0 0 0 8px rgba(195, 58, 63, 0.16),
      0 0 18px 5px rgba(255, 255, 255, 0.65),
      0 0 38px 14px rgba(195, 58, 63, 0.72);
    transform: scale(1.22);
  }
}

@keyframes capability-hit {
  0% {
    background: #fff;
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.9),
      0 0 22px 7px rgba(255, 255, 255, 0.72),
      0 0 48px 18px rgba(195, 58, 63, 0.9);
    transform: scale(1.34);
  }
  100% {
    background: var(--accent);
    box-shadow: 0 0 0 10px rgba(195, 58, 63, 0.12), 0 0 30px rgba(195, 58, 63, 0.8);
    transform: scale(1.15);
  }
}

.real-demonstrator-image {
  object-fit: cover !important;
  object-position: center center;
  filter: saturate(0.82) contrast(1.08) brightness(0.84);
}

.project-visual:has(.real-demonstrator-image)::after {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.22)),
    linear-gradient(90deg, rgba(195, 58, 63, 0.08), transparent 36%);
}

.reimagined-packaging-image {
  object-position: center 42%;
}

.capability-atlas-item {
  min-height: 310px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(22px, 3vw, 34px);
  transition: background 300ms ease;
}

.capability-atlas-item:hover {
  background: rgba(255, 255, 255, 0.035);
}

.capability-atlas-item > span {
  display: block;
  margin-bottom: 86px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 850;
}

.capability-atlas-item h3 {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.capability-atlas-item p {
  color: var(--dark-muted);
  font-size: 0.96rem;
}

.network-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 64px);
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.network-card p:not(.eyebrow) {
  color: var(--dark-muted);
}

.contact {
  background: var(--surface);
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.contact-data {
  display: grid;
  gap: 10px;
}

.contact-data a,
.contact-data span {
  color: var(--ink);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  background: #fbfaf7;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.optional {
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 21, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(195, 58, 63, 0.18);
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

/* Simplified 3-field contact form */
.contact-form .field-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  background: rgba(195, 58, 63, 0.1);
  color: var(--ink);
  font-size: 0.92rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: clamp(70px, 10vw, 120px) 0 34px;
  background: var(--dark);
  color: #fff;
}

.footer-question {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(60px, 9vw, 120px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: clamp(32px, 6vw, 70px);
  color: #fff;
}

.footer-question strong {
  max-width: 1100px;
  font-size: clamp(2.6rem, 8.5vw, 9rem);
  font-weight: 850;
  line-height: 0.9;
}

.footer-question span {
  display: inline-grid;
  position: relative;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.8rem;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.footer-question span::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg);
}

.footer-question span::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 17px;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.footer-question:hover span {
  background: var(--accent);
  color: #fff;
  transform: rotate(-35deg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.7fr;
  align-items: start;
  gap: clamp(34px, 8vw, 96px);
}

.footer-grid div {
  display: grid;
  gap: 10px;
}

.footer-grid span,
.footer-grid small,
.footer-grid p,
.footer-grid nav {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
}

.footer-grid small {
  max-width: 300px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer-address strong {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.footer-address p {
  margin: 22px 0 6px;
}

.footer-address a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(52px, 8vw, 96px) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-meta nav {
  display: flex;
  gap: 24px;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 300ms ease;
}

.footer-meta button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: color 300ms ease;
}

.footer-meta a:hover,
.footer-meta button:hover {
  color: #fff;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-address a:hover {
  color: var(--accent);
}

.footer-legal a {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.legal-hero {
  padding: clamp(150px, 20vw, 250px) 0 clamp(72px, 10vw, 130px);
}

.legal-hero h1 {
  max-width: 1000px;
}

.legal-content {
  background: var(--surface);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
  padding-top: clamp(70px, 10vw, 130px);
  padding-bottom: clamp(80px, 12vw, 160px);
}

.legal-grid aside {
  display: grid;
  align-content: start;
  gap: 4px;
}

.legal-grid aside strong {
  font-size: 1.35rem;
}

.legal-grid aside span,
.legal-copy p {
  color: var(--muted);
}

.legal-copy {
  max-width: 850px;
}

.legal-copy h2 {
  margin-top: 2.8rem;
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
}

.legal-copy h2:first-of-type {
  margin-top: 0;
}

.legal-copy a {
  color: var(--accent-dark);
}

.legal-note {
  border-left: 3px solid var(--accent);
  background: var(--surface-soft);
  padding: 18px 22px;
  color: var(--ink) !important;
}

.legal-details {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-details div {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.legal-details dt {
  color: var(--muted);
}

.legal-details dd {
  margin: 0;
  font-weight: 650;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .legal-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* .reveal — overridden by design-system layer at bottom of file */

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-rotator strong::after {
    animation: none;
  }

  .site-loader {
    display: none;
  }

  .scroll-progress {
    display: none;
  }

  .cinematic-media::before {
    display: none;
  }

  .cinematic-media img,
  .cinematic-media.is-active img,
  .cinematic-media:hover img {
    filter: none;
    transform: none;
    transition: none;
  }

  .concept-frame::before,
  .concept-frame::after {
    animation: none;
  }

  .concept-image {
    animation: none;
  }

  .service-icon,
  .service-icon.is-gauge-active {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gauge-ring-progress,
  .service-icon.is-gauge-active .gauge-ring-progress {
    stroke-dashoffset: 0;
    transition: none;
  }

  .service-icon.is-gauge-active::after {
    animation: none;
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.68rem;
  }

  .nav-utility {
    gap: 12px;
    padding-left: 14px;
  }

  .site-nav .social-link {
    font-size: 0.9rem;
  }

  .site-nav .social-instagram {
    font-size: 1.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: center;
    min-height: 100svh;
    padding-top: 126px;
    padding-bottom: 56px;
  }

  .hero-copy {
    max-width: 840px;
  }

  .hero-panel {
    display: none;
  }
}

@media (max-width: 880px) {
  .site-header {
    min-height: 74px;
    padding: 16px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(13, 13, 12, 0.96);
    padding: 10px;
    font-size: 0.78rem;
    backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-utility {
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    padding: 18px 12px 8px;
  }

  .site-nav .social-link {
    padding: 0;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .shop-teaser-grid,
  .transformation-grid,
  .mobility-grid,
  .studio-grid,
  .editorial-grid,
  .page-cta-grid,
  .portrait-statement-grid,
  .project-proof-grid,
  .production-equipment-grid,
  .applications-grid,
  .laser-grid,
  .laser.is-compact .laser-grid,
  .network-card,
  .decision-entry-heading,
  .engagement-heading,
  .project-formats-heading,
  .recognition-grid,
  .contact-grid,
  .footer-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .recognition-intro {
    position: static;
  }

  .portrait-statement-grid > div:first-child {
    min-height: 38svh;
  }

  .project-proof-grid > div:last-child {
    min-height: 32svh;
  }

  .production-equipment-copy {
    position: static;
  }

  .case-study,
  .case-study:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .case-study:nth-child(even) img {
    order: initial;
  }

  .hero-grid {
    align-items: center;
    padding-top: 132px;
    padding-bottom: 56px;
  }

  .hero-panel {
    max-width: 520px;
  }

  h1 {
    font-size: clamp(3rem, 8.4vw, 5.2rem);
  }

  .service-grid,
  .decision-entry-grid,
  .engagement-grid,
  .project-format-grid,
  .project-grid,
  .transformation-steps,
  .pillar-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-entry-card {
    min-height: 340px;
  }

  .process-visuals-heading {
    grid-template-columns: 1fr;
  }

  .engagement-card,
  .engagement-card + .engagement-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0 34px;
  }

  .engagement-kicker {
    margin-top: 34px;
  }

  .project-format-card {
    min-height: 420px;
  }

  .process-visual-main,
  .process-visual-portrait,
  .process-visual-detail {
    grid-column: span 6;
    min-height: 34rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 74px;
    padding: 16px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(13, 13, 12, 0.96);
    padding: 10px;
    backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .capability-map {
    min-height: 560px;
  }

  .capability-map svg {
    display: none;
  }

  .capability-map-label {
    display: none;
  }

  .capability-node {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 20px;
    transform: none;
  }

  .capability-node::before {
    position: absolute;
    top: 22px;
    right: 20px;
  }

  .capability-detail {
    grid-template-columns: 1fr;
  }

  .capability-detail-list {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    padding-top: 20px;
    padding-left: 0;
  }

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

  .brand {
    display: grid;
    gap: 0;
  }

  .brand small {
    font-size: 0.6rem;
  }

  .project-scope {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-scope span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 11px 0;
  }

  .projects-page .subpage-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .projects-page .process-visuals .section-inner {
    width: calc(100% - 24px);
  }

  .projects-page .process-visual-grid {
    gap: 8px;
  }

  .projects-page .case-study-grid {
    gap: 84px;
  }

  .projects-page .case-study > div {
    padding: 28px 0 0;
  }

  .projects-page .case-study img {
    min-height: 58svh;
  }

  .hero-grid {
    width: min(var(--max), calc(100% - 32px));
    padding: 112px 0 44px;
  }

  h1 {
    font-size: clamp(2.62rem, 14vw, 4.2rem);
  }

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    padding: 22px;
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .intro,
  .three-pillars,
  .projects,
  .transformation,
  .mobility-feature,
  .services,
  .studio,
  .studio-capabilities,
  .editorial-feature,
  .page-cta,
  .portrait-statement,
  .project-proof,
  .capability-atlas,
  .shop-teaser,
  .applications,
  .process,
  .network,
  .decision-entry,
  .project-formats,
  .contact,
  .process-visuals {
    padding: 64px 0;
  }

  .service-grid,
  .decision-entry-grid,
  .project-format-grid,
  .project-grid,
  .capability-atlas-grid,
  .transformation-steps,
  .pillar-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .decision-entry-card,
  .decision-entry-card + .decision-entry-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0 34px;
  }

  .decision-entry-card:last-child {
    border-bottom: 0;
  }

  .decision-entry-card h3 {
    margin-top: 38px;
  }

  .decision-entry-card .text-link {
    margin-top: 28px;
  }

  .project-format-card {
    min-height: 0;
  }

  .project-format-card + .project-format-card {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .project-format-card h3 {
    margin-top: 42px;
  }

  .project-format-card .text-link {
    margin-top: 36px;
  }

  .assessment-form {
    grid-template-columns: 1fr;
  }

  .subpage-hero,
  .subpage-hero-copy {
    min-height: 76svh;
  }

  .subpage-hero-copy {
    padding-top: 130px;
    padding-bottom: 44px;
  }

  .case-study img {
    min-height: 300px;
  }

  .capability {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .pillar,
  .process-step,
  .service-card,
  .capability-atlas-item,
  .project-card,
  .transformation-steps div {
    min-height: unset;
  }

  .capability-atlas-item > span {
    margin-bottom: 42px;
  }

  .pillar span,
  .process-step span,
  .transformation-steps span {
    margin-bottom: 36px;
  }

  .transformation-steps div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .transformation-steps div:last-child {
    border-bottom: 0;
  }

  .footer-grid,
  .footer-grid nav {
    align-items: flex-start;
  }

  .process-visual-grid {
    display: block;
    border-bottom: 0;
  }

  .process-visual {
    min-height: 70svh;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-visual-main {
    min-height: 52svh;
  }

  .control-development .process-visual {
    min-height: 56svh;
  }

  .control-development .process-visual-main {
    min-height: 44svh;
  }

  .production-equipment-media {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .production-equipment-media figure {
    min-height: 38svh;
  }

  .production-equipment-media .production-equipment-main {
    grid-row: auto;
    min-height: 48svh;
  }

  .process-visuals-heading {
    margin-bottom: 2rem;
  }

  .studio-inside,
  .studio-inside-grid {
    min-height: 72svh;
  }

  .studio-inside-media::after {
    background: linear-gradient(180deg, rgba(5, 6, 7, 0.12) 0%, rgba(5, 6, 7, 0.9) 74%, rgba(5, 6, 7, 0.98) 100%);
  }
}
/* Location */
.studio-location {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-location-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
}

.studio-location-copy h2,
.studio-location-copy p {
  color: #fff;
}

.studio-location-copy p:not(.eyebrow) {
  color: var(--dark-muted);
}

.location-map {
  position: relative;
  min-height: clamp(390px, 45vw, 590px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111210;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.location-map::after {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  box-shadow: 0 0 0 9px rgba(207, 55, 62, 0.18), 0 8px 24px rgba(0, 0, 0, 0.48);
  content: "";
  pointer-events: none;
  transform: translate(-50%, -70%) rotate(-45deg);
}

.location-map-preview,
.location-map-frame {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.location-map-preview {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(14, 15, 14, 0.3), rgba(14, 15, 14, 0.72)),
    radial-gradient(circle at 63% 45%, rgba(207, 55, 62, 0.18), transparent 22%),
    #151614;
}

.location-map-grid {
  position: absolute;
  inset: -20%;
  opacity: 0.38;
  background-image:
    linear-gradient(24deg, transparent 47%, rgba(255, 255, 255, 0.16) 48%, transparent 49%),
    linear-gradient(96deg, transparent 47%, rgba(255, 255, 255, 0.09) 48%, transparent 49%);
  background-size: 160px 120px, 210px 170px;
  transform: rotate(-8deg);
}

.location-map-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(207, 55, 62, 0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: location-scan 6s ease-in-out infinite;
}

.location-map-marker {
  position: absolute;
  left: 63%;
  top: 43%;
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 12px rgba(207, 55, 62, 0.08), 0 0 42px rgba(207, 55, 62, 0.28);
  transform: translate(-50%, -50%);
}

.location-map-marker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.location-map-preview-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  justify-items: start;
  width: min(390px, calc(100% - 48px));
  margin-top: auto;
  margin-right: auto;
  padding: clamp(24px, 5vw, 52px);
}

.location-map-preview-copy strong {
  color: #fff;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
}

.location-map-preview-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.location-map-frame {
  filter: grayscale(1) invert(0.9) contrast(1.15) brightness(0.62) sepia(0.18) hue-rotate(315deg) saturate(1.3);
  pointer-events: none;
}

.location-route-link {
  width: fit-content;
}

@keyframes location-scan {
  0%,
  20% {
    transform: translateX(-100%);
  }

  70%,
  100% {
    transform: translateX(100%);
  }
}

.contact-data .location-route-link,
.footer-route-link {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.location-route-link::after,
.footer-route-link::after {
  content: " \2197\FE0E";
  font-family: Arial, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  .location-map-preview::after {
    animation: none;
  }
}

@media (max-width: 980px) {
  .studio-location-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .studio-location {
    padding: 78px 0;
  }

  .location-map {
    min-height: 360px;
  }

  .location-map-marker {
    left: 68%;
    top: 38%;
  }
}

/* ============================================================
   BRAND STATEMENT — full-viewport typographic manifesto moment
   ============================================================ */

.brand-statement {
  background: #050504;
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
  text-align: center;
}

.brand-statement-inner {
  width: calc(100% - clamp(24px, 4vw, 80px));
  margin: 0 auto;
}

.brand-statement-line {
  margin: 0;
  color: #fff;
  font-size: clamp(4rem, 14vw, 17rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.brand-statement-line em {
  font-style: normal;
  color: var(--accent);
}

.red {
  color: var(--accent);
}

/* ── V-LANDMARK ──────────────────────────────────── */

/* Hero */
.landmark-hero {
  padding: clamp(120px, 14vw, 180px) 0 clamp(72px, 10vw, 120px);
}

.landmark-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.landmark-hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--ink);
  margin: 16px 0 24px;
}

.landmark-hero-visual {
  margin: 0;
}

.landmark-hero-video {
  width: 100%;
  display: block;
  border-radius: 2px;
}

@media (max-width: 860px) {
  .landmark-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* Manifesto / Object text */
.landmark-object-text {
  padding: clamp(72px, 10vw, 132px) 0;
  background: var(--surface);
}

.landmark-object-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(48px, 6vw, 80px);
}

.landmark-object-col p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}

.landmark-closing {
  border-top: 1px solid var(--line);
  padding-top: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landmark-closing p {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
}

.landmark-closing span {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 700px) {
  .landmark-object-grid {
    grid-template-columns: 1fr;
  }
}

/* Object Videos */
.landmark-object-videos {
  padding: 0;
}

.landmark-video-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.landmark-video-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
  margin: 0;
}

.landmark-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landmark-video-item figcaption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 600px) {
  .landmark-video-pair {
    grid-template-columns: 1fr;
  }
  .landmark-video-item {
    aspect-ratio: 4/3;
  }
}

/* Anatomy */
.landmark-anatomy {
  padding: clamp(72px, 10vw, 132px) 0;
}

.landmark-parts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  margin-top: clamp(40px, 5vw, 64px);
}

.landmark-part {
  background: var(--surface);
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landmark-part-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.landmark-part h3 {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.landmark-part p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 900px) {
  .landmark-parts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .landmark-parts-grid {
    grid-template-columns: 1fr;
  }
}

/* Packages */
.landmark-packages {
  padding: clamp(72px, 10vw, 132px) 0;
}

.landmark-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  margin-top: clamp(40px, 5vw, 64px);
}

.landmark-package {
  background: var(--surface);
  padding: clamp(32px, 3.5vw, 52px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.landmark-package-featured {
  background: #141413;
  outline: 1px solid var(--accent);
  outline-offset: -1px;
}

.landmark-package-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landmark-package h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.landmark-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}

.landmark-price-amount {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.landmark-price-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.landmark-package-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.landmark-package-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.landmark-package-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

@media (max-width: 860px) {
  .landmark-package-grid {
    grid-template-columns: 1fr;
  }
}

/* Configurator shell */
.landmark-configurator {
  padding: clamp(72px, 10vw, 132px) 0 0;
}

.lc-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.lc-shell {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 680px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* MAP COLUMN */
.lc-map-col {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0a0a09;
}

.lc-map-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}

#lc-map {
  position: absolute;
  inset: 0;
}

.lc-map-ring {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-map-ring::before {
  content: '';
  width: min(70%, 70vh);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(195,58,63,0.7);
  box-shadow: 0 0 0 9999px rgba(0,0,0,0.45);
}

.lc-map-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  pointer-events: none;
}

.lc-map-state {
  display: flex;
  gap: 1.5rem;
  padding: .75rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: .7rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.4);
  font-family: 'Courier New', monospace;
}

/* CONFIG PANEL */
.lc-panel {
  background: #111110;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
}

.lc-price-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.lc-price-label {
  font-size: .7rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.35);
}

.lc-price-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.lc-from {
  font-size: .8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-right: .3rem;
}

.lc-step {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.lc-step-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .1rem;
}

.lc-num {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

.lc-step-label {
  font-size: .65rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.lc-panel input[type="text"],
.lc-panel input[type="email"],
.lc-panel textarea {
  width: 100%;
  background: #1a1a18;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: .55rem .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,0.85);
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}

.lc-panel input[type="text"]:focus,
.lc-panel input[type="email"]:focus,
.lc-panel textarea:focus {
  border-color: rgba(195,58,63,0.6);
}

.lc-panel input::placeholder,
.lc-panel textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

/* Search */
.lc-search-wrap {
  position: relative;
  display: flex;
  gap: .4rem;
}

.lc-search-wrap input {
  flex: 1;
}

#lc-search-btn {
  background: rgba(195,58,63,0.15);
  border: 1px solid rgba(195,58,63,0.4);
  border-radius: 3px;
  color: #c33a3f;
  padding: 0 .75rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
}

#lc-search-btn:hover {
  background: rgba(195,58,63,0.3);
}

.lc-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 2.5rem;
  background: #1e1e1c;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  z-index: 100;
  list-style: none;
  padding: .3rem 0;
  margin: 0;
}

.lc-suggestions[hidden] { display: none; }

.lc-suggestions li {
  padding: .5rem .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background .15s;
}

.lc-suggestions li:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

/* Radio options */
.lc-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
}

.lc-opt {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: #1a1a18;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: .5rem .6rem;
  cursor: pointer;
  font-size: .72rem;
  color: rgba(255,255,255,0.5);
  transition: border-color .2s, color .2s;
}

.lc-opt:has(input:checked) {
  border-color: #c33a3f;
  color: #fff;
}

.lc-opt input[type="radio"] {
  display: none;
}

.lc-opt-full {
  grid-column: 1 / -1;
}

.lc-opt em {
  font-style: normal;
  color: rgba(255,255,255,0.35);
}

/* Submit */
.lc-submit-area {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.lc-submit {
  width: 100%;
  text-align: center;
}

.lc-submit-note {
  font-size: .65rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  letter-spacing: .03em;
}

@media (max-width: 900px) {
  .lc-shell {
    grid-template-columns: 1fr;
  }
  .lc-map-col {
    min-height: 380px;
  }
  .lc-panel {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
}

/* ── OLD CONFIGURATOR PLACEHOLDER (keep for fallback) */
.configurator-coming-soon {
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.configurator-soon-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 12px;
}

.configurator-soon-text {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--dark-muted);
  max-width: 560px;
  line-height: 1.65;
}

.configurator-preview-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  opacity: 0.5;
  pointer-events: none;
}

.configurator-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.configurator-field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-muted);
}

.configurator-input-mock {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.02);
}

.configurator-options-mock {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.configurator-options-mock span {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 640px) {
  .configurator-preview-fields {
    grid-template-columns: 1fr;
  }
}

/* Shop featured */
.landmark-featured {
  padding: clamp(72px, 10vw, 132px) 0;
  border-bottom: 1px solid var(--line);
}

.landmark-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.landmark-featured-copy h2 {
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
  margin: 12px 0 20px;
}

.landmark-featured-sub {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
}

.landmark-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}

.landmark-featured-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 5px 10px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .landmark-featured-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────── */

.brand-statement-sub {
  display: block;
  margin-top: clamp(32px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================================
   CASE REAL — Q-Branch case study / real project showcase
   ============================================================ */

.case-real {
  padding: clamp(72px, 10vw, 132px) 0;
  background: #0d0d0c;
}

.case-real-heading {
  max-width: 900px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.case-real-heading h2 {
  color: #fff;
  max-width: 820px;
}

.case-real-heading > p {
  max-width: 680px;
  color: var(--dark-muted);
  font-size: 1.08rem;
}

.case-real-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: clamp(28px, 4vw, 52px);
}

.case-real-main {
  position: relative;
  min-height: clamp(460px, 54vw, 740px);
  margin: 0;
  overflow: hidden;
  background: #090a0a;
}

.case-real-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.1) brightness(0.82);
  transition: transform 1.4s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.8s ease;
}

.case-real-main:hover img {
  transform: scale(1.025);
  filter: saturate(0.84) contrast(1.07) brightness(0.9);
}

.case-real-detail-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.case-real-detail {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #090a0a;
}

.case-real-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.64) contrast(1.12) brightness(0.76);
  transition: transform 1.4s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.8s ease;
}

.case-real-detail:hover img {
  transform: scale(1.03);
  filter: saturate(0.82) contrast(1.07) brightness(0.86);
}

.case-real-main figcaption,
.case-real-detail figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(4, 5, 6, 0.9));
}

.case-real-main figcaption span,
.case-real-detail figcaption span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.case-real-main figcaption strong,
.case-real-detail figcaption strong {
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-real-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: clamp(22px, 4vw, 42px);
}

.case-real-stat > span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-real-stat strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.35;
}

.case-real .text-link {
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.case-real .text-link::after {
  color: var(--accent);
}

/* ============================================================
   CASE STUDY — SPEAKER ROW (3-column media strip)
   ============================================================ */

.case-speaker-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}

.case-speaker-img,
.case-speaker-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.case-speaker-img img,
.case-speaker-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s ease;
}

.case-speaker-img:hover img,
.case-speaker-video:hover video {
  transform: scale(1.03);
}

.case-speaker-img figcaption,
.case-speaker-video figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-speaker-img:hover figcaption,
.case-speaker-video:hover figcaption {
  opacity: 1;
}

.case-speaker-img figcaption span,
.case-speaker-video figcaption span {
  color: var(--accent);
}

.case-speaker-img figcaption strong,
.case-speaker-video figcaption strong {
  color: #fff;
}

@media (max-width: 768px) {
  .case-speaker-row {
    grid-template-columns: 1fr 1fr;
  }
  .case-speaker-video {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .case-speaker-row {
    grid-template-columns: 1fr;
  }
  .case-speaker-video {
    grid-column: auto;
  }
}

/* ============================================================
   TORCH CASE STUDY — projects.html fire demonstrator
   ============================================================ */

.case-torch-hero {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-top: clamp(32px, 4vw, 64px);
}

.case-torch-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.8s ease;
}

.case-torch-hero:hover img {
  transform: scale(1.02);
}

.case-torch-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}
.case-torch-single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.case-torch-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.case-torch-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.case-torch-video:hover video {
  transform: scale(1.03);
}

.case-torch-video figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-torch-video:hover figcaption {
  opacity: 1;
}

.case-torch-video figcaption span { color: var(--accent); }
.case-torch-video figcaption strong { color: #fff; }

@media (max-width: 600px) {
  .case-torch-videos {
    grid-template-columns: 1fr;
  }
  .case-torch-video {
    aspect-ratio: 4/3;
  }
}

/* ============================================================
   VELOCITAS STUDIE — mobility.html AI study section
   ============================================================ */

.velocitas-studie {
  padding: clamp(72px, 10vw, 120px) 0 0;
}

.velocitas-heading {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.velocitas-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
}

.velocitas-heading > p {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.velocitas-disclaimer {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border-left: 2px solid var(--accent);
  padding-left: 0.75rem;
}

.velocitas-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
}

.velocitas-img {
  overflow: hidden;
  margin: 0;
}

.velocitas-main {
  aspect-ratio: 16/9;
}

.velocitas-img:not(.velocitas-main) {
  aspect-ratio: 4/3;
}

.velocitas-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.velocitas-img:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .velocitas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .velocitas-main {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .velocitas-grid {
    grid-template-columns: 1fr;
  }
  .velocitas-main {
    grid-column: auto;
  }
}

/* ============================================================
   STUDIO DARK FEATURE — full-bleed atmospheric mood section
   ============================================================ */

/* Label above scrub video */
.studio-dark-label {
  padding: clamp(48px, 7vw, 96px) var(--outer) clamp(32px, 4vw, 56px);
  background: var(--bg);
}

.studio-dark-statement {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0.5rem 0 0;
}

.studio-dark-sub {
  display: inline;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0;
}

.studio-dark-feature {
  position: relative;
  height: 72vh;
  overflow: hidden;
  isolation: isolate;
}

.studio-dark-media {
  position: relative;
  height: 100%;
  width: 100%;
}

.studio-dark-media img,
.studio-dark-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.22) contrast(1.28) brightness(0.52);
  transform: scale(1.04);
  transition: transform 8s ease, filter 2s ease;
}

.studio-dark-feature:hover .studio-dark-media img {
  transform: scale(1.0);
  filter: saturate(0.32) contrast(1.18) brightness(0.62);
}

.studio-dark-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(6, 6, 5, 0.96) 0%, rgba(6, 6, 5, 0.62) 35%, rgba(6, 6, 5, 0.18) 68%),
    linear-gradient(90deg, rgba(6, 6, 5, 0.62) 0%, transparent 48%);
}

.studio-dark-copy-wrap {
  position: relative;
  z-index: 2;
  padding-top: clamp(56px, 9vw, 120px);
  padding-bottom: clamp(64px, 10vw, 140px);
}

.studio-dark-copy {
  color: #fff;
  max-width: 780px;
}

.studio-dark-copy h2 {
  color: #fff;
  font-size: clamp(3.4rem, 8.5vw, 8rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.studio-dark-copy .studio-dark-sub {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1;
}

.studio-dark-copy .studio-dark-sub::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */

@media (max-width: 980px) {
  .case-real-grid {
    grid-template-columns: 1fr;
  }

  .case-real-detail-stack {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
  }

  .case-real-main {
    min-height: clamp(300px, 56vw, 520px);
  }

  .case-real-detail {
    min-height: clamp(220px, 36vw, 360px);
  }

  .case-real-meta {
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
  }

  .case-real .text-link {
    grid-column: span 2;
  }
}

/* ============================================================
   REALITY SPLIT — WOW-Effekt: CAD ↔ Realität
   Drag/mouse to reveal the real object from the blueprint
   ============================================================ */

.reality-split {
  position: relative;
  height: min(88vh, 840px);
  overflow: hidden;
  background: #030302;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.reality-split-layer {
  position: absolute;
  inset: 0;
}

.reality-split-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.reality-split-cad img {
  filter: saturate(0) contrast(1.22) brightness(0.72);
}

.reality-split-real {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}

.reality-split-real.no-transition {
  transition: none;
}

.reality-split-real img {
  filter: saturate(0.62) contrast(1.12) brightness(0.82);
}

/* Labels */
.reality-split-label {
  position: absolute;
  bottom: clamp(20px, 4vw, 42px);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.reality-split-cad .reality-split-label {
  left: clamp(24px, 4vw, 54px);
}

.reality-split-real .reality-split-label {
  left: clamp(24px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.72);
}

/* Handle / scrubber */
.reality-split-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.reality-split-line {
  width: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}

.reality-split-line::before,
.reality-split-line::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.reality-split-line::before { top: 0; }
.reality-split-line::after { bottom: 0; transform: translateX(-50%) rotate(180deg); }

.reality-split-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 4px 24px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reality-split:hover .reality-split-knob,
.reality-split.is-dragging .reality-split-knob {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 2px rgba(195,58,63,0.5), 0 4px 32px rgba(195,58,63,0.35);
}

.reality-split-knob svg {
  width: 24px;
  height: 24px;
}

/* Top-left intro text */
.reality-split-intro {
  position: absolute;
  top: clamp(24px, 4vw, 48px);
  left: clamp(24px, 4vw, 54px);
  z-index: 8;
  pointer-events: none;
}

.reality-split-hint {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 4px 0 0;
}

/* Mobile: auto-animate instead of drag */
@media (pointer: coarse) {
  .reality-split {
    cursor: default;
  }

  .reality-split-hint {
    display: none;
  }
}

/* ============================================================
   WIP SHOT — Content placeholder system
   Red dashed border = photo/video needed here
   ============================================================ */

.wip-shot {
  position: relative;
  background: #080807;
  border: 1.5px dashed rgba(195, 58, 63, 0.45);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 36px);
  min-height: 320px;
  overflow: hidden;
}

.wip-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(195, 58, 63, 0.025) 18px,
      rgba(195, 58, 63, 0.025) 19px
    );
  pointer-events: none;
}

.wip-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 12px;
}

.wip-label {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.wip-brief {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  line-height: 1.6;
  max-width: 380px;
  margin: 0;
}

.wip-priority-high .wip-tag {
  background: #c33a3f;
}

.wip-priority-medium .wip-tag {
  background: rgba(195, 58, 63, 0.6);
}

/* ============================================================
   FOUNDER QUOTE — personal voice, Vagabund maker ethos,
   Philipp Plein exclusive positioning
   ============================================================ */

.founder-quote {
  background: #060605;
  padding: clamp(88px, 13vw, 172px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.founder-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.founder-portrait {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 540px;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.25) contrast(1.1) brightness(0.85);
  transition: filter 0.6s ease;
}

.founder-portrait:hover img {
  filter: saturate(0.45) contrast(1.05) brightness(0.9);
}

@media (max-width: 860px) {
  .founder-quote-grid {
    grid-template-columns: 1fr;
  }
  .founder-portrait {
    aspect-ratio: 16 / 9;
    max-height: 380px;
  }
}

.founder-blockquote {
  position: relative;
  margin: 0;
  padding-left: clamp(24px, 3.5vw, 48px);
  border-left: 2px solid var(--accent);
  max-width: 880px;
}

.founder-blockquote p {
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 clamp(24px, 3vw, 40px);
}

.founder-blockquote cite {
  display: block;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .brand-statement-line {
    text-align: left;
  }

  .brand-statement {
    text-align: left;
  }

  .brand-statement-sub {
    text-align: left;
  }

  .case-real-detail-stack {
    grid-template-columns: 1fr;
  }

  .case-real-meta {
    grid-template-columns: 1fr;
  }

  .case-real .text-link {
    grid-column: auto;
  }

  .studio-dark-feature {
    min-height: min(64vh, 560px);
  }
}

/* ============================================================
   FILM GRAIN — tactile, editorial, hand-crafted quality signal
   The #1 visual detail that separates good from world-class
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 8000;
    pointer-events: none;
    opacity: 0.036;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 192px 192px;
    animation: grain-shift 0.42s steps(1) infinite;
    will-change: background-position;
  }

  @keyframes grain-shift {
    0%   { background-position:   0px   0px; }
    25%  { background-position: -19px  14px; }
    50%  { background-position:  11px -21px; }
    75%  { background-position: -24px   7px; }
  }
}

/* ============================================================
   MARQUEE IDENTITY BAND — scrolling brand statement ticker
   ============================================================ */

.marquee-band {
  overflow: hidden;
  background: #0d0d0c;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-run 32s linear infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    white-space: normal;
    padding: 0 clamp(20px, 4vw, 56px);
  }
}

.mq {
  display: inline-block;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 clamp(20px, 3vw, 40px);
  opacity: 0.15;
  will-change: transform, opacity, filter;
}

.mq-sep {
  display: inline-block;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  opacity: 0.15;
  will-change: transform, opacity, filter;
}

@keyframes marquee-run {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 740px) {
  .marquee-track {
    width: max-content;
    animation: marquee-run 24s linear infinite;
    backface-visibility: hidden;
  }
}

@media (max-width: 740px) and (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: marquee-run 48s linear infinite;
    white-space: nowrap;
    padding: 0;
  }
}

/* ============================================================
   EDITORIAL PHOTO STRIP — horizontal scroll gallery
   Drag / scroll to explore — Lando Norris / design studio feel
   ============================================================ */

.photo-strip {
  position: relative;
  overflow: hidden;
  background: #060605;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.photo-strip:active {
  cursor: grabbing;
}

.photo-strip-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  padding: 2px;
  transition: transform 0.1s ease;
  will-change: transform;
}

.photo-strip-item {
  position: relative;
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 440px);
  height: clamp(320px, 38vw, 540px);
  margin: 0;
  overflow: hidden;
  background: #111;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.22) contrast(1.22) brightness(0.72);
  transition: filter 0.5s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
  pointer-events: none;
}

.photo-strip-item:hover img {
  filter: saturate(0.48) contrast(1.14) brightness(0.84);
  transform: scale(1.02);
}

.photo-strip-label {
  position: absolute;
  bottom: clamp(16px, 3vw, 28px);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

@media (pointer: coarse) {
  .photo-strip {
    cursor: default;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .photo-strip::-webkit-scrollbar {
    display: none;
  }

  .photo-strip-track {
    transition: none;
  }
}

/* ============================================================
   STATS BAND — key numbers in one glanceable row
   Counts up on scroll reveal
   ============================================================ */

.stats-band {
  padding: clamp(52px, 7vw, 96px) 0;
  background: #0c0c0b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0c0c0b; /* single bg here so stat-items don't overlap each other */
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(28px, 4vw, 52px) clamp(22px, 3vw, 40px);
  transition: background 240ms ease;
}

.stat-item:hover {
  background: rgba(255,255,255,0.03);
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.stat-number {
  color: #fff;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 870;
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.stat-item.is-counting .stat-number {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(195, 58, 63, 0.28);
}

.stat-unit {
  color: var(--accent);
  font-size: clamp(1.2rem, 2.4vw, 2.1rem);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.stat-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SPLIT WORD REVEAL — per-word staggered animation
   Applied via JS to [data-split-words] elements
   ============================================================ */

.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}

.word-inner {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition:
    transform 0.76s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.48s ease;
}

.word-inner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .word-inner {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

/* ============================================================
   CURSOR LABEL — contextual text floating near cursor
   ============================================================ */

.cursor-label {
  position: fixed;
  z-index: 2001;
  top: 0;
  left: 0;
  padding: 5px 9px;
  background: var(--accent);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, 24px, 0);
  transition: opacity 150ms ease, transform 150ms ease;
  white-space: nowrap;
}

.cursor-label.is-visible {
  opacity: 1;
  transform: translate3d(-50%, 16px, 0);
}

@media (pointer: coarse) {
  .cursor-label {
    display: none;
  }
}

/* ============================================================
   HERO PARALLAX — reinforces depth / cinematic scroll
   ============================================================ */

.hero .hero-media img {
  will-change: transform;
}

/* ============================================================
   ENHANCED BRAND STATEMENT — monumental typographic moment
   ============================================================ */

.brand-statement {
  position: relative;
  overflow: hidden;
}


.brand-statement-line {
  position: relative;
  z-index: 1;
}


/* ============================================================
   PHOTO STRIP RESPONSIVE
   ============================================================ */

@media (max-width: 720px) {
  .photo-strip-item {
    width: clamp(200px, 72vw, 320px);
    height: clamp(240px, 56vw, 380px);
  }

  .photo-strip-label {
    display: none;
  }
}

/* ============================================================
   STATS BAND RESPONSIVE — additional
   ============================================================ */

@media (max-width: 980px) {
  .stats-band {
    padding: clamp(44px, 6vw, 80px) 0;
  }
}

/* ============================================================
   FULL-BLEED TYPE STATEMENT — viewport-spanning punch line
   The moment that makes people stop scrolling
   ============================================================ */

.type-bleed {
  background: #0a0a09;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 3.5vw, 56px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.type-bleed-line {
  display: block;
  margin: 0;
  color: #fff;
  font-size: clamp(4.5rem, 15vw, 18rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  user-select: none;
  white-space: nowrap;
}

/* "NICHT" — solid red, fully readable */
.type-bleed-line--accent {
  color: var(--accent);
}

@media (max-width: 600px) {
  .type-bleed-line {
    font-size: clamp(3rem, 17vw, 5rem);
  }
}

/* ============================================================
   MANIFESTO H2 — bigger headline in the WE ARE section
   ============================================================ */

.manifesto .section-heading h2 {
  font-size: clamp(2.8rem, 7vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 100%;
}

/* ============================================================
   DARK EDITORIAL — fix light-mode hardcoded values
   Everything reads on near-black now
   ============================================================ */

/* Form inputs */
input,
textarea,
select {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(240, 238, 234, 0.14);
  color: var(--ink);
}

input::placeholder,
textarea::placeholder {
  color: rgba(240, 238, 234, 0.28);
}

/* Tag pills */
.studio-tags span,
.mobility-tags span,
.hero-proof span {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(240, 238, 234, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Project cards */
.project-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.project-card span {
  color: var(--accent);
}

.project-card h3 {
  color: var(--ink);
}

.project-card p {
  color: var(--muted);
}

/* Site header on dark */
.site-header {
  background: rgba(13, 13, 12, 0.88);
  border-bottom-color: rgba(240, 238, 234, 0.07);
}

.site-header.is-scrolled {
  background: rgba(13, 13, 12, 0.96);
}

/* Footer */
.site-footer {
  background: #080807;
  border-top-color: rgba(240, 238, 234, 0.08);
}

/* Shop teaser / REIMAGINED slim */
.shop-teaser {
  border-top: 1px solid rgba(240, 238, 234, 0.08);
  padding: clamp(72px, 10vw, 120px) 0;
}

/* Contact form button contrast on dark */
.contact-form .button-primary {
  background: var(--accent);
}

/* Studio light section override — keep images bright */
.studio-image img {
  filter: saturate(0.6) contrast(1.1);
}

/* Consent layer dark */
.consent-panel {
  background: #1a1a18;
  color: var(--ink);
}

/* Project visual image treatment */
.real-demonstrator-image {
  filter: saturate(0.5) contrast(1.15) brightness(0.88);
}

/* Scrollbar dark */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: #0d0d0c;
}
::-webkit-scrollbar-thumb {
  background: rgba(240, 238, 234, 0.15);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ================================================================
   DESIGN SYSTEM UNIFICATION LAYER
   One spacing rhythm · One type scale · One motion language
   Added: 2026 — overrides all patch rules above
   ================================================================ */

/* ── Section rhythm ────────────────────────────────────────────── */
/* Every content section: same breathing room */
.intro,
.manifesto,
.projects,
.studio,
.capability-atlas,
.founder-quote,
.shop-teaser,
.contact,
.stats-band {
  padding: clamp(88px, 11vw, 144px) 0;
}

/* Remove the old studio padding override */
.studio-capabilities {
  padding: 0;
}

/* Section backgrounds — strict 2-tone only */
.intro,
.manifesto,
.capability-atlas,
.founder-quote,
.contact {
  background: var(--bg);
}

.projects {
  background: var(--surface); /* #111110 — subtle lift only */
}

.stats-band {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shop-teaser {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

/* ── Eyebrow — one global rule ─────────────────────────────────── */
.eyebrow {
  display: block;
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: var(--accent);
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

/* ── Headings — one scale ──────────────────────────────────────── */
h1 {
  font-size: clamp(3.8rem, 11vw, 13rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2.8rem, 6.5vw, 7.5rem);
  font-weight: 900;
  line-height: 0.90;
  letter-spacing: -0.04em;
  margin: 0 0 clamp(24px, 3vw, 40px);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

/* Section heading eyebrow+h2 block margin */
.section-heading,
.capability-intro,
.contact-copy,
.studio-head .section-heading {
  margin-bottom: clamp(48px, 6vw, 72px);
}

/* ── Body copy ─────────────────────────────────────────────────── */
p {
  margin: 0 0 1em;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
}

/* Section intro paragraphs (immediately under h2) */
.section-intro,
.intro-copy p,
.manifesto .intro-copy p,
.studio-copy p:not(.eyebrow),
.contact-copy p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: var(--muted);
}

.manifesto .intro-copy p strong {
  color: var(--ink);
  font-weight: 750;
}

/* ── Text links ────────────────────────────────────────────────── */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(28px, 3vw, 40px);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 200ms ease;
}

.text-link::after {
  content: "→";
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.text-link:hover {
  color: var(--accent);
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* ── Buttons ───────────────────────────────────────────────────── */
.button {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  border: none;
}

.button-primary:hover {
  background: #a02d31;
  transform: translateY(-1px);
}

/* ── Projects section ──────────────────────────────────────────── */
.project-visual {
  margin: 0 0 clamp(40px, 5vw, 64px);
  border-radius: 6px;
  overflow: hidden;
}

.project-visual img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.project-card {
  padding: clamp(28px, 3.5vw, 48px) clamp(20px, 2.5vw, 36px) clamp(28px, 3.5vw, 48px) 0;
  border-right: 1px solid var(--line);
}

.project-card:first-child {
  padding-left: 0;
}

.project-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.project-card + .project-card {
  padding-left: clamp(20px, 2.5vw, 36px);
}

.project-card > span {
  display: block;
  margin-bottom: clamp(32px, 4vw, 56px);
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-card h3 {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.project-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ── Stats band ────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.stat-prefix {
  font-size: 0.85em;
  vertical-align: super;
  margin-right: 2px;
}

.stat-item {
  padding: clamp(36px, 4vw, 52px) clamp(20px, 2.5vw, 36px) clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line);
  overflow: visible;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
  padding-top: 0.5em;
  overflow: visible;
}

.stat-number {
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.stat-unit {
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  overflow: visible;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.stat-unit sup {
  font-size: 0.48em;
  line-height: 1;
  vertical-align: text-top;
  position: static;
}

.stat-sup {
  font-size: 0.46em;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  color: var(--accent);
  font-weight: 700;
}

.stat-value-single {
  width: 100%;
  align-items: center;
}

.stat-rule {
  flex: 1;
  height: 2px;
  background: var(--accent);
  margin-left: 12px;
  min-width: 20px;
}

.stat-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.35);
  line-height: 1.4;
}

/* ── Manifesto / WE ARE ─────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.section-heading {
  position: relative;
}

.we-are-line {
  font-size: clamp(2.8rem, 6.5vw, 7.5rem);
  font-weight: 900;
  line-height: 0.90;
  letter-spacing: -0.04em;
  margin: 0 0 clamp(24px, 3vw, 40px);
  color: var(--ink);
}

.we-are-line span,
.we-are-line strong {
  display: block;
  font-weight: inherit;
}

.we-are-line strong {
  color: var(--accent);
  min-height: 0.95em;
}

/* ── Capability atlas (editorial list) ─────────────────────────── */
.capability-atlas {
  background: var(--bg);
}

.capability-intro {
  max-width: none;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.capability-intro h2 {
  max-width: 14ch;
}

.capability-editorial {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.capability-editorial-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 3.5vw, 48px) 0;
  border-bottom: 1px solid var(--line);
  transition: background 280ms ease;
}

.capability-editorial-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.capability-editorial-num {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-top: 5px;
}

.capability-editorial-content {
  min-width: 0;
}

.capability-editorial-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}

.capability-editorial-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}

.capability-editorial-tags {
  text-align: right;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(240, 238, 234, 0.28);
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 28ch;
  padding-top: 5px;
}

/* ── Studio dark feature ───────────────────────────────────────── */
.studio-dark-feature {
  position: relative;
  min-height: clamp(420px, 52vw, 640px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.studio-dark-copy-wrap {
  position: relative;
  z-index: 3;
  padding: clamp(48px, 6vw, 88px) 0;
}

.studio-dark-copy h2 {
  font-size: clamp(3rem, 7vw, 8.5rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: 0;
  color: #fff;
}

.studio-dark-sub {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ── Studio section ────────────────────────────────────────────── */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.studio-head .section-heading {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.studio-head .section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 5.5rem);
}

.studio-image {
  margin: clamp(24px, 3vw, 40px) 0 0;
  border-radius: 6px;
  overflow: hidden;
}

.studio-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.studio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: clamp(24px, 3vw, 40px) 0;
}

.studio-tags span {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.55);
  background: rgba(255, 255, 255, 0.03);
}

.studio-capability {
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: clamp(28px, 3.5vw, 48px);
  border-top: 1px solid var(--line);
}

.studio-capability .eyebrow {
  color: var(--accent);
}

.studio-capability h3 {
  color: var(--ink);
  margin-bottom: 14px;
}

.studio-capability p {
  color: var(--muted);
}

/* ── Founder quote ─────────────────────────────────────────────── */
.founder-quote {
  border-top: 1px solid var(--line);
}

.founder-quote-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.founder-portrait {
  margin: 0;
  width: clamp(160px, 22vw, 300px);
  flex-shrink: 0;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.3) contrast(1.15);
}

.founder-blockquote {
  margin: 0;
}

.founder-blockquote p {
  font-size: clamp(1.8rem, 3.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.founder-blockquote cite {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.35);
  font-style: normal;
}

/* ── Shop teaser ───────────────────────────────────────────────── */
.shop-teaser .section-inner {
  max-width: 840px;
}

.shop-teaser h2 {
  color: var(--ink);
}

.shop-teaser p {
  color: var(--muted);
  max-width: 56ch;
}

.shop-teaser .button {
  margin-top: clamp(24px, 3vw, 40px);
}

/* ── Contact ───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.contact-copy h2 {
  color: var(--ink);
}

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: clamp(28px, 3.5vw, 48px);
}

.contact-data a,
.contact-data span {
  font-size: 0.9375rem;
  color: rgba(240, 238, 234, 0.5);
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-data a:hover {
  color: var(--accent);
}

/* ── Contact form ──────────────────────────────────────────────── */
.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.45);
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 238, 234, 0.1);
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 200ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form .field-wide {
  grid-column: 1 / -1;
}

.contact-form .button {
  justify-self: start;
  margin-top: 8px;
  cursor: pointer;
}

/* ── Layout shift prevention ───────────────────────────────────── */
/* Reserve space for every img before it loads */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero image — never shift the page */
.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

/* Photo strip — fixed height track */
.photo-strip-item img {
  aspect-ratio: auto;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Studio image */
.studio-image img {
  aspect-ratio: 4 / 3;
}

/* Founder portrait */
.founder-portrait img {
  aspect-ratio: 3 / 4;
}

/* Project visual */
.project-visual img {
  aspect-ratio: 16 / 7;
}

/* ── Reveal animation ──────────────────────────────────────────── */
/* Barely-there fade — Apple rule: motion serves content, not vice versa */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  will-change: opacity, transform;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered children — tight, almost imperceptible */
.reveal:nth-child(2) { transition-delay: 0.04s; }
.reveal:nth-child(3) { transition-delay: 0.08s; }
.reveal:nth-child(4) { transition-delay: 0.12s; }
.reveal:nth-child(5) { transition-delay: 0.16s; }

/* No motion on reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Mobile ─────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  h2 {
    font-size: clamp(2.2rem, 7.5vw, 4rem);
  }

  .intro-grid,
  .studio-grid,
  .contact-grid,
  .founder-quote-grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
  }

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

  .project-card {
    padding: clamp(24px, 4vw, 40px) 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .project-card:last-child {
    border-bottom: none;
  }

  .project-card + .project-card {
    padding-left: 0;
  }

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

  .stat-item {
    border-bottom: 1px solid var(--line);
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .capability-editorial-row {
    grid-template-columns: 48px 1fr;
  }

  .capability-editorial-tags {
    grid-column: 2;
    text-align: left;
  }

  .founder-portrait {
    width: clamp(100px, 28vw, 160px);
  }
}

@media (max-width: 540px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item:nth-child(2n) {
    border-right: 0;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: clamp(20px, 5vw, 32px) 0;
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .capability-editorial-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .capability-editorial-num {
    padding-top: 0;
  }

  .capability-editorial-tags {
    grid-column: 1;
  }

  .founder-quote-grid {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    width: clamp(80px, 30vw, 120px);
  }
}

/* ============================================================
   WORLD-CLASS UPGRADE LAYER
   Benchmark: Lando Norris site — restraint, drama, precision
   ============================================================ */

/* ── 1. Display typeface — Syne gives distinctive editorial character ── */
:root {
  --font-display: 'Syne', Inter, ui-sans-serif, system-ui, sans-serif;
}

h1,
h2,
.brand-statement-line,
.type-bleed-line,
.studio-dark-copy h2,
.founder-blockquote p,
.manifesto .section-heading h2,
.loader-brand {
  font-family: var(--font-display);
}

/* ── 2. Reveal — push from 8px to 32px with more spring ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }

/* ── 3. Hero H1 — push the scale on desktop, tighter letter-spacing ── */
.hero-copy h1 {
  font-size: clamp(2.2rem, 12.5vw, 15rem);
  letter-spacing: -0.06em;
  line-height: 0.84;
  font-weight: 800;
}

/* Shop hero h1 has longer words (Massenware) — scale down so nothing clips */
.shop-hero .hero-copy h1 {
  font-size: clamp(2rem, 8vw, 10rem);
}

/* ── 4. Hero entrance — text glides up after loader completes ── */
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

body:not(.is-loading) .hero-copy h1 {
  animation: hero-enter 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

body:not(.is-loading) .hero-bottom {
  animation: hero-enter 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

/* ── 5. Editorial capability numbers ── */
@media (min-width: 861px) {
  .capability-editorial {
    --num-col: 110px;
  }
  .capability-editorial-row {
    grid-template-columns: var(--num-col) 1fr auto;
  }
  .capability-editorial-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 800;
    color: rgba(195, 58, 63, 0.22);
    letter-spacing: -0.04em;
    line-height: 1;
    padding-top: 0;
    align-self: center;
    transition: color 320ms ease;
  }
  .capability-editorial-row:hover .capability-editorial-num {
    color: rgba(195, 58, 63, 0.6);
  }
}

.capability-editorial-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Stagger row reveal */
.capability-editorial-row:nth-child(1) { transition-delay: 0s; }
.capability-editorial-row:nth-child(2) { transition-delay: 0.07s; }
.capability-editorial-row:nth-child(3) { transition-delay: 0.14s; }
.capability-editorial-row:nth-child(4) { transition-delay: 0.21s; }
.capability-editorial-row:nth-child(5) { transition-delay: 0.28s; }

/* ── 6. Founder blockquote — bigger, more cinematic, no border ── */
.founder-blockquote {
  border-left: none;
  padding-left: 0;
  max-width: 1000px;
}

.founder-blockquote p {
  font-size: clamp(2.4rem, 5.5vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.founder-blockquote cite {
  margin-top: clamp(20px, 3vw, 36px);
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.founder-quote {
  padding: clamp(96px, 14vw, 180px) 0;
}

.founder-quote-grid {
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ── 7. Brand statement — stronger accent gradient ── */
.brand-statement::before {
  background:
    radial-gradient(ellipse 70% 55% at var(--gx, 50%) var(--gy, 105%), rgba(195, 58, 63, 0.26) 0%, transparent 100%),
    radial-gradient(ellipse at 50% 0%, rgba(195, 58, 63, 0.08) 0%, transparent 50%);
}

/* ── 8. Type-bleed lines — stagger slide-in ── */
.type-bleed {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 3.5vw, 56px);
}

.type-bleed-line {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 9rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

/* ── 9. Stats — larger, bolder numbers ── */
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  font-weight: 800;
}

/* ── 10. Section headings — tighter tracking, more weight ── */
h2 {
  letter-spacing: -0.04em;
  line-height: 1.0;
}

.manifesto .section-heading h2 {
  font-size: clamp(2.5rem, 5.5vw, 6.5rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

/* Studio location h2 stays within narrow copy column — cap font size */
.studio-location-copy h2 {
  font-size: clamp(1.8rem, 4.5vw, 5.5rem);
  letter-spacing: -0.05em;
  line-height: 0.88;
}

/* ── 11. Studio dark feature — push H2 even larger ── */
.studio-dark-copy h2 {
  font-size: clamp(3.5rem, 8.5vw, 11rem);
  letter-spacing: -0.055em;
  line-height: 0.86;
}

/* ── 12. Shop teaser — full-bleed accent moment ── */
.shop-teaser {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(195, 58, 63, 0.16) 0%, transparent 50%),
    #0a0a09;
  padding: clamp(96px, 14vw, 180px) 0;
}

.shop-teaser h2 {
  font-size: clamp(2.8rem, 7vw, 8rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
}

/* ── 13. Nav — sharper hover, underline accent ── */
.site-nav a {
  position: relative;
  letter-spacing: 0.08em;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav a:hover::after {
  width: 100%;
}

/* ── 14. Project cards — stronger accent line top ── */
.project-card {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 280ms ease;
}

.project-card:hover {
  border-top-color: var(--accent);
}

/* ── 15. Eyebrow — accent dot before ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── 16. Marquee band — slightly larger text ── */
.marquee-item {
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  letter-spacing: 0.14em;
}

/* ── 17. Contact form — dark background to match theme ── */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 48px);
}

/* ── 18. h3 in Syne for project cards and capability rows ── */
h3,
.capability-editorial-content h3 {
  font-family: var(--font-display);
}

/* ── 19. Footer CTA — bigger, more editorial ── */
.footer-question {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1.0;
}

/* ── 20. Subpage hero parallax — will-change for GPU compositing ── */
.subpage-hero .hero-media img {
  will-change: transform;
}

/* ── Founder quote cycling section ── */
.founder-quote {
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.founder-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 0;
  min-height: clamp(480px, 55vw, 680px);
  align-items: stretch;
}

.founder-portrait {
  position: relative;
  overflow: hidden;
  background: #111210;
  width: auto;
  aspect-ratio: unset;
  max-height: none;
  flex-shrink: unset;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 25%;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

/* Placeholder when no image */
.founder-portrait:not(:has(img[src])),
.founder-portrait:has(img[style*="display:none"]) {
  background: repeating-linear-gradient(
    45deg,
    #111210 0px,
    #111210 10px,
    #161614 10px,
    #161614 20px
  );
}
.founder-portrait:has(img[style*="display:none"])::after {
  content: 'Foto: assets/real/founder-rene-nagl.jpg';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 24px;
  text-align: center;
}

.founder-quote-content {
  position: relative;
  padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .founder-quote-grid {
    grid-template-columns: 1fr;
  }
  .founder-portrait {
    min-height: 300px;
  }
}

.founder-quote-mark {
  position: absolute;
  left: 0;
  top: -0.15em;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  user-select: none;
}

.founder-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  border-left: 2px solid var(--accent);
  padding-left: clamp(18px, 2.5vw, 28px);
}

.founder-bio {
  color: var(--dark-muted);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  margin: 0 0 clamp(24px, 3vw, 36px);
  max-width: 52ch;
}

.founder-quote-attribution {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.founder-name {
  color: var(--ink);
  font-weight: 600;
}

.founder-linkedin {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

.founder-linkedin:hover {
  color: var(--accent);
}

.founder-quote-attribution::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Editorial copy h2 — keep inside column ── */
.editorial-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* ── Nav active state ── */
.site-nav a.is-active {
  color: var(--ink);
  opacity: 1;
}
.site-nav a.is-active::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--accent);
  margin-top: 2px;
}

/* ── Ken Burns: Founder portrait ── */
@keyframes ken-burns {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1%, -0.5%); }
  100% { transform: scale(1)    translate(0, 0); }
}
.founder-portrait img {
  animation: ken-burns 28s ease-in-out infinite;
  transform-origin: 22% center;
}

/* ── Parallax: cinematic media sections ── */
.cinematic-media { overflow: hidden; }
.cinematic-media img,
.cinematic-media video {
  will-change: transform;
}

/* ── CNC Visual Section ── */
.cnc-visual {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.cnc-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.cnc-copy {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(48px, 6vw, 88px);
}
.cnc-copy h2 {
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-top: 12px;
}
.cnc-sub {
  margin-top: clamp(20px, 2.5vw, 32px);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Scatter Gallery ── */
.scatter-gallery {
  position: relative;
  min-height: 160vh;
  overflow: hidden;
  background: var(--bg);
  margin: 0;
}
.scatter-label {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 10;
  pointer-events: none;
}
.scatter-label-tl { top: clamp(20px, 3vw, 40px); left: clamp(20px, 3.5vw, 56px); }
.scatter-label-br { bottom: clamp(20px, 3vw, 40px); right: clamp(20px, 3.5vw, 56px); }
.scatter-item {
  position: absolute;
  margin: 0;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scatter-item:hover img {
  transform: scale(1.03);
  transition: transform 0.5s ease;
}
.scatter-item img {
  transition: transform 0.5s ease;
}
.scatter-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.scatter-item figcaption {
  margin-top: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
}
.scatter-ph-inner {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scatter-ph-inner span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}


/* ── Blueprint canvas — stacking context so z-index:-1 canvas stays inside section ── */
.section-dark { isolation: isolate; }

/* ── Reduced motion overrides ── */
@media (prefers-reduced-motion: reduce) {
  body:not(.is-loading) .hero-copy h1,
  body:not(.is-loading) .hero-bottom {
    animation: none;
  }
}


/* ============================================================
   V-SCULPTURE 3D VIEWER — index.html
   ============================================================ */

.vsculpture-viewer {
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 112px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.vsculpture-header {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 680px;
}

.vsculpture-header p:not(.eyebrow) {
  color: rgba(255,255,255,0.5);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin-top: 0.75rem;
}

.vsculpture-stage {
  width: 100%;
  background: #0a0a09;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.vsculpture-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  cursor: pointer;
}
.vsculpture-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.vsculpture-overlay.is-active {
  display: none;
}

model-viewer.vsculpture-model {
  width: 100%;
  height: clamp(420px, 60vw, 680px);
  background: transparent;
  --progress-bar-color: var(--accent);
  --progress-bar-height: 2px;
}

.vsculpture-ar-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s ease;
}

.vsculpture-ar-btn:hover { opacity: 0.85; }

.vsculpture-progress {
  height: 2px;
  background: var(--accent);
}

.vsculpture-meta {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
  margin-top: clamp(32px, 4vw, 56px);
}

/* LED BREAK */
/* ── LASER TEASER ─────────────────────────────────────── */
.laser-teaser {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.laser-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.laser-teaser-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin: 0.5rem 0 1.5rem;
}

.laser-teaser-copy p {
  color: rgba(255,255,255,0.65);
  max-width: 42ch;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.laser-teaser-copy .button {
  margin-top: 1rem;
}

.laser-teaser-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.laser-teaser-badge {
  display: flex;
  flex-direction: column;
  line-height: 1;
  border-left: 3px solid var(--red, #e63946);
  padding-left: 1.25rem;
}

.laser-badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--red, #e63946);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.laser-badge-num {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}

.laser-badge-year {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

.laser-capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.laser-capability-list li {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  padding-left: 1rem;
  position: relative;
}

.laser-capability-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red, #e63946);
}

@media (max-width: 768px) {
  .laser-teaser-grid {
    grid-template-columns: 1fr;
  }
}

/* ── LED BREAK ────────────────────────────────────────── */
.led-break {
  position: relative;
  width: 100%;
  height: clamp(180px, 28vw, 380px);
  overflow: hidden;
  background: #000;
}

.led-break-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 38%;
  transform: scale(1.08);
}


/* ── DB6 editorial ── */
.db6-feature .editorial-grid { align-items: start; }
.db6-detail-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1.2vw, 16px); padding-top: 0; padding-bottom: clamp(12px, 1.5vw, 20px); }
.db6-detail-gallery figure { aspect-ratio: 3/4; overflow: hidden; }
.db6-detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.db6-interior-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(8px, 1.2vw, 16px); padding-top: 0; padding-bottom: clamp(12px, 1.5vw, 20px); }
.db6-interior-row figure { aspect-ratio: 3/4; overflow: hidden; }
.db6-interior-row img { width: 100%; height: 100%; object-fit: cover; }
.db6-work-row { display: grid; grid-template-columns: 3fr 2fr; gap: clamp(8px, 1.2vw, 16px); padding-top: 0; padding-bottom: clamp(48px, 6vw, 80px); }
.db6-work-row figure:first-child { aspect-ratio: 4/3; overflow: hidden; }
.db6-work-row figure:last-child { aspect-ratio: 3/4; overflow: hidden; }
.db6-work-row img { width: 100%; height: 100%; object-fit: cover; }
.db6-audio-block { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); border-top: 1px solid rgba(255,255,255,0.08); }
.db6-audio-header { max-width: 64ch; margin-bottom: clamp(24px, 3vw, 48px); }
.db6-audio-header h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600; letter-spacing: -0.02em; margin: 0.4em 0 0.6em; }
.db6-audio-header p { color: var(--color-text-muted); font-size: clamp(0.9rem, 1.4vw, 1rem); line-height: 1.65; }
.db6-audio-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(8px, 1.2vw, 16px); }
.db6-audio-grid figure { aspect-ratio: 3/4; overflow: hidden; }
.db6-audio-grid img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) {
  .db6-detail-gallery { grid-template-columns: repeat(2, 1fr); }
  .db6-detail-gallery figure:last-child { display: none; }
  .db6-interior-row { grid-template-columns: 1fr; }
  .db6-work-row { grid-template-columns: 1fr; }
  .db6-work-row figure:last-child { display: none; }
  .db6-audio-grid { grid-template-columns: 1fr 1fr; }
  .db6-audio-grid figure:last-child { display: none; }
}

/* ── Speaker Reimagined + Electronics blocks ── */
.case-reimagined-block,
.case-electronics-block {
  margin-top: clamp(48px, 7vw, 96px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.case-reimagined-header { margin-bottom: clamp(24px, 3vw, 40px); }
.case-reimagined-header h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
  color: #fff;
}
.case-reimagined-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
}
.case-reimagined-grid figure img {
  width: 100%;
  height: clamp(220px, 28vw, 420px);
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
@media (max-width: 640px) {
  .case-reimagined-grid { grid-template-columns: 1fr; }
  .case-reimagined-grid figure img { height: 280px; }
}

/* ── V-Sculpture torch image ── */
.vsculpture-torch {
  width: 100%;
  max-height: clamp(320px, 45vw, 620px);
  overflow: hidden;
  margin: 0;
}
.vsculpture-torch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ── Motorsport gallery ── */
.motorsport-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(6px, 1vw, 12px);
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.motorsport-gallery figure { margin: 0; }
.motorsport-gallery figure img {
  width: 100%;
  height: clamp(200px, 26vw, 380px);
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
@media (max-width: 640px) {
  .motorsport-gallery { grid-template-columns: 1fr; }
  .motorsport-gallery figure img { height: 260px; }
}

/* ── Single-image reimagined grid ── */
.case-reimagined-grid--single {
  grid-template-columns: 1fr;
  max-width: 480px;
}
.case-reimagined-grid--single figure img {
  height: clamp(300px, 40vw, 560px);
}

/* ── V-Sculpture strip (3 images below torch) ── */
.vsculpture-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(6px, 1vw, 12px);
  padding-top: clamp(8px, 1.5vw, 16px);
  padding-bottom: clamp(24px, 3vw, 40px);
}
.vsculpture-strip figure { margin: 0; }
.vsculpture-strip figure img {
  width: 100%;
  height: clamp(180px, 22vw, 320px);
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
@media (max-width: 640px) {
  .vsculpture-strip { grid-template-columns: 1fr 1fr; }
  .vsculpture-strip figure:last-child { grid-column: 1 / -1; }
}

/* ── Studio gallery (3 images) ── */
.studio-gallery { padding: clamp(40px, 5vw, 64px) 0; }
.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
}
.studio-gallery-item { margin: 0; position: relative; }
.studio-gallery-item img,
.studio-gallery-item video {
  width: 100%;
  height: clamp(240px, 30vw, 440px);
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.studio-gallery-item figcaption {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.45;
}
@media (max-width: 640px) {
  .studio-gallery-grid { grid-template-columns: 1fr; }
  .studio-gallery-item img,
  .studio-gallery-item video { height: 280px; }
}

/* ── Speaker B&O origin block ── */
.case-origin-block {
  margin-top: clamp(48px, 7vw, 96px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.case-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.case-origin-grid figure { margin: 0; }
.case-origin-grid figure img {
  width: 100%;
  height: clamp(280px, 32vw, 480px);
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.case-origin-copy h3 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
  color: #fff;
}
.case-origin-copy p { opacity: 0.7; line-height: 1.65; margin-bottom: 0.75rem; }
@media (max-width: 640px) {
  .case-origin-grid { grid-template-columns: 1fr; }
}

/* ── Testimonial placeholder badge ── */
.testimonial-placeholder { position: relative; border: 1px dashed rgba(255,255,255,0.12); }
.testimonial-wip {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red, #e63329);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

/* ── Landmark featured visual (video) ── */
.landmark-featured-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* ── Horizontal Scroll Section ── */
.h-scroll-section {
  position: relative;
  height: 600vh;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.h-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--bg);
  transform: translateZ(0);
  will-change: transform;
}
.h-scroll-header {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  left: var(--gutter, 5vw);
  z-index: 10;
}
.h-scroll-track {
  display: flex;
  width: 400vw;
  height: 100%;
  will-change: transform;
}
.h-scroll-panel {
  position: relative;
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.h-scroll-panel-bg {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}
.h-scroll-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.h-scroll-panel:hover .h-scroll-panel-bg img {
  transform: scale(1.0);
}
.h-scroll-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.05) 45%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}
.h-scroll-panel-content {
  position: absolute;
  bottom: clamp(48px, 7vh, 96px);
  left: var(--gutter, 5vw);
  z-index: 2;
}
.h-scroll-panel-content .eyebrow { margin-bottom: 0.8rem; }
.h-scroll-panel-content h2 {
  font-size: clamp(2.8rem, 8vw, 10rem);
  font-weight: 800;
  line-height: 0.87;
  letter-spacing: -0.04em;
  margin: 0 0 1.8rem;
}
.h-scroll-panel-cta {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.25s;
}
.h-scroll-panel:hover .h-scroll-panel-cta { opacity: 1; }
.h-scroll-panel-num {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: var(--gutter, 5vw);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  opacity: 0.3;
  z-index: 2;
  font-variant-numeric: tabular-nums;
}
.h-scroll-progress {
  position: absolute;
  bottom: clamp(28px, 4vh, 52px);
  right: var(--gutter, 5vw);
  display: flex;
  gap: 6px;
  align-items: center;
  z-index: 10;
}
.h-scroll-dot {
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, width 0.3s;
}
.h-scroll-dot.is-active {
  background: rgba(255,255,255,0.9);
  width: 36px;
}
@media (max-width: 640px) {
  .h-scroll-section { height: 300vh; }
  .h-scroll-track { width: 300vw; }
  .h-scroll-panel:last-child { display: none; }
  .h-scroll-dot:last-child { display: none; }
}

/* ── Word Reveal — Hero h1 ── */
.hero-headline-reveal {
  display: block;
}
.rw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 0.92;
}
.rw + .rw { margin-left: 0.22em; }
.rw-punct { margin-left: 0.01em; }
.rw > span {
  display: inline-block;
  transform: translateY(110%);
  transition: none;
}
body:not(.is-loading) .hero-headline-reveal .rw:nth-child(1) > span { animation: word-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both; }
body:not(.is-loading) .hero-headline-reveal .rw:nth-child(2) > span { animation: word-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both; }
body:not(.is-loading) .hero-headline-reveal .rw:nth-child(3) > span { animation: word-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.31s both; }
body:not(.is-loading) .hero-headline-reveal .rw:nth-child(4) > span { animation: word-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both; }
body:not(.is-loading) .hero-headline-reveal .rw:nth-child(5) > span { animation: word-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.50s both; }
@keyframes word-up {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

/* Glitch — adapted from reference, V-MAKE red palette */
@keyframes glitch-vmake {
  0%, 87%, 100% { text-shadow: none; filter: none; transform: translate(0); }
  88%  { text-shadow:  2px 0 #ff3333, -2px 0 #c33a3f; filter: blur(0.5px); transform: translate(0); }
  90%  { text-shadow: -2px 0 #ff3333,  2px 0 #c33a3f; filter: blur(1px);   transform: translate(-2px); }
  92%  { text-shadow:  2px 2px #ff3333, -2px -2px #c33a3f; filter: blur(0.5px); transform: translate(2px); }
  94%  { text-shadow: -1px 1px #ff3333,  1px -1px #c33a3f; filter: blur(1px);   transform: translate(-1px); }
  96%  { text-shadow:  1px -1px #ff3333, -1px 1px #c33a3f; filter: blur(0.5px); transform: translate(1px); }
  98%  { text-shadow: 0 0 #ff3333, 0 0 #c33a3f; filter: none; transform: translate(0); }
}

/* Override old block-level hero entrance for the new word reveal */
body:not(.is-loading) .hero-copy .hero-headline-reveal {
  animation: glitch-vmake 8s ease-out 1.6s infinite;
  opacity: 1;
  transform: none;
}


/* ── PLACEHOLDER BLOCKS — sichtbare Entwicklungs-Platzhalter ── */
.placeholder-block {
  position: relative;
  border: 1.5px dashed var(--accent);
  border-radius: 4px;
  padding: 2rem;
  opacity: 0.85;
}
.placeholder-block::before {
  content: attr(data-placeholder);
  position: absolute;
  top: -11px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 2px 8px;
  text-transform: uppercase;
  border-radius: 2px;
  pointer-events: none;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: var(--section-gap) 0;
}
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
.testimonial-card {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0 1rem;
}
.testimonial-card blockquote {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.2rem;
  quotes: none;
}
.testimonial-card blockquote::before { content: '\201E'; color: var(--accent); margin-right: 0.1em; }
.testimonial-card blockquote::after  { content: '\201C'; color: var(--accent); margin-left: 0.1em; }
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.testimonial-meta strong { color: rgba(255,255,255,0.75); }

/* ── CONTACT FORM FEEDBACK ── */
.contact-form.is-sending button { opacity: 0.5; pointer-events: none; }
.contact-form.is-sending button::after { content: ' …'; }
.contact-form.is-success { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1rem; }
.form-success-msg {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
}
.form-success-msg span { color: var(--accent); }
.form-success-sub { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ── SHOP PRICE TAG ── */
.product-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.product-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 2px;
}

/* ── MOBILE FIXES — alle Seiten ── */
@media (max-width: 600px) {
  /* projects.html hero — 10ch max-width erzwingt zu viele Zeilen */
  .projects-page .subpage-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  /* mobility hero — rechts-ausgerichtet clippt auf schmalen Screens */
  .mobility-page-hero .subpage-hero-copy {
    align-items: flex-start;
    text-align: left;
  }
  .mobility-page-hero .hero-actions {
    justify-content: flex-start;
  }
  .mobility-page-hero .subpage-hero-copy h1 {
    max-width: 100%;
  }
  .mobility-page-hero .subpage-hero-copy .lead {
    max-width: 100%;
    text-align: left;
  }

  /* index hero — "fehlt" clippt rechts */
  .hero-copy h1 {
    font-size: clamp(2rem, 10.5vw, 15rem);
  }

  /* testimonials grid — single column */
  .testimonials-grid {
    gap: 0;
  }

  /* subpage hero buttons — full width auf Mobile */
  .subpage-hero-copy .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .subpage-hero-copy .hero-actions .button {
    width: 100%;
    text-align: center;
  }
}

/* ── PAGE TRANSITION OVERLAY ── */
.page-transition-veil {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0d0d0c;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.page-transition-veil.is-visible {
  opacity: 1;
}

@media (max-width: 600px) {
  .mobility-page-hero .subpage-hero-copy h1 {
    font-size: clamp(2.2rem, 9.5vw, 3.5rem);
  }
}

/* ── TORCH HERO — Ken Burns ── */
@keyframes torch-ken-burns {
  0%   { transform: scale(1.0) translate(0, 0); }
  35%  { transform: scale(1.06) translate(-0.8%, -1.2%); }
  70%  { transform: scale(1.1) translate(0.5%, -2%); }
  100% { transform: scale(1.06) translate(-0.3%, -0.8%); }
}

.case-torch-hero img {
  animation: torch-ken-burns 14s ease-in-out infinite alternate;
  will-change: transform;
  transform-origin: center 40%;
}

@media (prefers-reduced-motion: reduce) {
  .case-torch-hero img { animation: none; }
}

/* ── TORCH 3D CANVAS ── */
#torch-3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.case-torch-hero {
  position: relative;
}
.torch-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ════════════════════════════════════════════════════════
   V-LANDMARK KONFIGURATOR v2
   ════════════════════════════════════════════════════════ */

.vl-konfigurator {
  background: var(--bg);
  padding-bottom: 0;
}
.vlk-section-head {
  padding-top: 6rem;
  padding-bottom: 3rem;
}
.vlk-section-head h2 { margin-bottom: .5rem; }

/* Shell: viewer left + config right */
.vlk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  max-width: 100%;
}

/* ── LEFT: 3D Viewer ── */
.vlk-viewer-col {
  position: sticky;
  top: 80px;
  padding: 0 2rem 3rem 2rem;
}
.vlk-canvas-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #111110;
  cursor: grab;
}
.vlk-canvas-wrap:active { cursor: grabbing; }
#vlk-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.vlk-canvas-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font: 600 9px/1 var(--font-mono, monospace);
  letter-spacing: .12em;
  color: var(--accent);
  padding: .3rem .5rem;
  border: 1px solid rgba(195,58,63,.35);
  border-radius: 2px;
  background: rgba(0,0,0,.5);
}
.vlk-canvas-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .05em;
  white-space: nowrap;
  pointer-events: none;
}

/* Price panel under viewer */
.vlk-price-panel {
  margin-top: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  background: rgba(255,255,255,.02);
}
.vlk-price-items { margin-bottom: .75rem; }
.vlk-price-item {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  padding: .2rem 0;
}
.vlk-price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: .25rem;
}
.vlk-price-total-row span {
  font-size: .75rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
}
.vlk-price-total-row span em { font-style: normal; }
.vlk-price-total-row strong {
  font: 700 1.8rem/1 var(--font-display, sans-serif);
  color: #fff;
}
.vlk-ust-note {
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  margin: .4rem 0 1.2rem;
}
.vlk-cta { width: 100%; text-align: center; }

/* ── RIGHT: Options ── */
.vlk-config-col {
  border-left: 1px solid rgba(255,255,255,.06);
  padding-bottom: 6rem;
}

.vlk-group {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.vlk-group-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 2rem;
  cursor: default;
}
.vlk-num {
  font: 700 .7rem/2 var(--font-mono, monospace);
  color: var(--accent);
  letter-spacing: .1em;
  flex-shrink: 0;
  margin-top: .05rem;
}
.vlk-group-title { flex: 1; min-width: 0; }
.vlk-group-label {
  display: block;
  font: 700 .7rem/1 var(--font-mono, monospace);
  letter-spacing: .12em;
  color: rgba(255,255,255,.9);
  margin-bottom: .3rem;
}
.vlk-group-current {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vlk-group-body {
  padding: 0 2rem 1.5rem;
}
.vlk-group-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin: 0 0 1rem;
  line-height: 1.55;
}

/* Option buttons */
.vlk-opts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.vlk-opts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.vlk-opt {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem .9rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-align: left;
  color: inherit;
  font-family: inherit;
}
.vlk-opt:hover {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
}
.vlk-opt.is-active {
  border-color: var(--accent);
  background: rgba(195,58,63,.08);
}
.vlk-opt-full { width: 100%; }

.vlk-opt-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.2);
}
.vlk-opt-info {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  line-height: 1.2;
}
.vlk-opt-info strong { font-size: .82rem; color: rgba(255,255,255,.9); font-weight: 600; }
.vlk-opt-info small  { font-size: .72rem; color: rgba(255,255,255,.35); }
.vlk-opt-info em     { font-size: .73rem; color: rgba(255,255,255,.45); font-style: normal; }
.vlk-opt.is-active .vlk-opt-info em { color: var(--accent); }

/* Text inputs in groups */
.vlk-group-body input[type="text"],
.vlk-group-body input[type="email"],
.vlk-group-body input[type="tel"],
.vlk-group-body input[type="url"],
.vlk-group-body textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  color: #fff;
  font: 400 .9rem/1 var(--font-body, sans-serif);
  padding: .75rem 1rem;
  margin-top: .5rem;
  outline: none;
  transition: border-color .15s;
}
.vlk-group-body input:focus,
.vlk-group-body textarea:focus { border-color: rgba(255,255,255,.3); }
.vlk-group-body input::placeholder,
.vlk-group-body textarea::placeholder { color: rgba(255,255,255,.25); }
.vlk-url-field { display: none; }

/* Standort map */
.vlk-search-row {
  display: flex;
  gap: .5rem;
  position: relative;
  margin-bottom: .75rem;
}
.vlk-search-row input {
  flex: 1;
  margin-top: 0 !important;
}
.vlk-search-row button {
  flex-shrink: 0;
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 1rem;
  width: 2.8rem;
  border-radius: 3px;
  cursor: pointer;
}
.lc-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 3.3rem;
  background: #1e1e1d;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
  list-style: none;
  padding: 0;
  margin: .25rem 0 0;
  z-index: 50;
  max-height: 220px;
  overflow-y: auto;
}
.lc-suggestions[hidden] { display: none; }
.lc-suggestions li {
  padding: .6rem .9rem;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.lc-suggestions li:hover { background: rgba(255,255,255,.06); }
.vlk-map-mini {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  overflow: hidden;
  clip-path: inset(0);
}
.vlk-map-mini #lc-map { width: 100%; height: 100%; }
.vlk-map-mini .lc-map-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 9999px rgba(0,0,0,.5);
  pointer-events: none;
}
/* Corner accent marks */
.vlk-map-mini .lc-map-ring::before,
.vlk-map-mini .lc-map-ring::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}
.vlk-map-mini .lc-map-ring::before { top: -5px; left: -5px; }
.vlk-map-mini .lc-map-ring::after  { top: -5px; right: -5px; }
/* Crosshair center — on the map canvas */
#lc-map::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: rgba(195,58,63,.25);
  pointer-events: none;
  z-index: 2;
}
.vlk-map-coords {
  display: flex;
  gap: 1rem;
  font: 400 .7rem/1 var(--font-mono, monospace);
  color: rgba(255,255,255,.3);
  margin-top: .5rem;
  letter-spacing: .06em;
}

/* Order group */
.vlk-group-order .vlk-group-body { padding-top: .5rem; }
.vlk-order-summary {
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(255,255,255,.03);
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.07);
}
.vlk-summary-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .35rem 1rem;
  font-size: .8rem;
}
.vlk-summary-grid span { color: rgba(255,255,255,.4); }
.vlk-summary-grid strong { color: rgba(255,255,255,.85); font-weight: 500; }
.vlk-summary-grid strong.red { color: var(--accent); font-weight: 700; font-size: 1rem; }

.vlk-submit {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}
.vlk-submit-note {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  line-height: 1.55;
  margin-top: .75rem;
}

/* Mobile */
@media (max-width: 900px) {
  .vlk-inner { grid-template-columns: 1fr; }
  .vlk-viewer-col { position: static; padding: 0 1.25rem 2rem; }
  .vlk-config-col { border-left: none; border-top: 1px solid rgba(255,255,255,.06); }
  .vlk-group-head { padding: 1.2rem 1.25rem; }
  .vlk-group-body { padding: 0 1.25rem 1.25rem; }
  .vlk-opts-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .vlk-opts-grid { grid-template-columns: 1fr; }
}

/* V-LANDMARK Konfigurator — Success & Error states */
.vlk-success {
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  background: rgba(255,255,255,.03);
}
.vlk-success-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.4rem;
  line-height: 3rem;
  margin: 0 auto 1.25rem;
}
.vlk-success h3 {
  font-size: 1.3rem;
  margin-bottom: .75rem;
  color: #fff;
}
.vlk-success p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  max-width: 36ch;
  margin: 0 auto .5rem;
}
.vlk-success-sub {
  font-size: .78rem !important;
  color: rgba(255,255,255,.35) !important;
  margin-top: 1rem !important;
}
.vlk-error-msg {
  font-size: .78rem;
  color: var(--accent);
  margin-bottom: .75rem;
  line-height: 1.5;
}

/* V-LANDMARK Map Marker */
.vlk-map-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: grab;
  user-select: none;
}
.vlk-map-marker:active { cursor: grabbing; }
.vlk-marker-pin {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(195,58,63,.35), 0 2px 6px rgba(0,0,0,.5);
}
.vlk-marker-label {
  margin-top: 4px;
  font: 700 9px/1 var(--font-mono, monospace);
  letter-spacing: .08em;
  color: #fff;
  background: var(--accent);
  padding: 2px 5px;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* ── Lock-In bar ── */
.vlk-lockin-bar {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .75rem;
}
.vlk-lockin-hint {
  font: 400 11px/1.4 var(--font-mono, monospace);
  letter-spacing: .06em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  margin: 0;
}
.vlk-lockin-btn {
  width: 100%;
  padding: .75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border: none;
  font: 700 12px/1 var(--font-mono, monospace);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s;
}
.vlk-lockin-btn:hover { opacity: .85; }
.vlk-lockin-change {
  width: 100%;
  padding: .65rem 1.25rem;
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  font: 600 11px/1 var(--font-mono, monospace);
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.vlk-lockin-change:hover { color: #fff; border-color: rgba(255,255,255,.4); }

/* ── Lock overlay (flash on confirm) ── */
.vlk-map-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(13,13,12,.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 5;
  gap: .5rem;
}
.vlk-map-lock-overlay.is-visible {
  opacity: 1;
}
.vlk-lock-check {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
}
.vlk-lock-label {
  font: 700 11px/1 var(--font-mono, monospace);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
/* Locked map: accent border, no-interaction cursor */
.vlk-map-mini.is-locked { cursor: default; border: 1px solid var(--accent); }
.vlk-map-mini.is-locked .maplibregl-canvas { cursor: default !important; }
.vlk-map-mini.is-locked .maplibregl-marker { display: none !important; }

/* ── Terrain Loading Overlay ── */
.vlk-terrain-loading {
  position: absolute;
  inset: 0;
  background: rgba(13,13,12,.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  z-index: 10;
  pointer-events: none;
}
.vlk-terrain-loading p {
  font: 600 12px/1 var(--font-mono, monospace);
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.vlk-terrain-loading small {
  font: 400 10px/1 var(--font-mono, monospace);
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
}
.vlk-terrain-spinner {
  width: 28px; height: 28px;
  border: 2px solid rgba(255,255,255,.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: vlk-spin 0.8s linear infinite;
}
@keyframes vlk-spin { to { transform: rotate(360deg); } }

/* Canvas wrap needs position:relative for overlay */
.vlk-canvas-wrap { position: relative; }

/* ── Contact form helpers ── */
.contact-dsgvo {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin: -.5rem 0 .25rem;
  line-height: 1.5;
}
.contact-dsgvo a { color: rgba(255,255,255,.5); text-decoration: underline; }
.contact-success {
  margin-top: .75rem;
  color: #6fbf73;
  font-size: 13px;
  font-weight: 600;
}
.contact-error {
  margin-top: .75rem;
  color: var(--accent);
  font-size: 13px;
}

/* ── Shop 3-section headers ── */
.shop-section-header {
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.shop-section-label {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.shop-section-num {
  font: 700 11px/1 var(--font-mono, monospace);
  letter-spacing: .12em;
  color: var(--accent);
  flex-shrink: 0;
}
.shop-section-title {
  font: 600 13px/1 var(--font-heading, sans-serif);
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin: 0 0 .4rem;
}
.shop-section-sub {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin: 0;
}

/* ── Mobile layout safeguards ── */
@media (max-width: 740px) {
  main [class*="-grid"],
  main [class*="-grid"] > *,
  .section-heading,
  .intro-copy,
  .editorial-copy,
  .legal-copy,
  .contact-copy,
  .studio-inside-copy {
    min-width: 0;
    max-width: 100%;
  }

  .process-visuals-heading,
  .process-visuals-heading > * {
    min-width: 0;
    max-width: 100%;
  }

  .network-card > * {
    min-width: 0;
    max-width: 100%;
  }

  .projects-page .case-study,
  .projects-page .case-study:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
  }

  .projects-page .case-study > div,
  .projects-page .case-study:nth-child(even) > div {
    order: initial;
    min-width: 0;
    max-width: 100%;
    padding: 28px 0 0;
  }

  .projects-page .case-study > img,
  .projects-page .case-study > picture,
  .projects-page .case-study > video,
  .projects-page .case-study:nth-child(even) > img,
  .projects-page .case-study:nth-child(even) > picture,
  .projects-page .case-study:nth-child(even) > video {
    order: initial;
    width: 100%;
    min-width: 0;
  }

  .projects-page .case-study h3 {
    max-width: 100%;
    font-size: 2.25rem;
    overflow-wrap: normal;
  }

  main h1,
  main h2,
  main h3,
  main p,
  main blockquote,
  main li {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .intro h2,
  .editorial-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .studio-inside-copy h2 {
    font-size: 2.25rem;
    line-height: 1.04;
  }

  .legal-copy h2 {
    font-size: 1.8rem;
    line-height: 1.12;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
  }
}
