@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

/* ═══════════════════════════════════════════════════════════════════════════
   WEVOLVE STUDIO – Hauptstilvorlage
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Expertise Divider & Portrait ───────────────────────────────────────── */
.expertise-divider {
  border: none;
  height: 2px;
  background: #1b1c21;
  margin: 0 20px 0 500px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.expertise-divider.line-visible {
  transform: scaleX(1);
}
.expertise-portrait {
  margin: 40px 20px 0 500px;
}
.expertise-portrait-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 1.1s cubic-bezier(.22,1,.36,1),
              transform 1.1s cubic-bezier(.22,1,.36,1);
}
.expertise-portrait-img.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile */
@media (max-width: 768px) {
  .expertise-divider {
    margin: 40px 20px 0 20px;
  }
  .expertise-portrait {
    margin: 40px 20px 0 20px;
  }
}
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(.22,1,.36,1),
              transform 0.5s cubic-bezier(.22,1,.36,1);
}
.word-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CSS Variablen ───────────────────────────────────────────────────────── */

/* ── Fonts ───────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Suisse Intl';
  src: url('fonts/SuisseIntl-Light.woff2') format('woff2'),
       url('fonts/SuisseIntl-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';
  src: url('fonts/SuisseIntl-Regular.woff2') format('woff2'),
       url('fonts/SuisseIntl-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';
  src: url('fonts/SuisseIntl-SemiBold.woff2') format('woff2'),
       url('fonts/SuisseIntl-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Uncut Sans';
  src: url('fonts/UncutSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Uncut Sans';
  src: url('fonts/UncutSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Uncut Sans';
  src: url('fonts/UncutSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nyght Serif';
  src: url('fonts/NyghtSerif-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nyght Serif';
  src: url('fonts/NyghtSerif-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Nyght Serif';
  src: url('fonts/NyghtSerif-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-main:          #e2e1e7;
  --bg-dark:          #1b1c24;          /* Dunkelgrauer Background */
  --text-on-white:    #1b1c21;
  --text-on-dark:     #bebbc2;
  --text-muted:       #6b6b6b;
  --text-muted-dark:  #7a7782;
  --accent-gold:      #c8b96a;
  --link-hover:       #1b1c21;
  --footer-height:    420px;
  --font-main:        'Inter Tight', Helvetica, Arial, sans-serif;
  --font-display:     'Inter Tight', Helvetica, Arial, sans-serif;
  --font-headline:    'Inter Tight', Helvetica, Arial, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* ── Text Selection Styling ──────────────────────────────────────────────── */
::selection {
  background: #7e7e84;
  color: #1b1c21;
}
::-moz-selection {
  background: #7e7e84;
  color: #1b1c21;
}

