/* Inter — lokal gehostet (DSGVO: keine Verbindung zu Google-Servern) */
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('fonts/inter-latin-700-normal.woff2') format('woff2');
}

/* ============================================
   SCHNITTSTELLE — im Stil von teejayartz.com
   Design-Tokens
   ============================================ */
/* Farbwelt: „Midnight Blue" — cineastisch-kühles Dunkelblau.
   Blaugetöntes Fast-Schwarz als Basis, kräftiges Blau als Akzent,
   eisige Blaugrau-Töne für Text. */
:root {
  --deep: #000000;               /* reines Schwarz (Basis-Hintergrund) */
  --blue: #2E63E0;               /* kräftiges Blau — Haupt-Akzent */
  --sky: #6E9BFF;                /* helleres Blau für kleine Links/Hover */
  --ice: #D7E3F4;                /* eisiges Hell für betonten Text */
  --wine: var(--blue);           /* frühere Rot-Rollen laufen jetzt blau */
  --sand: #F2D4AE;               /* Reserve (CI-Neutral) */
  --red: #F23005;                /* Reserve */

  --bg: var(--deep);
  --ink: #ffffff;
  --accent: var(--blue);
  --accent-dim: var(--sky);
  --muted: #75849E;              /* Blaugrau */
  --muted-2: #3C4A63;
  --footer-bg: #1B3FAE;          /* Footer: Weiß auf sattem Blau */
  --pill-bg: rgba(13, 19, 30, 0.85);
  --card-bg: #111927;
  --line: rgba(170, 197, 255, 0.14);
  --font: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html, body { background: var(--bg); }
body {
  font-family: var(--font);
  color: var(--ink);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--blue); color: #fff; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* Custom Scrollbar wie beim Original (dezent) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: #233350; border-radius: 5px; }

/* ============================================
   Page-Transition Overlay
   ============================================ */
.page-fade {
  position: fixed; inset: 0; background: var(--deep); z-index: 999;
  pointer-events: none; opacity: 0; transition: opacity .45s ease;
}
.page-fade.active { opacity: 1; pointer-events: all; }

/* ============================================
   NAVIGATION — 3 schwebende Pills
   ============================================ */
.nav {
  position: fixed; top: 20px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0 max(24px, 22vw);
  pointer-events: none;
}
.nav > * { pointer-events: all; }
.pill {
  background: var(--pill-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  height: 46px;
  display: flex; align-items: center;
  color: var(--sky);
  transition: background .3s ease, transform .3s ease;
}
.pill:hover { background: rgba(22, 32, 50, 0.92); }

/* linke Pill: Wortmarke → Startseite (gleiche Schriftstärke wie Nav-Links) */
.pill--logo {
  padding: 0 20px; justify-content: center;
  font-weight: 400; font-size: 15px; letter-spacing: -0.01em;
}
.pill--logo:hover { background: var(--blue); color: #fff; }

/* Mitte: Toggle-Button, aus dem beim Klick die Nav-Pills nach links
   herauswachsen (wie im Original — Gruppe bleibt zentriert) */
.nav-center {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  display: flex; align-items: center; gap: 0;
  pointer-events: all;
}
/* Geschlossen: Pills haben Breite 0 → der Pfeil-Button sitzt exakt mittig.
   Beim Öffnen wachsen sie auf; die zentrierte Gruppe wird breiter und der
   Button gleitet dadurch animiert nach rechts mit (wie im Original). */
.nav-link-pill {
  max-width: 0; padding: 0; margin-right: 0;
  overflow: hidden; white-space: nowrap;
  font-size: 15px;
  opacity: 0; transform: translateX(40px) scale(.6);
  pointer-events: none;
  transition:
    max-width .55s cubic-bezier(.3, 1.2, .45, 1),
    padding .55s cubic-bezier(.3, 1.2, .45, 1),
    margin .55s cubic-bezier(.3, 1.2, .45, 1),
    transform .55s cubic-bezier(.3, 1.45, .45, 1),
    opacity .3s ease, background .25s ease, color .25s ease;
}
.nav-link-pill:hover { background: var(--blue); color: #fff; }
.nav-center.open .nav-link-pill {
  max-width: 180px; padding: 0 20px; margin-right: 8px;
  opacity: 1; transform: none; pointer-events: all;
}
.nav-center.open .nav-link-pill:nth-child(1) { transition-delay: .07s; }
.nav-center.open .nav-link-pill:nth-child(2) { transition-delay: 0s; }

.pill--center {
  width: 84px; justify-content: center; font-size: 18px;
  border: 0; cursor: pointer; font-family: var(--font);
  position: relative;
}
.pill--center svg { overflow: visible; }
/* Das Logo: geschlossen intakt — beim Öffnen gleiten die Teile ENTLANG
   ihrer eigenen Balken-Achse auseinander (schräg, im Logo-Winkel ≈ 55°:
   Richtungsvektor der Balken ist (374, -534) → normiert (0.57, -0.82)) */
.logo-mark .s1, .logo-mark .s2 {
  transition: transform .55s cubic-bezier(.3, 1.45, .45, 1);
}
/* Hover-Vorschau (geschlossen): schiebt sich schon leicht auseinander */
.pill--center:hover .logo-mark .s1 { transform: translate(30px, -43px); }
.pill--center:hover .logo-mark .s2 { transform: translate(-30px, 43px); }
/* Offen: ganz auseinander */
.nav-center.open .logo-mark .s1 { transform: translate(100px, -143px); }
.nav-center.open .logo-mark .s2 { transform: translate(-100px, 143px); }
/* Hover-Vorschau (offen): schiebt sich schon leicht wieder zusammen */
.nav-center.open .pill--center:hover .logo-mark .s1 { transform: translate(70px, -100px); }
.nav-center.open .pill--center:hover .logo-mark .s2 { transform: translate(-70px, 100px); }

.pill--chat { width: 62px; justify-content: center; }
.pill--chat svg { transition: transform .35s cubic-bezier(.7,0,.2,1); }
.pill--chat:hover svg { transform: translateY(-2px) scale(1.1); }

/* ============================================
   HERO (Startseite)
   ============================================ */
.hero {
  display: block;
  padding: 150px max(24px, 22vw) 0;
  position: relative;
}
.hero-line { display: flex; align-items: baseline; gap: 2.5vw; }
.hero-word {
  font-size: clamp(54px, 10.5vw, 165px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #F4F6FA;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-word--outline { color: transparent; -webkit-text-stroke: 2px var(--accent); }
.hero-small {
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 700;
  color: var(--blue);   /* das // ist der Akzent im Hero */
  letter-spacing: -0.01em;
}
.hero-sub { margin-top: 42px; font-size: clamp(14px, 1.25vw, 18px); line-height: 1.45; letter-spacing: .01em; text-transform: uppercase; }
.hero-sub .dim { color: var(--muted); }
.hero-sub .lit { color: #e9e9ee; }

/* schwebende Video-Snippets rechts (wie App-Screenshots im Original) */
.hero-media {
  position: absolute; right: -12vw; top: 14vh; width: 54vw; max-width: 860px;
  border-radius: 19px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  pointer-events: none;
  opacity: 0;
  transform: translateX(93px);
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.hero-media.in { opacity: .92; transform: translateX(0); }
@media (max-width: 900px) { .hero-media { display: none; } }

/* CONTACT Pill + Verfügbarkeit */
.cta-row {
  display: flex; align-items: center; gap: 26px;
  margin-top: 64px;   /* kompakt unter der Titelzeile */
}
.cta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff;
  border-radius: 999px; padding: 15px 26px;
  font-size: 15px; font-weight: 500; letter-spacing: .02em;
  transition: transform .3s cubic-bezier(.7,0,.2,1), background .3s ease, color .3s ease;
}
.cta-pill:hover { transform: scale(1.05); background: #4D7BF0; }
/* Signalrot: genau EIN Akzent pro Ansicht — der CTA-Punkt (CI: Call-to-Action) */
.cta-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .55); }
  50% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0); }
}
.cta-note { color: var(--muted); font-size: 15px; }

/* ============================================
   FEATURE-AKKORDEON (Sticky-Scroll wie "This is art")
   ============================================ */
.features { position: relative; padding: 6vh max(24px, 22vw) 10vh; }
.features-head {
  font-size: clamp(28px, 3.4vw, 48px); font-weight: 500;
  color: #F4F6FA; margin-bottom: 5vh;
}
.features-head sup { font-size: .45em; letter-spacing: 0; color: var(--sky); }
.features-grid { display: grid; grid-template-columns: minmax(300px, 500px) 1fr; gap: 6vw; }
.features { overflow: visible; }
.features::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: 0;
  width: 14vw;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), var(--deep) 88%);
  pointer-events: none;
  z-index: 5;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }

