:root {
  --blue: #075fe6;
  --blue-2: #0b74ff;
  --navy: #071c38;
  --navy-2: #0b294d;
  --ink: #071529;
  --muted: #5f6c7d;
  --line: #dfe6ef;
  --paper: #ffffff;
  --surface: #f6f9fd;
  --surface-2: #eef4fb;
  --warm: #f7f5f1;
  --panel: rgba(255,255,255,.92);
  --radius: 10px;
  --section-space: 76px;
  --inner-space: 42px;
  --headline-scale: 1;
  --blue-strength: 1;
  --shadow: 0 22px 70px rgba(7, 28, 56, .11);
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="studio-cool"] {
  --blue: #006cff;
  --blue-2: #35a2ff;
  --navy: #06182e;
  --navy-2: #082644;
  --surface: #f4f7fb;
  --surface-2: #e8f1fa;
}
html[data-theme="soft-warm"] {
  --blue: #0b63d8;
  --blue-2: #4b8de8;
  --navy: #10233b;
  --surface: #faf7f1;
  --surface-2: #f1ece3;
  --warm: #f4eee3;
}
html[data-theme="high-contrast"] {
  --blue: #005eff;
  --blue-2: #1d7cff;
  --navy: #020f22;
  --navy-2: #031731;
  --surface: #f7fbff;
  --surface-2: #eaf3ff;
}

html[data-type="compact-sans"] {
  --font-main: "Arial", "Helvetica Neue", sans-serif;
  --font-display: "Arial", "Helvetica Neue", sans-serif;
}
html[data-type="editorial-touch"] {
  --font-display: Georgia, "Times New Roman", serif;
}

html[data-contrast="more-light"] .dark-section:not(.showreel):not(.ki) {
  background: var(--surface);
  color: var(--ink);
}
html[data-contrast="more-light"] .audio h2 span { color: var(--blue); }
html[data-contrast="more-light"] .audio-copy p { color: var(--muted); }
html[data-contrast="more-dark"] .belief,
html[data-contrast="more-dark"] .studio,
html[data-contrast="more-dark"] .strategy {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
}
html[data-contrast="more-dark"] .belief .section-label,
html[data-contrast="more-dark"] .studio .eyebrow,
html[data-contrast="more-dark"] .strategy p { color: rgba(255,255,255,.72); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #edf1f5;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
  z-index: 10;
}
.skip-link:focus { left: 8px; }

.lab-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #071c38;
  color: #fff;
  font-size: 13px;
}
.lab-topbar span { opacity: .72; }
.lab-open, .floating-toggle, .icon-btn, .panel-btn, .segmented button {
  cursor: pointer;
}
.lab-open {
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  background: transparent;
  border-radius: 999px;
  padding: 6px 10px;
}