body {
  font-family: var(--font-main);
  background: #ffffff;
  color: var(--text-on-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }


/* ══════════════════════════════════════════════════════════════════════════
   HEADER BAR – erscheint beim Scrollen aus Hero
   ══════════════════════════════════════════════════════════════════════════ */
.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #e2e1e7;
  border-bottom: 2px solid #1b1c21;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.header-bar.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── Desktop Navigation im Header ──────────────────────────────────────── */
.desktop-nav {
  position: fixed;
  top: 0;
  left: 500px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 1000;
  pointer-events: all;
}
.desktop-nav a {
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 460;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.desktop-nav a:not(:last-child)::after {
  content: ',';
  margin-right: 6px;
  color: inherit;
  pointer-events: none;
}
/* Auf dunklem Hero: weiß, Hover = schwarz */
.desktop-nav a:hover {
  color: #1b1c21;
}
/* Nach dem Scrollen auf weißem BG */
.desktop-nav.dark a {
  color: #1b1c21;
}
.desktop-nav.dark a:hover {
  color: #1b1c21;
}

/* ── Get in touch Button ────────────────────────────────────────────────── */
.get-in-touch-btn {
  position: fixed;
  top: 22px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px 8px 16px;
  height: 40px;
  border: 1.5px solid #1b1c21;
  border-radius: 8px;
  background: #1b1c21;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 1.125rem;
  font-weight: 460;
  text-decoration: none;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s ease,
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
  cursor: pointer;
}
.get-in-touch-btn.dark {
  border-color: #1b1c21;
  background: #1b1c21;
  color: #ffffff;
}
.get-in-touch-btn:hover {
  background: #cdccd2;
  color: #1b1c21;
  border-color: #1b1c21;
}
.get-in-touch-btn.dark:hover {
  background: #cdccd2;
  color: #1b1c21;
  border-color: #1b1c21;
}
.get-in-touch-btn:not(.dark) {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.get-in-touch-btn:not(.dark):hover {
  background: #ffffff;
  color: #1b1c21;
  border-color: #ffffff;
}
.get-in-touch-btn .btn-arrow {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1);
}
.get-in-touch-btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}
.get-in-touch-btn .btn-text {
  letter-spacing: -0.005em;
}

/* ══════════════════════════════════════════════════════════════════════════
   LOGO OBEN LINKS
   ══════════════════════════════════════════════════════════════════════════ */
.site-logo {
  position: fixed;
  top: 0;
  left: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1002;
  transition: opacity 0.3s ease;
}
.site-logo:hover {
  opacity: 0.8;
}
.site-logo-img {
  height: 16px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
/* Auf dunklem Hero: weißes Logo sichtbar, schwarzes versteckt */
.site-logo .logo-white {
  opacity: 1;
}
.site-logo .logo-black {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
/* Beim Scrollen (heller Background): schwarzes Logo sichtbar, weißes versteckt */
.site-logo.dark .logo-white {
  opacity: 0;
}
.site-logo.dark .logo-black {
  opacity: 1;
}


/* ══════════════════════════════════════════════════════════════════════════
   HERO – Sticky Video
   ══════════════════════════════════════════════════════════════════════════ */

/* Der Container ist 200vh hoch. Das Hero klebt darin bei top:0.
   Das bedeutet: beim Laden sieht man 100vh Video. Beim Scrollen bleibt
   das Video an Ort bis 100vh geschrollt wurde – dann scrollt es aus dem
   sticky-Bereich nach oben aus dem Bild. Der scroll-container beginnt
   parallel bei scroll-position 100vh und schiebt sich über das Video. */
.hero-sticky-container {
  height: 100vh;
  position: relative;
  z-index: 1;
}
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #2a2a2a;
  background-image: url('img/design/web_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(32,32,39,0) 55%, rgba(32,32,39,0.75) 100%);
  z-index: 2;
}


/* ── Hero Headline ──────────────────────────────────────────────────────── */
.hero-headline-container {
  position: absolute;
  bottom: 220px;
  left: 500px;
  right: 60px;
  z-index: 3;
  pointer-events: all;
}

.hero-headline {
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-size: clamp(1.92rem, 3.6vw, 3.2rem);
  font-weight: 420;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 20px 0;
  max-width: 800px;
}
.hero-headline.visible {
  /* Zeilen übernehmen die Animation */
}


/* ── Hero Zeilen-Animation ───────────────────────────────────────────────── */
.hero-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1),
              transform 0.8s cubic-bezier(.22,1,.36,1);
}
.hero-line.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Showreel Button ───────────────────────────────────────────────────── */
.hero-sub-text {
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1.5;
  margin: 0 0 32px 0;
}
.hero-sub-text.visible {
  /* Zeilen übernehmen die Animation */
}

.hero-showreel-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 88px;
  padding: 0 32px;
  background: transparent;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 460;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  transform: translateX(112px);
  transition: opacity 1.44s cubic-bezier(.22,1,.36,1),
              transform 1.44s cubic-bezier(.22,1,.36,1);
  pointer-events: all;
}
.hero-showreel-btn.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Video-Hintergrund im Button */
.hero-showreel-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.65);
  transition: filter 0.3s ease;
}
.hero-showreel-btn:hover .hero-showreel-bg-video {
  filter: brightness(0.85);
}

/* Text + Icon über dem Video */
.hero-showreel-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.hero-showreel-play {
  font-size: 0.8rem;
}

