:root {
  --navy: #07111c;
  --navy-2: #0c1a2b;
  --navy-3: #132538;
  --ink: #10141a;
  --paper: #f3f5f7;
  --paper-2: #e8ecf0;
  --accent: #9e1b2c;
  --accent-deep: #7a1422;
  --del-green: #6f8f3a;
  --kpmg-blue: #1f4b7a;
  --muted: #8b949e;
  --muted-light: #b7bfc8;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(16, 20, 26, 0.12);
  --shadow: 0 24px 60px rgba(7, 17, 28, 0.28);
  --font-sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
  --header-h-compact: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--white);
  background: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
strong {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--white);
  z-index: 1000;
  transform-origin: left;
}

/* Header — institutional, restrained */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 28, 0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-inner {
  width: min(1240px, calc(100% - 3rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  z-index: 2;
}

.header-brand-name {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
}

.header-brand-sep {
  width: 1px;
  height: 1.1rem;
  background: rgba(255, 255, 255, 0.2);
}

.header-brand-sub {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.header-nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  height: var(--header-h);
  width: auto;
  max-width: min(720px, calc(100vw - 22rem));
  transform: translateX(-50%);
  pointer-events: none;
}

.header-nav a {
  position: relative;
  pointer-events: auto;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--muted-light);
  white-space: nowrap;
  transition: color 0.2s;
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--white);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  z-index: 2;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding-right: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
  padding: 0.25rem 0.4rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s;
}

.lang-btn.is-active {
  color: var(--white);
}

.lang-btn:not(.is-active):hover {
  color: var(--muted-light);
}

.header-contact {
  min-height: 2.25rem;
  padding-inline: 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

.header-contact:hover {
  transform: none;
}

.nav-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(0.36rem) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-0.36rem) rotate(-45deg);
}

/* Buttons — Bain crispness + GS restraint */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, transform 0.3s;
}

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

.btn-sm {
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.7rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* Hero — full-bleed, brand-first */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 1.5rem) 0 4.5rem;
  overflow: hidden;
}

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

.hero-image {
  position: absolute;
  inset: -8% 0;
  background:
    linear-gradient(120deg, rgba(7, 17, 28, 0.2), transparent 45%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2400&q=80')
      center / cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 28, 0.55) 0%, rgba(7, 17, 28, 0.72) 42%, rgba(7, 17, 28, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 17, 28, 0.75) 0%, rgba(7, 17, 28, 0.35) 55%, rgba(7, 17, 28, 0.55) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 3rem));
  margin-inline: auto 0;
  margin-left: max(1.5rem, calc((100% - 1120px) / 2));
  padding-right: 1.5rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
  flex-wrap: wrap;
}

.brand-name {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}