.site-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 28px clamp(28px, 5vw, 78px);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.9);
  position: sticky;
  top: 37px;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.brand {
  text-decoration: none;
  color: var(--blue);
  font-weight: 850;
  letter-spacing: .16em;
  font-size: 24px;
}
.nav { display: flex; gap: 34px; color: var(--ink); font-size: 14px; }
.nav a { text-decoration: none; opacity: .86; }
.nav a:hover { color: var(--blue); opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: calc(var(--radius) * .8);
  padding: 13px 20px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: .2s ease;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(7,95,230,.19);
}
.btn-primary:hover { transform: translateY(-1px); background: color-mix(in srgb, var(--blue) 85%, #000); }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.42); }
.text-link { color: var(--blue); text-decoration: none; font-weight: 750; }

.section {
  padding: var(--section-space) clamp(28px, 5vw, 78px);
}
.section h1, .section h2, .section h3 {
  font-family: var(--font-display);
  letter-spacing: -.055em;
  margin: 0;
  line-height: .96;
}
.eyebrow, .section-label {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 850;
  font-size: 12px;
}
.lead { font-size: clamp(18px, 1.7vw, 24px); line-height: 1.35; color: #0b3769; }

.hero {
  min-height: clamp(600px, 68vh, 840px);
  display: grid;
  grid-template-columns: minmax(360px, .9fr) 1.1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  background:
    radial-gradient(circle at 75% 30%, color-mix(in srgb, var(--blue) 16%, transparent), transparent 27%),
    linear-gradient(90deg, #fff 0 47%, var(--surface) 100%);
}
.hero h1 {
  font-size: calc(clamp(58px, 8vw, 116px) * var(--headline-scale));
  color: var(--ink);
}
.hero .lead { max-width: 560px; margin: 28px 0; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-media {
  min-height: 460px;
  border-radius: 0;
  position: relative;
}
.studio-room {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.72) 25%, rgba(255,255,255,.18) 45%, transparent 100%),
    linear-gradient(135deg, #fff, var(--surface-2));
  overflow: hidden;
}
.studio-room::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 8%;
  width: 42%;
  height: 84%;
  background: repeating-linear-gradient(90deg, #d7c3a6 0 7px, #bfa889 8px 12px);
  opacity: .95;
}
.studio-room::after {
  content: "";
  position: absolute;
  left: 25%;
  top: 42%;
  width: 320px;
  height: 18px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  filter: blur(14px);
  opacity: calc(.25 + .25 * var(--blue-strength));
}
.brand-wall {
  position: absolute;
  right: 17%;
  top: 34%;
  font-size: 34px;
  font-weight: 850;
  letter-spacing: .16em;
  color: var(--blue);
}
.desk {
  position: absolute;
  left: 16%;
  bottom: 28%;
  width: 320px;
  height: 120px;
  border-radius: var(--radius);
  background: linear-gradient(#223246, #0a1422);
  transform: perspective(800px) rotateX(10deg);
}
.screen {
  position: absolute;
  left: 94px; top: -80px;
  width: 140px; height: 78px;
  background: #06182e;
  border: 7px solid #0d2035;
  border-radius: 8px;
}
.screen span {
  display: block;
  margin: 32px 12px;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 5px, transparent 5px 10px);
}
.speaker {
  position: absolute;
  top: -62px;
  width: 48px; height: 70px;
  border-radius: 8px;
  background: #101d2c;
}
.speaker::after {
  content: "";
  position: absolute;
  inset: 17px 8px;
  border-radius: 50%;
  border: 3px solid #546277;
}
.speaker.left { left: 30px; }
.speaker.right { right: 30px; }
.chair {
  position: absolute; left: 34%; bottom: 15%;
  width: 120px; height: 110px;
  background: var(--navy-2);
  border-radius: 42% 42% 22px 22px;
}
.sofa {
  position: absolute; right: 2%; bottom: 11%;
  width: 260px; height: 92px;
  background: var(--navy-2);
  border-radius: 70px 0 0 0;
}
.plant {
  position: absolute; left: 58%; bottom: 33%;
  width: 34px; height: 78px;
  border-left: 4px solid #66805f;
  border-radius: 40%;
}

.belief {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(26px, 6vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.belief-copy {
  max-width: 780px;
  border-left: 1px solid #b9c6d8;
  padding-left: clamp(28px, 5vw, 72px);
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1.22;
}
.belief-copy p { margin: 0 0 18px; }
.belief-copy p:last-child { color: var(--blue); font-size: .82em; }

.dark-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
}
.showreel {
  display: grid;
  grid-template-columns: minmax(260px, .45fr) 1fr;
  gap: 56px;
  align-items: center;
}
.showreel h2 { font-size: clamp(32px, 4vw, 58px); margin: 12px 0 18px; }
.showreel p:not(.eyebrow) { color: rgba(255,255,255,.8); max-width: 390px; }
.filmstrip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 180px;
  position: relative;
  gap: 2px;
}
.thumb {
  position: relative;
  overflow: hidden;
  background: #1b2a3d;
}
.thumb::before {
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(120deg, transparent, rgba(255,255,255,.12), transparent),
    radial-gradient(circle at 50% 40%, var(--thumb, #567), #07111f 70%);
}
.thumb span {
  position: absolute;
  left: 14px;
  bottom: 16px;
  color: #fff;
  font-weight: 800;
}
.thumb-1 { --thumb: #b4c8d8; }
.thumb-2 { --thumb: #8f8f8f; }
.thumb-3 { --thumb: #20242b; }
.thumb-4 { --thumb: #7390b1; }
.thumb-5 { --thumb: #bdd1e4; }
.progress {
  position: absolute; left: 0; right: 0; bottom: -18px; height: 3px;
  background: rgba(255,255,255,.35);
}
.progress span { display:block; height:100%; width:28%; background: var(--blue); }

.awards {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 38px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.awards.compact { padding-top: calc(var(--section-space) * .45); padding-bottom: calc(var(--section-space) * .45); }
.awards p { font-weight: 750; max-width: 460px; margin: 0; }
.award-row {
  display: flex; justify-content: space-between; gap: 28px; align-items: center; flex-wrap: wrap;
  color: #253043;
  font-weight: 800;
}
.award-row span { border-left: 1px solid var(--line); padding-left: 26px; min-height: 34px; display:flex; align-items:center; }

.audio {
  display: grid;
  grid-template-columns: .72fr 1.05fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.audio h2 { font-size: clamp(38px, 4.9vw, 76px); max-width: 680px; }
.audio h2 span { color: color-mix(in srgb, var(--blue) calc(65% + 25% * var(--blue-strength)), #fff); }
.audio p { color: rgba(255,255,255,.78); }
.audio-demo {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 28px;
  align-items: center;
}
.audio-visual {
  min-height: 260px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 52%, rgba(255,255,255,.25), transparent 6%),
    radial-gradient(circle at 50% 52%, transparent 0 8%, rgba(41,132,255,.28) 9% 11%, transparent 12% 16%, rgba(255,255,255,.14) 17% 18%, transparent 19%),
    linear-gradient(145deg, #10345e, #061429);
  position: relative;
}
.drop {
  width: 16px; height: 130px; border-radius: 10px;
  background: linear-gradient(#fff, #0b67f5);
  position: absolute; left: 50%; top: 22%; transform: translateX(-50%);
  box-shadow: 0 0 35px rgba(64,148,255,.7);
}
.audio-visual p {
  position: absolute;
  left: 22px; bottom: 18px;
  margin: 0;
  color: #fff;
  font-weight: 800;
}
.tone-switch p { margin: 0 0 14px; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; color: rgba(255,255,255,.78); }
.tone {
  width: 100%;
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.42);
  display: flex;
  justify-content: space-between;
}
.tone.active { background: var(--blue); border-color: var(--blue); }

.studio {
  display: grid;
  grid-template-columns: .58fr .92fr .42fr;
  gap: 42px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.studio h2 { font-size: clamp(32px, 3.8vw, 56px); margin: 12px 0 18px; }
.studio-photo {
  min-height: 280px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #101b2c, #2d1f19);
}
.studio-photo::before {
  content:"";
  position:absolute; left:0; right:0; top:0; height:55%;
  background: repeating-linear-gradient(90deg, #b08a64 0 7px, #362717 8px 12px);
  opacity:.78;
}
.console {
  position:absolute; left:7%; bottom:16%; width:52%; height:90px;
  background: linear-gradient(#1f2e42, #0c1525);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.console::after {
  content:"";
  position:absolute; inset:28px 18px;
  background: repeating-linear-gradient(90deg, #5e6b7b 0 4px, transparent 4px 12px);
}
.booth {
  position:absolute; right:20%; bottom:16%; width:20%; height:160px;
  border: 3px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
}
.blue-light {
  position:absolute; right:12%; top:0; bottom:0; width:38px;
  background: var(--blue);
  filter: blur(14px);
  opacity: calc(.35 + .25 * var(--blue-strength));
}
.studio-note { color: var(--muted); font-size: 18px; }

.strategy {
  display: grid;
  grid-template-columns: .8fr 1fr .8fr;
  gap: 44px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.strategy article { min-width: 0; }
.strategy h2 { font-size: clamp(28px, 3vw, 44px); margin-bottom: 20px; }
.strategy p { color: var(--muted); }
.icon-mark.target {
  width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--blue); margin-bottom: 24px;
  background: radial-gradient(circle, var(--blue) 0 4px, transparent 5px 16px, color-mix(in srgb, var(--blue) 20%, transparent) 17px 18px, transparent 19px);
}
.blueprint {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}
.blueprint span {
  border: 1px solid color-mix(in srgb, var(--blue) 50%, #fff);
  padding: 8px 6px;
  border-radius: 2px;
}
.blueprint span:first-child, .blueprint span:last-child { grid-column: 1/-1; }
.portrait-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 18px;
}
.portrait {
  width: 90px; height: 90px; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #d0a37b 0 20%, #1a2532 21% 24%, transparent 25%),
    linear-gradient(135deg, #dce5ef, #fff);
  border: 1px solid var(--line);
}

.ki {
  display: grid;
  grid-template-columns: 110px .7fr 1fr;
  gap: 36px;
  align-items: center;
}
.ki h2 { font-size: clamp(32px, 3.2vw, 50px); }
.ki p { color: rgba(255,255,255,.75); }
.ki-icon {
  width: 86px; height: 86px;
  border: 2px solid var(--blue);
  border-radius: 22px;
  background:
    radial-gradient(circle at 32% 34%, var(--blue) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 42%, var(--blue) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 70%, var(--blue) 0 4px, transparent 5px);
  opacity: .85;
}

.services { background: var(--surface); }
.service-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.service-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 18px;
}
.service-grid h3 { letter-spacing: -.03em; margin: 0 0 10px; font-size: 19px; }
.service-grid p { color: var(--muted); font-size: 14px; margin:0; }

.final-cta {
  display: grid;
  grid-template-columns: 86px 1fr .9fr auto;
  gap: 30px;
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
}
.final-cta h2 { font-size: clamp(34px, 4vw, 62px); }
.final-cta p { color: var(--muted); max-width: 430px; }
.chat-mark {
  width: 74px; height: 74px;
  background: var(--blue);
  border-radius: calc(var(--radius) * 1.2);
  position: relative;
}
.chat-mark::after {
  content:"";
  position:absolute; inset:20px;
  border: 3px solid #fff;
  border-radius: 50%;
}
.chat-mark::before {
  content:"";
  position:absolute; left:43px; top:43px;
  width:16px; height:3px; background:#fff; transform:rotate(35deg);
}

.decision-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(430px, 96vw);
  height: 100dvh;
  z-index: 100;
  background: var(--panel);
  backdrop-filter: blur(18px);
  border-left: 1px solid var(--line);
  box-shadow: -22px 0 70px rgba(0,0,0,.18);
  transform: translateX(103%);
  transition: transform .25s ease;
  color: var(--ink);
}
.decision-panel.open { transform: translateX(0); }
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.panel-header strong { display:block; }
.panel-header span { display:block; color: var(--muted); font-size: 13px; }
.icon-btn {
  border: none; background: var(--surface); border-radius: 10px; font-size: 26px; width: 42px; height: 42px;
}
.panel-scroll { overflow: auto; height: calc(100dvh - 79px); padding: 18px 20px 60px; }
.panel-group {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  background: rgba(255,255,255,.76);
}
.panel-group h3 { margin: 0 0 14px; letter-spacing: -.03em; }
.panel-group label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #24344d;
  font-size: 13px;
  font-weight: 750;
}
.panel-group select,
.panel-group input[type="text"],
.panel-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 11px;
  background: #fff;
  color: var(--ink);
}
.panel-group textarea { min-height: 96px; resize: vertical; }
.panel-group input[type="range"] { width: 100%; }
.panel-group output { color: var(--blue); font-weight: 900; justify-self: end; margin-top: -8px; }
.segmented {
  display: grid; grid-template-columns: 1fr; gap: 8px;
}
.segmented button, .panel-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 750;
}
.segmented button.active, .panel-btn.primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.panel-btn { width: 100%; margin-bottom: 8px; }
.panel-btn.danger { color: #b00020; }
.floating-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 36px rgba(7,95,230,.28);
  font-size: 24px;
}

.site-shell[data-hero="minimal-brand"] .hero {
  grid-template-columns: 1fr .8fr;
  background: #fff;
}
.site-shell[data-hero="minimal-brand"] .hero-media .studio-room > *:not(.brand-wall) { display:none; }
.site-shell[data-hero="minimal-brand"] .studio-room { background:#fff; }
.site-shell[data-hero="minimal-brand"] .brand-wall { right: 25%; top: 45%; }
.site-shell[data-hero="studio-wide"] .hero { grid-template-columns: .85fr 1.35fr; }

.site-shell[data-showreel="large-video"] .showreel { grid-template-columns: 1fr; }
.site-shell[data-showreel="large-video"] .filmstrip { min-height: 320px; }
.site-shell[data-showreel="split-video"] .filmstrip { grid-template-columns: 1fr; }
.site-shell[data-showreel="split-video"] .thumb:not(.thumb-1) { display:none; }

.site-shell[data-audio="waveform-focus"] .audio-demo { grid-template-columns: 1fr; }
.site-shell[data-audio="waveform-focus"] .audio-visual {
  min-height: 210px;
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(255,255,255,.22) 5% 5.5%, transparent 6%),
    repeating-linear-gradient(90deg, rgba(20,129,255,.9) 0 3px, transparent 3px 12px),
    linear-gradient(135deg, #0b274b, #061429);
}
.site-shell[data-audio="waveform-focus"] .drop { display:none; }
.site-shell[data-audio="waveform-focus"] .tone-switch { display:flex; gap:12px; align-items:center; }
.site-shell[data-audio="waveform-focus"] .tone-switch p { margin:0 10px 0 0; }
.site-shell[data-audio="waveform-focus"] .tone { width:auto; min-width: 150px; }
.site-shell[data-audio="comparison"] .audio-visual::after {
  content:"↔";
  position:absolute;
  inset:0;
  margin:auto;
  display:grid;
  place-items:center;
  width:64px; height:64px;
  border-radius:50%;
  background:#fff;
  color: var(--blue);
  font-weight:900;
  font-size:26px;
}

.site-shell[data-studio="proof-split"] .studio { grid-template-columns: 1fr 1fr; }
.site-shell[data-studio="proof-split"] .studio-note { grid-column: 1/-1; }
.site-shell[data-studio="proof-minimal"] .studio { grid-template-columns: 1fr; }
.site-shell[data-studio="proof-minimal"] .studio-photo { min-height: 220px; }

.site-shell[data-process="blueprint-large"] .strategy { grid-template-columns: 1fr; }
.site-shell[data-process="blueprint-large"] .blueprint { max-width: 740px; }
.site-shell[data-process="three-steps"] .blueprint span:nth-child(n+5):not(:last-child) { display:none; }

.site-shell[data-ki="quiet-block"] .ki { background:#fff; color: var(--ink); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.site-shell[data-ki="quiet-block"] .ki p { color: var(--muted); }
.site-shell[data-ki="split-note"] .ki { grid-template-columns: 1fr 1fr; }
.site-shell[data-ki="split-note"] .ki-icon { display:none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; top: 37px; }
  .nav { display:none; }
  .hero, .belief, .showreel, .audio, .audio-demo, .studio, .strategy, .ki, .final-cta, .awards {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-media { min-height: 340px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .lab-topbar { display:none; }
  .site-header { top: 0; padding: 20px; }
  .brand { font-size: 18px; }
  .site-header .btn { display:none; }
  .section { padding: 58px 22px; }
  .hero h1 { font-size: calc(54px * var(--headline-scale)); }
  .filmstrip, .service-grid { grid-template-columns: 1fr; }
  .award-row { display:grid; grid-template-columns:1fr 1fr; }
  .award-row span { border-left:0; padding-left:0; }
  .tone-switch { display:block !important; }
  .tone { width:100% !important; }
}


/* v3.2 additional earthy/gray palette options */
html[data-theme="earth-gray"] {
  --blue: #6f766f;
  --blue-2: #8b948b;
  --navy: #202a2d;
  --navy-2: #354044;
  --ink: #151b1d;
  --surface: #f4f1eb;
  --surface-2: #e7e0d5;
  --warm: #ded5c8;
  --line: #d8d1c7;
}
html[data-theme="stone-slate"] {
  --blue: #53616a;
  --blue-2: #71828d;
  --navy: #182229;
  --navy-2: #2a3740;
  --ink: #101820;
  --surface: #f3f5f4;
  --surface-2: #e2e7e7;
  --warm: #d9d4cb;
  --line: #d4dbdc;
}
html[data-theme="warm-graphite"] {
  --blue: #5f5a54;
  --blue-2: #817a72;
  --navy: #1d1b19;
  --navy-2: #34302c;
  --ink: #161412;
  --surface: #f6f2ec;
  --surface-2: #e8e0d5;
  --warm: #cfc2b2;
  --line: #ddd3c7;
}
html[data-theme="clay-mist"] {
  --blue: #7c7168;
  --blue-2: #a08f82;
  --navy: #241f1c;
  --navy-2: #40362f;
  --ink: #191512;
  --surface: #f7f4ef;
  --surface-2: #e9e0d6;
  --warm: #d7c4b3;
  --line: #ded2c6;
}

/* Hauptfarbton overrides, kombinierbar mit jeder Grundpalette */
html[data-hue="blue"] {}
html[data-hue="slate"] { --blue: #55636d; --blue-2: #71818d; }
html[data-hue="greige"] { --blue: #8a8176; --blue-2: #a69b8e; }
html[data-hue="taupe"] { --blue: #756a61; --blue-2: #92857a; }
html[data-hue="clay"] { --blue: #8b7466; --blue-2: #a78c7c; }
html[data-hue="graphite"] { --blue: #343b40; --blue-2: #59646c; }
html[data-hue="moss"] { --blue: #687465; --blue-2: #879481; }

.palette-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 4px 0 14px;
}
.palette-preview span {
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.palette-preview small {
  grid-column: 1 / -1;
  color: var(--muted);
  line-height: 1.35;
}
.audio-bridge {
  color: #fff !important;
  font-weight: 850;
  font-size: clamp(20px, 2vw, 30px);
  margin: 22px 0 10px;
}
html[data-contrast="more-light"] .audio-bridge {
  color: var(--ink) !important;
}


/* v3.3 Google Font sets */
html[data-font-pair="inter"] { --font-main: "Inter", sans-serif; --font-display: "Inter", sans-serif; }
html[data-font-pair="manrope"] { --font-main: "Manrope", sans-serif; --font-display: "Manrope", sans-serif; }
html[data-font-pair="dm-sans"] { --font-main: "DM Sans", sans-serif; --font-display: "DM Sans", sans-serif; }
html[data-font-pair="space-grotesk"] { --font-main: "Inter", sans-serif; --font-display: "Space Grotesk", sans-serif; }
html[data-font-pair="sora"] { --font-main: "Inter", sans-serif; --font-display: "Sora", sans-serif; }
html[data-font-pair="plus-jakarta"] { --font-main: "Plus Jakarta Sans", sans-serif; --font-display: "Plus Jakarta Sans", sans-serif; }
html[data-font-pair="ibm-plex"] { --font-main: "IBM Plex Sans", sans-serif; --font-display: "IBM Plex Sans", sans-serif; }
html[data-font-pair="source-sans"] { --font-main: "Source Sans 3", sans-serif; --font-display: "Source Sans 3", sans-serif; }
html[data-font-pair="work-sans"] { --font-main: "Work Sans", sans-serif; --font-display: "Work Sans", sans-serif; }
html[data-font-pair="outfit"] { --font-main: "Outfit", sans-serif; --font-display: "Outfit", sans-serif; }
html[data-font-pair="urbanist"] { --font-main: "Urbanist", sans-serif; --font-display: "Urbanist", sans-serif; }
html[data-font-pair="archivo"] { --font-main: "Archivo", sans-serif; --font-display: "Archivo", sans-serif; }
html[data-font-pair="barlow"] { --font-main: "Barlow", sans-serif; --font-display: "Barlow", sans-serif; }
html[data-font-pair="montserrat"] { --font-main: "Montserrat", sans-serif; --font-display: "Montserrat", sans-serif; }
html[data-font-pair="poppins"] { --font-main: "Poppins", sans-serif; --font-display: "Poppins", sans-serif; }
html[data-font-pair="lato"] { --font-main: "Lato", sans-serif; --font-display: "Lato", sans-serif; }
html[data-font-pair="open-sans"] { --font-main: "Open Sans", sans-serif; --font-display: "Open Sans", sans-serif; }
html[data-font-pair="roboto"] { --font-main: "Roboto", sans-serif; --font-display: "Roboto", sans-serif; }
html[data-font-pair="nunito"] { --font-main: "Nunito Sans", sans-serif; --font-display: "Nunito Sans", sans-serif; }
html[data-font-pair="raleway"] { --font-main: "Raleway", sans-serif; --font-display: "Raleway", sans-serif; }
html[data-font-pair="playfair-inter"] { --font-main: "Inter", sans-serif; --font-display: "Playfair Display", serif; }
html[data-font-pair="lora-dm"] { --font-main: "DM Sans", sans-serif; --font-display: "Lora", serif; }
html[data-font-pair="merriweather-source"] { --font-main: "Source Sans 3", sans-serif; --font-display: "Merriweather", serif; }
html[data-font-pair="libre-open"] { --font-main: "Open Sans", sans-serif; --font-display: "Libre Baskerville", serif; }
html[data-font-pair="newsreader-manrope"] { --font-main: "Manrope", sans-serif; --font-display: "Newsreader", serif; }

/* v3.3 media/type ratio presets */
.site-shell[data-media-ratio="type-led"] .hero { grid-template-columns: 1.24fr .76fr; }
.site-shell[data-media-ratio="type-led"] .hero-media { min-height: 380px; }
.site-shell[data-media-ratio="type-led"] .showreel { grid-template-columns: .62fr .88fr; }
.site-shell[data-media-ratio="type-led"] .audio { grid-template-columns: .9fr .85fr; }
.site-shell[data-media-ratio="type-led"] .studio { grid-template-columns: .72fr .72fr .42fr; }
.site-shell[data-media-ratio="type-led"] .section h2 { max-width: 850px; }

.site-shell[data-media-ratio="balanced"] .hero { grid-template-columns: minmax(360px, .9fr) 1.1fr; }
.site-shell[data-media-ratio="balanced"] .showreel { grid-template-columns: minmax(260px, .45fr) 1fr; }
.site-shell[data-media-ratio="balanced"] .audio { grid-template-columns: .72fr 1.05fr; }
.site-shell[data-media-ratio="balanced"] .studio { grid-template-columns: .58fr .92fr .42fr; }

.site-shell[data-media-ratio="media-led"] .hero { grid-template-columns: .74fr 1.26fr; }
.site-shell[data-media-ratio="media-led"] .hero-media { min-height: 540px; }
.site-shell[data-media-ratio="media-led"] .showreel { grid-template-columns: .36fr 1.18fr; }
.site-shell[data-media-ratio="media-led"] .filmstrip { min-height: 235px; }
.site-shell[data-media-ratio="media-led"] .audio { grid-template-columns: .55fr 1.25fr; }
.site-shell[data-media-ratio="media-led"] .audio-visual { min-height: 330px; }
.site-shell[data-media-ratio="media-led"] .studio { grid-template-columns: .46fr 1.12fr .38fr; }
.site-shell[data-media-ratio="media-led"] .studio-photo { min-height: 360px; }

@media (max-width: 980px) {
  .site-shell[data-media-ratio] .hero,
  .site-shell[data-media-ratio] .showreel,
  .site-shell[data-media-ratio] .audio,
  .site-shell[data-media-ratio] .studio {
    grid-template-columns: 1fr;
  }
}


/* v3.4 sortable radio controls */
.sortable-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 14px;
}
.sortable-help {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.sortable-radio-list {
  list-style: none;
  padding: 6px;
  margin: 0;
  display: grid;
  gap: 5px;
  max-height: 260px;
  overflow: auto;
}
.sortable-radio-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #fff;
}
.sortable-radio-list li.dragging { opacity: .45; border-color: var(--blue); }
.sortable-radio-list li:has(input:checked) {
  border-color: color-mix(in srgb, var(--blue) 50%, #fff);
  background: color-mix(in srgb, var(--blue) 8%, #fff);
}
.drag-handle {
  cursor: grab;
  color: var(--muted);
  user-select: none;
}
.sortable-radio-list label {
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
.sortable-radio-list input { width: auto; margin: 0; }

/* v3.4 real images */
.studio-photo {
  background: var(--navy);
}
.studio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s ease, filter .2s ease;
}
.studio-img-bw { opacity: 0; }
.site-shell[data-studio-image="bw"] .studio-img-color { opacity: 0; }
.site-shell[data-studio-image="bw"] .studio-img-bw { opacity: 1; }
.site-shell[data-studio-image="color"] .studio-img-color { opacity: 1; }
.site-shell[data-studio-image="color"] .studio-img-bw { opacity: 0; }
html[data-theme="earth-gray"] .site-shell[data-studio-image="auto"] .studio-img-color,
html[data-theme="stone-slate"] .site-shell[data-studio-image="auto"] .studio-img-color,
html[data-theme="warm-graphite"] .site-shell[data-studio-image="auto"] .studio-img-color,
html[data-theme="clay-mist"] .site-shell[data-studio-image="auto"] .studio-img-color {
  opacity: 0;
}
html[data-theme="earth-gray"] .site-shell[data-studio-image="auto"] .studio-img-bw,
html[data-theme="stone-slate"] .site-shell[data-studio-image="auto"] .studio-img-bw,
html[data-theme="warm-graphite"] .site-shell[data-studio-image="auto"] .studio-img-bw,
html[data-theme="clay-mist"] .site-shell[data-studio-image="auto"] .studio-img-bw {
  opacity: 1;
}
.studio-photo::before,
.console,
.booth {
  display: none !important;
}
.portrait {
  object-fit: cover;
  display: block;
  overflow: hidden;
}
.mood-photo {
  margin: 24px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}
.mood-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: saturate(.9) contrast(1.05);
}
.mood-photo figcaption {
  margin: 0;
  padding: 12px 14px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}
.site-shell[data-mood-image="hidden"] .mood-photo { display: none; }
.site-shell[data-mood-image="prominent"] .mood-photo {
  grid-column: 1 / -1;
}
.site-shell[data-mood-image="prominent"] .mood-photo img {
  height: 320px;
}

/* v3.4 logo masks */
.clients {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(64px, 1fr));
  gap: 22px;
  align-items: center;
  margin-top: 22px;
}
.logo-mask {
  display: block;
  height: 52px;
  background: var(--blue);
  opacity: .86;
  -webkit-mask-image: var(--logo);
  mask-image: var(--logo);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.award-logo-row {
  justify-content: flex-start;
}
.award-logo-row .logo-mask {
  width: 130px;
  height: 58px;
}
.site-shell[data-logo-style="ink"] .logo-mask { background: var(--ink); opacity: .82; }
.site-shell[data-logo-style="muted"] .logo-mask { background: var(--muted); opacity: .48; }
.site-shell[data-logo-style="accent"] .logo-mask { background: var(--blue); opacity: .82; }
.site-shell[data-logo-style="original"] .logo-mask {
  background: none;
  -webkit-mask-image: none;
  mask-image: none;
  background-image: var(--logo-src);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
}
@media (max-width: 980px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}


/* v3.5 texture system */
.site-shell[data-light-texture="on"] .hero,
.site-shell[data-light-texture="on"] .belief,
.site-shell[data-light-texture="on"] .clients,
.site-shell[data-light-texture="on"] .awards,
.site-shell[data-light-texture="on"] .studio,
.site-shell[data-light-texture="on"] .strategy,
.site-shell[data-light-texture="on"] .services,
.site-shell[data-light-texture="on"] .final-cta {
  background-image:
    linear-gradient(rgba(255,255,255,.86), rgba(255,255,255,.86)),
    url("../img/texture-light.jpg");
  background-size: auto, cover;
  background-position: center;
}
.site-shell[data-dark-texture="on"] .dark-section {
  background-image:
    linear-gradient(135deg, color-mix(in srgb, var(--navy) 92%, transparent), color-mix(in srgb, var(--navy-2) 88%, transparent)),
    url("../img/texture-dark-blue.jpg");
  background-size: auto, cover;
  background-position: center;
}
html[data-hue="slate"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) 92%, transparent), color-mix(in srgb, var(--navy-2) 88%, transparent)), url("../img/texture-dark-slate.jpg"); }
html[data-hue="greige"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) 92%, transparent), color-mix(in srgb, var(--navy-2) 88%, transparent)), url("../img/texture-dark-greige.jpg"); }
html[data-hue="taupe"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) 92%, transparent), color-mix(in srgb, var(--navy-2) 88%, transparent)), url("../img/texture-dark-taupe.jpg"); }
html[data-hue="clay"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) 92%, transparent), color-mix(in srgb, var(--navy-2) 88%, transparent)), url("../img/texture-dark-clay.jpg"); }
html[data-hue="graphite"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) 92%, transparent), color-mix(in srgb, var(--navy-2) 88%, transparent)), url("../img/texture-dark-graphite.jpg"); }
html[data-hue="moss"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) 92%, transparent), color-mix(in srgb, var(--navy-2) 88%, transparent)), url("../img/texture-dark-moss.jpg"); }

.check-control {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.check-control input {
  width: auto !important;
  margin: 0;
}
.client-logo-grid {
  grid-template-columns: repeat(8, minmax(70px, 1fr));
}
.logo-grid .logo-mask {
  min-width: 88px;
}
@media (max-width: 980px) {
  .client-logo-grid { grid-template-columns: repeat(2, 1fr); }
}


/* v3.6 detached controller tab */
.preview-toolbar {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 14px;
  background: #071c38;
  color: #fff;
  font-size: 13px;
}
.preview-toolbar span { opacity: .72; }
.preview-toolbar a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 6px 10px;
}
.controller-body {
  background: #eef3f8;
  min-height: 100dvh;
}
.controller-shell { min-height: 100dvh; }
.controller-intro {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  gap: 5px;
  padding: 14px 18px;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.controller-intro span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
}
.controller-intro a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.controller-panel {
  position: static !important;
  transform: none !important;
  width: 100% !important;
  height: auto !important;
  min-height: calc(100dvh - 82px);
  box-shadow: none !important;
  border-left: 0 !important;
  background: rgba(255,255,255,.94) !important;
}
.controller-panel .panel-header {
  position: sticky;
  top: 82px;
  z-index: 110;
}
.controller-panel .panel-scroll {
  height: auto !important;
  overflow: visible !important;
  padding-bottom: 80px;
}
.controller-link {
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  color: var(--ink);
}
@media (min-width: 960px) {
  .controller-body .panel-scroll {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
  }
  .controller-body .panel-group { margin-bottom: 0; }
  .controller-body .export-group { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .preview-toolbar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}


/* v3.7 section photo background modes */
.studio, .audio { position: relative; isolation: isolate; }
.studio::before, .audio::before { content:""; position:absolute; inset:0; z-index:-2; opacity:0; background-size:cover; background-position:center; transition:opacity .2s ease, filter .2s ease; }
.studio::after, .audio::after { content:""; position:absolute; inset:0; z-index:-1; opacity:0; transition:opacity .2s ease; pointer-events:none; }
.studio::before { background-image:url("../img/studio-color.jpg"); }
html[data-theme="earth-gray"] .site-shell[data-studio-image="auto"] .studio::before,
html[data-theme="stone-slate"] .site-shell[data-studio-image="auto"] .studio::before,
html[data-theme="warm-graphite"] .site-shell[data-studio-image="auto"] .studio::before,
html[data-theme="clay-mist"] .site-shell[data-studio-image="auto"] .studio::before,
.site-shell[data-studio-image="bw"] .studio::before { background-image:url("../img/studio-bw.jpg"); }
.site-shell[data-studio-image="color"] .studio::before { background-image:url("../img/studio-color.jpg"); }
.audio::before { background-image:url("../img/atc.jpg"); }
.site-shell[data-studio-bg-position="left"] .studio::before,.site-shell[data-atc-bg-position="left"] .audio::before{background-position:left center;}
.site-shell[data-studio-bg-position="center"] .studio::before,.site-shell[data-atc-bg-position="center"] .audio::before{background-position:center;}
.site-shell[data-studio-bg-position="right"] .studio::before,.site-shell[data-atc-bg-position="right"] .audio::before{background-position:right center;}
.site-shell[data-studio-photo-mode="background"] .studio::before,.site-shell[data-studio-photo-mode="both"] .studio::before{opacity:.96;}
.site-shell[data-studio-photo-mode="background"] .studio::after,.site-shell[data-studio-photo-mode="both"] .studio::after{opacity:var(--studio-bg-overlay,.68);background:linear-gradient(90deg,color-mix(in srgb,var(--paper) 94%,transparent),color-mix(in srgb,var(--paper) 70%,transparent));}
.site-shell[data-studio-photo-mode="background"] .studio-photo,.site-shell[data-studio-photo-mode="off"] .studio-photo{display:none;}
.site-shell[data-studio-photo-mode="background"] .studio,.site-shell[data-studio-photo-mode="both"] .studio{color:var(--ink);}
.site-shell[data-studio-photo-mode="background"] .studio-note,.site-shell[data-studio-photo-mode="both"] .studio-note{background:color-mix(in srgb,var(--paper) 78%,transparent);border:1px solid color-mix(in srgb,var(--line) 75%,transparent);border-radius:var(--radius);padding:22px;backdrop-filter:blur(10px);}
.site-shell[data-studio-photo-mode="off"] .studio{grid-template-columns:1fr 1fr;}
.site-shell[data-atc-photo-mode="background"] .audio::before,.site-shell[data-atc-photo-mode="both"] .audio::before{opacity:.92;filter:saturate(.85) contrast(1.08);}
.site-shell[data-atc-photo-mode="background"] .audio::after,.site-shell[data-atc-photo-mode="both"] .audio::after{opacity:var(--atc-bg-overlay,.72);background:linear-gradient(135deg,color-mix(in srgb,var(--navy) 92%,transparent),color-mix(in srgb,var(--navy-2) 82%,transparent));}
.site-shell[data-atc-photo-mode="background"] .mood-photo,.site-shell[data-atc-photo-mode="off"] .mood-photo{display:none;}
.site-shell[data-atc-photo-mode="prominent"] .mood-photo,.site-shell[data-atc-photo-mode="both"] .mood-photo{grid-column:1/-1;}
.site-shell[data-atc-photo-mode="prominent"] .mood-photo img,.site-shell[data-atc-photo-mode="both"] .mood-photo img{height:330px;}
@media(max-width:980px){.site-shell[data-studio-photo-mode="off"] .studio{grid-template-columns:1fr;}}


/* v3.8 controller is a remote control, not a styled preview */
.controller-body, .controller-body * { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important; }
.controller-body { --blue:#075fe6; --navy:#071c38; --ink:#071529; --muted:#607086; --line:#dce5ef; --surface:#f3f6fa; --paper:#ffffff; }
.controller-body .decision-panel, .controller-body .panel-header, .controller-body .panel-group { color:#071529; }


/* v3.9 robust logo visibility */
.logo-mask { display: none !important; }
.logo-item {
  position: relative;
  display: block;
  height: 58px;
  min-width: 92px;
}
.logo-item .logo-original-img,
.logo-item .logo-tint-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.logo-item .logo-original-img {
  object-fit: contain;
  opacity: .78;
  filter: grayscale(1) contrast(1.08);
}
.logo-item .logo-tint-mask {
  background: var(--blue);
  opacity: .92;
  -webkit-mask-image: var(--logo);
  mask-image: var(--logo);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.site-shell[data-logo-style="original"] .logo-item .logo-original-img {
  opacity: 1;
  filter: none;
}
.site-shell[data-logo-style="original"] .logo-item .logo-tint-mask {
  display: none;
}
.site-shell[data-logo-style="ink"] .logo-item .logo-tint-mask {
  background: var(--ink);
  opacity: .9;
}
.site-shell[data-logo-style="muted"] .logo-item .logo-tint-mask {
  background: var(--muted);
  opacity: .55;
}
.site-shell[data-logo-style="accent"] .logo-item .logo-tint-mask {
  background: var(--blue);
  opacity: .88;
}
.site-shell:not([data-logo-style="original"]) .logo-item .logo-original-img {
  opacity: .12;
}
.award-logo-row .logo-item {
  width: 132px;
  height: 62px;
}
.logo-grid {
  min-height: 82px;
}

/* v3.9 stronger, controllable texture visibility */
.site-shell {
  --light-texture-cover: calc(0.92 - (var(--light-texture-strength, .6) * .34));
  --dark-texture-cover: calc(0.96 - (var(--dark-texture-strength, .7) * .26));
}
.site-shell[data-light-texture="on"] .hero,
.site-shell[data-light-texture="on"] .belief,
.site-shell[data-light-texture="on"] .clients,
.site-shell[data-light-texture="on"] .awards,
.site-shell[data-light-texture="on"] .studio,
.site-shell[data-light-texture="on"] .strategy,
.site-shell[data-light-texture="on"] .services,
.site-shell[data-light-texture="on"] .final-cta {
  background-image:
    linear-gradient(rgba(255,255,255,var(--light-texture-cover)), rgba(255,255,255,var(--light-texture-cover))),
    url("../img/texture-light.jpg") !important;
  background-size: auto, cover !important;
  background-position: center !important;
}
.site-shell[data-dark-texture="on"] .dark-section {
  background-image:
    linear-gradient(135deg, color-mix(in srgb, var(--navy) calc(var(--dark-texture-cover) * 100%), transparent), color-mix(in srgb, var(--navy-2) calc((var(--dark-texture-cover) - .08) * 100%), transparent)),
    url("../img/texture-dark-blue.jpg") !important;
  background-size: auto, cover !important;
  background-position: center !important;
}
html[data-hue="slate"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) calc(var(--dark-texture-cover) * 100%), transparent), color-mix(in srgb, var(--navy-2) calc((var(--dark-texture-cover) - .08) * 100%), transparent)), url("../img/texture-dark-slate.jpg") !important; }
html[data-hue="greige"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) calc(var(--dark-texture-cover) * 100%), transparent), color-mix(in srgb, var(--navy-2) calc((var(--dark-texture-cover) - .08) * 100%), transparent)), url("../img/texture-dark-greige.jpg") !important; }
html[data-hue="taupe"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) calc(var(--dark-texture-cover) * 100%), transparent), color-mix(in srgb, var(--navy-2) calc((var(--dark-texture-cover) - .08) * 100%), transparent)), url("../img/texture-dark-taupe.jpg") !important; }
html[data-hue="clay"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) calc(var(--dark-texture-cover) * 100%), transparent), color-mix(in srgb, var(--navy-2) calc((var(--dark-texture-cover) - .08) * 100%), transparent)), url("../img/texture-dark-clay.jpg") !important; }
html[data-hue="graphite"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) calc(var(--dark-texture-cover) * 100%), transparent), color-mix(in srgb, var(--navy-2) calc((var(--dark-texture-cover) - .08) * 100%), transparent)), url("../img/texture-dark-graphite.jpg") !important; }
html[data-hue="moss"] .site-shell[data-dark-texture="on"] .dark-section { background-image: linear-gradient(135deg, color-mix(in srgb, var(--navy) calc(var(--dark-texture-cover) * 100%), transparent), color-mix(in srgb, var(--navy-2) calc((var(--dark-texture-cover) - .08) * 100%), transparent)), url("../img/texture-dark-moss.jpg") !important; }

