/* ============================================================
   LOCAL FONTS
   ============================================================ */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/SpaceGrotesk-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/SpaceGrotesk-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/SourceSerif4-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/SourceSerif4-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/SourceSerif4-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/SourceSerif4-Italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/SourceSerif4-MediumItalic.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/JetBrainsMono-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/JetBrainsMono-Medium.woff2') format('woff2');
}

/* ============================================================
   Weboro Media — Editorial / Boutique Light Theme
   ============================================================ */

:root {
  /* Surfaces — warm, helles Off-White-System */
  --bg:          #FAFAF8;
  --surface:     #F3F1ED;
  --card:        #FFFFFF;
  --border:      #E2DFD8;
  --border-soft: #ECE9E2;

  /* Type */
  --text:        #1A1A1A;
  --text-muted:  #6B6560;
  --text-dim:    #A09A93;

  /* Accents (overridden by tweaks) */
  --accent-1:      #2D3B87;   /* Dunkelblau, seriös */
  --accent-2:      #1A6B5C;   /* Gedämpftes Teal */
  --accent-1-soft: rgba(45,59,135,0.08);

  /* Shadows */
  --shadow-card:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);

  /* Fonts */
  --font-display: "Space Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --font-body:    "Source Serif 4", "Iowan Old Style", "Charter", Georgia, serif;
  --font-sans:    "Space Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Spacing */
  --container: 1280px;
  --gutter: 32px;
  --section-pad: 120px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #FAFAF8 0%, #F0EDE6 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Sehr feine Papier-/Noise-Textur über dem gesamten Hintergrund.
   Liegt hinter dem Inhalt, ohne ihn anzufassen. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--accent-1); color: white; }

/* ============================================================
   Layout primitives
   ============================================================ */

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section--tight { padding: 72px 0; }

/* Section flavours — Standard ist transparent (Body-Gradient scheint durch).
   .section--dark = harter Navy-Kontrast für visuellen Rhythmus. */