.brand-divider {
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.brand-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.hero-title {
  margin: 0 0 1.25rem;
  max-width: 22ch;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 42rem;
  color: var(--muted-light);
  font-size: 1.02rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Sections */
.section {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.section-dark {
  background: var(--navy);
}

.section-navy {
  background: var(--navy-2);
}

.section-light {
  background:
    linear-gradient(180deg, #f7f8fa 0%, var(--paper) 100%);
  color: var(--ink);
}

.section-accent {
  background: linear-gradient(135deg, var(--navy-2) 0%, #0f1824 50%, var(--navy) 100%);
}

.band::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.eyebrow.light {
  color: var(--muted-light);
}

.section-title {
  margin: 0 0 1.25rem;
  max-width: 22ch;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title.dark,
.section-lead.dark {
  color: var(--ink);
}

.section-lead {
  margin: 0;
  max-width: 40rem;
  color: var(--muted-light);
  font-size: 1.02rem;
}

.section-light .section-lead {
  color: #59636e;
}

.section-intro {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Pillars — Roland Berger density + Deloitte clarity */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.pillar {
  padding: 2rem 1.75rem 0.5rem 0;
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: none;
  padding-right: 0;
}

.pillar:not(:first-child) {
  padding-left: 1.75rem;
}

.pillar-num {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.pillar h3 {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.pillar p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.95rem;
}

/* Services — KPMG structured panels */
.service-stack {
  display: flex;
  flex-direction: column;
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line-dark);
  transition: background 0.35s var(--ease), padding 0.35s var(--ease);
}

.service-panel:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.service-panel:hover {
  background: rgba(31, 75, 122, 0.04);
}

.service-index {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--kpmg-blue);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.service-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-body h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
}

.service-body > p {
  margin: 0 0 1.25rem;
  color: #59636e;
  max-width: 40rem;
}

.service-list {
  display: grid;
  gap: 0.55rem;
}

.service-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #3d4650;
  font-size: 0.92rem;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 1px;
  background: var(--del-green);
}

/* Split sourcing */
.split-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 72vh;
  padding: 0;
  overflow: hidden;
}

.split-media {
  position: relative;
  min-height: 420px;
  clip-path: inset(8% 8% 8% 0);
  transition: clip-path 1s var(--ease);
}

.split-media.is-visible {
  clip-path: inset(0 0 0 0);
}

.split-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 28, 0.15), rgba(7, 17, 28, 0.55)),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80')
      center / cover no-repeat;
  transform: scale(1.08);
  transition: transform 1.2s var(--ease);
}

.split-media.is-visible .split-image {
  transform: scale(1);
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5.5rem);
}

.check-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted-light);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

/* Due Diligence */
.dd-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.dd-featured {
  padding: 2.5rem;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.dd-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.dd-featured h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

.dd-featured > p {
  margin: 0 0 1.5rem;
  color: var(--muted-light);
}

.dd-featured .service-list li {
  color: var(--muted-light);
}

.dd-featured .service-list li::before {
  background: rgba(255, 255, 255, 0.55);
}

.dd-side {
  display: grid;
  gap: 1rem;
}

.dd-item {
  padding: 1.5rem 1.6rem;
  border-top: 2px solid var(--accent);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 20, 26, 0.05);
}

.dd-item h4 {
  margin: 0 0 0.55rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
}

.dd-item p {
  margin: 0;
  color: #59636e;
  font-size: 0.92rem;
}

/* Process — Bain step clarity */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 0.55rem;
  left: 0.35rem;
  right: 0.35rem;
  height: 1px;
  background: var(--line);
}

.process-step {
  position: relative;
  padding-top: 2rem;
}

.process-dot {
  position: absolute;
  top: 0.3rem;
  left: 0.2rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 4px var(--navy);
}

.process-label {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.process-step h3 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.process-step p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.88rem;
}

/* Workshops */
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.workshop-copy .section-lead {
  margin-bottom: 2rem;
}

.workshop-list {
  display: grid;
  gap: 0;
}

.workshop-list li {
  display: grid;
  gap: 0.4rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.workshop-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.workshop-list strong {
  font-size: 1.125rem;
  font-weight: 600;
}

.workshop-list span {
  color: var(--muted-light);
  font-size: 0.92rem;
}

/* Manifesto */
.quote-section {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.manifesto {
  margin: 0;
  max-width: 48rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}

.manifesto p {
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
}

.manifesto footer {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  margin-top: 2rem;
  display: grid;
  gap: 0.5rem;
}

.contact-details a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  transition: opacity 0.2s;
}

.contact-details a:hover {
  opacity: 0.8;
}

.contact-details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(7, 17, 28, 0.55);
  color: var(--white);
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
}

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

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  background: #050c14;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.footer-brand p,
.footer-legal {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  text-align: right;
}

.footer-meta a {
  font-size: 0.82rem;
  color: var(--muted-light);
  transition: color 0.2s;
}

.footer-meta a:hover {
  color: var(--white);
}

/* Legal / Impressum */
.legal-page {
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  background: var(--navy);
  min-height: 100svh;
}

.legal-inner {
  display: grid;
  gap: 2.5rem;
  max-width: 820px;
}