/* v4.0 fixed base + real accent/density/section controls */
:root { --accent-level: .7; --section-space: 94px; --inner-space: 54px; }
.eyebrow,.section-label,.text-link{color:color-mix(in srgb,var(--blue) calc(45% + var(--accent-level)*55%),var(--ink))!important}.btn-primary,.tone.active,.chat-mark{background:color-mix(in srgb,var(--blue) calc(55% + var(--accent-level)*45%),var(--ink))!important}.btn-primary{box-shadow:0 10px calc(12px + 28px*var(--accent-level)) color-mix(in srgb,var(--blue) calc(10% + 22%*var(--accent-level)),transparent)!important}.brand{color:color-mix(in srgb,var(--blue) calc(45% + var(--accent-level)*55%),var(--ink))!important}.logo-item .logo-tint-mask{opacity:calc(.35 + var(--accent-level)*.6)!important}.audio h2 span{color:color-mix(in srgb,var(--blue) calc(45% + var(--accent-level)*45%),#fff)!important}.blueprint span,.icon-mark.target{border-color:color-mix(in srgb,var(--blue) calc(35% + var(--accent-level)*55%),#fff)!important}.progress span{background:color-mix(in srgb,var(--blue) calc(50% + var(--accent-level)*50%),var(--ink))!important}
.site-shell[data-density-mode="airy"]{--section-space:118px;--inner-space:70px}.site-shell[data-density-mode="balanced"]{--section-space:92px;--inner-space:54px}.site-shell[data-density-mode="compact"]{--section-space:68px;--inner-space:40px}
.section-style-grid{display:grid;gap:8px}.section-style-row{display:grid;grid-template-columns:minmax(110px,1.2fr) minmax(100px,1fr) minmax(100px,1fr);gap:8px;align-items:center;border:1px solid var(--line);background:#fff;border-radius:10px;padding:8px}.section-style-row strong{font-size:12px}.section-style-row select{width:100%;padding:8px;border:1px solid var(--line);border-radius:8px}
.site-shell .section[data-bg="light"]{background:var(--paper)!important;color:var(--ink)}.site-shell .section[data-bg="soft"]{background:var(--surface)!important;color:var(--ink)}.site-shell .section[data-bg="slate"]{background:var(--surface-2)!important;color:var(--ink)}.site-shell .section[data-bg="dark"]{background:linear-gradient(135deg,var(--navy),var(--navy-2))!important;color:#fff}.site-shell .section[data-bg="texture"]{background-image:linear-gradient(rgba(255,255,255,var(--texture-light-cover,.72)),rgba(255,255,255,var(--texture-light-cover,.72))),url("../img/texture-light.jpg")!important;background-size:auto,cover!important;color:var(--ink)}
.site-shell .section[data-bg="image"][data-section-key="studio"]::before,.site-shell .section[data-bg="image"][data-section-key="audio"]::before{opacity:.96!important}.site-shell .section[data-bg="image"][data-section-key="studio"]::after,.site-shell .section[data-bg="image"][data-section-key="audio"]::after{opacity:.68!important}
.site-shell .section[data-text="light"]{color:#fff!important}.site-shell .section[data-text="light"] p,.site-shell .section[data-text="light"] .studio-note,.site-shell .section[data-text="light"] .belief-copy,.site-shell .section[data-text="light"] .section-label{color:rgba(255,255,255,.82)!important}.site-shell .section[data-text="dark"]{color:var(--ink)!important}.site-shell .section[data-text="dark"] p{color:var(--muted)!important}
.site-shell[data-texture-mode="light"] .section[data-bg="light"],.site-shell[data-texture-mode="light"] .section[data-bg="soft"],.site-shell[data-texture-mode="both"] .section[data-bg="light"],.site-shell[data-texture-mode="both"] .section[data-bg="soft"]{background-image:linear-gradient(rgba(255,255,255,var(--texture-light-cover,.72)),rgba(255,255,255,var(--texture-light-cover,.72))),url("../img/texture-light.jpg")!important;background-size:auto,cover!important}.site-shell[data-texture-mode="dark"] .section[data-bg="dark"],.site-shell[data-texture-mode="both"] .section[data-bg="dark"]{background-image:linear-gradient(135deg,color-mix(in srgb,var(--navy) calc(var(--texture-dark-cover,.78)*100%),transparent),color-mix(in srgb,var(--navy-2) calc((var(--texture-dark-cover,.70))*100%),transparent)),url("../img/texture-dark-slate.jpg")!important;background-size:auto,cover!important}.site-shell[data-texture-strength="subtle"]{--texture-light-cover:.86;--texture-dark-cover:.9}.site-shell[data-texture-strength="visible"]{--texture-light-cover:.72;--texture-dark-cover:.78}.site-shell[data-texture-strength="strong"]{--texture-light-cover:.58;--texture-dark-cover:.65}
.site-shell[data-logo-impact="1"] .logo-grid,.site-shell[data-logo-impact="2"] .logo-grid{opacity:.42;transform:scale(.88);transform-origin:left center}.site-shell[data-logo-impact="3"] .logo-grid,.site-shell[data-logo-impact="4"] .logo-grid{opacity:.65;transform:scale(.94);transform-origin:left center}.site-shell[data-logo-impact="5"] .logo-grid,.site-shell[data-logo-impact="6"] .logo-grid{opacity:.86}.site-shell[data-logo-impact="7"] .logo-grid,.site-shell[data-logo-impact="8"] .logo-grid{opacity:1;transform:scale(1.05);transform-origin:left center}.site-shell[data-logo-impact="9"] .logo-grid,.site-shell[data-logo-impact="10"] .logo-grid{opacity:1;transform:scale(1.12);transform-origin:left center}
.site-shell[data-award-impact="1"] .awards,.site-shell[data-award-impact="2"] .awards{opacity:.55;padding-top:26px;padding-bottom:26px}.site-shell[data-award-impact="3"] .awards,.site-shell[data-award-impact="4"] .awards{opacity:.75}.site-shell[data-award-impact="7"] .awards,.site-shell[data-award-impact="8"] .awards,.site-shell[data-award-impact="9"] .awards,.site-shell[data-award-impact="10"] .awards{padding-top:72px;padding-bottom:72px}.site-shell[data-award-style="text"] .award-logo-row{display:none!important}.site-shell[data-award-style="logosText"] .award-logo-row{margin-top:18px}
.site-shell[data-studio-text-plate="glass"] .studio-copy,.site-shell[data-audio-text-plate="glass"] .audio-copy{background:color-mix(in srgb,var(--paper) 16%,transparent);border:1px solid rgba(255,255,255,.16);border-radius:var(--radius);padding:24px;backdrop-filter:blur(10px)}.site-shell[data-studio-text-plate="solid"] .studio-copy,.site-shell[data-audio-text-plate="solid"] .audio-copy{background:color-mix(in srgb,var(--paper) 86%,transparent);color:var(--ink);border-radius:var(--radius);padding:24px}.site-shell[data-audio-text-plate="solid"] .audio-copy p,.site-shell[data-audio-text-plate="solid"] .audio-copy .audio-bridge{color:var(--ink)!important}
.controller-body,.controller-body *{font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif!important}.controller-body{--blue:#55636d;--navy:#182229;--ink:#071529;--muted:#607086;--line:#dce5ef;--surface:#f3f6fa;--paper:#fff}
@media(max-width:700px){.section-style-row{grid-template-columns:1fr}}


/* v4.1 fixes: real texture 0-100%, section spacing, awards, section tones, visuals */
.site-shell {
  --texture-intensity: .5;
  --section-space-live: var(--section-space);
}
.section {
  padding-top: var(--section-space-live) !important;
  padding-bottom: var(--section-space-live) !important;
}
.awards.compact,
.clients.compact {
  padding-top: calc(var(--section-space-live) * .45) !important;
  padding-bottom: calc(var(--section-space-live) * .45) !important;
}

/* 100% texture possible: at intensity=1, overlay alpha becomes 0 */
.site-shell[data-texture-mode="light"] .section[data-bg="light"],
.site-shell[data-texture-mode="light"] .section[data-bg="soft"],
.site-shell[data-texture-mode="both"] .section[data-bg="light"],
.site-shell[data-texture-mode="both"] .section[data-bg="soft"],
.site-shell .section[data-bg="texture"] {
  background-image:
    linear-gradient(rgba(255,255,255,calc(1 - var(--texture-intensity))), rgba(255,255,255,calc(1 - var(--texture-intensity)))),
    url("../img/texture-light.jpg") !important;
  background-size: auto, cover !important;
  background-position: center !important;
}
.site-shell[data-texture-mode="dark"] .section[data-bg="dark"],
.site-shell[data-texture-mode="both"] .section[data-bg="dark"] {
  background-image:
    linear-gradient(135deg, rgba(24,34,41,calc(1 - var(--texture-intensity))), rgba(42,55,64,calc(1 - var(--texture-intensity)))),
    url("../img/texture-dark-slate.jpg") !important;
  background-size: auto, cover !important;
  background-position: center !important;
}

/* Distinct section backgrounds */
.site-shell .section[data-bg="soft"] {
  background: #eef1f1 !important;
}
.site-shell .section[data-bg="slate"] {
  background: #cfd6d8 !important;
}
.site-shell .section[data-bg="light"] {
  background: #ffffff !important;
}

/* More granular text control */
.site-shell[data-heading-tone="dark"] .section h1,
.site-shell[data-heading-tone="dark"] .section h2,
.site-shell[data-heading-tone="dark"] .section h3 { color: var(--ink) !important; }
.site-shell[data-heading-tone="light"] .section h1,
.site-shell[data-heading-tone="light"] .section h2,
.site-shell[data-heading-tone="light"] .section h3 { color: #fff !important; }
.site-shell[data-heading-tone="accent"] .section h1,
.site-shell[data-heading-tone="accent"] .section h2,
.site-shell[data-heading-tone="accent"] .section h3 { color: var(--blue) !important; }
.site-shell[data-body-tone="dark"] .section p,
.site-shell[data-body-tone="dark"] .section li { color: var(--ink) !important; }
.site-shell[data-body-tone="light"] .section p,
.site-shell[data-body-tone="light"] .section li { color: rgba(255,255,255,.84) !important; }
.site-shell[data-body-tone="muted"] .section p,
.site-shell[data-body-tone="muted"] .section li { color: var(--muted) !important; }
.section-text-master {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

/* Awards: desktop and mobile fixed 2 rows x 3 columns */
.awards {
  grid-template-columns: minmax(210px, .42fr) 1fr !important;
  align-items: center !important;
}
.award-logo-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(110px, 1fr)) !important;
  grid-template-rows: repeat(2, 58px);
  gap: 14px 22px !important;
  justify-content: stretch !important;
  align-items: center !important;
  max-width: 560px;
  margin-left: auto;
}
.award-logo-row .logo-item {
  width: 100% !important;
  height: 56px !important;
}

/* Mobile clients: 3 columns, last two centered */
@media (max-width: 700px) {
  .award-logo-row {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, 52px);
    gap: 12px !important;
    max-width: none;
    margin-left: 0;
  }
  .client-logo-grid {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 12px !important;
  }
  .client-logo-grid .logo-item {
    grid-column: span 2;
    min-width: 0;
    height: 50px;
  }
  .client-logo-grid .logo-item:nth-last-child(2) {
    grid-column: 2 / span 2;
  }
  .client-logo-grid .logo-item:nth-last-child(1) {
    grid-column: 4 / span 2;
  }
}

/* Process visual alternatives */
.process-visual {
  margin-top: 22px;
}
.process-option { display: none; }
.site-shell[data-process-visual="path"] .process-path,
.site-shell[data-process-visual="radar"] .process-radar,
.site-shell[data-process-visual="stack"] .process-stack,
.site-shell[data-process-visual="flow"] .process-flow,
.site-shell[data-process-visual="matrix"] .process-matrix {
  display: grid;
}
.process-path {
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 850;
  font-size: 12px;
  text-transform: uppercase;
}
.process-path span {
  border: 1px solid color-mix(in srgb, var(--blue) 55%, #fff);
  border-radius: 999px;
  padding: 9px 10px;
  background: #fff;
  text-align: center;
}
.process-path i { height: 2px; background: color-mix(in srgb, var(--blue) 45%, #fff); }
.process-radar {
  position: relative;
  min-height: 250px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle, transparent 0 24%, color-mix(in srgb, var(--blue) 16%, transparent) 25% 26%, transparent 27% 46%, color-mix(in srgb, var(--blue) 14%, transparent) 47% 48%, transparent 49%);
}
.process-radar strong {
  position: absolute;
  inset: 50%;
  transform: translate(-50%,-50%);
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 16px 20px;
}
.process-radar span {
  position: absolute;
  color: var(--ink);
  font-weight: 800;
}
.process-radar span:nth-child(1){top:24px;left:50%;transform:translateX(-50%);}
.process-radar span:nth-child(2){top:78px;right:28px;}
.process-radar span:nth-child(3){bottom:58px;right:45px;}
.process-radar span:nth-child(4){bottom:36px;left:50%;transform:translateX(-50%);}
.process-radar span:nth-child(5){top:90px;left:28px;}
.process-stack {
  gap: 10px;
}
.process-stack span {
  padding: 18px 20px;
  border-left: 5px solid var(--blue);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(7,28,56,.08);
  font-weight: 800;
}
.process-flow {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.process-flow span {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  background: color-mix(in srgb, var(--blue) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--blue) 35%, #fff);
  border-radius: var(--radius);
  font-weight: 850;
}
.process-matrix {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.process-matrix span {
  padding: 14px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
  font-weight: 800;
  color: var(--blue);
}

/* Services layout alternatives */
.site-shell[data-services-layout="compact-grid"] .service-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}
.site-shell[data-services-layout="compact-grid"] .service-grid article {
  padding: 18px !important;
}
.site-shell[data-services-layout="two-columns"] .service-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
.site-shell[data-services-layout="pill-list"] .service-grid {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px !important;
}
.site-shell[data-services-layout="pill-list"] .service-grid article {
  border-radius: 999px !important;
  padding: 12px 18px !important;
}
.site-shell[data-services-layout="pill-list"] .service-grid article p { display: none; }
.site-shell[data-services-layout="accordion-look"] .service-grid {
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}
.site-shell[data-services-layout="accordion-look"] .service-grid article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 16px 20px !important;
}
.site-shell[data-services-layout="single-line"] .service-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 8px !important;
}
.site-shell[data-services-layout="single-line"] .service-grid article {
  padding: 14px 10px !important;
}
.site-shell[data-services-layout="single-line"] .service-grid article p {
  display: none;
}
@media (max-width: 900px) {
  .site-shell[data-services-layout] .service-grid {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }
  .site-shell[data-services-layout="pill-list"] .service-grid {
    display: flex !important;
  }
  .process-path, .process-flow, .process-matrix {
    grid-template-columns: 1fr !important;
  }
  .process-path i { display: none; }
}


/* v4.3 verified functional controls */
.site-shell {
  --section-space-live: 92px;
  --texture-intensity: .5;
}

/* Section-Abstand now uses a variable set directly on .site-shell by JS */
.site-shell .section {
  padding-top: var(--section-space-live) !important;
  padding-bottom: var(--section-space-live) !important;
}
.site-shell .awards.compact,
.site-shell .clients.compact {
  padding-top: calc(var(--section-space-live) * .45) !important;
  padding-bottom: calc(var(--section-space-live) * .45) !important;
}

/* Section background colors: force clearer visual differences */
.site-shell .section[data-bg="light"] {
  background: #ffffff !important;
}
.site-shell .section[data-bg="soft"] {
  background: #edf0f0 !important;
}
.site-shell .section[data-bg="slate"] {
  background: #c4cccf !important;
}
.site-shell .section[data-bg="dark"] {
  background: linear-gradient(135deg, #182229, #2a3740) !important;
}
.site-shell .section[data-bg="texture"] {
  background-image:
    linear-gradient(rgba(255,255,255,calc(1 - var(--texture-intensity))), rgba(255,255,255,calc(1 - var(--texture-intensity)))),
    url("../img/texture-light.jpg") !important;
  background-size: auto, cover !important;
  background-position: center !important;
}
.site-shell[data-texture-mode="light"] .section[data-bg="light"],
.site-shell[data-texture-mode="light"] .section[data-bg="soft"],
.site-shell[data-texture-mode="light"] .section[data-bg="slate"],
.site-shell[data-texture-mode="both"] .section[data-bg="light"],
.site-shell[data-texture-mode="both"] .section[data-bg="soft"],
.site-shell[data-texture-mode="both"] .section[data-bg="slate"] {
  background-image:
    linear-gradient(rgba(255,255,255,calc(1 - var(--texture-intensity))), rgba(255,255,255,calc(1 - var(--texture-intensity)))),
    url("../img/texture-light.jpg") !important;
  background-size: auto, cover !important;
  background-position: center !important;
}
.site-shell[data-texture-mode="dark"] .section[data-bg="dark"],
.site-shell[data-texture-mode="both"] .section[data-bg="dark"] {
  background-image:
    linear-gradient(135deg, rgba(24,34,41,calc(1 - var(--texture-intensity))), rgba(42,55,64,calc(1 - var(--texture-intensity)))),
    url("../img/texture-dark-slate.jpg") !important;
  background-size: auto, cover !important;
  background-position: center !important;
}

/* Section-wise headline/body color controls */
.site-shell .section[data-heading="dark"] h1,
.site-shell .section[data-heading="dark"] h2,
.site-shell .section[data-heading="dark"] h3 {
  color: var(--ink) !important;
}
.site-shell .section[data-heading="light"] h1,
.site-shell .section[data-heading="light"] h2,
.site-shell .section[data-heading="light"] h3 {
  color: #ffffff !important;
}
.site-shell .section[data-heading="accent"] h1,
.site-shell .section[data-heading="accent"] h2,
.site-shell .section[data-heading="accent"] h3 {
  color: var(--blue) !important;
}
.site-shell .section[data-body="dark"] p,
.site-shell .section[data-body="dark"] .lead,
.site-shell .section[data-body="dark"] .studio-note,
.site-shell .section[data-body="dark"] .belief-copy {
  color: var(--ink) !important;
}
.site-shell .section[data-body="light"] p,
.site-shell .section[data-body="light"] .lead,
.site-shell .section[data-body="light"] .studio-note,
.site-shell .section[data-body="light"] .belief-copy {
  color: rgba(255,255,255,.86) !important;
}
.site-shell .section[data-body="muted"] p,
.site-shell .section[data-body="muted"] .lead,
.site-shell .section[data-body="muted"] .studio-note,
.site-shell .section[data-body="muted"] .belief-copy {
  color: var(--muted) !important;
}

/* Make section control rows fit the new per-section heading/body selects */
.section-style-row {
  grid-template-columns: minmax(90px, .8fr) minmax(94px, 1fr) minmax(118px, 1.12fr) minmax(118px, 1.12fr) !important;
}

/* Process visual alternatives - hard override */
.process-option { display: none !important; }
.site-shell[data-process-visual="path"] .process-path,
.site-shell[data-process-visual="radar"] .process-radar,
.site-shell[data-process-visual="stack"] .process-stack,
.site-shell[data-process-visual="flow"] .process-flow,
.site-shell[data-process-visual="matrix"] .process-matrix {
  display: grid !important;
}

/* Service layout alternatives - hard override */
.site-shell[data-services-layout="compact-grid"] .service-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}
.site-shell[data-services-layout="two-columns"] .service-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;
}
.site-shell[data-services-layout="pill-list"] .service-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}
.site-shell[data-services-layout="pill-list"] .service-grid article {
  border-radius: 999px !important;
  padding: 12px 18px !important;
}
.site-shell[data-services-layout="pill-list"] .service-grid article p {
  display: none !important;
}
.site-shell[data-services-layout="accordion-look"] .service-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}
.site-shell[data-services-layout="accordion-look"] .service-grid article {
  display: grid !important;
  grid-template-columns: 220px 1fr !important;
  gap: 20px !important;
  padding: 16px 20px !important;
}
.site-shell[data-services-layout="single-line"] .service-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 8px !important;
}
.site-shell[data-services-layout="single-line"] .service-grid article {
  padding: 14px 10px !important;
}
.site-shell[data-services-layout="single-line"] .service-grid article p {
  display: none !important;
}

@media (max-width: 760px) {
  .section-style-row {
    grid-template-columns: 1fr !important;
  }
  .site-shell[data-services-layout] .service-grid {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }
  .site-shell[data-services-layout="pill-list"] .service-grid {
    display: flex !important;
  }
}


/* v6.1 standard setting and requested refinements */

/* Belief-section typographic balance:
   three lines now feel closer together; the middle line is intentionally reduced. */
.belief h2,
.belief .belief-copy h2 {
  font-size: clamp(28px, 4.2vw, 58px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
}
.belief .belief-copy p,
.belief p {
  font-size: clamp(18px, 1.55vw, 25px) !important;
  line-height: 1.42 !important;
  max-width: 760px;
}

/* Audio thesis smaller */
.audio h2 {
  font-size: clamp(28px, 4.1vw, 56px) !important;
  line-height: 1.02 !important;
}

/* Awards desktop: one-line logo rail, no decorative leading strokes,
   text gets its own right-side space. */
.awards {
  display: grid !important;
  grid-template-columns: minmax(520px, 1fr) minmax(280px, .45fr) !important;
  grid-template-areas: "logos copy" !important;
  align-items: center !important;
  gap: clamp(24px, 4vw, 70px) !important;
}
.awards::before,
.awards::after,
.awards *::before,
.awards *::after {
  border-left: 0 !important;
}
.awards .awards-copy {
  grid-area: copy !important;
  max-width: 390px !important;
  justify-self: end !important;
}
.awards .awards-copy p {
  margin: 0 !important;
  font-size: clamp(17px, 1.35vw, 23px) !important;
  line-height: 1.38 !important;
}
.awards .award-logo-row {
  grid-area: logos !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(68px, 1fr)) !important;
  grid-template-rows: 58px !important;
  gap: clamp(10px, 1.4vw, 18px) !important;
  align-items: center !important;
  justify-content: start !important;
  max-width: none !important;
  margin: 0 !important;
}
.awards .award-logo-row .logo-item {
  width: 100% !important;
  height: 54px !important;
  min-width: 0 !important;
  transform: none !important;
}
.awards .award-logo-row .logo-item[aria-label="Delfin"] {
  transform: scale(.82) !important;
}
.awards .award-logo-row .logo-item[aria-label="Delfin"] .logo-original-img,
.awards .award-logo-row .logo-item[aria-label="Delfin"] .logo-tint-mask {
  transform: scale(.82) !important;
  transform-origin: center !important;
}

/* Keep the award block compact despite impact setting */
.site-shell[data-award-impact="5"] .awards,
.site-shell[data-award-impact="6"] .awards,
.site-shell[data-award-impact="7"] .awards,
.site-shell[data-award-impact="8"] .awards,
.site-shell[data-award-impact="9"] .awards,
.site-shell[data-award-impact="10"] .awards {
  padding-top: calc(var(--section-space-live, 92px) * .42) !important;
  padding-bottom: calc(var(--section-space-live, 92px) * .42) !important;
}

/* Awards mobile: logos centered above copy, 2 rows x 3 columns */
@media (max-width: 760px) {
  .awards {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "logos"
      "copy" !important;
    gap: 20px !important;
    text-align: center !important;
  }
  .awards .award-logo-row {
    grid-template-columns: repeat(3, minmax(72px, 1fr)) !important;
    grid-template-rows: repeat(2, 50px) !important;
    justify-content: center !important;
    justify-items: center !important;
    align-items: center !important;
    width: min(100%, 380px) !important;
    margin: 0 auto !important;
    gap: 12px 16px !important;
  }
  .awards .award-logo-row .logo-item {
    width: 100% !important;
    height: 48px !important;
  }
  .awards .awards-copy {
    justify-self: center !important;
    max-width: 92vw !important;
    text-align: center !important;
  }
  .awards .awards-copy p {
    font-size: 18px !important;
  }
  .awards .award-logo-row .logo-item[aria-label="Delfin"] {
    transform: scale(.78) !important;
  }
}


/* v6.1 OH-LA-LA | media brand integration */
.brand {
  display: inline-flex !important;
  align-items: center;
  min-width: clamp(118px, 12vw, 190px);
  letter-spacing: 0 !important;
  font-size: 0 !important;
}
.brand-logo {
  display: block;
  width: clamp(128px, 12vw, 190px);
  height: auto;
  object-fit: contain;
}
.toolbar-logo {
  display: block;
  width: 118px;
  height: auto;
  object-fit: contain;
  background: rgba(255,255,255,.96);
  border-radius: 8px;
  padding: 3px 6px;
}
.brand-wall-logo {
  display: grid !important;
  place-items: center;
  width: clamp(190px, 26vw, 360px) !important;
  height: auto !important;
  right: 12% !important;
  top: 40% !important;
  color: transparent !important;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(24,34,41,.08);
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 34px);
  box-shadow: 0 24px 80px rgba(24,34,41,.12);
}
.brand-wall-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.site-shell[data-hero="minimal-brand"] .brand-wall-logo {
  right: 17% !important;
  top: 43% !important;
}
.controller-brand-logo {
  display: inline-block;
  width: 128px;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
  background: rgba(255,255,255,.94);
  border-radius: 8px;
  padding: 4px 7px;
}
@media (max-width: 900px) {
  .brand-logo { width: 132px; }
  .toolbar-logo { width: 106px; }
  .brand-wall-logo {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: min(78vw, 280px) !important;
    margin: 32px auto;
  }
}


/* v6.1: static production version, controller removed, typographic balancing */
:root {
  --section-space: 112px;
  --inner-space: 64px;
  --section-space-live: 112px;
  --accent-level: .7;
  --blue-strength: 1;
  --headline-scale: 1.03;
  --radius: 4px;
}
.preview-toolbar,
.decision-panel,
.floating-toggle,
.controller-intro,
.controller-panel { display: none !important; }

/* Header: keep clear but less laboratory-like */
.site-header {
  padding-top: clamp(20px, 2.3vw, 34px) !important;
  padding-bottom: clamp(18px, 2.1vw, 30px) !important;
}
.site-header .brand-logo {
  width: clamp(82px, 7.2vw, 126px) !important;
}
.nav a {
  font-size: clamp(11px, .72vw, 13px) !important;
  letter-spacing: .01em !important;
}
.site-header .btn { padding: 13px 18px !important; }

/* Hero: keep signature scale, reduce awkward dominance on small screens */
.hero h1 {
  font-size: clamp(54px, 8.2vw, 132px) !important;
  line-height: .86 !important;
  letter-spacing: -0.07em !important;
}
.hero .lead {
  font-size: clamp(17px, 1.22vw, 22px) !important;
  line-height: 1.34 !important;
  max-width: 585px !important;
}
.hero .brand-wall-logo {
  width: min(44vw, 360px) !important;
}
.hero .brand-wall-logo img {
  width: 100% !important;
}

/* Belief block: better hierarchy, not a second hero */
.belief {
  grid-template-columns: minmax(170px, .35fr) 1fr !important;
  gap: clamp(28px, 5vw, 68px) !important;
}
.belief .belief-copy p:first-child {
  font-size: clamp(21px, 2.05vw, 34px) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.025em !important;
}
.belief .belief-copy p:first-child strong {
  font-size: .98em !important;
  font-weight: 850 !important;
}
.belief .belief-copy p:first-child br + * {
  font-size: .88em !important;
}
.belief .belief-copy p:last-child {
  font-size: clamp(17px, 1.2vw, 22px) !important;
  line-height: 1.38 !important;
  max-width: 600px !important;
}

/* Showreel: modestly tighter */
.showreel h2 {
  font-size: clamp(36px, 4.6vw, 76px) !important;
  line-height: .96 !important;
}
.showreel p { max-width: 520px !important; }

/* Awards: desktop one calm row; mobile logos centered and copy below */
.awards {
  display: grid !important;
  grid-template-columns: minmax(560px, 1fr) minmax(270px, .42fr) !important;
  grid-template-areas: "logos copy" !important;
  gap: clamp(28px, 5vw, 78px) !important;
  align-items: center !important;
}
.awards::before,
.awards::after,
.awards *::before,
.awards *::after { border-left: 0 !important; }
.awards .award-logo-row {
  grid-area: logos !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(68px, 1fr)) !important;
  grid-template-rows: 54px !important;
  gap: clamp(10px, 1.35vw, 18px) !important;
  align-items: center !important;
  max-width: none !important;
  margin: 0 !important;
}
.awards .awards-copy {
  grid-area: copy !important;
  max-width: 360px !important;
  justify-self: end !important;
}
.awards .awards-copy p {
  margin: 0 !important;
  font-size: clamp(17px, 1.18vw, 21px) !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
}
.awards .award-logo-row .logo-item {
  width: 100% !important;
  height: 50px !important;
  min-width: 0 !important;
}
.awards .award-logo-row .logo-item[aria-label="Delfin"] .logo-original-img,
.awards .award-logo-row .logo-item[aria-label="Delfin"] .logo-tint-mask {
  transform: scale(.78) !important;
  transform-origin: center !important;
}