/* ── Showreel Overlay ──────────────────────────────────────────────────── */
.showreel-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform: translateY(100%);
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
}
.showreel-overlay.open {
  transform: translateY(0);
  pointer-events: all;
}
.showreel-video {
  width: 100%;
  height: 100%;
  flex: 1;
  object-fit: contain;
}
.showreel-close {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.showreel-close:hover {
  background: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .hero-headline-container {
    left: 20px;
    right: 20px;
    bottom: 80px;
  }
  .hero-headline {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
  .showreel-overlay {
    inset: 12px;
  }
}

/* ── Scroll-Button unten links ────────────────────────────────────────── */
.hero-scroll-btn {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  animation: breathe 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.hero-scroll-btn:hover {
  animation: none;
  transform: translateX(-50%) translateY(-4px);
}
.hero-scroll-btn svg {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}
/* Hover: Kreis weiß, Pfeil schwarz – wie Call buchen auf dunklem BG */
.hero-scroll-btn circle {
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.hero-scroll-btn path {
  transition: stroke 0.3s ease;
}
.hero-scroll-btn:hover circle {
  fill: #fff;
  stroke: #fff;
}
.hero-scroll-btn:hover path {
  stroke: #1b1c21;
}

/* Atmende Animation - Transparenz Pulsieren */
@keyframes breathe {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 1; }
}

/* Mobile Anpassung */
@media (max-width: 809px) {
  .marquee-track {
    gap: 40px;
  }
  
  .marquee-item {
    gap: 40px;
  }
  
  .marquee-italic,
  .marquee-bold {
    font-size: clamp(50px, 12vw, 120px);
  }
  
  .hero-scroll-btn {
    bottom: 20px;
  }
}


/* ══════════════════════════════════════════════════════════════════════════
   SCROLL CONTAINER
   ══════════════════════════════════════════════════════════════════════════ */
.scroll-container {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.hero-spacer {
  height: 100vh;
  pointer-events: none;
}
.scroll-container > section {
  position: relative;
  z-index: 2;
  background: var(--bg-main);
  pointer-events: all;
}


/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 420px;
  background: #1c1c24;
  color: #dcdfef;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 22px 20px 60px;
  overflow: hidden;
}
/* Background-Bild (web_bg oder Video-Poster) */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #1c1c24;
  background-image: url('img/design/web_bg.jpg');
  background-size: cover;
  background-position: center bottom;
  opacity: 1;  /* Voll sichtbar */
  z-index: 0;
}
/* Großes Logo im Hintergrund */
.footer-logo-bg {
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 28px;
  height: auto;
  max-height: 70%;
  background-image: url('img/design/motionartist_logo_white.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
  aspect-ratio: 626.74 / 77.27;
}

/* ── Footer Brand – versteckt ──────────────────────────────────────────────── */
.footer-brand {
  display: none;  /* Nicht mehr benötigt */
}

/* ── Links unten ──────────────────────────────────────────────────────────── */
.footer-bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  padding-left: 60px;
}
.footer-bottom-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-bottom a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(220, 223, 239, 0.2);
  max-width: 50%;
  font-family: var(--font-main);
  font-size: 0.84rem;
  font-weight: 460;
  color: #ffffff;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: #1b1c21;
}


/* ══════════════════════════════════════════════════════════════════════════
   SITE LOGO
   ══════════════════════════════════════════════════════════════════════════ */


/* ── Site Logo oben links ────────────────────────────────────────────────── */

/* ══════════════════════════════════════════════════════════════════════════
   SITE LOGO
   ══════════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════════════
   LOGO OBEN LINKS
   ══════════════════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════════════════════
   HAMBURGER MENÜ
   ══════════════════════════════════════════════════════════════════════════ */
/* ── Logo oben links ─────────────────────────────────────────────────────── */
.logo {
  position: fixed;
  top: 28px;
  left: 20px;
  z-index: 1000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 460;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.logo:hover {
  opacity: 0.7;
}

.hamburger {
  position: fixed;
  top: 28px;
  right: 32px;
  z-index: 1001;
  width: 52px;
  height: 12px;
  display: none;  /* Desktop versteckt */
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger .line {
  width: 100%;
  height: 3px;  /* Doppelt so dick (vorher 1.5px) */
  background: #fff;  /* Weiß auf Hero */
  border-radius: 8px;  /* Abgerundete Ecken */
  transition: transform 0.45s cubic-bezier(.22,1,.36,1),
              background 0.3s ease;
  transform-origin: center;
}
.hamburger.dark .line { 
  background: #1b1c21;  /* Schwarz auf weißem Background */
}
.hamburger.open .line { 
  background: #1b1c21;
  height: 3px;  /* Gleich dick wie geschlossen */
}
.hamburger.open .line:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open .line:nth-child(2) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── Back to Top Button ──────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 1000;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(.22,1,.36,1),
              transform 0.4s cubic-bezier(.22,1,.36,1);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top svg {
  width: 100%;
  height: 100%;
}
.back-to-top circle {
  transition: fill 0.3s, stroke 0.3s;
}
.back-to-top path {
  transition: stroke 0.3s;
}
/* Hover auf hellem Background */
.back-to-top:hover circle {
  fill: #1b1c21;
  stroke: #1b1c21;
}
.back-to-top:hover path {
  stroke: #fff;
}
/* Invertierte Farben für dunklen Background (Unterseiten) */
.back-to-top.inverted {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top.inverted circle {
  fill: #1b1c21;
  stroke: #1b1c21;
}
.back-to-top.inverted path {
  stroke: #fff;
}
.back-to-top.inverted:hover circle {
  fill: #fff;
  stroke: #fff;
}
.back-to-top.inverted:hover path {
  stroke: #1b1c21;
}

/* ── Menu Overlay – Mobile nur ─────────────────────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #fff;  /* Weißer Background */
  z-index: 1000;
  display: none;  /* Desktop versteckt */
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 120px 32px 60px;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);  /* Rollo von oben nach unten */
  transition: clip-path 0.6s cubic-bezier(.22,1,.36,1),
              opacity 0.3s ease;
}
.menu-overlay.open { 
  opacity: 1; 
  pointer-events: all;
  clip-path: inset(0 0 0 0);  /* Komplett sichtbar */
}
.menu-overlay nav {
  text-align: left;
  flex: 1;
}
.menu-overlay nav a {
  display: block;
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  color: #1b1c21;
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  font-weight: 460;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(50px);
  transition: color 0.3s ease,
              opacity 0.5s cubic-bezier(.22,1,.36,1),
              transform 0.5s cubic-bezier(.22,1,.36,1);
}
.menu-overlay nav a:hover,
.menu-overlay nav a:active {
  color: #1b1c21;  /* Schwarz bei Hover/Touch */
}
.menu-overlay.open nav a { 
  opacity: 1;
  transform: translateY(0); 
}
/* Links bauen sich von unten nach oben auf während Rollo von oben kommt */
.menu-overlay.open nav a:nth-child(1) { transition-delay: 0.15s; }
.menu-overlay.open nav a:nth-child(2) { transition-delay: 0.20s; }
.menu-overlay.open nav a:nth-child(3) { transition-delay: 0.25s; }
.menu-overlay.open nav a:nth-child(4) { transition-delay: 0.30s; }

/* Get in touch Button - Mobile im Overlay */
.get-in-touch-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px 16px 24px;
  border: 1.5px solid #1b1c21;
  border-radius: 8px;
  background: transparent;
  color: #1b1c21;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 460;
  text-decoration: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(.22,1,.36,1),
              transform 0.5s cubic-bezier(.22,1,.36,1),
              background 0.3s ease,
              color 0.3s ease;
}
.menu-overlay.open .get-in-touch-mobile {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.get-in-touch-mobile:active {
  background: #1b1c21;
  color: #fff;
}
.get-in-touch-mobile .btn-arrow {
  font-size: 1.4rem;
  line-height: 1;
}


/* ══════════════════════════════════════════════════════════════════════════
   GESTALTUNGSRASTER – Texteinzüge
   .indent-near = 60px vom linken Rand
   .indent-far  = 500px vom linken Rand
   ══════════════════════════════════════════════════════════════════════════ */
.indent-near { padding-left: 60px; }
.indent-far  { padding-left: 500px; }

/* ══════════════════════════════════════════════════════════════════════════
   INTRO-SEKTION
   ══════════════════════════════════════════════════════════════════════════ */
.intro-section {
  min-height: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 25vh 0 150px;
  background: #e2e1e7 !important;
  position: relative;
}
.intro-layout {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 0 200px 120px 500px;
  width: fit-content;
}
.intro-label {
  display: none;  /* Label ausgeblendet – Einzug kommt vom Layout */
}
.intro-quote {
  font-family: 'Nyght Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.382rem, 2.58vw, 2.03rem);
  font-weight: 460;
  color: #1b1c21;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
  flex: 1;
  margin: 0;
  padding-left: 0;
  padding-bottom: 1px;
  display: inline-block;
  position: relative;
}
.intro-quote::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #1b1c21;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.intro-quote.line-visible::after {
  width: 100%;
}
.quote-author {
  display: inline-block;
  margin-left: 30px;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 460;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1b1c21;  /* Schwarz */
}
.intro-grid {
  display: none;
}
.intro-label-col {
  display: none;
}
.intro-text-col {
  display: none;
}
.intro-text {
  font-family: var(--font-main);
  font-size: clamp(1.152rem, 2.15vw, 1.69rem);
  font-weight: 460;
  color: #1b1c21;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 200px 0 500px;
  padding-left: 0;
}
.intro-text-fullwidth {
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: clamp(2.8rem, 5.2vw, 4.64rem);
  font-weight: 460;
  color: #1E4D42;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 20px 0 20px;
  padding-left: 0;
}
.col-step-number {
  display: block;
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5.2vw, 4.64rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #1b1c21;
  margin-bottom: 6px;
  margin-left: -0.08em;
  font-variant-numeric: tabular-nums;
  min-width: 3.2ch;
}

.paren {
  font-weight: 300;
}

.col-step-label {
  display: block;
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #1b1c21;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.intro-text-small {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 460;
  color: #1b1c21;
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin: 40px 200px 0 500px;
  padding-left: 0;
}
.intro-text-columns {
  display: grid;
  grid-template-columns: 260px 260px 260px;
  gap: 40px;
  margin: 80px 0 0 500px;
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 460;
  color: #1b1c21;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.intro-text .intro-accent {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 460;
  letter-spacing: -0.01em;
}
.intro-cta {
  display: none;
}


/* ══════════════════════════════════════════════════════════════════════════
   SEKTIONEN
   ══════════════════════════════════════════════════════════════════════════ */
.section {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 20px;
  position: relative;
  background: var(--bg-main);
}
.section-label {
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 460;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1b1c21;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1),
              transform 0.8s cubic-bezier(.22,1,.36,1);
}
.section-label.visible { opacity: 1; transform: translateY(0); }