.section--dark {
  background: #1A1F35;
  color: #F9FAFB;
  position: relative;
  overflow: hidden;
}
.section--dark::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,212,200,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section--dark .wrap { position: relative; z-index: 1; }
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark .work__client {
  color: #F9FAFB;
}
.section--dark .shead__kicker,
.section--dark .kicker,
.section--dark .page-hero__kicker,
.section--dark .srow__num,
.section--dark .tstep__num,
.section--dark .value__num {
  color: #6DD4C8;
}
.section--dark .shead__lede,
.section--dark p,
.section--dark .muted,
.section--dark .two-col__item p,
.section--dark .work__desc,
.section--dark .value p,
.section--dark .tstep p,
.section--dark .srow__body,
.section--dark .srow__body p,
.section--dark .page-hero__sub {
  color: #B8B5AD;
}
.section--dark .two-col__list li {
  color: #F9FAFB;
  border-bottom-color: rgba(255,255,255,0.10);
}
.section--dark .two-col__list {
  border-top-color: rgba(255,255,255,0.10);
}
.section--dark .two-col__list li .tag,
.section--dark .tag {
  color: #6B7280;
}
.section--dark .tlink {
  color: #F9FAFB;
  border-bottom-color: rgba(255,255,255,0.20);
}
.section--dark .tlink:hover {
  border-bottom-color: #6DD4C8;
  color: #6DD4C8;
}
.section--dark .shot,
.section--dark .hero__shot,
.section--dark .founder__photo {
  border-color: rgba(255,255,255,0.10);
  background: #111827;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.2);
}
.section--dark .shot__pad { background: #111827; }
.section--dark .shot__label { color: #6B7280; }
.section--dark .work__tags span,
.section--dark .pill,
.section--dark .toolset span {
  background: rgba(255,255,255,0.06);
  color: #B8B5AD;
}
.section--dark .work__year { color: #6B7280; }
.section--dark .stats {
  border-color: rgba(255,255,255,0.10);
  color: #B8B5AD;
}
.section--dark .stats span::before { background: #6DD4C8; }
.section--dark .quote__mark { color: #6DD4C8; }
.section--dark blockquote { color: #F9FAFB; }
.section--dark .quote__cite { color: #B8B5AD; }
.section--dark .quote__avatar {
  background: #111827;
  border-color: rgba(255,255,255,0.12);
}
.section--dark .srow {
  border-bottom-color: rgba(255,255,255,0.10);
}
.section--dark .srow:first-child { border-top-color: rgba(255,255,255,0.10); }
.section--dark .srow__body .example {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: #F9FAFB;
  box-shadow: none;
}
.section--dark .srow__body .example .mono { color: #6DD4C8; }
.section--dark .tstep { border-left-color: rgba(255,255,255,0.10); }
.section--dark .tstep::before {
  background: #1A1F35;
  border-color: rgba(255,255,255,0.25);
}
.section--dark .tstep.is-lit::before {
  background: #6DD4C8;
  border-color: #6DD4C8;
  box-shadow: 0 0 8px #6DD4C8, 0 0 16px rgba(109,212,200,0.4);
}
.section--dark .tstep.is-active::before { background: #6DD4C8; }
.section--dark .timeline__steps::before {
  background: #6DD4C8;
  box-shadow: 0 0 8px #6DD4C8, 0 0 16px rgba(109,212,200,0.3);
}
.section--dark .btn--ghost {
  border-color: rgba(255,255,255,0.20);
  color: #F9FAFB;
}
.section--dark .btn--ghost:hover {
  border-color: #6DD4C8;
  color: #6DD4C8;
}

/* 12-col grid overlay */
.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  display: none;
}
body[data-grid="on"] .grid-overlay { display: block; }
.grid-overlay .wrap {
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}
.grid-overlay .col {
  background: rgba(45, 59, 135, 0.025);
  border-left: 1px dashed rgba(45, 59, 135, 0.15);
  border-right: 1px dashed rgba(45, 59, 135, 0.15);
}

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

h1 { font-size: clamp(48px, 6vw, 80px); line-height: 1.02; }
h2 { font-size: clamp(40px, 4.5vw, 56px); line-height: 1.06; }
h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.18; }
h4 { font-size: 20px; line-height: 1.3; letter-spacing: -0.01em; }

p { margin: 0 0 1em 0; }
p.lead {
  font-size: 22px;
  line-height: 1.55;
  color: var(--text);
  max-width: 60ch;
}

.muted { color: var(--text-muted); }
.dim   { color: var(--text-dim); }
.sans  { font-family: var(--font-sans); }

.mono {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0;
}

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

/* Kicker = Source Serif Italic, accent-2 (Teal), kein Uppercase */
.kicker, .shead__kicker, .page-hero__kicker {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: var(--accent-2);
  letter-spacing: 0;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 0 0 18px;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  border: 1.5px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
  line-height: 1;
}
.btn--primary {
  background: var(--accent-1);
  color: #fff;
  border-color: var(--accent-1);
}
.btn--primary:hover {
  background: #25316f;
  border-color: #25316f;
}
.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
}

.tlink {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 500;
  transition: border-color 140ms ease, gap 200ms ease, color 140ms ease;
}
.tlink:hover { border-color: var(--accent-1); color: var(--accent-1); gap: 12px; }
.tlink::after { content: "→"; font-family: var(--font-sans); }

/* ============================================================
   Navbar
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background 200ms ease, border-color 200ms ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: var(--bg);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  line-height: 1;
}
.brand__logo {
  height: 44px;
  width: auto;
  display: block;
}
.footer__brand .brand__logo { height: 56px; }
.mobile-sheet__top .brand__logo { height: 48px; }
.brand__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-1);
  display: inline-block;
  margin-left: 4px;
  transform: translateY(-2px);
}
.nav__links {
  display: flex;
  gap: 36px;
  font-family: var(--font-sans);
  font-size: 15px;
}
.nav__links a {
  color: var(--text-muted);
  transition: color 140ms ease;
  position: relative;
  font-weight: 500;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active { color: var(--accent-1); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent-1);
}

.nav__right { display: flex; align-items: center; gap: 18px; }

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
}

/* Mobile sheet */
.mobile-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--bg);
  padding: 24px var(--gutter);
}
.mobile-sheet.open { display: flex; flex-direction: column; }
.mobile-sheet__top { display: flex; justify-content: space-between; align-items: center; }
.mobile-sheet__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 60px;
}
.mobile-sheet__links a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
}

/* ============================================================
   Hero — Oversized Typografie mit animiertem Highlight
   ============================================================ */

.hero {
  padding: 100px 0 0;
  overflow: hidden;
  position: relative;
}

.hero .wrap { position: relative; z-index: 1; }

.hero__kicker {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--accent-2);
  margin: 0 0 40px;
  letter-spacing: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 56px;
  max-width: 100%;
}

.hero__highlight {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}
.hero__highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--accent-1);
  border-radius: 2px;
}
.hero__highlight.is-visible::after {
  animation: underline-draw 1.2s ease-out 0.3s forwards;
}
@keyframes underline-draw {
  from { width: 0; }
  to   { width: 100%; }
}

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.hero__proof {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding: 28px 0;
  margin-top: 64px;
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dim);
}
.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__proof span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
}