/* Audio: headline was visually over-dominant; keep message strong but cleaner */
.audio h2 {
  font-size: clamp(34px, 4.4vw, 68px) !important;
  line-height: .98 !important;
  letter-spacing: -0.052em !important;
  max-width: 760px !important;
}
.audio h2 span {
  font-size: .86em !important;
  color: rgba(255,255,255,.58) !important;
}
.audio .audio-bridge,
.audio p {
  font-size: clamp(15px, 1vw, 18px) !important;
  line-height: 1.48 !important;
}
.audio-visual { max-width: 520px !important; }

/* Studio: prevent ugly line breaks, especially “kein letzter Arbeitsschritt” */
.studio .studio-copy {
  max-width: 520px !important;
}
.studio h2 {
  font-size: clamp(32px, 4vw, 62px) !important;
  line-height: .98 !important;
  letter-spacing: -0.055em !important;
  text-wrap: balance;
}
.studio .studio-copy p,
.studio .studio-note p {
  font-size: clamp(15px, 1.05vw, 18px) !important;
  line-height: 1.5 !important;
}
.studio .studio-note {
  max-width: 980px !important;
}

/* Strategy / process: keep the three-column rhythm but make the middle not overpowering */
.strategy h2 {
  font-size: clamp(30px, 3.7vw, 58px) !important;
  line-height: .99 !important;
  letter-spacing: -0.052em !important;
  text-wrap: balance;
}
.strategy p {
  font-size: clamp(15px, 1vw, 18px) !important;
  line-height: 1.48 !important;
}
.process-stack span {
  padding: 12px 16px !important;
  font-size: 13px !important;
}