.acc-list { position: sticky; top: 18vh; align-self: start; }
.acc-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.acc-item h3 {
  font-size: 20px; font-weight: 500; color: var(--muted);
  transition: color .4s ease;
}
.acc-item .acc-body {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .6s cubic-bezier(.7,0,.2,1), opacity .5s ease, margin .5s ease;
  color: #C9D6EA; font-size: 16.5px; line-height: 1.5; margin-top: 0;
}
.acc-item.active h3 { color: var(--ink); }
.acc-item.active .acc-body { max-height: 240px; opacity: 1; margin-top: 12px; }

/* Rechte Spalte: große Panels, ragen wie im Original über den rechten
   Bildschirmrand hinaus (gemessen: 82vw breit, ~40% überstehend, Radius 19px)
   und federn beim Viewport-Eintritt von rechts rein (translateX 93px + Fade) */
.media-stack { display: flex; flex-direction: column; gap: 10vh; padding-bottom: 10vh; }
.media-item {
  position: relative;
  border-radius: 19px; overflow: hidden;
  width: 68vw;              /* etwas schmaler — deckt nicht die volle Höhe ab */
  flex: 0 0 auto;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  opacity: 0;
  transform: translateX(93px);
  /* KEINE Zeit-Transition: die Bewegung ist scrollgekoppelt (JS) und wird
     dort per Dämpfung geglättet — reversiert automatisch beim Hochscrollen */
  will-change: transform, opacity;
}
/* Das erste Bild steht von Anfang an fertig da */
.media-item.static { opacity: 1 !important; transform: none !important; }
.media-item img { width: 100%; height: auto; display: block; }
/* MOBILE: Feature-Sektion stapelt wie im Original — Text + zugehöriges Bild
   abwechselnd in EINER zentrierten Spalte. display:contents löst die beiden
   Wrapper auf, sodass acc-items und media-items gemeinsame Flex-Items werden;
   per order werden sie zu Text→Bild→Text→Bild verschränkt. */