/* Expertise-Label – links ausgerichtet wie Service/Kontakt */
.expertise-label {
  display: block;
  padding-left: 20px;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 460;
  color: #1b1c21;
  letter-spacing: 0;
  line-height: 1.3;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(.22,1,.36,1) 0.1s,
              transform 0.9s cubic-bezier(.22,1,.36,1) 0.1s;
}
.section-title.visible { opacity: 1; transform: translateY(0); }
.section-title .accent {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 460;
  letter-spacing: -0.02em;
}

.section-text {
  margin-top: 32px;
  font-family: var(--font-main);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 460;
  line-height: 1.7;
  color: #1b1c21;
  max-width: 700px;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.9s cubic-bezier(.22,1,.36,1) 0.25s,
              transform 0.9s cubic-bezier(.22,1,.36,1) 0.25s;
}
.section-text.visible { opacity: 1; transform: translateY(0); }

/* ── WE DO – Service Cards ───────────────────────────────────────────────── */
/* ── SERVICE ACCORDION ────────────────────────────────────────────────────── */
.service-section {
  padding: 100px 20px 100px 0;
  background: #e2e1e7 !important;
}

.service-section > .section-label {
  padding-left: 20px;
}

.accordion {
  margin-top: 120px;
  margin-left: 500px;
}

.accordion-item {
  position: relative;
}
/* Dünne Linie unten (zwischen Bereichen) */
.accordion-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #1b1c21;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.accordion-item.line-visible::after {
  width: calc(100% - 20px);
}
/* Dünne Linie oben beim ersten Item (wird zur dicken oben) */
.accordion-item:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1b1c21;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.accordion-item:first-child.line-visible::before {
  width: calc(100% - 20px);
}
/* Letzte Linie unten: dick (Service Section) */
.accordion-item:last-child::after {
  height: 2px;
}
/* Intro: keine untere Abschlusslinie */
.accordion--intro .accordion-item:last-child::after {
  display: none;
}

.accordion-header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  gap: 40px;
  padding: 16px 0 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: none;
}

.accordion-header:hover {
  background: #cdccd2;
}