.legal-hero .section-title {
  max-width: none;
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin: 0;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-meta dt {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-meta dd {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal-meta a {
  color: var(--white);
  transition: opacity 0.2s;
}

.legal-meta a:hover {
  opacity: 0.8;
}

.legal-content {
  display: grid;
  gap: 2rem;
}

.legal-section h2 {
  margin: 0 0 0.85rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.legal-section p {
  margin: 0 0 0.85rem;
  color: var(--muted-light);
  font-size: 0.95rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

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

  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  transition-delay: calc(var(--delay, 0) * 90ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay='1'] {
  --delay: 1;
}
.reveal[data-delay='2'] {
  --delay: 2;
}
.reveal[data-delay='3'] {
  --delay: 3;
}
.reveal[data-delay='4'] {
  --delay: 4;
}

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

  .reveal,
  .split-media,
  .split-image,
  .hero-image {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .header-nav a {
    font-size: 0.75rem;
  }

  .header-nav {
    gap: 1rem;
  }
}

@media (max-width: 980px) {
  .pillar-grid,
  .process-track,
  .dd-layout,
  .workshop-grid,
  .contact-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .pillar {
    padding: 1.75rem 0 !important;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .pillar:last-child {
    border-bottom: none;
  }

  .service-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-track::before {
    display: none;
  }

  .split-media {
    min-height: 320px;
    clip-path: inset(0);
  }

  .split-content {
    padding-top: 2.5rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    z-index: 500;
    background: #07111c;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    background: #07111c;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    position: relative;
    z-index: 510;
    gap: 1rem;
  }

  .header-brand-sub,
  .header-brand-sep {
    display: none;
  }

  .header-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 490;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.7rem;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    margin: 0;
    padding: 1.25rem 1.25rem calc(1.75rem + env(safe-area-inset-bottom, 0px));
    transform: none;
    background: #07111c;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
  }

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

  .header-nav a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 1.05rem 1.15rem;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #ffffff;
    white-space: normal;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.05);
  }

  .header-nav a::after {
    display: none;
  }

  .header-nav a:hover,
  .header-nav a:active,
  .header-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }

  .header-end .header-contact {
    display: none;
  }

  .lang-switch {
    padding-right: 0;
    border-right: none;
  }

  .nav-toggle {
    display: flex;
  }

  html.menu-open,
  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 820px) {
  .brand-name {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, calc(100% - 2rem));
  }

  .contact-form {
    padding: 1.25rem;
  }

  .dd-featured {
    padding: 1.5rem;
  }
}

/* Service detail links & pages */
.service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}

.service-link::after {
  content: ' →';
  margin-left: 0.35rem;
}

.service-link:hover {
  border-bottom-color: currentColor;
}

.service-link.light {
  color: var(--muted-light);
}

.service-detail {
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  background: var(--navy);
  min-height: 100svh;
}

.service-detail-inner {
  display: grid;
  gap: 3rem;
}

.service-back {
  display: inline-flex;
  width: fit-content;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color 0.25s;
}

.service-back:hover {
  color: var(--white);
}

.service-detail-hero .section-title {
  max-width: 18ch;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.service-prose {
  display: grid;
  gap: 1.25rem;
}

.service-prose p {
  margin: 0;
  color: var(--muted-light);
  font-size: 1.02rem;
  max-width: 42rem;
}

.service-block-title {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.service-side .check-list {
  margin-top: 0;
}

.check-list.dark li {
  color: var(--muted-light);
}

.service-kpi-section {
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.service-kpi-head {
  margin-bottom: 1.75rem;
}

.service-kpi-note {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.kpi-card {
  padding: 1.6rem 1.4rem;
  background: var(--navy-2);
}

.kpi-value {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}

.kpi-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.service-detail-cta {
  padding-top: 0.5rem;
}

@media (max-width: 980px) {
  .service-detail-body,
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .service-detail-body,
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}