/* ============================================================
   Proof bar — schmale Logo-/Kundenleiste unter dem Hero
   ============================================================ */
.proof-bar {
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--border);
}
.proof-bar__label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 18px;
}
.proof-bar__logos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.proof-bar__logos span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -0.01em;
}

/* Image / placeholder shot — KEINE Browser-Chrome-Dots mehr */
.shot {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: box-shadow 200ms ease;
}
.shot__pad {
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--surface);
}
.shot__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-mono);
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 24px;
  line-height: 1.6;
}

.shot__caption {
  border-top: 1px solid var(--border-soft);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  background: var(--card);
}

/* ============================================================
   Two-col editorial blocks
   ============================================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.two-col__item h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
.two-col__item p {
  color: var(--text-muted);
  max-width: 48ch;
  margin-bottom: 28px;
}
.two-col__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid var(--border-soft);
}
.two-col__list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  color: var(--text);
  font-family: var(--font-body);
}
.two-col__list li .tag {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

/* Section header */
.shead {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.shead h2 { font-size: clamp(40px, 4.5vw, 64px); }
.shead__lede {
  color: var(--text-muted);
  font-size: 20px;
  max-width: 50ch;
  line-height: 1.55;
}

/* ============================================================
   Project / work cards
   ============================================================ */

.work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 48px;
}
.work__item { display: flex; flex-direction: column; gap: 20px; }
.work__item.is-offset { transform: translateY(80px); }
.work__shot { transition: box-shadow 220ms ease, transform 220ms ease; }
.work__item:hover .work__shot { box-shadow: var(--shadow-hover); }

/* Wenn ein <a> als Karte verwendet wird */
a.work__item { text-decoration: none; color: inherit; cursor: pointer; }
a.work__item:hover .work__client { color: var(--accent); }

/* Echtes Vorschaubild im .shot füllt den Container vollständig */
.work__shot-pad { background: var(--surface); overflow: hidden; }
.work__shot-pad img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 600ms ease;
}
a.work__item:hover .work__shot-pad img { transform: scale(1.03); }
.work__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
.work__client {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 200ms ease;
}
.work__year {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.work__desc { color: var(--text-muted); font-size: 17px; max-width: 48ch; }

/* Pills, statt Mono-Tags */
.work__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pill, .work__tags span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  padding: 6px 14px;
  border-radius: 20px;
  border: 0;
}

/* Ergebnis-Zeile pro Projekt — Conversion-Signal */
.work__result {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  margin: 4px 0 0;
  letter-spacing: 0;
}

/* ============================================================
   Stats row
   ============================================================ */
.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  font-family: var(--font-body);
}
.stats span { display: inline-flex; align-items: center; gap: 12px; }
.stats span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-1);
  border-radius: 50%;
  display: inline-block;
}

/* ============================================================
   Testimonial
   ============================================================ */
.quote {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 48px;
  align-items: start;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.7;
  color: var(--accent-1);
  margin: 0;
  font-weight: 700;
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
}
.quote__cite {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--text-muted);
  font-family: var(--font-sans);
}
.quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
}

/* ============================================================
   CTA block — accent-1 (Navy), weißer Text, finaler Push
   ============================================================ */
.cta {
  background: var(--accent-1);
  border: 0;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta .wrap { position: relative; z-index: 1; }
.cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
}
.cta h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 14ch;
  color: #fff;
}
.cta__side { color: rgba(255,255,255,0.78); }
.cta__side p {
  max-width: 36ch;
  margin-bottom: 28px;
  font-size: 18px;
  color: rgba(255,255,255,0.78);
}
.cta__side .btn--primary {
  background: #fff;
  color: var(--accent-1);
  border-color: #fff;
}
.cta__side .btn--primary:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
  color: var(--accent-1);
}
.cta__micro {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  font-weight: 500;
}

/* ============================================================
   Footer — hell auf surface
   ============================================================ */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h5 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--text-muted); font-size: 15px; font-family: var(--font-body); }
