@font-face {
  font-family: "Cooper Hewitt";
  src: local("Cooper Hewitt Light"), local("CooperHewitt-Light");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Cooper Hewitt";
  src: local("Cooper Hewitt Book"), local("CooperHewitt-Book"), local("Cooper Hewitt");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Cooper Hewitt";
  src: local("Cooper Hewitt Semibold"), local("CooperHewitt-Semibold");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Cooper Hewitt";
  src: local("Cooper Hewitt Bold"), local("CooperHewitt-Bold");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --font-display: "ABC Monument Grotesk", "Oswald", "Cooper Hewitt", "Arial Narrow", Arial, sans-serif;
  --font-lead: "PP Writer", "Montserrat", "Cooper Hewitt", "Segoe UI", Arial, sans-serif;
  --font-body: "ABC Monument Grotesk", "Cooper Hewitt", "Montserrat", "Segoe UI", Arial, sans-serif;
  --night: #050a14;
  --graphite: #0d1724;
  --steel: #16304a;
  --cold-blue: #4f90c4;
  --field: #596750;
  --paper: #e7e0d3;
  --bone: #f4efe5;
  --muted: #a0adba;
  --line: rgba(154, 194, 235, 0.2);
  --signal: #b9874e;
  --signal-deep: #7d4e2f;
  --header-offset: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  position: relative;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 20, 0.68), rgba(5, 10, 20, 0.92) 38%, rgba(5, 10, 20, 0.98)),
    linear-gradient(90deg, rgba(5, 10, 20, 0.94), rgba(17, 58, 94, 0.58) 48%, rgba(5, 10, 20, 0.92)),
    url("assets/images/strategic-uniform-dialogue.jpg") right top / 52vw auto fixed no-repeat,
    url("assets/images/kesselhaus-blue-audience.jpg") left 18% / 54vw auto fixed no-repeat,
    url("assets/images/spark-kesselhaus-room.jpg") center 16% / cover fixed no-repeat,
    var(--night);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -6%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(142, 190, 242, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(142, 190, 242, 0.034) 1px, transparent 1px),
    linear-gradient(135deg, rgba(5, 10, 20, 0.88), rgba(18, 59, 94, 0.28)),
    url("assets/images/bundeswehr-polygon-window.jpg") center center / min(1720px, 136vw) auto no-repeat;
  background-size: 80px 80px, 80px 80px, auto, min(1720px, 136vw) auto;
  opacity: 0.22;
  filter: hue-rotate(178deg) saturate(0.82) brightness(0.5);
  mix-blend-mode: screen;
  transform: scale(1);
  animation: bluePolygonBreath 18s ease-in-out infinite alternate;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.16));
}

main,
footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(185, 135, 78, 0.42);
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 14px;
  background: var(--bone);
  color: var(--night);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 44px;
  color: var(--bone);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(5, 13, 24, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 239, 229, 0.42);
  color: var(--paper);
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--bone);
  border: 1px solid rgba(244, 239, 229, 0.2);
  border-radius: 2px;
  background: rgba(3, 8, 15, 0.46);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-toggle[hidden] {
  display: none !important;
}

.nav-toggle-icon {
  display: grid;
  gap: 5px;
  width: 16px;
}

.nav-toggle-icon span {
  display: block;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .nav-toggle-icon span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-icon span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(244, 239, 229, 0.72);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--bone);
}

.language-nav {
  gap: 6px;
  font-size: 0.72rem;
}

.language-link {
  min-width: 44px;
  min-height: 34px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 7px 9px;
  border: 1px solid rgba(244, 239, 229, 0.16);
  background: rgba(3, 8, 15, 0.34);
}

.language-link.is-current {
  border-color: rgba(244, 239, 229, 0.7);
  color: var(--bone);
}

.language-easy {
  min-width: max-content;
}

.language-short {
  display: none;
}

.section-rail {
  position: fixed;
  right: clamp(20px, 2.6vw, 42px);
  top: 50%;
  z-index: 24;
  display: grid;
  gap: 2px;
  width: 150px;
  padding: 10px 0;
  transform: translateY(-50%);
  pointer-events: auto;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.section-rail a {
  position: relative;
  width: 100%;
  min-height: 30px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  color: rgba(229, 238, 248, 0.52);
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.58;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.section-rail span {
  min-width: 20px;
  color: var(--signal);
  font-size: 0.52rem;
  font-weight: 700;
  text-align: right;
  opacity: 1;
  pointer-events: none;
}

.section-rail strong {
  width: auto;
  max-width: none;
  color: currentColor;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
}

.section-rail a:hover,
.section-rail a:focus-visible,
.section-rail a.is-active {
  color: var(--bone);
  opacity: 1;
  transform: translateX(-6px);
  background: transparent;
}

.section-rail a.is-active span {
  color: var(--signal);
}

.section-rail a.is-active strong {
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 120px 44px 112px;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-frame,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  max-width: 100%;
  overflow: clip;
  contain: paint;
}

.hero-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.78) contrast(1.08);
  transition: opacity 520ms ease, transform 1400ms ease, clip-path 640ms ease;
  clip-path: inset(0 34% 0 0);
}

.hero-frame:nth-child(1) {
  object-position: 54% 46%;
}

.hero-frame:nth-child(2) {
  object-position: center 50%;
}

.hero-frame:nth-child(3) {
  object-position: 34% 46%;
}