.accordion-header-text {
  display: flex;
  align-items: baseline;
  gap: 16px;
  line-height: 1;
}

.accordion-number {
  font-family: var(--font-main);
  font-size: clamp(1.728rem, 3.224vw, 2.536rem);
  font-weight: 300;
  color: #1b1c21;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  min-width: 3.2ch;
  display: inline-block;
  text-align: left;
}

.accordion-title {
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-size: clamp(1.728rem, 3.224vw, 2.536rem);
  font-weight: 460;
  color: #1b1c21;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.3s ease;
}

.accordion-header:hover .accordion-title {
  color: #1b1c21;
  letter-spacing: -0.03em;
}

.accordion-icon {
  width: 40px;  /* 40px breit */
  height: 20px;  /* Proportional */
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('img/design/radio_btn_off.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
  text-indent: -9999px;  /* Text verstecken */
}

.accordion-item.active .accordion-icon {
  background-image: url('img/design/radio_btn_on.svg');
  transform: none;  /* Keine Rotation mehr */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.accordion-item.active .accordion-content {
  max-height: 800px;
  padding-top: 40px;
  padding-bottom: 80px;
  opacity: 1;
}

.accordion-content p {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 460;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #1b1c21;
  padding-left: 0;
  padding-right: 80px;
  margin-bottom: 40px;
}

.accordion-content ul {
  list-style: none;
  padding-left: 0;
  padding-right: 80px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-content ul li {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 460;
  line-height: 1.5;
  color: #1b1c21;
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-content ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7e7e84;
  flex-shrink: 0;
}

/* ── PROJEKTE ─────────────────────────────────────────────────────────────── */
.projects-placeholder {
  margin-top: 60px;
  padding: 80px 40px;
  border: 1px dashed #ddd;
  border-radius: 8px;
  text-align: center;
  color: #1b1c21;
  font-size: 1rem;
  background: #fafafa;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1),
              transform 0.8s cubic-bezier(.22,1,.36,1);
}
.projects-placeholder.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── WE ARE – About Grid ─────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.about-image-placeholder {
  aspect-ratio: 4/3;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b1c21;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1.8s cubic-bezier(.22,1,.36,1),
              transform 1.8s cubic-bezier(.22,1,.36,1);
}
.about-image-placeholder.visible { opacity: 1; transform: translateX(0); }

/* ── JOURNAL – loses Raster ──────────────────────────────────────────────── */
.journal-section {
  min-height: auto;
  padding-bottom: 140px;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
  margin-top: 72px;
}
/* Erstes Bild – groß, links, 2 Zeilen hoch */
.journal-item--large:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}
/* Zweites – mittel, rechts oben */
.journal-item--medium:nth-child(2) {
  grid-column: 7 / 11;
  grid-row: 1 / 2;
}
/* Dritte – klein, rechts oben */
.journal-item--small:nth-child(3) {
  grid-column: 11 / 13;
  grid-row: 1 / 2;
}
/* Viertes – klein, rechts mitte */
.journal-item--small:nth-child(4) {
  grid-column: 7 / 9;
  grid-row: 2 / 3;
}
/* Fünftes – mittel, rechts mitte */
.journal-item--medium:nth-child(5) {
  grid-column: 9 / 13;
  grid-row: 2 / 3;
}
/* Sechstes – groß, unten über volle Breite */
.journal-item--large:nth-child(6) {
  grid-column: 1 / 8;
  grid-row: 3 / 5;
}

.journal-item {
  overflow: hidden;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1),
              transform 0.7s cubic-bezier(.22,1,.36,1);
}
.journal-item.visible { opacity: 1; transform: translateY(0); }
.journal-item:nth-child(1).visible { transition-delay: 0.05s; }
.journal-item:nth-child(2).visible { transition-delay: 0.12s; }
.journal-item:nth-child(3).visible { transition-delay: 0.18s; }
.journal-item:nth-child(4).visible { transition-delay: 0.24s; }
.journal-item:nth-child(5).visible { transition-delay: 0.30s; }
.journal-item:nth-child(6).visible { transition-delay: 0.36s; }

.journal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.journal-item:hover img {
  transform: scale(1.04);
}

/* ── CONTACT – Kontaktformular ───────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════════════════════
   KONTAKT SECTION – Forma Style mit Grid-Alignment
   ══════════════════════════════════════════════════════════════════════════ */
.contact-section {
  min-height: 100vh;
  padding: 100px 20px 160px 0;
  position: relative;
  overflow: hidden;
  background: #e2e1e7 !important;
}

.contact-section > .section-label {
  padding-left: 20px;
}

/* Formular - startet bei 500px wie Accordion */
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 60px;
  margin-left: 500px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1) 0.2s,
              transform 0.8s cubic-bezier(.22,1,.36,1) 0.2s;
}
.contact-form.visible { opacity: 1; transform: translateY(0); }

/* Alle Formular-Elemente */
.contact-form > * {
  grid-column: auto;
}

/* Form Row - 2 Spalten */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 70%;
}