/* Kiu and KI blocks: slightly calmer long headings */
.ki h2,
.final-cta h2 {
  font-size: clamp(34px, 4.4vw, 72px) !important;
  line-height: .98 !important;
  letter-spacing: -0.055em !important;
  text-wrap: balance;
}
.services h3 { font-size: clamp(18px, 1.35vw, 24px) !important; }
.services p { font-size: clamp(14px, .95vw, 17px) !important; }

@media (max-width: 760px) {
  :root { --section-space: 76px; --inner-space: 44px; }
  .site-shell { --section-space-live: 76px !important; }
  .site-header {
    padding: 16px 18px !important;
  }
  .site-header .brand-logo { width: 74px !important; }
  .nav { display: none !important; }
  .site-header .btn { display: none !important; }

  .hero {
    padding-top: 54px !important;
  }
  .hero h1 {
    font-size: clamp(48px, 17vw, 74px) !important;
    line-height: .88 !important;
  }
  .hero .lead {
    font-size: 16px !important;
    line-height: 1.38 !important;
  }
  .hero-actions { gap: 12px !important; }
  .hero .brand-wall-logo { width: min(74vw, 250px) !important; }

  .belief {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .belief .belief-copy p:first-child {
    font-size: 22px !important;
    line-height: 1.18 !important;
  }
  .belief .belief-copy p:last-child {
    font-size: 16px !important;
  }

  .showreel h2,
  .audio h2,
  .studio h2,
  .strategy h2,
  .ki h2,
  .final-cta h2 {
    font-size: clamp(31px, 10.6vw, 46px) !important;
    line-height: .98 !important;
    letter-spacing: -0.052em !important;
  }
  .audio h2 span { font-size: .82em !important; }
  .audio .audio-bridge,
  .audio p,
  .studio .studio-copy p,
  .studio .studio-note p,
  .strategy p {
    font-size: 15px !important;
    line-height: 1.48 !important;
  }

  .awards {
    grid-template-columns: 1fr !important;
    grid-template-areas: "logos" "copy" !important;
    text-align: center !important;
    gap: 20px !important;
  }
  .awards .award-logo-row {
    grid-template-columns: repeat(3, minmax(70px, 1fr)) !important;
    grid-template-rows: repeat(2, 48px) !important;
    width: min(100%, 370px) !important;
    margin: 0 auto !important;
    justify-items: center !important;
    gap: 12px 14px !important;
  }
  .awards .award-logo-row .logo-item {
    height: 46px !important;
    width: 100% !important;
  }
  .awards .awards-copy {
    justify-self: center !important;
    max-width: 310px !important;
    text-align: center !important;
  }
  .awards .awards-copy p { font-size: 16px !important; }
  .awards .award-logo-row .logo-item[aria-label="Delfin"] .logo-original-img,
  .awards .award-logo-row .logo-item[aria-label="Delfin"] .logo-tint-mask {
    transform: scale(.72) !important;
  }

  .services .service-grid,
  .site-shell[data-services-layout="two-columns"] .service-grid {
    grid-template-columns: 1fr !important;
  }
  .final-cta { gap: 28px !important; }
}


/* v6.1 hero image: ON AIR background with soft fade */
.hero.section-hero {
  position: relative !important;
  overflow: hidden !important;
  grid-template-columns: minmax(340px, .82fr) minmax(520px, 1.18fr) !important;
  gap: clamp(36px, 5vw, 92px) !important;
  background: #fff !important;
  min-height: clamp(620px, 72vh, 860px) !important;
}
.hero.section-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 36%;
  z-index: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.95) 12%, rgba(255,255,255,.66) 31%, rgba(255,255,255,.15) 54%, rgba(255,255,255,0) 78%),
    linear-gradient(0deg, rgba(255,255,255,.08), rgba(255,255,255,.08)),
    url("../img/on-air.jpg");
  background-size: cover;
  background-position: center right;
  pointer-events: none;
}
.hero.section-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,0) 18%, rgba(255,255,255,0) 78%, rgba(255,255,255,.78) 100%);
  pointer-events: none;
}
.hero .hero-copy,
.hero .hero-media {
  position: relative !important;
  z-index: 1 !important;
}
.hero .hero-copy {
  max-width: 620px;
}
.hero-onair-media {
  min-height: clamp(360px, 45vh, 560px) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.hero-onair-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  pointer-events: none;
}
/* Hide legacy generated studio illustration if cached markup ever remains */
.hero .studio-room { display: none !important; }