.hero-frame.is-active {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 10, 20, 0.9) 0%, rgba(10, 32, 58, 0.6) 42%, rgba(16, 54, 96, 0.26) 100%),
    linear-gradient(0deg, rgba(5, 10, 20, 0.96) 0%, rgba(5, 16, 30, 0.16) 45%, rgba(8, 28, 50, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 980px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.lead {
  width: min(820px, 100%);
  max-width: 100%;
  color: rgba(244, 239, 229, 0.84);
  font-family: var(--font-lead);
  font-size: 1.22rem;
  font-weight: 200;
  line-height: 1.46;
  overflow-wrap: break-word;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.62);
}

.hero-lines span {
  display: block;
}

.hero-lines span + span {
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-qr {
  position: absolute;
  right: 44px;
  bottom: 94px;
  z-index: 4;
  display: grid;
  grid-template-columns: 92px minmax(0, 170px);
  gap: 14px;
  align-items: center;
  max-width: 300px;
  padding: 12px;
  border: 1px solid rgba(244, 239, 229, 0.28);
  border-radius: 4px;
  background: rgba(5, 10, 20, 0.66);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.hero-qr img {
  width: 92px;
  height: 92px;
  padding: 6px;
  border-radius: 3px;
  background: #f8f5ed;
}

.hero-qr-copy {
  min-width: 0;
}

.hero-qr-copy span {
  display: block;
  margin-bottom: 3px;
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-qr-copy strong {
  display: block;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.hero-qr-copy p {
  margin: 5px 0 0;
  color: rgba(244, 239, 229, 0.74);
  font-size: 0.78rem;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(244, 239, 229, 0.46);
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  overflow-wrap: anywhere;
}

.button.primary {
  color: var(--night);
  background: var(--bone);
  border-color: var(--bone);
}

.button.ghost {
  color: var(--bone);
  background: rgba(244, 239, 229, 0.06);
}

.hero-panel {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: rgba(8, 11, 11, 0.48);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  min-height: 58px;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  color: rgba(244, 239, 229, 0.8);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
}

.hero-panel span:last-child {
  border-right: 0;
}

.media-tabs {
  position: absolute;
  right: 44px;
  top: 112px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.media-tab {
  min-width: 78px;
  min-height: 34px;
  padding: 8px 11px;
  color: rgba(244, 239, 229, 0.76);
  background: rgba(8, 11, 11, 0.44);
  border: 1px solid rgba(244, 239, 229, 0.28);
  border-radius: 4px;
  font: inherit;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.media-tab.is-active,
.media-tab:hover {
  color: var(--night);
  background: var(--bone);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  min-height: 0;
  background: var(--line);
}

.signal-strip img {
  width: 100%;
  height: clamp(210px, 15vw, 280px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.72) contrast(1.08);
}

.signal-strip img:nth-child(1) {
  object-position: 64% 46%;
  filter: saturate(0.9) contrast(1.08) brightness(1.02);
}

.signal-strip img:nth-child(2) {
  object-position: 56% 46%;
  filter: saturate(0.88) contrast(1.08) brightness(1.02);
}

.signal-strip img:nth-child(3) {
  object-position: 42% 42%;
  filter: saturate(0.88) contrast(1.1) brightness(1.04);
}

.signal-strip img:nth-child(4) {
  object-position: 43% 50%;
}

.signal-strip img:nth-child(5) {
  object-position: 46% 50%;
  filter: saturate(0.92) contrast(1.16) brightness(0.92);
}

.signal-strip img:nth-child(6) {
  object-position: 44% 46%;
  filter: saturate(0.84) contrast(1.1) brightness(1.02);
}

.signal-strip img:nth-child(7) {
  object-position: 50% 50%;
  filter: saturate(1.08) contrast(1.16) brightness(0.88);
}

.signal-strip img:nth-child(8) {
  object-position: 50% 42%;
}

.signal-strip .signal-strip-banner {
  grid-column: span 2;
  object-position: center 50%;
  filter: saturate(0.9) contrast(1.12) brightness(0.9);
}

.section {
  width: min(1240px, calc(100% - 88px));
  margin: 0 auto;
  padding: 112px 0;
}

.profile {
  display: grid;
  grid-template-columns: 0.16fr minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: 54px;
  align-items: start;
}

.profile-copy p,
.stage-copy p,
.timeline p,
.connection-panel p,
.reason-grid p,
.work-grid p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.profile-copy p,
.stage-copy p {
  max-width: 820px;
  font-size: 1.12rem;
  font-weight: 400;
}

.profile-credo {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-top: 30px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(185, 135, 78, 0.42);
  color: var(--bone);
  font-family: var(--font-display);
}

.profile-credo strong {
  font-size: clamp(1.24rem, 1.7vw, 1.86rem);
  line-height: 1.08;
}

.profile-credo span {
  color: rgba(244, 239, 229, 0.78);
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 600;
  line-height: 1.22;
}

.profile-palladion-card {
  position: relative;
  isolation: isolate;
  max-width: 820px;
  margin: 28px 0 0;
  padding: clamp(20px, 2.3vw, 30px);
  min-height: clamp(210px, 16vw, 270px);
  overflow: hidden;
  contain: paint;
  border: 1px solid rgba(154, 194, 235, 0.22);
  background:
    linear-gradient(105deg, rgba(3, 8, 15, 0.98) 0%, rgba(4, 13, 25, 0.92) 42%, rgba(4, 13, 25, 0.7) 72%, rgba(4, 13, 25, 0.38) 100%),
    url("assets/images/palladion-banner-card.jpg") 36% 54% / cover no-repeat;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.profile-palladion-card::before {
  content: "";
  position: absolute;
  inset: -18% -10% -14% 28%;
  z-index: -1;
  background: url("assets/images/palladion-banner-card.jpg") 48% 52% / cover no-repeat;
  opacity: 0.34;
  filter: saturate(1.08) contrast(1.18);
  mix-blend-mode: screen;
  transform: scale(1.04);
}

.profile-palladion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(154, 194, 235, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 194, 235, 0.04) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.36;
}

.profile-palladion-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-palladion-card strong {
  display: block;
  max-width: 520px;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.45vw, 1.65rem);
  line-height: 1.08;
}

.profile-palladion-card p {
  max-width: 580px;
  margin: 14px 0 0;
  color: rgba(229, 238, 248, 0.78);
}

.profile-signals {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.profile-signals span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-business-stack {
  display: grid;
  grid-template-columns: 0.92fr 0.68fr;
  grid-template-rows: minmax(230px, 1fr) minmax(190px, 0.82fr);
  gap: 10px;
  min-height: clamp(500px, 42vw, 680px);
}

.profile-business-stack figure,
.profile-portrait {
  margin: 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  contain: paint;
  border: 1px solid var(--line);
  background: #050a14;
}

.profile-business-main {
  grid-row: 1 / -1;
}

.profile-business-stack img,
.profile-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.98);
  transition: transform 700ms ease, filter 700ms ease;
}

.profile-business-main img {
  object-position: 38% 36%;
  transform: scale(1.02);
}

.profile-business-side:nth-of-type(2) img {
  object-position: 50% 30%;
  filter: saturate(0.88) contrast(1.03) brightness(0.98);
  transform: scale(1.01);
}

.profile-business-side:last-of-type img {
  object-position: 52% 30%;
  transform: scale(1.08);
}

.profile-business-stack figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 15, 0.02), rgba(3, 8, 15, 0.58)),
    linear-gradient(90deg, rgba(3, 8, 15, 0.12), transparent 52%);
  pointer-events: none;
}

.profile-business-stack figure:hover img {
  transform: scale(1.055);
  filter: saturate(0.96) contrast(1.12) brightness(1.04);
}

.profile-business-main figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.18;
}

.mission-interface {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: clamp(104px, 8vw, 146px) 44px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 10, 20, 0.98) 0%, rgba(5, 10, 20, 0.88) 52%, rgba(5, 10, 20, 0.62) 100%),
    radial-gradient(circle at 72% 30%, rgba(82, 152, 212, 0.34), transparent 34%),
    linear-gradient(0deg, rgba(5, 10, 20, 0.98) 0%, rgba(5, 10, 20, 0.56) 54%, rgba(10, 28, 46, 0.7) 100%),
    url("assets/images/kesselhaus-blue-audience.jpg") center 48% / cover no-repeat;
}