@media (max-width: 900px) {
  .features-grid { display: flex; flex-direction: column; gap: 0; }
  .acc-list, .media-stack { display: contents; }
  .acc-list { position: static; }

  .acc-item {
    border-bottom: none; padding: 30px 0 6px;
  }
  .acc-item h3 { color: var(--ink) !important; font-size: 22px; }
  /* Bodys auf dem Handy immer offen und lesbar */
  .acc-item .acc-body {
    max-height: none !important; opacity: 1 !important; margin-top: 10px !important;
    font-size: 15px;
  }

  .media-item {
    display: block !important;
    width: 100%; margin: 4px 0 4px;
    border-radius: 14px;
    opacity: 1 !important; transform: none !important;
    box-shadow: 0 18px 50px rgba(0,0,0,.5);
  }

  /* Verschränken: Punkt 1 Text → Punkt 1 Bild → Punkt 2 Text → … */
  .acc-item:nth-child(1) { order: 1; }  .media-item:nth-child(1) { order: 2; }
  .acc-item:nth-child(2) { order: 3; }  .media-item:nth-child(2) { order: 4; }
  .acc-item:nth-child(3) { order: 5; }  .media-item:nth-child(3) { order: 6; }
  .acc-item:nth-child(4) { order: 7; }  .media-item:nth-child(4) { order: 8; }

  /* Seiten-Verlauf (für überstehende Panels) auf dem Handy überflüssig */
  .features::after { display: none; }
}

/* ============================================
   PROJEKTE
   ============================================ */
