/* ══════════════════════════════════════════════════════════════
   Habibi Gebäudereinigung – Hauptstylesheet
   ══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --navy:       #1a5fa8;
  --navy-mid:   #2272c3;
  --teal:       #00c2e0;
  --teal-light: #38daf5;
  --cream:      #f0f7ff;
  --warm-gray:  #b8cfe0;
  --text-dark:  #0d2d4a;
  --text-mid:   #3a6080;
  --text-light: #6a9ab8;
  --white:      #ffffff;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(26, 95, 168, 0.10);
  --shadow-nav:  0 2px 32px rgba(26, 95, 168, 0.18);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1200px;
  --nav-h: 72px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ══════════════════════════════════════════════════════════════
   ANIMATION CANVASES
══════════════════════════════════════════════════════════════ */

/* Ambient bubbles – full viewport, behind everything */
#ambient-bubble-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Interaction bubbles – full viewport, above content but non-blocking */
#interaction-bubble-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  pointer-events: none;
}

/* Footer wave canvas – covers entire footer */
#footer-wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}

/* Footer needs relative positioning for the wave canvas */
.site-footer { position: relative; overflow: hidden; }

/* Footer content must sit above the wave canvas */
.footer-main,
.footer-bar { position: relative; z-index: 2; }

/* Stacking order */
.site-header  { z-index: 1000; }
.page-wrapper { position: relative; z-index: 1; }