.mission-interface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 239, 229, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 239, 229, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.18;
}

.mission-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.42fr);
  grid-template-areas:
    "mission-copy mission-side"
    "mission-beats mission-side";
  gap: clamp(46px, 6.2vw, 104px);
  align-items: stretch;
  border-top: 1px solid rgba(154, 194, 235, 0.28);
  padding: clamp(30px, 3.2vw, 46px) 0 0;
}

.mission-copy {
  grid-area: mission-copy;
  min-width: 0;
  padding: 0;
}

.mission-copy h2 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 3.9vw, 4.85rem);
  line-height: 1.02;
}

.mission-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(244, 239, 229, 0.82);
  font-size: clamp(1.04rem, 1.16vw, 1.24rem);
}

.mission-beats {
  grid-area: mission-beats;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  border-top: 1px solid rgba(244, 239, 229, 0.24);
  border-left: 1px solid rgba(244, 239, 229, 0.16);
}

.mission-beats span {
  min-height: 112px;
  padding: 18px 16px;
  border-right: 1px solid rgba(244, 239, 229, 0.16);
  border-bottom: 1px solid rgba(244, 239, 229, 0.16);
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.18;
}

.mission-beats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--signal);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.mission-side {
  grid-area: mission-side;
  display: grid;
  gap: 18px;
  align-content: start;
}

.mission-visual {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(154, 194, 235, 0.26);
  background: rgba(5, 10, 20, 0.56);
}

.mission-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 46%;
  filter: saturate(0.78) contrast(1.08);
}

.mission-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(5, 10, 20, 0.78) 100%);
  pointer-events: none;
}

.mission-visual figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

.mission-proof {
  display: grid;
  align-content: center;
  padding: 0;
  border: 1px solid rgba(154, 194, 235, 0.18);
  background: rgba(5, 10, 20, 0.42);
}

.mission-proof span {
  display: grid;
  gap: 4px;
  min-height: auto;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(244, 239, 229, 0.18);
  color: rgba(244, 239, 229, 0.72);
  font-size: 0.95rem;
}

.mission-proof strong {
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.05;
}

.credo {
  padding: clamp(100px, 8vw, 138px) 44px;
  background:
    linear-gradient(90deg, rgba(5, 10, 20, 0.98), rgba(7, 24, 44, 0.88)),
    linear-gradient(180deg, rgba(79, 144, 196, 0.22), rgba(5, 10, 20, 0.88) 44%),
    url("assets/images/spark-kesselhaus-stage.jpg") center 42% / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credo-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 0.82fr) minmax(430px, 0.88fr);
  gap: clamp(58px, 5.5vw, 92px);
  align-items: start;
}

.credo-head {
  display: grid;
  gap: 22px;
}

.credo h2 {
  max-width: 640px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 2.85vw, 3.6rem);
  line-height: 1.04;
}

.credo-manifest {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 30px 0 0;
  border-top: 1px solid rgba(244, 239, 229, 0.26);
  font-family: var(--font-lead);
  color: var(--bone);
}

.credo-flow {
  margin: 0;
  color: rgba(244, 239, 229, 0.92);
  font-size: clamp(1.06rem, 1.22vw, 1.28rem);
  font-weight: 400;
  line-height: 1.34;
}