/* Einzelnes Feld - 15% kleinere Schrift, engere Abstände */
.contact-field {
  position: relative;
  padding: 16px 0 0;
  border-bottom: 1px solid #bebebb;
}
.contact-field-label {
  /* Label versteckt - nur für Accessibility */
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.contact-field-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: clamp(1.148rem, 1.913vw, 1.594rem);
  font-weight: 460;
  color: #1b1c21;
  letter-spacing: -0.01em;
  padding: 0;
  resize: none;
  -webkit-appearance: none;
}
.contact-field-input::placeholder {
  color: #bebebb;
  opacity: 1;
}
.contact-field-input:focus::placeholder {
  opacity: 0.5;
}

/* Telefon-Feld + Message-Feld */
.contact-field--message,
.contact-form > .contact-field:not(.form-row .contact-field) {
  max-width: 70%;
}
.contact-field--message .contact-field-input {
  min-height: 60px;
  font-size: clamp(1.148rem, 1.913vw, 1.594rem);
}

/* Submit-Button */
.contact-submit {
  align-self: flex-start;
  justify-self: flex-start;
  margin-top: 22px;
  padding: 8px 24px;
  height: 40px;
  background: #7e7e84;
  border: 1.5px solid #7e7e84;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 460;
  color: #fff;
  letter-spacing: -0.005em;
  transition: background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
}
.contact-submit:hover {
  background: #1b1c21;
  color: #fff;
  border-color: #1b1c21;
}
.contact-submit:active {
  transform: none;
}

/* Bestätigungstext nach dem Senden */
.contact-success {
  display: none;                        /* versteckt bis das Formular gesendet wurde */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1),
              transform 0.7s cubic-bezier(.22,1,.36,1);
}
.contact-success.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.contact-success-text {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 460;
  color: var(--text-on-white);
  letter-spacing: -0.02em;
  line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════════════════════
   UNTERSEITEN
   ══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 8vw 80px;
  background: var(--bg-main);
}
.page-hero .section-label { margin-bottom: 24px; }
.page-hero .section-title { max-width: 900px; }

.page-hero--small { min-height: 40vh; }
.page-hero--small .section-title {
  max-width: 700px;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.page-content {
  padding: 100px 8vw;
  max-width: 860px;
  background: var(--bg-main);
}
.page-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.page-content h3 {
  font-size: 1.4rem;
  font-weight: 460;
  color: var(--text-on-white);
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}
.page-content h3:first-child { margin-top: 0; }
.page-content a {
  color: var(--text-on-white);
  transition: color 0.3s;
}
.page-content a:hover { color: var(--link-hover); }

.legal-content {
  padding: 80px 8vw 120px;
  max-width: 780px;
  background: var(--bg-main);
}
.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 460;
  color: var(--text-on-white);
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.legal-content a {
  color: var(--text-on-white);
  transition: color 0.3s;
}
.legal-content a:hover { color: var(--link-hover); }

/* Kontakt-Unterseite */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.contact-block h3 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin: 0 0 16px;
  font-weight: 460;
}
.contact-block p,
.contact-block a {
  display: block;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-muted);
  transition: color 0.3s;
}
.contact-block a:hover { color: var(--link-hover); }

/* ── TEAM ────────────────────────────────────────────────────────────────── */
.team-section {
  padding: 0;
  background: #ffffff;
}

/* Vollbreites Hero-Foto */
.team-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.team-hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: cover;
  object-position: center top;
}
.team-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.0) 55%);
  pointer-events: none;
}
.team-hero-text {
  position: absolute;
  bottom: 52px;
  left: 20px;
  right: 20px;
  z-index: 2;
}
.team-label {
  color: #1b1c21 !important;
  margin-bottom: 16px;
  display: block;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.team-hero-headline {
  font-family: var(--font-main);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 460;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 900px;
}

/* Zwei Textspalten */
.team-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 20px 80px 60px;
  background: #ffffff;
}
.team-col p {
  font-family: var(--font-main);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 460;
  color: #1b1c21;
  line-height: 1.8;
  margin: 0;
}