@media (min-width: 761px) {
  .hero.section-hero {
    padding-right: 0 !important;
  }
  .hero .hero-copy {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .hero.section-hero {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    min-height: auto !important;
    padding-top: 46px !important;
    padding-bottom: 62px !important;
    background: #fff !important;
  }
  .hero.section-hero::before {
    inset: auto 0 0 0;
    height: 46%;
    background:
      linear-gradient(180deg, #fff 0%, rgba(255,255,255,.88) 16%, rgba(255,255,255,.44) 42%, rgba(255,255,255,.12) 72%, rgba(255,255,255,0) 100%),
      linear-gradient(90deg, rgba(255,255,255,.28), rgba(255,255,255,0)),
      url("../img/on-air.jpg");
    background-size: cover;
    background-position: center right;
    opacity: .96;
  }
  .hero.section-hero::after {
    display: none;
  }
  .hero-onair-media {
    min-height: 210px !important;
    margin: 18px -18px 0 18px;
    border-radius: 0 0 0 28px !important;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.44) 28%, rgba(255,255,255,0) 58%),
      url("../img/on-air.jpg") center right / cover no-repeat !important;
    box-shadow: 0 22px 70px rgba(24,34,41,.16) !important;
  }
  .hero-onair-img {
    min-height: 210px;
  }
}


/* v6.1 Hero: ON-AIR background only, no foreground duplicate, no legacy shapes */
.hero.section-hero.hero-onair {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: minmax(380px, 0.46fr) 1fr !important;
  align-items: center !important;
  gap: clamp(34px, 5vw, 88px) !important;
  min-height: clamp(630px, 74vh, 880px) !important;
  padding-right: 0 !important;
  background: #fff !important;
}

.hero.section-hero.hero-onair::before {
  content: "";
  position: absolute;
  inset: 0 0 0 42%;
  z-index: -2;
  background-image: url("../img/on-air.jpg");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero.section-hero.hero-onair::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      #fff 0%,
      #fff 30%,
      rgba(255,255,255,.96) 38%,
      rgba(255,255,255,.70) 49%,
      rgba(255,255,255,.24) 61%,
      rgba(255,255,255,0) 75%),
    linear-gradient(180deg,
      rgba(255,255,255,.74) 0%,
      rgba(255,255,255,0) 16%,
      rgba(255,255,255,0) 78%,
      rgba(255,255,255,.55) 100%);
  pointer-events: none;
}

.hero.section-hero.hero-onair .hero-copy {
  position: relative !important;
  z-index: 2 !important;
  max-width: 650px !important;
}

.hero.section-hero.hero-onair .hero-media,
.hero.section-hero.hero-onair .hero-onair-media,
.hero.section-hero.hero-onair .hero-onair-img,
.hero.section-hero.hero-onair .studio-room,
.hero.section-hero.hero-onair .chair,
.hero.section-hero.hero-onair .sofa,
.hero.section-hero.hero-onair .plant,
.hero.section-hero.hero-onair .brand-wall,
.hero.section-hero.hero-onair .brand-wall-logo {
  display: none !important;
}

/* Also neutralize any cached/old hero illustration elements globally inside hero */
.hero .chair,
.hero .sofa,
.hero .plant,
.hero .studio-room,
.hero .brand-wall,
.hero .brand-wall-logo,
.hero-onair-media,
.hero-onair-img {
  display: none !important;
}

@media (min-width: 1500px) {
  .hero.section-hero.hero-onair::before {
    inset-left: 44%;
    background-position: left center;
  }
}

@media (max-width: 980px) {
  .hero.section-hero.hero-onair {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-top: 54px !important;
    padding-bottom: clamp(330px, 61vw, 470px) !important;
    gap: 0 !important;
  }

  .hero.section-hero.hero-onair::before {
    inset: auto 0 0 0;
    height: clamp(300px, 58vw, 440px);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
  }

  .hero.section-hero.hero-onair::after {
    background:
      linear-gradient(180deg,
        #fff 0%,
        #fff 56%,
        rgba(255,255,255,.92) 64%,
        rgba(255,255,255,.38) 78%,
        rgba(255,255,255,0) 100%),
      linear-gradient(90deg,
        rgba(255,255,255,.82) 0%,
        rgba(255,255,255,.22) 34%,
        rgba(255,255,255,0) 64%);
  }

  .hero.section-hero.hero-onair .hero-copy {
    max-width: 100% !important;
  }
}

@media (max-width: 520px) {
  .hero.section-hero.hero-onair {
    padding-bottom: clamp(290px, 72vw, 380px) !important;
  }

  .hero.section-hero.hero-onair::before {
    height: clamp(270px, 70vw, 360px);
    background-size: 112% auto;
    background-position: center bottom;
  }

  .hero.section-hero.hero-onair::after {
    background:
      linear-gradient(180deg,
        #fff 0%,
        #fff 58%,
        rgba(255,255,255,.90) 67%,
        rgba(255,255,255,.34) 80%,
        rgba(255,255,255,0) 100%);
  }
}


/* v6.1 Hero-Fix: ON-AIR slightly left, no hard fade edge; mobile top fade */
.hero.section-hero.hero-onair::before {
  inset: 0 0 0 36% !important;
  background-size: cover !important;
  background-position: 36% center !important;
}

.hero.section-hero.hero-onair::after {
  background:
    linear-gradient(90deg,
      #fff 0%,
      #fff 29%,
      rgba(255,255,255,.995) 35%,
      rgba(255,255,255,.94) 43%,
      rgba(255,255,255,.78) 52%,
      rgba(255,255,255,.48) 62%,
      rgba(255,255,255,.18) 72%,
      rgba(255,255,255,0) 84%),
    linear-gradient(180deg,
      rgba(255,255,255,.84) 0%,
      rgba(255,255,255,.22) 14%,
      rgba(255,255,255,0) 30%,
      rgba(255,255,255,0) 78%,
      rgba(255,255,255,.48) 100%) !important;
}

@media (min-width: 1500px) {
  .hero.section-hero.hero-onair::before {
    inset-left: 38% !important;
    background-position: 34% center !important;
  }
}

@media (max-width: 980px) {
  .hero.section-hero.hero-onair::before {
    inset: auto 0 0 0 !important;
    height: clamp(300px, 58vw, 440px) !important;
    background-size: contain !important;
    background-position: center bottom !important;
  }

  .hero.section-hero.hero-onair::after {
    background:
      linear-gradient(180deg,
        #fff 0%,
        #fff 53%,
        rgba(255,255,255,.98) 59%,
        rgba(255,255,255,.88) 66%,
        rgba(255,255,255,.62) 74%,
        rgba(255,255,255,.28) 84%,
        rgba(255,255,255,0) 100%),
      linear-gradient(90deg,
        rgba(255,255,255,.78) 0%,
        rgba(255,255,255,.18) 42%,
        rgba(255,255,255,0) 72%) !important;
  }
}

@media (max-width: 520px) {
  .hero.section-hero.hero-onair::before {
    height: clamp(270px, 70vw, 360px) !important;
    background-size: 112% auto !important;
    background-position: center bottom !important;
  }

  .hero.section-hero.hero-onair::after {
    background:
      linear-gradient(180deg,
        #fff 0%,
        #fff 55%,
        rgba(255,255,255,.98) 61%,
        rgba(255,255,255,.88) 69%,
        rgba(255,255,255,.56) 79%,
        rgba(255,255,255,.20) 89%,
        rgba(255,255,255,0) 100%) !important;
  }
}


/* v6.1 Mobile Hero Fade-Fix: dedicated fade layer above ON-AIR image */
.hero.section-hero.hero-onair .hero-copy::after {
  content: none;
}

@media (max-width: 980px) {
  .hero.section-hero.hero-onair {
    position: relative !important;
  }

  .hero.section-hero.hero-onair .hero-copy {
    position: relative !important;
    z-index: 3 !important;
  }

  /* Existing large overlay remains, but is softened. */
  .hero.section-hero.hero-onair::after {
    z-index: -1 !important;
    background:
      linear-gradient(180deg,
        #fff 0%,
        #fff 49%,
        rgba(255,255,255,.98) 57%,
        rgba(255,255,255,.82) 66%,
        rgba(255,255,255,.48) 77%,
        rgba(255,255,255,.16) 90%,
        rgba(255,255,255,0) 100%) !important;
  }

  /* Dedicated fade placed over the image top edge. */
  .hero.section-hero.hero-onair::marker {
    content: "";
  }
}

/* Use an extra generated layer via hero-copy shadow pseudo workaround:
   It spans full viewport width and starts where the image begins. */
@media (max-width: 980px) {
  .hero.section-hero.hero-onair .hero-copy::before {
    content: "";
    position: absolute;
    left: calc(-1 * var(--page-pad, 24px));
    right: calc(-1 * var(--page-pad, 24px));
    bottom: calc(-1 * clamp(116px, 22vw, 170px));
    height: clamp(150px, 28vw, 220px);
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg,
      #fff 0%,
      rgba(255,255,255,.98) 22%,
      rgba(255,255,255,.84) 42%,
      rgba(255,255,255,.54) 64%,
      rgba(255,255,255,.24) 82%,
      rgba(255,255,255,0) 100%);
  }
}

@media (max-width: 520px) {
  .hero.section-hero.hero-onair {
    padding-bottom: clamp(305px, 78vw, 405px) !important;
  }

  .hero.section-hero.hero-onair::before {
    height: clamp(282px, 72vw, 372px) !important;
    background-size: 112% auto !important;
    background-position: center bottom !important;
  }

  .hero.section-hero.hero-onair::after {
    background:
      linear-gradient(180deg,
        #fff 0%,
        #fff 51%,
        rgba(255,255,255,.99) 59%,
        rgba(255,255,255,.85) 68%,
        rgba(255,255,255,.50) 79%,
        rgba(255,255,255,.18) 91%,
        rgba(255,255,255,0) 100%) !important;
  }

  .hero.section-hero.hero-onair .hero-copy::before {
    bottom: calc(-1 * clamp(105px, 25vw, 145px));
    height: clamp(158px, 36vw, 215px);
    background: linear-gradient(180deg,
      #fff 0%,
      rgba(255,255,255,.99) 18%,
      rgba(255,255,255,.90) 37%,
      rgba(255,255,255,.62) 60%,
      rgba(255,255,255,.30) 80%,
      rgba(255,255,255,0) 100%);
  }
}


/* v6.1 Mobile-only ON-AIR image replacement.
   Desktop remains on assets/img/on-air.jpg. */
@media (max-width: 980px) {
  .hero.section-hero.hero-onair::before {
    background-image: url("../img/on-air-mobile.jpg") !important;
    height: clamp(360px, 80vw, 560px) !important;
    background-size: cover !important;
    background-position: center bottom !important;
  }

  .hero.section-hero.hero-onair {
    padding-bottom: clamp(360px, 80vw, 560px) !important;
  }

  .hero.section-hero.hero-onair::after {
    background:
      linear-gradient(180deg,
        #fff 0%,
        #fff 47%,
        rgba(255,255,255,.995) 54%,
        rgba(255,255,255,.92) 61%,
        rgba(255,255,255,.72) 69%,
        rgba(255,255,255,.44) 78%,
        rgba(255,255,255,.18) 88%,
        rgba(255,255,255,0) 100%) !important;
  }

  .hero.section-hero.hero-onair .hero-copy::before {
    bottom: calc(-1 * clamp(132px, 30vw, 210px)) !important;
    height: clamp(220px, 44vw, 320px) !important;
    background: linear-gradient(180deg,
      #fff 0%,
      rgba(255,255,255,1) 18%,
      rgba(255,255,255,.94) 34%,
      rgba(255,255,255,.76) 52%,
      rgba(255,255,255,.48) 70%,
      rgba(255,255,255,.20) 86%,
      rgba(255,255,255,0) 100%) !important;
  }
}