.credo-intro {
  color: var(--bone);
  font-size: clamp(1.16rem, 1.3vw, 1.44rem);
  font-weight: 700;
  line-height: 1.2;
}

.credo-lines {
  display: grid;
  border-top: 1px solid rgba(244, 239, 229, 0.24);
}

.credo-lines span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(244, 239, 229, 0.18);
  color: rgba(244, 239, 229, 0.86);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.18vw, 1.2rem);
  font-weight: 600;
  line-height: 1.2;
}

.credo-final {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(185, 135, 78, 0.55);
  color: var(--bone);
  font-weight: 700;
  line-height: 1.24;
}

.connection-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: end;
  min-height: 640px;
  border-top: 1px solid var(--line);
  padding: clamp(46px, 5vw, 76px) clamp(22px, 3.4vw, 48px);
  overflow: hidden;
  max-width: 100%;
  contain: paint;
  background: #030b14;
}

.connection-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 15, 0.96) 0%, rgba(3, 8, 15, 0.78) 42%, rgba(3, 8, 15, 0.46) 70%, rgba(3, 8, 15, 0.92) 100%),
    linear-gradient(180deg, rgba(3, 8, 15, 0.2), rgba(3, 8, 15, 0.92)),
    url("assets/images/generated-suit-portrait.jpg"),
    url("assets/images/private-doorway-dialogue.jpg");
  background-size: auto, auto, min(42vw, 560px) auto, cover;
  background-position: center, center, right 8% center, 42% 46%;
  background-repeat: no-repeat;
  filter: saturate(0.82) contrast(1.06) brightness(0.84);
  transform: scale(1.01);
  z-index: -2;
}

.connection-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(154, 194, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 194, 235, 0.035) 1px, transparent 1px);
  background-size: 118px 118px;
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

.connection-lead {
  position: relative;
  z-index: 1;
}

.connection-lead h2 {
  max-width: 700px;
}

.connection-lead p {
  max-width: 560px;
  font-size: 1.12rem;
}

.connection-relevance {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(154, 194, 235, 0.22);
  color: rgba(229, 238, 248, 0.84);
  line-height: 1.42;
}

.connection-relevance strong {
  display: block;
  margin-bottom: 8px;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: clamp(1.06rem, 1.2vw, 1.28rem);
  line-height: 1.16;
}

.connection-tag {
  margin-bottom: 18px;
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.connection-axis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 620px;
  margin-top: 34px;
  border-top: 1px solid rgba(154, 194, 235, 0.22);
  border-left: 1px solid rgba(154, 194, 235, 0.22);
}

.connection-axis span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px;
  border-right: 1px solid rgba(154, 194, 235, 0.22);
  border-bottom: 1px solid rgba(154, 194, 235, 0.22);
  background: rgba(3, 8, 15, 0.36);
  color: rgba(244, 239, 229, 0.88);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.connection-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.connection-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px 18px;
  align-items: start;
  min-height: 218px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 8, 15, 0.56);
  backdrop-filter: blur(8px);
}

.connection-index {
  grid-row: span 3;
  color: rgba(154, 194, 235, 0.7);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
}

.connection-kicker {
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.connection-list h3 {
  margin-bottom: 0;
}

.connection-list p {
  grid-column: 2;
  margin-bottom: 0;
}

.work-grid article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 229, 0.035);
}

.reason {
  padding-top: 42px;
}

.reason-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 0.86fr);
  gap: 54px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.reason-grid h2 {
  max-width: 760px;
}

.reason-grid p {
  max-width: 720px;
  font-size: 1.12rem;
}

.motion-field {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: end;
  padding: clamp(72px, 7vw, 112px) 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 20%, rgba(142, 165, 116, 0.26), transparent 34%),
    linear-gradient(95deg, rgba(3, 7, 5, 0.98), rgba(18, 33, 22, 0.82) 47%, rgba(5, 12, 13, 0.9)),
    url("assets/images/bundeswehr-polygon-window.jpg") center / cover no-repeat;
  border-top: 1px solid rgba(176, 205, 146, 0.2);
  border-bottom: 1px solid rgba(176, 205, 146, 0.2);
}

.motion-field::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(188, 214, 150, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 214, 150, 0.044) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.42;
}

.motion-copy {
  width: min(560px, 100%);
}

.motion-copy .eyebrow {
  color: var(--signal);
}

.motion-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 3.4vw, 4.45rem);
  line-height: 1.03;
}

.motion-copy p:not(.eyebrow) {
  color: rgba(229, 238, 248, 0.76);
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
}

.motion-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid rgba(176, 205, 146, 0.24);
  background: rgba(3, 9, 9, 0.34);
}

.motion-facts span {
  min-height: 48px;
  padding: 14px 16px;
  border-right: 1px solid rgba(176, 205, 146, 0.18);
  border-bottom: 1px solid rgba(176, 205, 146, 0.18);
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
}

.motion-facts span:nth-child(2n) {
  border-right: 0;
}

.motion-facts span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.motion-dialogue-card {
  position: relative;
  min-height: 220px;
  margin: 26px 0 0;
  overflow: hidden;
  max-width: 100%;
  contain: paint;
  border: 1px solid rgba(176, 205, 146, 0.22);
  background: #050a14;
}

.motion-dialogue-card img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: 56% 43%;
  filter: saturate(0.92) contrast(1.12) brightness(1.08);
  transform: scale(1.12);
}

.motion-dialogue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 11, 0.04), rgba(2, 6, 11, 0.7));
}