.footer ul a:hover { color: var(--accent-1); }
.footer__brand p { color: var(--text-muted); max-width: 32ch; font-size: 16px; }
.footer__bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-sans);
}
.footer__bottom a { color: var(--text-muted); }
.footer__bottom a:hover { color: var(--accent-1); }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  padding: 72px 0 96px;
}
.page-hero h1 {
  font-size: clamp(52px, 6.6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 0 32px;
}
.page-hero__sub {
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 21px;
  line-height: 1.55;
}

/* ============================================================
   Service rows (asymmetric)
   ============================================================ */
.srow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.srow:first-child { border-top: 1px solid var(--border); }
.srow__title { display: flex; flex-direction: column; gap: 14px; }
.srow__num {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--accent-2);
}
.srow__title h3 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.08; }
.srow__body {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 58ch;
  line-height: 1.65;
}
.srow__body p { margin-bottom: 18px; }
.srow__body .example {
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  font-size: 15px;
  color: var(--text);
  font-family: var(--font-body);
  box-shadow: var(--shadow-card);
}
.srow__body .example .mono {
  color: var(--accent-2);
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ============================================================
   Timeline (vertical)
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}
.timeline__steps {
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Leuchtende Overlay-Linie die beim Scrollen wächst */
.timeline__steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--accent-1);
  box-shadow: 0 0 8px var(--accent-1), 0 0 16px rgba(45,59,135,0.3);
  transition: none;
  z-index: 2;
  border-radius: 1px;
}
.timeline__steps.is-animating::before {
  transition: height 80ms linear;
}
.tstep {
  position: relative;
  padding: 24px 0 32px 32px;
  border-left: 1px solid var(--border);
}
.tstep::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 32px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--text-dim);
  z-index: 3;
  transition: background 400ms ease, border-color 400ms ease, box-shadow 400ms ease, transform 300ms ease;
}
.tstep.is-lit::before {
  background: var(--accent-1);
  border-color: var(--accent-1);
  box-shadow: 0 0 8px var(--accent-1), 0 0 16px rgba(45,59,135,0.4);
  transform: scale(1.3);
}
.tstep.is-active::before { background: var(--accent-1); }
.tstep__num {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.tstep h4 { font-size: 24px; margin-bottom: 8px; }
.tstep p { color: var(--text-muted); margin: 0; max-width: 52ch; font-size: 17px; }

/* ============================================================
   Pricing cards
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 220ms ease, transform 220ms ease;
  position: relative;
}
.pcard:hover { box-shadow: var(--shadow-hover); }
.pcard--feature {
  border-top: 4px solid var(--accent-1);
  padding-top: 33px;
}
.pcard--feature::before {
  content: "Beliebt";
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--accent-1);
  color: #fff;
  font-size: 12px;
  font-family: var(--font-sans);
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0;
}
.pcard__name {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.pcard__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 12px 0 4px;
  color: var(--text);
}
.pcard__price .unit { font-size: 18px; color: var(--text-muted); font-weight: 500; letter-spacing: 0; }
.pcard__desc {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
  min-height: 56px;
  font-family: var(--font-body);
  line-height: 1.55;
}
.pcard ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
}
.pcard li {
  font-size: 16px;
  display: flex;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
}
.pcard li::before {
  content: "—";
  color: var(--accent-2);
  flex-shrink: 0;
  font-weight: 500;
}
.pcard .btn { width: 100%; justify-content: center; margin-top: auto; }

.pricing--two { grid-template-columns: repeat(2, 1fr); max-width: 820px; }

/* Pricing tabs */
.ptabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.ptab {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  padding: 16px 4px;
  margin-right: 28px;
  cursor: pointer;
  position: relative;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 140ms ease, border-color 140ms ease;
  font-weight: 500;
}
.ptab:hover { color: var(--text); }
.ptab.is-active { color: var(--accent-1); border-bottom-color: var(--accent-1); }
.ptab__count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-left: 6px;
}

/* ============================================================
   Über uns — founder
   ============================================================ */
.founder {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

/* Geschichte-Sektion (Über uns) */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.story-grid p { margin-bottom: 1em; }
.story-grid p:last-child { margin-bottom: 0; }

/* Toolstack-Sektion (Über uns) */
.stack-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

/* Zahlen-Grid (KI Solutions) */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.number__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 6vw, 88px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.number__unit {
  color: var(--text-muted);
  font-weight: 500;
}
.founder__photo {
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.founder__photo .shot__label { font-size: 11px; }

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 48px;
}
.value h4 { font-size: 24px; margin-bottom: 12px; }
.value p { color: var(--text-muted); max-width: 40ch; margin: 0; font-size: 17px; line-height: 1.6; }
.value .value__num {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--accent-2);
  margin-bottom: 8px;
}