@media (max-width: 520px) {
  .hero.section-hero.hero-onair::before {
    height: clamp(360px, 91vw, 500px) !important;
    background-size: cover !important;
    background-position: center bottom !important;
  }

  .hero.section-hero.hero-onair {
    padding-bottom: clamp(360px, 91vw, 500px) !important;
  }

  .hero.section-hero.hero-onair::after {
    background:
      linear-gradient(180deg,
        #fff 0%,
        #fff 50%,
        rgba(255,255,255,.995) 57%,
        rgba(255,255,255,.90) 65%,
        rgba(255,255,255,.66) 74%,
        rgba(255,255,255,.36) 84%,
        rgba(255,255,255,.12) 93%,
        rgba(255,255,255,0) 100%) !important;
  }

  .hero.section-hero.hero-onair .hero-copy::before {
    bottom: calc(-1 * clamp(126px, 34vw, 190px)) !important;
    height: clamp(230px, 52vw, 310px) !important;
  }
}


/* v6.1 Mobile Hero Fade-Fix: hard-guaranteed white lead-in above image */
@media (max-width: 980px) {
  .hero.section-hero.hero-onair {
    padding-bottom: clamp(390px, 86vw, 590px) !important;
  }

  .hero.section-hero.hero-onair::before {
    inset: auto 0 0 0 !important;
    height: clamp(390px, 86vw, 590px) !important;
    background-image: url("../img/on-air-mobile.jpg") !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
    z-index: -3 !important;
  }

  /* This overlay is anchored to the image area itself.
     The top 22% is fully white, so the photo edge cannot be visible. */
  .hero.section-hero.hero-onair::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    height: clamp(390px, 86vw, 590px) !important;
    z-index: -2 !important;
    pointer-events: none !important;
    background:
      linear-gradient(180deg,
        #fff 0%,
        #fff 22%,
        rgba(255,255,255,.995) 30%,
        rgba(255,255,255,.94) 40%,
        rgba(255,255,255,.78) 52%,
        rgba(255,255,255,.52) 64%,
        rgba(255,255,255,.25) 78%,
        rgba(255,255,255,.07) 90%,
        rgba(255,255,255,0) 100%) !important;
  }

  /* Remove previous helper fade that could start too high/low depending on copy height. */
  .hero.section-hero.hero-onair .hero-copy::before,
  .hero.section-hero.hero-onair .hero-copy::after {
    content: none !important;
    display: none !important;
  }
}

@media (max-width: 520px) {
  .hero.section-hero.hero-onair {
    padding-bottom: clamp(390px, 96vw, 535px) !important;
  }

  .hero.section-hero.hero-onair::before {
    height: clamp(390px, 96vw, 535px) !important;
    background-size: cover !important;
    background-position: center bottom !important;
  }

  .hero.section-hero.hero-onair::after {
    height: clamp(390px, 96vw, 535px) !important;
    background:
      linear-gradient(180deg,
        #fff 0%,
        #fff 24%,
        rgba(255,255,255,.995) 32%,
        rgba(255,255,255,.94) 42%,
        rgba(255,255,255,.76) 54%,
        rgba(255,255,255,.48) 66%,
        rgba(255,255,255,.22) 80%,
        rgba(255,255,255,.06) 92%,
        rgba(255,255,255,0) 100%) !important;
  }
}


/* v6.1 Mobile Hero Fade: gradient is baked into the same background layer as the mobile photo */
@media (max-width: 980px) {
  .hero.section-hero.hero-onair {
    padding-bottom: clamp(410px, 92vw, 610px) !important;
    background: #fff !important;
  }

  .hero.section-hero.hero-onair::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    height: clamp(410px, 92vw, 610px) !important;
    z-index: -2 !important;
    pointer-events: none !important;
    background-image:
      linear-gradient(180deg,
        #fff 0%,
        #fff 24%,
        rgba(255,255,255,.995) 33%,
        rgba(255,255,255,.94) 43%,
        rgba(255,255,255,.76) 55%,
        rgba(255,255,255,.48) 67%,
        rgba(255,255,255,.22) 81%,
        rgba(255,255,255,.06) 92%,
        rgba(255,255,255,0) 100%),
      url("../img/on-air-mobile.jpg") !important;
    background-size: 100% 100%, cover !important;
    background-position: center top, center bottom !important;
    background-repeat: no-repeat, no-repeat !important;
  }

  /* Disable old overlay fades. The fade now lives on ::before itself. */
  .hero.section-hero.hero-onair::after,
  .hero.section-hero.hero-onair .hero-copy::before,
  .hero.section-hero.hero-onair .hero-copy::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }
}

@media (max-width: 520px) {
  .hero.section-hero.hero-onair {
    padding-bottom: clamp(420px, 104vw, 560px) !important;
  }

  .hero.section-hero.hero-onair::before {
    height: clamp(420px, 104vw, 560px) !important;
    background-image:
      linear-gradient(180deg,
        #fff 0%,
        #fff 28%,
        rgba(255,255,255,.998) 36%,
        rgba(255,255,255,.96) 45%,
        rgba(255,255,255,.82) 56%,
        rgba(255,255,255,.56) 68%,
        rgba(255,255,255,.28) 82%,
        rgba(255,255,255,.08) 93%,
        rgba(255,255,255,0) 100%),
      url("../img/on-air-mobile.jpg") !important;
    background-size: 100% 100%, cover !important;
    background-position: center top, center bottom !important;
  }
}


/* v6.1 Mobile Hero Fade-Dosierung:
   Weniger Weißraum unter CTA, Foto früher sichtbar, Fade startet erst knapp oberhalb des ON-AIR-Schildes. */
@media (max-width: 980px) {
  .hero.section-hero.hero-onair {
    padding-bottom: clamp(335px, 76vw, 500px) !important;
  }

  .hero.section-hero.hero-onair::before {
    inset: auto 0 0 0 !important;
    height: clamp(335px, 76vw, 500px) !important;
    z-index: -2 !important;
    background-image:
      linear-gradient(180deg,
        #fff 0%,
        rgba(255,255,255,.99) 8%,
        rgba(255,255,255,.86) 17%,
        rgba(255,255,255,.60) 28%,
        rgba(255,255,255,.34) 40%,
        rgba(255,255,255,.14) 52%,
        rgba(255,255,255,.03) 66%,
        rgba(255,255,255,0) 78%),
      url("../img/on-air-mobile.jpg") !important;
    background-size: 100% 100%, cover !important;
    background-position: center top, center bottom !important;
    background-repeat: no-repeat, no-repeat !important;
  }

  .hero.section-hero.hero-onair::after,
  .hero.section-hero.hero-onair .hero-copy::before,
  .hero.section-hero.hero-onair .hero-copy::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }
}

@media (max-width: 520px) {
  .hero.section-hero.hero-onair {
    padding-bottom: clamp(340px, 82vw, 450px) !important;
  }

  .hero.section-hero.hero-onair::before {
    height: clamp(340px, 82vw, 450px) !important;
    background-image:
      linear-gradient(180deg,
        #fff 0%,
        rgba(255,255,255,.99) 7%,
        rgba(255,255,255,.84) 16%,
        rgba(255,255,255,.58) 27%,
        rgba(255,255,255,.32) 39%,
        rgba(255,255,255,.13) 51%,
        rgba(255,255,255,.025) 65%,
        rgba(255,255,255,0) 78%),
      url("../img/on-air-mobile.jpg") !important;
    background-size: 100% 100%, cover !important;
    background-position: center top, center bottom !important;
  }
}


/* v6.1 requested text, typography, logo and layout refinements */