.motion-dialogue-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.motion-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(360px, 1.35fr) minmax(190px, 0.72fr);
  gap: 10px;
  align-items: stretch;
  perspective: 1200px;
}

.motion-clip {
  position: relative;
  min-height: 232px;
  margin: 0;
  overflow: hidden;
  max-width: 100%;
  contain: paint;
  border: 1px solid rgba(154, 194, 235, 0.22);
  background: #050a14;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.motion-clip-primary {
  grid-column: 1 / -1;
  min-height: clamp(380px, 30vw, 560px);
}

.motion-clip video,
.motion-clip img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.12) brightness(1.16);
  transform: scale(1.08);
  transition: transform 900ms ease, filter 900ms ease;
}

.motion-clip-primary video {
  object-position: 50% 47%;
  filter: saturate(1.14) contrast(1.18) brightness(1.28);
  transform: scale(1.14);
  animation: armorBreathe 9s ease-in-out infinite alternate;
}

.motion-clip-bridge img {
  object-fit: cover;
  object-position: 48% 48%;
  filter: saturate(1.05) contrast(1.08) brightness(1.18);
  transform: scale(1.04);
}

.motion-clip-signal img {
  object-position: 42% 45%;
  filter: saturate(0.96) contrast(1.1) brightness(1.12);
  transform: scale(1.06);
}

.motion-clip:hover video,
.motion-clip:hover img,
.motion-clip:focus-within video,
.motion-clip:focus-within img {
  transform: scale(1.16);
  filter: saturate(1.14) contrast(1.18) brightness(1.26);
}

.motion-clip-primary:hover video,
.motion-clip-primary:focus-within video {
  transform: scale(1.2);
}

.motion-clip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 8, 15, 0.02), rgba(3, 8, 15, 0.6));
  pointer-events: none;
}

.motion-clip figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.18;
}

@keyframes armorBreathe {
  from {
    transform: scale(1.08) translate3d(-0.7%, 0, 0);
  }
  to {
    transform: scale(1.18) translate3d(1.1%, -0.6%, 0);
  }
}

@keyframes bluePolygonBreath {
  0% {
    opacity: 0.14;
    transform: scale(1) translate3d(-0.4%, -0.2%, 0);
    background-position: 0 0, 0 0, center, 50% 48%;
  }
  100% {
    opacity: 0.26;
    transform: scale(1.035) translate3d(0.5%, 0.3%, 0);
    background-position: 24px 18px, -18px 16px, center, 52% 50%;
  }
}

.service-window {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(340px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  width: min(100% - 88px, 1240px);
  margin: clamp(54px, 7vw, 104px) auto;
  padding: clamp(34px, 4.5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(4, 11, 18, 0.98), rgba(6, 21, 36, 0.86) 46%, rgba(13, 31, 47, 0.74)),
    url("assets/images/bundeswehr-polygon-window.jpg") center / cover no-repeat;
  border: 1px solid rgba(154, 194, 235, 0.24);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.service-window::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 18%, rgba(67, 130, 190, 0.26), transparent 38%),
    linear-gradient(90deg, rgba(5, 12, 22, 0.82), rgba(5, 13, 24, 0.42));
  mix-blend-mode: screen;
  opacity: 0.82;
}

.service-window::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(154, 194, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 194, 235, 0.036) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.34;
}

.service-copy {
  align-self: center;
}

.service-copy .eyebrow,
.service-palladion .eyebrow {
  color: var(--signal);
}

.service-copy h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 3.25vw, 4.25rem);
  line-height: 1.03;
}

.service-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(229, 238, 248, 0.78);
  font-size: clamp(1rem, 1.05vw, 1.16rem);
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin-top: 30px;
  border: 1px solid rgba(154, 194, 235, 0.18);
  background: rgba(154, 194, 235, 0.12);
}

.service-facts span {
  min-height: 64px;
  padding: 16px;
  background: rgba(4, 10, 18, 0.64);
  color: rgba(244, 239, 229, 0.9);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.service-visual {
  position: relative;
  min-height: clamp(320px, 33vw, 500px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 194, 235, 0.25);
  background: rgba(2, 8, 14, 0.84);
}

.service-visual video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.72) contrast(1.2) brightness(0.8);
  transform: scale(1.08);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 8, 14, 0.08), rgba(2, 8, 14, 0.72));
}

.service-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--bone);
  font-family: var(--font-display);
  font-weight: 700;
}

.service-palladion {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  min-height: 180px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(154, 194, 235, 0.18);
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.96), rgba(7, 20, 36, 0.78)),
    url("assets/images/palladion-context.jpg") 72% 50% / cover no-repeat;
}

.service-palladion h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.1vw, 2.6rem);
  line-height: 1.02;
}

.service-palladion p:last-child {
  margin: 0;
  color: rgba(229, 238, 248, 0.74);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
}

.working {
  padding-top: 42px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.bridge-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding-top: 44px;
  padding-bottom: 34px;
}

.bridge-rail {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.bridge-frame {
  position: relative;
  margin: 0;
}

.bridge-frame::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  width: 1px;
  height: 28px;
  background: rgba(185, 135, 78, 0.58);
}

.bridge-frame img {
  display: block;
  width: 100%;
  height: clamp(430px, 34vw, 560px);
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid var(--line);
  filter: saturate(0.82) contrast(1.08);
}

.bridge-frame-left {
  margin-top: 0;
}

.bridge-frame-center {
  margin-top: 0;
}

.bridge-frame-right {
  margin-top: 0;
}

.bridge-frame-left img {
  object-position: 50% 50%;
}

.bridge-frame-center img {
  object-position: 46% 42%;
}

.bridge-frame-right img {
  object-position: 76% 44%;
  filter: saturate(0.92) contrast(1.16) brightness(1.06);
}