/* ══════════════════════════════════════════════════════════════════════════
   MOBILE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --footer-height: 340px; }

  /* Desktop Navigation verstecken */
  .desktop-nav {
    display: none !important;
  }
  
  /* Desktop Get in touch verstecken */
  .get-in-touch-btn {
    display: none !important;
  }

  /* Hamburger + Overlay einblenden */
  .hamburger {
    display: flex !important;
  }
  .menu-overlay {
    display: flex !important;
  }

  .site-logo { top: 0; left: 20px; height: 80px; display: flex; align-items: center; }

  .hamburger { 
    top: 0; 
    right: 20px; 
    width: 44px; 
    height: 80px;           /* Gleiche Höhe wie Header */
    flex-direction: column;
    justify-content: center; /* Linien in der Mitte der 80px */
    align-items: center;
    gap: 8px;               /* Abstand zwischen den Linien = ca. Logo-Höhe */
  }
  .hamburger .line { height: 3px; }
  .hamburger.open .line:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .hamburger.open .line:nth-child(2) { transform: translateY(-5.5px) rotate(-45deg); }

  .back-to-top { bottom: 20px; right: 20px; width: 36px; height: 36px; }

  .intro-section { min-height: auto; padding: 80px 0 100px; }
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .intro-label-col { padding-top: 0; }

  .contact-section { padding: 80px 20px 100px; }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    margin-left: 0;
  }
  .contact-form > * { grid-column: auto; }
  .form-row { 
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;  /* Volle Breite auf Mobile */
  }
  .contact-field {
    padding: 16px 0 0;
  }
  .contact-field-input { 
    font-size: clamp(1.02rem, 4.25vw, 1.53rem);  /* 15% kleiner */
    padding-bottom: 10px;
  }
  .contact-field--message,
  .contact-form > .contact-field:not(.form-row .contact-field) { 
    grid-column: auto; 
    max-width: 100%;  /* Volle Breite auf Mobile */
  }
  .contact-field--message .contact-field-input { 
    min-height: 60px;  /* Auch auf Mobile kleiner */
    font-size: clamp(1.02rem, 4.25vw, 1.53rem);
  }
  .contact-submit { 
    grid-column: auto; 
    margin-top: 30px;
  }

  .footer { padding: 22px 20px 40px; min-height: 340px; }
  .footer-brand { display: none; }
  .footer-bottom { 
    padding-left: 32px;  /* Wie Hamburger Menü */
    margin-bottom: 20px;
    max-width: 100%;
  }
  .footer-bottom-links { 
    flex-direction: column;
    gap: 0;
    margin: 0 -32px 0 -32px;  /* Volle Breite für Linien */
  }
  .footer-bottom a {
    padding: 12px 32px 12px 0;  /* 32px rechts für Rand */
    margin-left: 32px;  /* Text eingerückt */
  }

  .section { min-height: auto; padding: 80px 32px 100px; }
  .intro-section { 
    padding: 80px 20px 60px 20px; 
  }
  .intro-layout {
    flex-direction: column;
    gap: 16px;
    margin: 0 0 40px 0;  /* Kein 500px Einzug auf Mobile */
  }
  .intro-label {
    display: block;  /* Wieder einblenden auf Mobile */
    width: 100%;
    padding-top: 0;
  }
  .intro-quote {
    font-size: clamp(2.4rem, 10vw, 3rem);  /* 100% größer als Desktop-Mobile */
    margin-left: 0;
    padding-left: 0;
    letter-spacing: -0.02em;
}
  .quote-author {
    display: block;
    margin-left: 0;
    margin-top: 16px;
    font-size: 0.576rem;  /* 20% kleiner: 0.72rem * 0.8 */
  }
  .intro-text { 
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-left: 0;
    padding-left: 0;
    width: 100%;
  }
  .intro-text-fullwidth {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    margin: 0;
    letter-spacing: -0.02em;
}
  .col-step-number {
  display: block;
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5.2vw, 4.64rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #1b1c21;
  margin-bottom: 6px;
  margin-left: -0.08em;
  font-variant-numeric: tabular-nums;
  min-width: 3.2ch;
}

.paren {
  font-weight: 300;
}

.col-step-label {
  display: block;
  font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #1b1c21;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.intro-text-small {
    font-size: 0.95rem;
    margin: 24px 0 0 0;
  }
  .intro-text-columns {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 0 0 0;
  }
  .menu-overlay { padding-left: 20px; }

  /* Team Mobile */
  .team-hero-text {
    bottom: 24px;
    left: 20px;
  }
  .team-hero-headline {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    letter-spacing: -0.02em;
}
  .team-columns {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 60px;
  }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { min-height: 45vh; padding-bottom: 60px; }
  
  .accordion-icon {
    display: none;
  }

  .accordion-header {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .accordion {
    margin-left: 0;
  }

  .accordion-number {
    font-size: 0.85rem;
  }

  .accordion-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    letter-spacing: -0.02em;
}
  
  .accordion-content p {
    padding-left: 0;
    font-size: 0.95rem;
  }
  
  .accordion-content ul {
    padding-left: 0;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   CMS PAGES (Impressum, Datenschutz)
   ══════════════════════════════════════════════════════════════════════════ */

/* Weißer Sticky Balken beim Scrollen */
.cms-scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
body.cms-scrolled .cms-scroll-bar {
  transform: translateY(0);
}
/* Logo und Nav schwarz beim Scrollen auf CMS-Seiten */
body.cms-scrolled .site-logo .logo-white {
  opacity: 0;
}
body.cms-scrolled .site-logo .logo-black {
  opacity: 1;
}
body.cms-scrolled .desktop-nav a {
  color: #1b1c21;
  letter-spacing: -0.01em;
}
body.cms-scrolled .get-in-touch-btn {
  background: #7e7e84;
  color: #fff;
  border-color: #7e7e84;
}
body.cms-scrolled .get-in-touch-btn:hover {
  background: #1b1c21;
  border-color: #1b1c21;
}
body.cms-scrolled .hamburger .line {
  background: #1b1c21;
}

/* Hero Section für CMS */
.cms-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;  /* Mindesthöhe */
  overflow: visible;
  background: #12141d;
}
.cms-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;  /* Nur erste Viewport-Höhe */
  background-image: url('img/design/web_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Content Section - liegt ÜBER Hero-Bild */
.cms-content-section {
  background: transparent;
  color: #dcdfef;
  min-height: 100vh;
  padding: 220px 20px 80px 20px;  /* 20px links wie Footer */
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    transparent 50vh, 
    #12141d 80vh,
    #12141d 100%);
}
.cms-content-inner {
  max-width: 900px;
  margin: 0;
  padding-left: 60px;  /* 60px wie Footer-Bottom */
  position: relative;
  z-index: 1;
}
.cms-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 460;
  margin-bottom: 50px;
  color: #dcdfef;
}