/* Hero headline: ~20% smaller, ~20% more line-height */
.hero.section-hero h1,
.hero.section-hero.hero-onair h1 {
  font-size: clamp(58px, 8.0vw, 128px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
}

/* Hero lead: brand bold */
.hero.section-hero .lead strong {
  font-weight: 850 !important;
}

/* Belief section line balance */
.belief .belief-copy h2,
.belief h2 {
  font-size: clamp(26px, 3.8vw, 52px) !important;
  line-height: 1.05 !important;
}
.belief .belief-copy h2 + p,
.belief h2 + p {
  font-size: .9em !important;
  margin-top: 1.1em !important;
}
.belief .belief-copy p:last-child,
.belief p:last-child {
  font-size: 1.1em !important;
}

/* Desktop clients: alphabetical order is in HTML. Increase each logo by 50% while keeping the rail position. */
@media (min-width: 761px) {
  .client-logo-grid .logo-item,
  .clients .logo-grid .logo-item {
    transform: scale(1.5) !important;
    transform-origin: center !important;
  }
  .client-logo-grid,
  .clients .logo-grid {
    gap: clamp(4px, .75vw, 14px) !important;
    justify-items: center !important;
    align-items: center !important;
  }
}

/* Awards: section label readable like SHOWREEL, logos doubled, no separator lines desktop */
.awards .awards-title,
.awards > .eyebrow.awards-title {
  grid-column: 1 / -1 !important;
  grid-area: auto !important;
  display: block !important;
  margin: 0 0 18px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  font-weight: 850 !important;
  color: var(--blue, #344b5a) !important;
}

@media (min-width: 761px) {
  .awards {
    grid-template-columns: minmax(660px, 1fr) minmax(280px, .42fr) !important;
    grid-template-areas:
      "title title"
      "logos copy" !important;
  }
  .awards .awards-title {
    grid-area: title !important;
  }
  .awards .award-logo-row {
    grid-template-columns: repeat(6, minmax(92px, 1fr)) !important;
    grid-template-rows: 86px !important;
    gap: clamp(6px, .9vw, 14px) !important;
  }
  .awards .award-logo-row .logo-item {
    height: 86px !important;
    transform: scale(1.55) !important;
    transform-origin: center !important;
  }
  .awards .award-logo-row .logo-item::before,
  .awards .award-logo-row .logo-item::after,
  .awards .award-logo-row::before,
  .awards .award-logo-row::after {
    display: none !important;
    content: none !important;
    border: 0 !important;
  }
  .awards .award-logo-row .logo-item[aria-label="Delfin"] {
    transform: scale(1.2) !important;
  }
  .award-logo-row {
    border: 0 !important;
  }
  .award-logo-row > * {
    border-left: 0 !important;
    border-right: 0 !important;
  }
}

/* Audio headline 10% smaller */
.audio h2 {
  font-size: clamp(25px, 3.7vw, 50px) !important;
}

/* Studio headline: smaller so OH-LA-LA | media stays on one line; brand accent */
.studio h2 {
  font-size: clamp(28px, 4.25vw, 58px) !important;
  line-height: 1.02 !important;
}
.studio h2 .accent-brand {
  color: var(--blue, #003a70) !important;
  white-space: nowrap !important;
}

/* Three strategy block headlines 15% smaller */
.strategy h2,
.strategy h3,
.strategy .strategy-card h2,
.strategy .strategy-card h3,
.strategy article h2,
.strategy article h3 {
  font-size: calc(1em * .85) !important;
}
.strategy .strategy-card h2,
.strategy article h2 {
  line-height: 1.05 !important;
}

/* Portrait photo 50% larger */
.strategy img[src*="kiu"],
img[src*="kiu.jpg"],
.portrait,
.kiu-photo,
.kiu img {
  transform: scale(1.5) !important;
  transform-origin: center !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Final CTA headline and peer task headlines ~15% smaller */
.final-cta h2,
.ki h2 {
  font-size: calc(1em * .85) !important;
  line-height: 1.05 !important;
}

/* Keep mobile from becoming too large after desktop-oriented refinements */
@media (max-width: 760px) {
  .hero.section-hero h1,
  .hero.section-hero.hero-onair h1 {
    font-size: clamp(64px, 17vw, 112px) !important;
    line-height: 0.98 !important;
  }
  .awards .award-logo-row .logo-item {
    transform: scale(1.25) !important;
  }
  .strategy img[src*="kiu"],
  img[src*="kiu.jpg"],
  .portrait,
  .kiu-photo,
  .kiu img {
    transform: scale(1.25) !important;
  }
}


/* v6.1 focused fixes */

/* Hero headline another 20% smaller than v6.1 */
.hero.section-hero h1,
.hero.section-hero.hero-onair h1 {
  font-size: clamp(46px, 6.4vw, 102px) !important;
  line-height: 1.02 !important;
}

/* Belief: make first statement less heavy; equalize vertical rhythm */
.belief h2,
.belief .belief-copy h2 {
  font-weight: 680 !important;
}
.belief .belief-copy h2 + p,
.belief h2 + p {
  margin-top: 1.35em !important;
}
.belief .belief-copy p + p,
.belief p + p {
  margin-top: 1.35em !important;
}

/* Awards clean-up: one section title, compact desktop space, body-copy style matched to audio support text */
.awards .awards-title {
  grid-area: title !important;
  display: block !important;
  margin: 0 0 10px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  font-weight: 850 !important;
  color: var(--blue, #344b5a) !important;
  text-align: left !important;
}
.awards .awards-title ~ .awards-title,
.awards p.awards-title:not(:first-of-type) {
  display: none !important;
}
.awards .awards-copy p {
  font-size: clamp(16px, 1.12vw, 20px) !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}
@media (min-width: 761px) {
  .awards {
    grid-template-areas:
      "title copy"
      "logos copy" !important;
    align-items: center !important;
    row-gap: 8px !important;
    padding-top: calc(var(--section-space-live, 92px) * .34) !important;
    padding-bottom: calc(var(--section-space-live, 92px) * .34) !important;
  }
  .awards .award-logo-row {
    align-self: start !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 760px) {
  .awards {
    grid-template-areas:
      "title"
      "logos"
      "copy" !important;
    gap: 16px !important;
  }
  .awards .awards-title {
    justify-self: center !important;
    text-align: center !important;
    margin-bottom: 4px !important;
  }
  .awards .awards-copy p {
    font-size: 18px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
  }
}

/* Restore intended 15% headline reduction for strategy / KI / CTA instead of compounding from earlier rules */
.strategy h2,
.strategy h3,
.strategy .strategy-card h2,
.strategy .strategy-card h3,
.strategy article h2,
.strategy article h3 {
  font-size: clamp(24px, 3vw, 42px) !important;
  line-height: 1.08 !important;
}
.ki h2 {
  font-size: clamp(30px, 4.1vw, 60px) !important;
  line-height: 1.04 !important;
}
.final-cta h2 {
  font-size: clamp(36px, 5.4vw, 78px) !important;
  line-height: 1.02 !important;
}

/* Desktop portrait/text: keep enlarged portrait but prevent overlap by reserving space */
@media (min-width: 900px) {
  .strategy .person,
  .strategy .kiu,
  .strategy .profile,
  .strategy article:has(img[src*="kiu"]),
  .strategy [class*="kiu"] {
    display: grid !important;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) !important;
    column-gap: clamp(34px, 4vw, 70px) !important;
    align-items: center !important;
  }
  .strategy img[src*="kiu"],
  img[src*="kiu.jpg"],
  .portrait,
  .kiu-photo,
  .kiu img {
    transform: scale(1.35) !important;
    transform-origin: center !important;
    justify-self: start !important;
    max-width: 150px !important;
  }
}

/* Mobile keep the new smaller hero readable */
@media (max-width: 760px) {
  .hero.section-hero h1,
  .hero.section-hero.hero-onair h1 {
    font-size: clamp(52px, 14vw, 92px) !important;
    line-height: 1.02 !important;
  }
  .strategy h2,
  .strategy h3,
  .strategy .strategy-card h2,
  .strategy .strategy-card h3,
  .strategy article h2,
  .strategy article h3 {
    font-size: clamp(24px, 8vw, 36px) !important;
  }
  .ki h2,
  .final-cta h2 {
    font-size: clamp(32px, 10vw, 48px) !important;
  }
}


/* v6.1 focused layout and spacing fixes */

/* Glauben-Sektion: mittlere Zeile exakt rhythmisch zwischen erster und dritter Aussage */
.belief .belief-copy,
.belief .belief-inner,
.belief .copy,
.belief {
  --belief-gap: clamp(28px, 3.2vw, 46px);
}
.belief h2,
.belief .belief-copy h2 {
  margin-bottom: var(--belief-gap) !important;
}
.belief h2 + p,
.belief .belief-copy h2 + p {
  margin-top: 0 !important;
  margin-bottom: var(--belief-gap) !important;
}
.belief h2 + p + p,
.belief .belief-copy h2 + p + p {
  margin-top: 0 !important;
}
@media (max-width: 760px) {
  .belief .belief-copy,
  .belief .belief-inner,
  .belief .copy,
  .belief {
    --belief-gap: clamp(24px, 7vw, 36px);
  }
}

/* Showreel: HTML break respected without unwanted extra leading */
.showreel h2 br {
  display: block;
}

/* Awards copy 15% smaller than v6.1 */
.awards .awards-copy p {
  font-size: clamp(13.6px, .95vw, 17px) !important;
}

/* Studio headline line-break treatment */
.studio h2 .accent-brand {
  display: inline-block !important;
  white-space: nowrap !important;
  color: var(--blue, #003a70) !important;
}

/* Strategy/Desktop flow repair:
   Do not change font sizes/weights. Only fix grid geometry, text width, portrait reservation. */
@media (min-width: 980px) {
  .strategy {
    display: grid !important;
    grid-template-columns: minmax(260px, .9fr) minmax(360px, 1.15fr) minmax(360px, 1.25fr) !important;
    column-gap: clamp(48px, 5vw, 92px) !important;
    align-items: start !important;
  }

  .strategy > * {
    min-width: 0 !important;
  }

  .strategy article,
  .strategy .strategy-card,
  .strategy .card {
    max-width: none !important;
  }

  /* Right column / Kiu block: keep portrait next to the personal text, not intruding into headline text. */
  .strategy article:has(img[src*="kiu"]),
  .strategy .person,
  .strategy .kiu,
  .strategy .profile,
  .strategy [class*="kiu"] {
    display: grid !important;
    grid-template-columns: 148px minmax(190px, 1fr) !important;
    grid-template-areas:
      "headline headline"
      "body body"
      "photo personal" !important;
    column-gap: 34px !important;
    row-gap: 28px !important;
    align-items: start !important;
  }

  .strategy article:has(img[src*="kiu"]) h2,
  .strategy .person h2,
  .strategy .kiu h2,
  .strategy .profile h2,
  .strategy [class*="kiu"] h2 {
    grid-area: headline !important;
  }

  .strategy article:has(img[src*="kiu"]) > p:first-of-type,
  .strategy .person > p:first-of-type,
  .strategy .kiu > p:first-of-type,
  .strategy .profile > p:first-of-type,
  .strategy [class*="kiu"] > p:first-of-type {
    grid-area: body !important;
    max-width: 28ch !important;
  }

  .strategy img[src*="kiu"],
  img[src*="kiu.jpg"],
  .strategy .portrait,
  .strategy .kiu-photo,
  .strategy .kiu img {
    grid-area: photo !important;
    transform: none !important;
    max-width: 148px !important;
    width: 148px !important;
    height: 148px !important;
    object-fit: cover !important;
    justify-self: start !important;
    align-self: start !important;
  }

  .strategy article:has(img[src*="kiu"]) > p:last-of-type,
  .strategy .person > p:last-of-type,
  .strategy .kiu > p:last-of-type,
  .strategy .profile > p:last-of-type,
  .strategy [class*="kiu"] > p:last-of-type {
    grid-area: personal !important;
    max-width: 24ch !important;
    margin: 0 !important;
  }

  /* Ensure the process card keeps breathing room and does not visually collide. */
  .strategy .process-visual,
  .strategy .process-stack,
  .strategy [class*="process"] {
    max-width: 100% !important;
  }
}

/* Mobile strategy remains stacked and clean */
@media (max-width: 979px) {
  .strategy article:has(img[src*="kiu"]),
  .strategy .person,
  .strategy .kiu,
  .strategy .profile,
  .strategy [class*="kiu"] {
    display: block !important;
  }
}


/* v6.1 Strategy right-column order/layout fix */
@media (min-width: 980px) {
  /* Right column with Kiu image:
     1) Headline
     2) "Damit Projekte..." full width
     3) Portrait left + "Ich bin Kiu..." right */
  .strategy article:has(img[src*="kiu"]),
  .strategy .person:has(img),
  .strategy .kiu:has(img),
  .strategy .profile:has(img),
  .strategy [class*="kiu"]:has(img) {
    display: grid !important;
    grid-template-columns: 148px minmax(0, 1fr) !important;
    grid-template-areas:
      "headline headline"
      "body body"
      "photo personal" !important;
    column-gap: clamp(24px, 2.4vw, 42px) !important;
    row-gap: clamp(22px, 2.2vw, 34px) !important;
    align-items: start !important;
  }

  .strategy article:has(img[src*="kiu"]) h2,
  .strategy .person:has(img) h2,
  .strategy .kiu:has(img) h2,
  .strategy .profile:has(img) h2,
  .strategy [class*="kiu"]:has(img) h2 {
    grid-area: headline !important;
    margin-bottom: 0 !important;
  }

  /* "Damit Projekte..." should be the full-width body statement. */
  .strategy article:has(img[src*="kiu"]) > p:first-of-type,
  .strategy .person:has(img) > p:first-of-type,
  .strategy .kiu:has(img) > p:first-of-type,
  .strategy .profile:has(img) > p:first-of-type,
  .strategy [class*="kiu"]:has(img) > p:first-of-type {
    grid-area: body !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .strategy article:has(img[src*="kiu"]) img[src*="kiu"],
  .strategy .person:has(img) img,
  .strategy .kiu:has(img) img,
  .strategy .profile:has(img) img,
  .strategy [class*="kiu"]:has(img) img {
    grid-area: photo !important;
    justify-self: start !important;
    align-self: start !important;
    margin: 0 !important;
    transform: none !important;
    width: 148px !important;
    max-width: 148px !important;
    height: 148px !important;
    object-fit: cover !important;
  }

  /* "Ich bin Kiu..." should sit right of the portrait and use the remaining width. */
  .strategy article:has(img[src*="kiu"]) > p:last-of-type,
  .strategy .person:has(img) > p:last-of-type,
  .strategy .kiu:has(img) > p:last-of-type,
  .strategy .profile:has(img) > p:last-of-type,
  .strategy [class*="kiu"]:has(img) > p:last-of-type {
    grid-area: personal !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
  }
}

/* v6.1 Final CTA desktop headline equals KI headline formatting */
@media (min-width: 761px) {
  .final-cta h2 {
    font-size: clamp(30px, 4.1vw, 60px) !important;
    line-height: 1.04 !important;
    letter-spacing: inherit !important;
  }
}


/* v6.1 verified fixes based on actual HTML structure */

/* Belief spacing fix:
   In v6.1 the middle sentence was inside the same <p> after a <br>, so margin rules could not affect it.
   v6.1 splits all three thoughts into separate paragraphs and uses one shared gap value. */
.belief .belief-copy-balanced {
  --belief-equal-gap: clamp(28px, 3.1vw, 44px);
}
.belief .belief-copy-balanced .belief-line {
  margin: 0 !important;
}
.belief .belief-copy-balanced .belief-line + .belief-line {
  margin-top: var(--belief-equal-gap) !important;
}
.belief .belief-copy-balanced .belief-line-top {
  font-weight: 680 !important;
}
.belief .belief-copy-balanced .belief-line-middle {
  font-size: .9em !important;
}
.belief .belief-copy-balanced .belief-line-bottom {
  font-size: 1.1em !important;
}
@media (max-width: 760px) {
  .belief .belief-copy-balanced {
    --belief-equal-gap: clamp(24px, 7vw, 36px);
  }
}

/* Strategy portrait fix:
   The actual HTML is article#kiu > h2 + p + .portrait-row.
   Earlier rules targeted article direct p:last-of-type, which never matched the text inside .portrait-row.
   This rule pins the real elements into the intended desktop layout. */
@media (min-width: 980px) {
  .strategy article#kiu {
    display: block !important;
    min-width: 0 !important;
  }

  .strategy article#kiu > h2 {
    margin-bottom: clamp(28px, 2.6vw, 42px) !important;
  }

  .strategy article#kiu > p {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 clamp(34px, 3.2vw, 54px) !important;
  }

  .strategy article#kiu .portrait-row {
    display: grid !important;
    grid-template-columns: 148px minmax(0, 1fr) !important;
    column-gap: clamp(24px, 2.4vw, 42px) !important;
    align-items: start !important;
    width: 100% !important;
    max-width: none !important;
  }

  .strategy article#kiu .portrait-row img.portrait {
    width: 148px !important;
    height: 148px !important;
    max-width: 148px !important;
    object-fit: cover !important;
    justify-self: start !important;
    align-self: start !important;
    margin: 0 !important;
    transform: none !important;
  }

  .strategy article#kiu .portrait-row p {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

@media (max-width: 979px) {
  .strategy article#kiu .portrait-row {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
  }
}


/* v6.1 Portrait column hard reset based on real HTML:
   article#kiu > h2 + p + .portrait-row(img.portrait + p)
   Desktop:
   - "Damit Projekte..." full width below headline.
   - Portrait + "Ich bin Kiu..." are one left-aligned combination below it.
   Mobile:
   - Portrait is strictly circular and text remains in flow. */

.strategy article#kiu,
.strategy article#kiu * {
  box-sizing: border-box;
}

@media (min-width: 980px) {
  .strategy article#kiu {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "headline"
      "body"
      "portraitrow" !important;
    justify-items: stretch !important;
    align-items: start !important;
    min-width: 0 !important;
  }

  .strategy article#kiu > h2 {
    grid-area: headline !important;
    width: 100% !important;
    margin: 0 0 clamp(30px, 2.8vw, 46px) !important;
  }

  .strategy article#kiu > p {
    grid-area: body !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 clamp(28px, 2.6vw, 42px) !important;
  }

  .strategy article#kiu > .portrait-row {
    grid-area: portraitrow !important;
    display: grid !important;
    grid-template-columns: 148px minmax(0, 1fr) !important;
    column-gap: clamp(26px, 2.5vw, 44px) !important;
    align-items: center !important;
    justify-content: start !important;
    justify-self: start !important;
    width: min(100%, 520px) !important;
    max-width: 520px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .strategy article#kiu > .portrait-row img.portrait {
    display: block !important;
    width: 148px !important;
    height: 148px !important;
    min-width: 148px !important;
    max-width: 148px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 999px !important;
    justify-self: start !important;
    align-self: center !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .strategy article#kiu > .portrait-row p {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: center !important;
  }
}

@media (max-width: 979px) {
  .strategy article#kiu > .portrait-row {
    display: grid !important;
    grid-template-columns: clamp(78px, 18vw, 112px) minmax(0, 1fr) !important;
    column-gap: clamp(16px, 4vw, 24px) !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: clamp(18px, 4vw, 28px) !important;
  }

  .strategy article#kiu > .portrait-row img.portrait {
    display: block !important;
    width: clamp(78px, 18vw, 112px) !important;
    height: clamp(78px, 18vw, 112px) !important;
    min-width: clamp(78px, 18vw, 112px) !important;
    max-width: clamp(78px, 18vw, 112px) !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    transform: none !important;
    margin: 0 !important;
  }

  .strategy article#kiu > .portrait-row p {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}


/* v6.1 HARD desktop reset for the Kiu portrait column.
   Reason: older desktop strategy rules still controlled the visual flow.
   This block targets the real article with ID + explicit class and rebuilds only that card. */

@media (min-width: 980px) {
  .strategy article#kiu.kiu-card-hardreset {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto !important;
    grid-template-areas:
      "kiu-headline"
      "kiu-body"
      "kiu-person" !important;
    align-content: start !important;
    align-items: start !important;
    justify-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .strategy article#kiu.kiu-card-hardreset > h2 {
    grid-area: kiu-headline !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 clamp(28px, 2.6vw, 42px) 0 !important;
    padding: 0 !important;
  }

  /* "Damit Projekte..." full width, before portrait row */
  .strategy article#kiu.kiu-card-hardreset > p:not(.portrait-row p) {
    grid-area: kiu-body !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 clamp(34px, 3vw, 52px) 0 !important;
    padding: 0 !important;
  }

  /* Portrait + Kiu text as one left-aligned unit at the original text position */
  .strategy article#kiu.kiu-card-hardreset > .portrait-row {
    grid-area: kiu-person !important;
    display: grid !important;
    grid-template-columns: 148px minmax(0, 1fr) !important;
    grid-template-rows: auto !important;
    column-gap: clamp(26px, 2.4vw, 42px) !important;
    align-items: center !important;
    justify-items: start !important;
    justify-self: start !important;
    align-self: start !important;
    width: min(100%, 540px) !important;
    max-width: 540px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: static !important;
    transform: none !important;
  }

  .strategy article#kiu.kiu-card-hardreset > .portrait-row > img.portrait {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 148px !important;
    height: 148px !important;
    min-width: 148px !important;
    max-width: 148px !important;
    min-height: 148px !important;
    max-height: 148px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 999px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: static !important;
    transform: none !important;
    justify-self: start !important;
    align-self: center !important;
  }

  .strategy article#kiu.kiu-card-hardreset > .portrait-row > p {
    display: block !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: static !important;
    transform: none !important;
    justify-self: stretch !important;
    align-self: center !important;
  }

  /* Neutralize older broad strategy/portrait constraints for this exact card. */
  .strategy article#kiu.kiu-card-hardreset .portrait-row,
  .strategy article#kiu.kiu-card-hardreset .portrait-row *,
  .strategy article#kiu.kiu-card-hardreset img.portrait {
    box-sizing: border-box !important;
  }
}

@media (max-width: 979px) {
  .strategy article#kiu.kiu-card-hardreset > .portrait-row {
    display: grid !important;
    grid-template-columns: clamp(78px, 18vw, 112px) minmax(0, 1fr) !important;
    column-gap: clamp(16px, 4vw, 24px) !important;
    align-items: center !important;
  }

  .strategy article#kiu.kiu-card-hardreset > .portrait-row > img.portrait {
    width: clamp(78px, 18vw, 112px) !important;
    height: clamp(78px, 18vw, 112px) !important;
    min-width: clamp(78px, 18vw, 112px) !important;
    max-width: clamp(78px, 18vw, 112px) !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 999px !important;
    object-fit: cover !important;
    transform: none !important;
    margin: 0 !important;
  }
}