.bridge-frame figcaption {
  margin-top: 12px;
  color: rgba(244, 239, 229, 0.76);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.timeline-section {
  padding-top: 76px;
}

.timeline-lead {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  padding: 0 0 36px;
  border-bottom: 1px solid var(--line);
}

.timeline-lead h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.timeline-lead p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-left: 1px solid var(--line);
}

.timeline article {
  min-height: 372px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 229, 0.026);
}

.timeline article:hover {
  background: rgba(244, 239, 229, 0.045);
}

time {
  display: block;
  margin-bottom: 26px;
  color: var(--signal);
  font-family: var(--font-display);
  font-weight: 600;
}

.timeline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.timeline-facts span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid rgba(154, 194, 235, 0.18);
  background: rgba(154, 194, 235, 0.055);
  color: rgba(229, 238, 248, 0.84);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.1;
  max-width: 100%;
  white-space: normal;
  text-transform: uppercase;
}

.image-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 44px;
  padding: 112px 44px;
  background:
    linear-gradient(135deg, rgba(5, 10, 20, 0.98), rgba(8, 22, 36, 0.94)),
    url("assets/images/kesselhaus-blue-audience.jpg") center center / cover fixed;
  color: var(--bone);
  border-top: 1px solid rgba(154, 194, 235, 0.2);
  border-bottom: 1px solid rgba(154, 194, 235, 0.18);
}

.image-stage .eyebrow {
  color: var(--signal);
}

.stage-copy {
  position: sticky;
  top: 96px;
  align-self: start;
}

.stage-copy p {
  color: rgba(229, 238, 248, 0.72);
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stage-grid figure {
  margin: 0;
  min-height: 300px;
  overflow: hidden;
  background: rgba(10, 20, 32, 0.92);
  border: 1px solid rgba(154, 194, 235, 0.16);
}

.stage-grid figure.wide {
  grid-column: span 2;
}

.stage-grid figure.stage-tall {
  min-height: clamp(430px, 34vw, 580px);
}

.stage-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.1) brightness(0.98);
  transition: transform 700ms ease, filter 700ms ease;
}

.stage-grid img.crop-people-top {
  object-position: center 18%;
}

.stage-grid img.crop-fieldmade {
  object-position: center 38%;
}

.stage-grid img.crop-venue {
  object-position: center 34%;
}

.stage-grid img.crop-palladion {
  object-fit: contain;
  object-position: center center;
  background: var(--night);
}

.stage-grid img.crop-civil-network {
  object-position: 54% 38%;
}

.stage-grid img.crop-civil-conversation {
  object-position: 46% 38%;
}

.stage-grid img.crop-civil-close-situation {
  object-position: 40% 34%;
}

.stage-grid img.crop-civil-blue {
  object-position: 66% 45%;
  filter: saturate(1.04) contrast(1.12) brightness(1.02);
}

.stage-grid img.crop-spark-blue-room {
  object-position: 50% 44%;
}

.stage-grid img.crop-uniform-dialogue {
  object-position: 36% 34%;
}

.stage-grid img.crop-motorworld {
  object-position: center 44%;
}

.stage-grid img.crop-motorworld-ecosystem {
  object-position: center 42%;
}

.stage-grid img.crop-palladion-banner {
  object-position: 38% 50%;
  filter: saturate(1.06) contrast(1.14) brightness(0.96);
}

.stage-grid img.crop-fieldmade-tent {
  object-position: 42% 48%;
}

.stage-grid img.crop-private-poster {
  object-position: 42% 46%;
}

.stage-grid img.crop-private-doorway {
  object-position: 40% 46%;
}

.stage-grid img.crop-strategic-dialogue {
  object-position: 54% 42%;
}

.stage-grid img.crop-general-media {
  object-position: 40% 42%;
}

.stage-grid img.crop-kesselhaus-speaker {
  object-position: 58% 48%;
}

.stage-grid figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.14) brightness(1.06);
}

.contact-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 116px 44px 108px;
  overflow: hidden;
  max-width: 100%;
  contain: paint;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #030b14;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 8, 15, 0.97) 0%, rgba(3, 8, 15, 0.82) 42%, rgba(3, 8, 15, 0.45) 70%, rgba(3, 8, 15, 0.88) 100%),
    linear-gradient(180deg, rgba(3, 8, 15, 0.42), rgba(3, 8, 15, 0.9)),
    url("assets/images/generated-suit-portrait.jpg"),
    url("assets/images/kesselhaus-blue-audience.jpg");
  background-size:
    auto,
    auto,
    min(38vw, 500px) auto,
    cover;
  background-position:
    center,
    center,
    right 12% center,
    center;
  background-repeat: no-repeat;
  filter: saturate(0.78) contrast(1.08) brightness(0.82);
  transform: scale(1.01);
}