/* Mobile CMS */
@media (max-width: 768px) {
  .cms-content-section {
    padding: 200px 20px 60px 20px;  /* 20px wie Footer */
  }
  .cms-content-inner {
    padding-left: 32px;  /* 32px wie Mobile Footer */
  }
  .cms-content-section .section-label {
    top: 100px;  /* Etwas höher auf Mobile */
    left: 20px;  /* Vom Section-Rand */
  }
  .cms-scroll-bar {
    height: 60px;
  }
}

/* CMS Section Label */
.cms-content-section .section-label {
  position: absolute;  /* Absolute statt fixed - scrollt mit */
  top: 120px;  /* 120px von Section-Top */
  left: 20px;  /* 20px vom Section-Rand = wie Logo vom Viewport */
  z-index: 10;
}

/* ══════════════════════════════════════════════════════════════════════════

/* ══════════════════════════════════════════════════════════════════════════
   PROJECTS GALLERY
   ══════════════════════════════════════════════════════════════════════════ */

.projects-section {
  padding: 100px 20px !important;
  background: #ffffff;
}

.projects-section .section-label {
  position: static;
  display: block;
  margin-bottom: 60px;
  margin-left: 0;
}

.projects-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  row-gap: 80px;
  width: 100%;
}

.project-item {
  cursor: pointer;
}

/* Media Container */
.project-media {
  width: 100%;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.project-media img,
.project-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 0.5s cubic-bezier(.25,1,.5,1);
}

.project-item:hover .project-media img,
.project-item:hover .project-media video {
  transform: scale(1);
}

/* Caption */
.project-caption {
  margin-top: 12px;
  padding-left: 0;
}

.project-name {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 460;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1b1c21;
  margin: 0 0 2px 0;
  line-height: 1.4;
}

.project-meta {
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 460;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1b1c21;
  margin: 0;
  line-height: 1.4;
}

/* Formate */
.project-portrait .project-media {
  aspect-ratio: 3 / 4;
}

.project-landscape-wide .project-media,
.project-landscape-narrow .project-media {
  aspect-ratio: 4 / 3;
}

.project-square .project-media {
  aspect-ratio: 1 / 1;
}

/* Mobile */
@media (max-width: 768px) {
  .projects-section {
    padding: 60px 20px !important;
  }
  
  .projects-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    row-gap: 60px;
  }
  
  .project-name {
    font-size: 0.7rem;
  }
  
  .project-meta {
    font-size: 0.65rem;
  }
  
  /* Kein Hover auf Touch-Geräten */
  @media (hover: none) {
    .project-media img,
    .project-media video {
      transform: scale(1);  /* Mobile immer bei 100% */
    }
    
    .project-item:hover .project-media img,
    .project-item:hover .project-media video {
      transform: scale(1);
    }
  }
}


.editorial-wrapper {
  background: #e2e1e7;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   EDITORIAL PHOTO MODULE
   ══════════════════════════════════════════════════════════════════════════ */
.editorial-module {
  background: #1b1c21 !important;
  border-radius: 64px;
  margin: 0;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  isolation: isolate;
}

.editorial-label {
  color: #e2e1e7 !important;
  padding-left: 0;
  margin-bottom: 60px;
}

/* ── Pinboard Layout ──────────────────────────────────────────────────── */
.pinboard {
  position: relative;
  min-height: 1000px;
  padding: 20px 0 80px;
}

/* Alle Pins: absolute Positionierung für Pinwand-Feeling */
.pin {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(.22,1,.36,1),
              transform 1.8s cubic-bezier(.22,1,.36,1);
}
.pin.slide-in {
  opacity: 1;
  transform: translateX(0) !important;
}

/* Von links */
.pin--from-left  { transform: translateX(-120px); }
/* Von rechts */
.pin--from-right { transform: translateX(120px); }

/* Pin 1: Hochformat, oben links, leicht gedreht */
.pin--1 {
  left: 4%;
  top: 0;
  width: 26%;
  aspect-ratio: 3/4;
  transform: translateX(-120px) rotate(-1.5deg);
}
.pin--1.slide-in { transform: translateX(0) rotate(-1.5deg); }

/* Pin 2: Querformat, oben rechts, klar abgesetzt */
.pin--2 {
  left: 36%;
  top: 30px;
  width: 36%;
  aspect-ratio: 4/3;
  transform: translateX(120px) rotate(1deg);
}
.pin--2.slide-in { transform: translateX(0) rotate(1deg); }

/* Pin 3: Querformat, unten links */
.pin--3 {
  left: 6%;
  top: 520px;
  width: 34%;
  aspect-ratio: 4/3;
  transform: translateX(-120px) rotate(0.8deg);
}
.pin--3.slide-in { transform: translateX(0) rotate(0.8deg); }

/* Pin 4: Hochformat, unten rechts — tiefer gesetzt damit kein Overlap */
.pin--4 {
  left: 46%;
  top: 480px;
  width: 24%;
  aspect-ratio: 3/4;
  transform: translateX(120px) rotate(-1deg);
}
.pin--4.slide-in { transform: translateX(0) rotate(-1deg); }

.pin-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .editorial-module {
    border-radius: 20px;
    margin: 0;
    padding: 40px 24px;
  }
  .pinboard {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
  .pin {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1;
  }
}