/* Toolset as pills */
.toolset {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.toolset span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  background: var(--surface);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ============================================================
   Kontakt
   ============================================================ */
.kontakt {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
}
.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.field input, .field textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px var(--accent-1-soft);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
.field .err { font-size: 13px; color: #B0392C; min-height: 18px; font-family: var(--font-sans); }

.aside { display: flex; flex-direction: column; gap: 32px; }
.aside__group h5 {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  margin: 0 0 12px;
}
.aside__group p { color: var(--text); margin: 0 0 4px; font-size: 16px; }
.aside__group a { color: var(--text); border-bottom: 1px solid var(--border); }
.aside__group a:hover { border-color: var(--accent-1); color: var(--accent-1); }

.map {
  margin-top: 24px;
  height: 260px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.map .pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent-1);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(45, 59, 135, 0.12);
}
.map svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.7; }

/* ============================================================
   (Hero network canvas removed — replaced by Editorial Ring background)
   ============================================================ */

/* ============================================================
   Process steps (dark section)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process__step {
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.process__step.is-in {
  opacity: 1;
  transform: none;
}
.process__step:nth-child(2) { transition-delay: 150ms; }
.process__step:nth-child(3) { transition-delay: 300ms; }
.process__step:nth-child(4) { transition-delay: 450ms; }
.process__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: #6DD4C8;
  line-height: 1;
  margin-bottom: 20px;
}
.process__step h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #F9FAFB;
}
.process__step p {
  font-size: 16px;
  line-height: 1.6;
  color: #B8B5AD;
  margin: 0;
}
@media (max-width: 1024px) {
  .process { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  .process { grid-template-columns: 1fr; }
}

/* ============================================================
   Kontakt-Formular — qualifizierender Fragebogen
   ============================================================ */
.form__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form__option {
  cursor: pointer;
}
.form__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form__option span {
  display: inline-block;
  padding: 12px 20px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 140ms ease, color 140ms ease, background 140ms ease;
  background: var(--card);
}
.form__option input:checked + span {
  border-color: var(--accent-1);
  color: var(--accent-1);
  background: var(--accent-1-soft);
}
.form__option span:hover {
  border-color: var(--accent-1);
  color: var(--text);
}
.form__option input:focus-visible + span {
  box-shadow: 0 0 0 3px var(--accent-1-soft);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) {
  .form__row { grid-template-columns: 1fr; }
}

.field select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.field select:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px var(--accent-1-soft);
}