@supports not (overflow: clip) {
  .hero-media,
  .profile-business-stack figure,
  .profile-palladion-card,
  .connection-panel,
  .motion-dialogue-card,
  .motion-clip,
  .contact-section {
    overflow: hidden;
  }
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(154, 194, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 194, 235, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.32;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.contact-copy {
  max-width: 890px;
}

.contact-section h2 {
  max-width: 930px;
  margin-bottom: 18px;
  color: var(--paper);
}

.contact-section p {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(229, 238, 248, 0.78);
  overflow-wrap: anywhere;
}

.contact-intents {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 830px;
  border-top: 1px solid rgba(154, 194, 235, 0.22);
  border-left: 1px solid rgba(154, 194, 235, 0.22);
}

.contact-intents span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-right: 1px solid rgba(154, 194, 235, 0.22);
  border-bottom: 1px solid rgba(154, 194, 235, 0.22);
  background: rgba(3, 8, 15, 0.42);
  color: rgba(244, 239, 229, 0.9);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-panel {
  padding: 22px;
  border: 1px solid rgba(154, 194, 235, 0.26);
  background: rgba(3, 8, 15, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.contact-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: min(100%, 330px);
}

.contact-actions .button {
  width: 100%;
  min-height: 52px;
  text-transform: none;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(244, 239, 229, 0.82);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--bone);
}

.statement-page {
  padding-top: 72px;
  min-height: 100vh;
}

.statement-section {
  padding-top: clamp(84px, 12vw, 150px);
}

.statement-section h1 {
  max-width: 900px;
  margin: 0 0 28px;
  color: var(--bone);
  font-family: var(--font-lead);
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 0.96;
}

.statement-lead {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 64px);
  color: rgba(229, 238, 248, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(154, 194, 235, 0.22);
  border-left: 1px solid rgba(154, 194, 235, 0.22);
}

.statement-grid article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(154, 194, 235, 0.22);
  border-bottom: 1px solid rgba(154, 194, 235, 0.22);
  background: linear-gradient(150deg, rgba(10, 22, 35, 0.78), rgba(4, 10, 18, 0.42));
}

.statement-grid h2 {
  margin: 0 0 18px;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
}

.statement-grid p {
  color: rgba(229, 238, 248, 0.72);
}

.statement-grid .button {
  margin-top: 18px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .credo-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .credo h2 {
    max-width: 760px;
  }

  .mission-beats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    --header-offset: 74px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px 12px;
    padding: 10px 22px;
    background: rgba(5, 13, 24, 0.9);
    border-color: var(--line);
    backdrop-filter: blur(18px);
  }

  .brand {
    grid-column: 1;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .site-header.nav-collapsible .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 0 2px;
    color: rgba(244, 239, 229, 0.82);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.nav-collapsible .primary-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 0;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .site-header.nav-collapsible.nav-open .primary-nav {
    max-height: 260px;
    padding: 8px 0 2px;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid rgba(244, 239, 229, 0.14);
    background: rgba(3, 8, 15, 0.42);
    font-size: 0.68rem;
    line-height: 1;
  }

  .language-nav {
    grid-column: 2;
    justify-self: end;
    margin-left: auto;
    gap: 4px;
  }

  .section-rail {
    right: 12px;
    width: 126px;
    gap: 0;
    padding: 10px 0;
  }

  .section-rail a {
    position: relative;
    width: 100%;
    min-height: 28px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 6px;
    padding: 4px 0;
  }

  .section-rail span {
    font-size: 0.5rem;
  }

  .section-rail strong {
    font-size: 0.5rem;
  }

  .section-rail a.is-active {
    transform: none;
  }

  .hero {
    min-height: 88vh;
    padding: 118px 22px 112px;
  }

  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .credo {
    padding: 86px 22px;
  }

  .credo-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .credo h2 {
    font-size: 2.7rem;
  }

  .credo-manifest {
    padding-top: 24px;
  }

  .media-tabs {
    right: 22px;
    top: 132px;
  }

  .hero-panel {
    left: 0;
    right: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel span {
    min-height: 48px;
  }

  .hero-qr {
    display: none;
  }

  .signal-strip,
  .profile,
  .mission-inner,
  .credo-inner,
  .connection-panel,
  .motion-field,
  .service-window,
  .service-palladion,
  .reason-grid,
  .work-grid,
  .bridge-gallery,
  .timeline,
  .image-stage,
  .statement-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-strip img {
    height: clamp(180px, 38vw, 280px);
    object-position: center top;
  }

  .profile-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-signals span:last-child {
    grid-column: span 2;
  }

  .section,
  .contact-section {
    width: min(100% - 44px, 1240px);
    padding-block: 82px;
  }

  .contact-section {
    width: 100%;
    padding: 88px 22px;
  }

  .contact-inner {
    gap: 28px;
  }

  .contact-intents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-panel {
    width: 100%;
    max-width: 420px;
  }

  .profile {
    gap: 28px;
  }

  .profile-business-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(280px, 46vw) minmax(220px, 34vw);
    min-height: auto;
  }

  .profile-business-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .mission-interface {
    min-height: auto;
    padding: 92px 22px 72px;
  }

  .mission-inner {
    grid-template-areas:
      "mission-copy"
      "mission-side"
      "mission-beats";
    gap: 24px;
  }

  .mission-copy {
    padding: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .mission-copy h2 {
    font-size: clamp(2.55rem, 11vw, 4.4rem);
  }

  .mission-beats {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .mission-side {
    gap: 14px;
  }

  .mission-visual {
    aspect-ratio: 4 / 3;
  }

  .mission-proof span {
    min-height: auto;
    padding: 14px 16px;
  }

  .mission-proof {
    padding: 0;
    border: 1px solid rgba(154, 194, 235, 0.18);
    background: rgba(5, 10, 20, 0.38);
  }

  .credo-inner {
    gap: 34px;
  }

  .connection-lead {
    position: static;
  }

  .connection-panel {
    min-height: auto;
    padding: 42px 22px;
  }

  .connection-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .connection-list article {
    min-height: 188px;
  }

  .timeline-lead {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 28px;
  }

  .connection-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .motion-field {
    padding: 72px 24px;
  }

  .motion-stage {
    grid-template-columns: 1fr;
  }

  .motion-clip-primary,
  .motion-clip {
    grid-row: auto;
    min-height: clamp(250px, 52vw, 420px);
  }

  .service-window {
    width: min(100% - 44px, 1240px);
    padding: 32px 22px;
  }

  .service-palladion {
    min-height: auto;
    padding: 24px 20px;
  }

  .service-visual {
    min-height: clamp(260px, 54vw, 390px);
  }

  .reason,
  .working {
    padding-top: 24px;
  }

  .bridge-gallery {
    gap: 28px;
    padding-top: 34px;
  }

  .bridge-rail {
    display: none;
  }

  .bridge-frame,
  .bridge-frame-left,
  .bridge-frame-center,
  .bridge-frame-right {
    margin-top: 0;
  }

  .bridge-frame::before {
    display: none;
  }

  .bridge-frame img {
    height: clamp(320px, 68vw, 420px);
  }

  .timeline article {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .image-stage {
    padding: 82px 22px;
  }

  .stage-copy {
    position: static;
  }
}

@media (max-width: 600px) {
  .site-header {
    --header-offset: 74px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px 10px;
    padding: 8px 18px 9px;
  }

  .brand span:last-child {
    display: none;
  }

  .primary-nav {
    gap: 5px;
    padding-top: 2px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .site-header.nav-collapsible .primary-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .primary-nav a {
    justify-content: center;
    min-height: 44px;
    padding: 10px 8px;
    font-size: 0.6rem;
    text-align: center;
  }

  .language-nav {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
    margin-left: 0;
  }

  .language-link {
    min-width: 0;
    min-height: 44px;
    padding: 8px 4px;
    font-size: 0.56rem;
    white-space: nowrap;
  }

  .language-easy {
    max-width: none;
    text-align: center;
    line-height: 1;
  }

  .language-easy .language-long {
    display: none;
  }

  .language-easy .language-short {
    display: inline;
  }

  .section-rail {
    left: 12px;
    right: 12px;
    bottom: 12px;
    top: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    gap: 6px;
    padding: 6px;
    overflow-x: auto;
    transform: none;
    border: 1px solid rgba(154, 194, 235, 0.2);
    background: rgba(3, 8, 15, 0.82);
    backdrop-filter: blur(18px);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .section-rail::-webkit-scrollbar {
    display: none;
  }

  .section-rail a {
    flex: 0 0 auto;
    width: auto;
    min-height: 34px;
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 7px;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid rgba(154, 194, 235, 0.16);
    background: rgba(13, 28, 44, 0.54);
    opacity: 0.72;
    transform: none;
  }

  .section-rail a:hover,
  .section-rail a:focus-visible,
  .section-rail a.is-active {
    transform: none;
    border-color: rgba(195, 137, 66, 0.64);
    background: rgba(195, 137, 66, 0.16);
  }

  .section-rail span,
  .section-rail strong {
    font-size: 0.58rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .credo h2 {
    font-size: 2.15rem;
  }

  .credo-flow {
    font-size: 1rem;
  }

  .credo-intro {
    font-size: 1.45rem;
  }

  .hero {
    min-height: max(620px, calc(100svh - 56px));
    align-items: start;
    padding: calc(var(--header-offset) + 20px) 20px 104px;
  }

  .hero-content,
  .lead,
  .hero .eyebrow {
    width: 100%;
    max-width: 340px;
  }

  .hero h1 {
    margin-bottom: 18px;
  }

  .hero .lead {
    font-size: 1.03rem;
    line-height: 1.34;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .media-tabs {
    left: 20px;
    right: auto;
    width: calc(100% - 40px);
    max-width: 300px;
    top: auto;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .media-tab {
    min-width: 0;
    padding-inline: 4px;
    font-size: 0.62rem;
  }

  .hero-panel {
    display: none;
  }

  .section-rail {
    display: none;
  }

  .hero .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }

  .connection-panel {
    padding: 34px 18px;
  }

  .profile-business-stack {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 8px;
  }

  .profile-business-stack figure {
    min-height: 240px;
  }

  .profile-business-main {
    min-height: 380px;
  }

  .profile-business-main img {
    object-position: 39% 34%;
  }

  .connection-panel::before {
    background-position: 43% 46%;
  }

  .connection-axis,
  .connection-list {
    grid-template-columns: 1fr;
  }

  .connection-list article {
    min-height: auto;
    padding: 20px 16px;
  }

  .motion-field {
    padding: 68px 20px;
  }

  .motion-copy h2 {
    font-size: clamp(2rem, 13vw, 3.1rem);
  }

  .motion-clip-primary,
  .motion-clip {
    min-height: 246px;
  }

  .service-window {
    width: min(100% - 32px, 1240px);
    margin-block: 42px;
    padding: 26px 18px;
  }

  .service-copy h2 {
    font-size: clamp(2rem, 12vw, 3.15rem);
  }

  .service-facts {
    grid-template-columns: 1fr;
  }

  .service-facts span {
    min-height: 52px;
  }

  .service-visual {
    min-height: 238px;
  }

  .stage-grid {
    grid-template-columns: 1fr;
  }

  .stage-grid figure.wide {
    grid-column: auto;
  }

  .contact-section {
    padding: 76px 22px 82px;
  }

  .contact-section::before {
    background-size:
      auto,
      auto,
      78vw auto,
      cover;
    background-position:
      center,
      center,
      right -18vw center,
      center;
  }

  .contact-section h2 {
    font-size: clamp(2.25rem, 13vw, 3.5rem);
  }

  .contact-section p {
    font-size: 1rem;
  }

  .contact-intents {
    grid-template-columns: 1fr;
  }

  .contact-intents span {
    min-height: 54px;
  }

  .contact-panel {
    max-width: none;
    padding: 18px;
  }

  footer {
    flex-direction: column;
    padding: 24px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body::before {
    animation: none !important;
  }
}