.page-head { text-align: center; padding: 190px 24px 80px; }
.page-head h1 {
  font-size: clamp(56px, 7.5vw, 110px); font-weight: 500;
  color: #F4F6FA; letter-spacing: -0.03em; line-height: 1;
}
.page-head h1 .white { color: var(--ink); }
.page-head p { margin-top: 26px; color: var(--muted); font-size: clamp(17px, 1.6vw, 22px); }

.proj-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  padding: 0 max(24px, 22vw) 60px;
}
@media (max-width: 1200px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .proj-grid { grid-template-columns: 1fr; } }

.proj-card { cursor: pointer; }
.proj-thumb {
  border-radius: 8px; overflow: hidden; aspect-ratio: 16/10; background: var(--card-bg);
}
.proj-thumb video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.01);
  transition: transform .8s cubic-bezier(.7,0,.2,1);
}
.proj-card:hover .proj-thumb video { transform: scale(1.07); }
.proj-meta { padding: 14px 2px 0; font-size: 16px; line-height: 1.4; }
.proj-meta .t { color: var(--muted); transition: color .35s ease; }
.proj-meta .d { color: #C9D6EA; }
.proj-card:hover .proj-meta .t { color: var(--sky); }

.section-label {
  text-align: center; color: var(--muted); font-size: clamp(18px, 2vw, 24px);
  padding: 90px 24px 50px;
}
.center-cta { display: flex; justify-content: center; align-items: center; gap: 24px; padding: 60px 24px 40px; }

/* ============================================
   ÜBER UNS
   ============================================ */
.about-intro {
  max-width: 780px; margin: 0 auto; padding: 0 24px 60px;
  color: var(--muted); font-size: clamp(18px, 1.8vw, 24px); line-height: 1.45;
}
.about-intro .lit { color: var(--ice); }

.team { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; padding: 40px max(24px, 22vw) 80px; }
@media (max-width: 760px) { .team { grid-template-columns: 1fr; } }
.member { background: var(--card-bg); border-radius: 14px; overflow: hidden; }
.member img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; filter: grayscale(18%); transition: filter .5s ease, transform .8s cubic-bezier(.7,0,.2,1); }
.member:hover img { filter: grayscale(0%); transform: scale(1.03); }
.member-info { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; }
.member-info h3 { font-size: 22px; font-weight: 500; }
.member-info a { color: var(--sky); font-size: 15px; border-bottom: 1px solid transparent; transition: border-color .3s; }
.member-info a:hover { border-color: var(--sky); }