.form__hint {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  transition: background 400ms cubic-bezier(0.4, 0, 0.2, 1), border-color 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.faq__item.is-open {
  background: rgba(255,255,255,0.04);
  border-color: rgba(109,212,200,0.35);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.faq__item.is-open .faq__q {
  color: #F9FAFB;
}
.faq__q span {
  padding-right: 16px;
}
.faq__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item.is-open .faq__icon {
  background: #6DD4C8;
  color: #fff;
  transform: rotate(180deg);
}
.faq__minus { display: none; }
.faq__item.is-open .faq__plus { display: none; }
.faq__item.is-open .faq__minus { display: block; }
.faq__a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1), opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item.is-open .faq__a {
  max-height: 500px;
  opacity: 1;
}
.faq__a-inner {
  padding: 0 28px 24px 28px;
}
.faq__a p {
  font-size: 17px;
  line-height: 1.65;
  color: #B8B5AD;
  margin: 0;
}

/* FAQ auf hellen Sektionen */
.section:not(.section--dark) .faq__item {
  border-color: var(--border);
  background: var(--card);
}
.section:not(.section--dark) .faq__item:hover {
  background: var(--surface);
  border-color: var(--border);
}
.section:not(.section--dark) .faq__item.is-open {
  border-color: var(--accent-2);
}
.section:not(.section--dark) .faq__q { color: var(--text); }
.section:not(.section--dark) .faq__icon { background: var(--surface); color: var(--text-muted); }
.section:not(.section--dark) .faq__item.is-open .faq__icon { background: var(--accent-2); color: #fff; }
.section:not(.section--dark) .faq__a p { color: var(--text-muted); }

@media (max-width: 720px) {
  .faq__item { border-radius: 10px; }
  .faq__q { padding: 20px; font-size: 17px; }
  .faq__a-inner { padding: 0 20px 20px 20px; }
  .faq__a p { font-size: 16px; }
}

/* ============================================================
   Animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 96px; }
  .hero__bottom { flex-direction: column; gap: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 64px; }
  .work { grid-template-columns: 1fr; gap: 48px; }
  .work__item.is-offset { transform: none; }
  .quote { grid-template-columns: 1fr; gap: 16px; }
  .quote__mark { font-size: 56px; }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .shead { grid-template-columns: 1fr; gap: 24px; }
  .srow { grid-template-columns: 1fr; gap: 20px; }
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .pricing { grid-template-columns: 1fr; }
  .pricing--two { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder__photo { max-width: 320px; }
  .values { grid-template-columns: 1fr; gap: 40px; }
  .kontakt { grid-template-columns: 1fr; gap: 56px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .stack-grid { grid-template-columns: 1fr; gap: 32px; }

}
@media (max-width: 720px) {
  :root { --section-pad: 64px; --gutter: 22px; }
  .nav__links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav__right .btn--primary { display: none; }
  .hero { padding: 56px 0 0; }
  .hero__kicker { margin-bottom: 24px; }
  .hero__title { font-size: clamp(38px, 9vw, 52px); margin-bottom: 40px; }
  .hero__sub { font-size: 17px; }
  .hero__bottom { flex-direction: column; gap: 24px; }
  .hero__proof { flex-direction: column; gap: 12px; margin-top: 40px; }
  .proof-bar__logos { gap: 24px; }
  .proof-bar__logos span { font-size: 15px; }
  .section--dark { padding: 64px 0; }
  .cta { padding: 80px 0; }
  .stats { flex-direction: column; gap: 12px; }
  .footer__grid { grid-template-columns: 1fr; }

  /* Page-Hero auf Unterseiten */
  .page-hero { padding: 48px 0 64px; }
  .page-hero h1 {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .page-hero__sub { font-size: 17px; }

  /* CTA */
  .cta h2 { font-size: clamp(28px, 6vw, 40px); }
  .cta__inner { gap: 32px; }
  .cta__side p { font-size: 17px; }

  /* Quote */
  .quote { grid-template-columns: 1fr; }
  .quote__mark { font-size: 48px; }
  .quote blockquote { font-size: 22px; }

  /* Service rows + Example-Boxen */
  .srow { padding: 40px 0; }
  .srow__title h3 { font-size: clamp(26px, 6vw, 34px); }
  .srow__body { font-size: 17px; }
  .srow__body .example { font-size: 14px; padding: 16px; }

  /* Timeline-Steps (Webdesign) */
  .timeline__steps { gap: 0; }
  .tstep { padding-left: 24px; padding-right: 0; }
  .tstep h4 { font-size: 22px; }
  .tstep p { font-size: 16px; }

  /* Pricing */
  .pricing { grid-template-columns: 1fr; gap: 24px; }
  .pricing--two { grid-template-columns: 1fr; gap: 24px; }
  .pcard { padding: 32px 24px 28px; }
  .pcard__price { font-size: 48px; }
  .pcard__desc { min-height: 0; }
  .ptabs { gap: 0; overflow-x: auto; }
  .ptab { margin-right: 18px; font-size: 14px; }

  /* Formular */
  .form__options { gap: 8px; }
  .form__option span { font-size: 14px; padding: 10px 16px; }
  .form__row { grid-template-columns: 1fr; }

  /* Über uns / Founder */
  .founder { grid-template-columns: 1fr; gap: 32px; }
  .founder__photo { max-width: 280px; }
  .values { grid-template-columns: 1fr; gap: 32px; }
  .value h4 { font-size: 22px; }

  /* Zahlen-Grid auf KI-Solutions */
  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 36px;
  }
  .number__value { font-size: 56px; }

  /* Kontakt Map */
  .map { height: 200px; }

  /* Section-Header */
  .shead { margin-bottom: 40px; }
  .shead h2 { font-size: clamp(32px, 7vw, 44px); }
  .shead__lede { font-size: 17px; }

  /* Toolset / Pills enger */
  .toolset { gap: 6px; }
  .toolset span { font-size: 12px; padding: 5px 12px; }

  /* Aside (Kontakt) */
  .aside__group p { font-size: 15px; }

  /* Footer auf Mobile */
  .footer { padding: 56px 0 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