/* ── Skip Link (Accessibility) ──────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px; left: 0;
  background: var(--teal);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus { top: 0; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(26, 95, 168, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-nav);
  display: flex;
  align-items: center;
  overflow: visible;           /* Badge darf herausragen */
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 0 260px;    /* Platz links für den Badge */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo Badge – weißer Kasten ragt oben UND unten aus dem Header heraus */
.nav-logo-badge {
  position: fixed;
  top: 0;
  left: 100px;
  background: #ffffff;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 12px 24px 18px;
  height: calc(var(--nav-h) + 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1002;
  box-shadow:
    0 8px 32px rgba(26, 95, 168, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.nav-logo-badge.slide-up {
  transform: translateY(calc(-1 * (var(--nav-h) + 40px)));
}

/* Logo img */
.nav-logo__img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo__icon {
  width: 48px; height: 48px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo__icon svg { width: 26px; height: 26px; }
.nav-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav-logo__sub {
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.active  { color: var(--teal-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,194,224,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.22); }
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu – slides in from top-right */
.nav-mobile {
  position: fixed;
  top: calc(var(--nav-h) + 8px);
  right: 16px;
  left: auto;
  width: min(300px, calc(100vw - 32px));
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  z-index: 1100;                /* über allem, inkl. Logo-Badge */
  box-shadow: 0 20px 60px rgba(10,37,64,0.45), 0 4px 16px rgba(0,0,0,0.2);

  /* Animation state – hidden */
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  transform-origin: top right;
  pointer-events: none;
  display: flex;   /* always flex, controlled via opacity + pointer-events */
  transition:
    opacity 0.25s cubic-bezier(0.4,0,0.2,1),
    transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.nav-mobile.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-mobile a {
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 1rem;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  border-bottom: none;
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-mobile a.active { color: var(--teal-light); }
.nav-mobile .btn {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════════════════════════
   LAYOUT BASE
══════════════════════════════════════════════════════════════ */
.page-wrapper { flex: 1; padding-top: var(--nav-h); }

.section { padding: 80px 24px; }
.section--hero {
  padding: 100px 24px 80px;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
}
.section--alt  { background: var(--white); }
.section--dark { background: var(--navy); color: var(--white); }

.container { max-width: var(--max-w); margin: 0 auto; width: 100%; }

/* Section Labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* Headings */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }

/* Section Head */
.section-head { margin-bottom: 48px; }
.section-head h2 { color: var(--navy); margin-bottom: 12px; }
.section-head p  { color: var(--text-mid); max-width: 540px; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,224,0.12);
  border: 1px solid rgba(0,194,224,0.3);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-badge__dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.hero-text h1  { color: var(--navy); margin-bottom: 20px; }
.hero-text p   { font-size: 1.1rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; max-width: 500px; }
.hero-actions  { display: flex; gap: 12px; flex-wrap: wrap; }
.btn--hero-primary {
  background: var(--navy); color: var(--white); padding: 14px 28px; font-size: 1rem;
}
.btn--hero-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,95,168,0.22);
}
.btn--hero-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid rgba(26,95,168,0.25);
  padding: 14px 28px; font-size: 1rem;
}
.btn--hero-outline:hover { border-color: var(--teal); color: var(--teal); }

.hero-visual__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, rgba(0,194,224,0.15) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.85rem; font-style: italic; letter-spacing: 0.05em;
}

/* Stats */
.hero-stats {
  display: flex; gap: 32px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(26,95,168,0.12);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num   { font-family: var(--font-display); font-size: 2rem; color: var(--navy); line-height: 1; }
.stat__label { font-size: 0.8rem; color: var(--text-mid); font-weight: 400; }

/* ══════════════════════════════════════════════════════════════
   USP STRIP
══════════════════════════════════════════════════════════════ */
.usp-strip { background: var(--navy); padding: 20px 24px; }
.usp-strip__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.usp-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem; font-weight: 500;
}
.usp-item__icon { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   CARDS GRID
══════════════════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26,95,168,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--teal);
  opacity: 0; transition: opacity var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,95,168,0.14); }
.card:hover::before { opacity: 1; }
.card__icon-wrap {
  width: 52px; height: 52px;
  background: rgba(0,194,224,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card__icon-wrap svg { width: 26px; height: 26px; color: var(--teal); }
.card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.15rem; }
.card p  { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   ABOUT SPLIT
══════════════════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-visual__placeholder {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(0,194,224,0.08) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26,95,168,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--warm-gray); font-size: 0.85rem; font-style: italic;
}
.about-text h2 { color: var(--navy); margin-bottom: 16px; }
.about-text p  { color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-size: 0.95rem; }

.value-list  { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.value-item  { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 500; color: var(--text-dark); }
.value-item__check {
  width: 22px; height: 22px;
  background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-item__check svg { width: 12px; height: 12px; color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-cell {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem; font-style: italic;
}
.gallery-cell:nth-child(1) { aspect-ratio: 4/3; grid-column: span 2; }
.gallery-cell:nth-child(2) { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-cell:nth-child(3) { aspect-ratio: 16/9; }
.gallery-cell:nth-child(4) { aspect-ratio: 1; }
.gallery-cell:nth-child(5) { aspect-ratio: 4/3; grid-column: span 2; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info p  { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item    { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.contact-item__icon {
  width: 40px; height: 40px;
  background: rgba(0,194,224,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 20px; height: 20px; color: var(--teal-light); }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--white);
  margin-bottom: 24px;
}
.form-row   { display: flex; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; flex: 1; }
.form-group label {
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus  { outline: none; border-color: var(--teal); }
.form-group textarea      { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy); }
.btn--form { width: 100%; justify-content: center; padding: 14px; }

/* ══════════════════════════════════════════════════════════════
   JOBS
══════════════════════════════════════════════════════════════ */
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26,95,168,0.07);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.job-card:hover { transform: translateX(4px); box-shadow: 0 8px 32px rgba(26,95,168,0.12); }
.job-card__info h3  { color: var(--navy); font-size: 1.1rem; margin-bottom: 4px; }
.job-card__meta     { display: flex; gap: 12px; flex-wrap: wrap; }
.job-tag {
  background: rgba(0,194,224,0.1); color: var(--teal);
  font-size: 0.75rem; font-weight: 600;
  padding: 3px 10px; border-radius: 999px; letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════════
   LEGAL
══════════════════════════════════════════════════════════════ */
.legal-content { max-width: 720px; }
.legal-content h2 { color: var(--navy); margin-bottom: 24px; }
.legal-content h3 { color: var(--navy); font-size: 1.05rem; margin: 28px 0 8px; font-family: var(--font-body); font-weight: 600; }
.legal-content p  { color: var(--text-mid); line-height: 1.75; margin-bottom: 12px; font-size: 0.95rem; }

/* ══════════════════════════════════════════════════════════════
   FOOTER – Reduziert mit Wellenanimation
══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy); color: var(--white); }

.footer-body {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 56px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.footer-logo__img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 380px;
}

.footer-contact-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.footer-contact-row a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.footer-contact-row a:hover { color: var(--teal-light); }
.footer-contact-row svg { width: 15px; height: 15px; flex-shrink: 0; }

.footer-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: var(--max-w); margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bar p   { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-legal   { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--teal-light); }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.4s ease both; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats  { gap: 20px; }
  .nav-inner {
    padding: 0 20px 0 20px;
    justify-content: flex-end;  /* Hamburger nach rechts */
  }

  /* Logo-Badge: kleiner, oben links */
  .nav-logo-badge {
    left: 12px;
    padding: 6px 12px 10px;
    height: calc(var(--nav-h) + 16px);
  }
  .nav-logo__img {
    height: 44px;
  }
}
@media (max-width: 600px) {
  .section { padding: 56px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-cell:nth-child(1) { grid-column: span 2; }
  .gallery-cell:nth-child(2) { grid-row: auto; }
  .gallery-cell:nth-child(5) { grid-column: span 2; }

  .form-row    { flex-direction: column; }
  .job-card    { flex-direction: column; align-items: flex-start; }

  /* Kontakt: Channel-Cards untereinander, kompakter */
  .channel-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 28px !important;
  }
  .channel-card {
    padding: 20px 18px !important;
    gap: 8px !important;
  }
  .channel-card__icon {
    width: 40px !important;
    height: 40px !important;
  }
  .channel-card__icon svg { width: 20px !important; height: 20px !important; }
  .contact-info-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 28px !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   CARD VARIANTS
══════════════════════════════════════════════════════════════ */
.card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.card--dark h3         { color: var(--white); }
.card--dark .card__text--light,
.card--dark p          { color: rgba(255,255,255,0.65); }

.section-head__title--light { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   SCROLL-REVEAL
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   HEADER SCROLLED STATE
══════════════════════════════════════════════════════════════ */
.site-header.scrolled {
  box-shadow: var(--shadow-nav);
}

/* ══════════════════════════════════════════════════════════════
   BUTTON SENT STATE
══════════════════════════════════════════════════════════════ */
.btn--sent { background: var(--teal-light) !important; }