.cards { display: grid; gap: 22px; padding: 20px max(24px, 22vw) 100px; }
.card {
  background: #0F1622; border: 1px solid var(--line); border-radius: 16px;
  padding: 30px 32px;
}
.card h4 { color: #F4F6FA; font-size: 17px; font-weight: 500; margin-bottom: 14px; }
.card p { color: #C4D1E4; font-size: 16.5px; line-height: 1.55; }
.card p + p { margin-top: 10px; }
.card .dim { color: var(--muted); }

/* ============================================
   KONTAKT — Formular
   ============================================ */
.contact-wrap { max-width: 820px; margin: 0 auto; padding: 0 24px 90px; }
.contact-intro { color: var(--muted); font-size: clamp(19px, 2vw, 26px); line-height: 1.4; margin: 0 0 70px; max-width: 640px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.form-field.full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field label { display: block; font-size: 14.5px; margin-bottom: 9px; color: #e3e3e8; }
.form-field label .req { color: var(--accent); font-size: 11px; vertical-align: super; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: #121A29; border: 1px solid transparent; border-radius: 10px;
  color: var(--ink); font-family: var(--font); font-size: 15.5px;
  padding: 14px 16px; outline: none;
  transition: border-color .3s ease, background .3s ease;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--sky); background: #162032;
}
.form-check { grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start; padding-top: 14px; border-top: 1px solid var(--line); font-size: 15px; color: #d6d6db; }
.form-check input { width: 18px; height: 18px; accent-color: var(--blue); margin-top: 2px; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: 15px; }
.form-note a { color: var(--sky); text-decoration: underline; }
.submit-btn {
  grid-column: 1 / -1; margin-top: 14px;
  background: #121A29; color: var(--sky); border: 1px solid var(--line);
  font-family: var(--font); font-size: 16px; font-weight: 500;
  border-radius: 12px; padding: 20px; cursor: pointer;
  transition: background .35s ease, color .35s ease, transform .3s ease;
}
.submit-btn:hover { background: var(--blue); color: #fff; transform: scale(1.01); }

/* ============================================
   FOOTER — riesige Typo wie "ARTz"
   ============================================ */
footer {
  background: var(--footer-bg);
  padding: 70px max(24px, 3.5vw) 0;
  overflow: hidden;
  position: relative;
}
/* Footer: CI-Paarung „Weiß auf Signalblau" */
.footer-links {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  font-size: clamp(22px, 2.3vw, 32px); color: #ffffff;
}
.footer-links a { opacity: .95; transition: opacity .3s, transform .3s; display: inline-block; }
.footer-links a:hover { opacity: 1; transform: translateX(-6px); }
.footer-giant {
  font-size: clamp(90px, 24.5vw, 500px);
  font-weight: 700; letter-spacing: -0.04em; line-height: .78;
  color: #ffffff;
  text-align: center;
  margin-top: 6vw;
  transform: translateY(18%);
  user-select: none;
  white-space: nowrap;
}
.footer-copy {
  position: absolute; left: max(24px, 3.5vw); top: 76px;
  color: rgba(255, 255, 255, .55); font-size: 14px;
}

/* ============================================
   Reveal-Animationen (JS setzt .in)
   ============================================ */
[data-reveal] { opacity: 0; transform: translateY(50px); transition: opacity .9s ease, transform 1s cubic-bezier(.22,1,.36,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-child] > * { opacity: 0; transform: translateY(60px); transition: opacity .9s ease, transform 1s cubic-bezier(.22,1,.36,1); }
[data-reveal-child].in > * { opacity: 1; transform: none; }
[data-reveal-child].in > *:nth-child(2) { transition-delay: .08s; }
[data-reveal-child].in > *:nth-child(3) { transition-delay: .16s; }
[data-reveal-child].in > *:nth-child(4) { transition-delay: .24s; }
[data-reveal-child].in > *:nth-child(5) { transition-delay: .32s; }
[data-reveal-child].in > *:nth-child(6) { transition-delay: .40s; }

/* ============================================
   VIDEO-LIGHTBOX (Projekte) — öffnet in der Seite,
   fliegt smooth von der Karte in die Mitte (FLIP)
   ============================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: none;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity .5s ease;
  will-change: opacity;
  cursor: pointer;
}
.lightbox.visible .lb-backdrop { opacity: 1; }
.lb-wrap { position: relative; }
.lb-caption {
  position: absolute; top: 100%; left: 0; right: 0;
  margin-top: 16px; text-align: center; font-size: 16px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s ease .25s, transform .5s cubic-bezier(.22,1,.36,1) .25s;
  pointer-events: none;
}
.lb-caption .t { color: #fff; }
.lb-caption .d { color: var(--muted); margin-left: 10px; }
.lightbox.visible .lb-caption { opacity: 1; transform: none; }
.lb-panel {
  position: relative;
  width: min(72vw, 1000px, 121vh);   /* 121vh ≈ 76vh Höhe bei 16:10 */
  aspect-ratio: 16 / 10;             /* feste Geometrie = ruckelfreie Animation */
  border-radius: 19px;
  overflow: hidden;
  background: #0C1220;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .65);
  transform-origin: top left;
  will-change: transform;
}
@media (max-width: 700px) { .lb-panel { width: 92vw; } }
.lb-panel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }



/* ============================================
   RECHTSTEXTE (Impressum / Datenschutz)
   ============================================ */
.legal { max-width: 780px; margin: 0 auto; padding: 0 24px 100px; color: #c3c9d6; font-size: 16px; line-height: 1.65; }
.legal h2 { color: #F4F6FA; font-size: 24px; font-weight: 500; margin: 48px 0 14px; }
.legal h3 { color: #F4F6FA; font-size: 18px; font-weight: 500; margin: 28px 0 10px; }
.legal p { margin: 0 0 12px; }
.legal a { color: var(--sky); text-decoration: underline; }
.legal strong { color: #e8ecf4; font-weight: 500; }

/* ============================================
   MOBILE-FEINSCHLIFF (Nav, Hero, Abstände)
   Einspaltig & zentriert wie die Original-Seite auf dem Handy
   ============================================ */
@media (max-width: 700px) {
  /* Einheitlicher, großzügiger Seitenrand wie im Original (mehr als vorher) */
  :root { --mpad: clamp(30px, 11vw, 74px); }

  /* NAV: kompakter, mehr Luft an den Seiten; etwas tiefer wie im Original */
  .nav { top: 30px; padding: 0 var(--mpad); }
  .pill { height: 42px; }
  /* Links kompaktes „S." (gleiche Größe wie das Kontakt-Symbol rechts) */
  .pill--logo { width: 48px; padding: 0; justify-content: center; font-size: 0; }
  .pill--logo::before { content: "S."; font-size: 15px; font-weight: 400; letter-spacing: 0; }
  /* Mittlerer Button (unter dem Logo) etwas breiter */
  .pill--center { width: 92px; }
  .pill--chat { width: 48px; }
  .nav-center.open .nav-link-pill { max-width: 150px; padding: 0 15px; font-size: 14px; }
  /* Beim Öffnen gleiten Wortmarke (nach links) & Chat-Icon (nach rechts)
     SICHTBAR nach außen weg und machen Platz — während Projekte + Über uns
     aus der Mitte herausfedern. */
  .nav .pill--logo, .nav .pill--chat {
    transition: opacity .45s ease, transform .55s cubic-bezier(.3, 1.2, .45, 1), background .3s ease;
  }
  .nav.open .pill--logo { opacity: 0; transform: translateX(-46px); pointer-events: none; }
  .nav.open .pill--chat { opacity: 0; transform: translateX(46px); pointer-events: none; }

  /* HERO: großer Titel, der die volle Inhaltsbreite füllt (wie im Original);
     etwas mehr Kopf-Abstand, damit alles ein Stück tiefer sitzt */
  .hero { padding: 138px var(--mpad) 0; }
  .hero-word { font-size: 18vw; }
  .hero-line { gap: 3vw; }
  .cta-row { margin-top: 42px; gap: 16px; flex-wrap: wrap; }

  /* Sektionen: schmaler mit mehr Rand links/rechts */
  .features { padding: 4vh var(--mpad) 8vh; }
  .features-head { margin-bottom: 3.5vh; }
  .center-cta { padding: 40px var(--mpad) 30px; }
  /* Seiten-Kopf: Überschrift kleiner, damit lange Wörter wie
     „@schnittstelle" nicht seitlich überlaufen */
  .page-head { padding: 126px var(--mpad) 44px; overflow: hidden; }
  .page-head h1 { font-size: clamp(30px, 9.5vw, 50px); overflow-wrap: break-word; }
  .about-intro { padding: 0 var(--mpad) 46px; font-size: 16px; line-height: 1.5; }
  .team { padding: 34px var(--mpad) 70px; }
  .cards { padding: 18px var(--mpad) 90px; }
  .card p { font-size: 15px; }
  .proj-grid { padding: 0 var(--mpad) 56px; }
  .contact-wrap { padding: 0 var(--mpad) 70px; }
  .contact-intro { margin-bottom: 44px; font-size: 19px; }
  .legal { padding: 0 var(--mpad) 80px; }

  /* Footer: Riesen-Typo darf nicht seitlich überquellen */
  /* Footer: Copyright NICHT mehr absolut (überlappte die Links),
     sondern als Flex-Spalte gestapelt: Links, darunter Copyright, dann Riesen-Typo */
  footer { padding: 48px var(--mpad) 0; display: flex; flex-direction: column; }
  .footer-links { align-items: flex-start; font-size: 20px; order: 1; }
  .footer-copy {
    position: static; order: 2;
    margin: 20px 0 0; font-size: 13px;
  }
  .footer-giant { font-size: 26vw; order: 3; margin-top: 8vw; }
}
