/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --bg:            #06080f;
  --surface:       #0c1020;
  --card:          #111827;
  --copper:        #159aa3;
  --copper-light:  #22b8e0;
  --copper-dim:    rgba(21, 154, 163, 0.18);
  --copper-glow:   rgba(21, 154, 163, 0.28);
  --electric:      #00c8ff;
  --electric-dim:  rgba(0, 200, 255, 0.12);
  --text:          #f0f4ff;
  --muted:         #8899cc;
  --line:          rgba(21, 154, 163, 0.18);
  --radius:        20px;
  --radius-sm:     12px;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --transition:    0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: auto;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper-light); text-decoration: none; transition: color .25s; }
a:hover { color: var(--copper); }

/* ─────────────────────────────────────────────
   PARTICLE CANVAS
───────────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

/* ─────────────────────────────────────────────
   LOADING SCREEN
───────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.7s ease, visibility 0.7s;
}

.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  width: 200px;
  opacity: 0.9;
  animation: loaderPulse 1.8s ease-in-out infinite alternate;
  filter: brightness(1.15);
}

.loader-bar-track {
  width: 260px;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--electric));
  animation: loaderFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  width: 0;
}

.loader-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(21, 154, 163, 0.6);
  animation: loaderBlink 1.2s ease-in-out infinite;
}

@keyframes loaderFill { from { width: 0; } to { width: 100%; } }
@keyframes loaderPulse {
  from { opacity: 0.8; filter: brightness(1); }
  to   { opacity: 1;   filter: brightness(1.25) drop-shadow(0 0 16px rgba(21,154,163,0.4)); }
}
@keyframes loaderBlink {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ─────────────────────────────────────────────
   SCROLL PROGRESS BAR
───────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--electric));
  z-index: 500;
  width: 0%;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 7px;
  height: 7px;
  background: var(--copper);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, background 0.3s, width 0.3s, height 0.3s;
  will-change: transform;
  display: none;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(21, 154, 163, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.4s, opacity 0.4s, top 0.12s linear, left 0.12s linear;
  opacity: 0.7;
  will-change: transform;
  display: none;
}

.cursor-ring.hovering {
  width: 62px;
  height: 62px;
  border-color: var(--electric);
  opacity: 1;
  background: rgba(0, 200, 255, 0.04);
}

/* ─────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────── */
.container {
  width: min(1160px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: linear-gradient(180deg, rgba(9, 12, 22, 0.95) 0%, rgba(7, 10, 18, 0.98) 100%);
}

/* Big faded section number */
.section-num {
  position: absolute;
  right: 4%;
  top: 2.5rem;
  font-family: 'DM Mono', monospace;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 400;
  color: var(--copper);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}

/* ─────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 15, 0.78);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--line);
  z-index: -1;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.header-logo {
  max-height: 44px;
  width: auto;
  border-radius: 0;
  filter: brightness(1.05);
  transition: filter 0.3s, transform 0.3s;
}
.brand-lockup:hover .header-logo {
  filter: brightness(1.3);
  transform: scale(1.02);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.15rem;
  justify-content: flex-end;
  max-width: 700px;
}

.main-nav a {
  color: rgba(240, 244, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.3s ease;
}

.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }

.menu-toggle { display: none; }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
  transform-origin: center;
}

.hero-slide.is-active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(6, 8, 15, 0.97) 0%, rgba(6, 8, 15, 0.82) 42%, rgba(6, 8, 15, 0.55) 100%),
    linear-gradient(0deg, rgba(6, 8, 15, 0.85) 0%, transparent 45%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--copper);
  flex-shrink: 0;
}

/* ─── Typography ─── */
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: italic;
  color: var(--copper-light);
}

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  margin-bottom: 0.6rem;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--copper);
  display: block;
  flex-shrink: 0;
}

.section-intro {
  color: var(--muted);
  max-width: 66ch;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.75rem;
}

.lead {
  font-size: 1.12rem;
  color: rgba(240, 244, 255, 0.72);
  max-width: 50ch;
  line-height: 1.72;
  margin-bottom: 2rem;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
  will-change: transform;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  color: #06080f;
}

.btn-primary:hover {
  box-shadow: 0 10px 40px rgba(21, 154, 163, 0.5);
  color: #06080f;
}

.btn-ghost {
  border-color: rgba(21, 154, 163, 0.35);
  color: var(--text);
  background: rgba(21, 154, 163, 0.06);
}

.btn-ghost:hover {
  border-color: var(--copper);
  background: rgba(21, 154, 163, 0.13);
  color: var(--text);
  box-shadow: 0 8px 28px rgba(21, 154, 163, 0.22);
}

/* ─────────────────────────────────────────────
   CONTACT STRIP (in hero)
───────────────────────────────────────────── */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 600px;
}

.contact-strip dt {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.3rem;
}

.contact-strip dd {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0;
}

.contact-strip a { color: rgba(240, 244, 255, 0.88); }
.contact-strip a:hover { color: var(--copper-light); }

/* ─────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────── */
.stats-strip {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 154, 163, 0.06) 0%, rgba(0, 200, 255, 0.04) 100%);
}

.stats-strip::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--line);
}

.stat-num {
  font-family: 'DM Mono', monospace;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--copper);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.stat-suffix {
  color: var(--electric);
  font-size: 0.55em;
  vertical-align: super;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}

/* ─────────────────────────────────────────────
   SERVICE CARDS (Leistungen)
───────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  will-change: transform;
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(21,154,163,0.1) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--electric));
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 20px 20px 0 0;
}

.card:hover {
  border-color: rgba(21, 154, 163, 0.4);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 50px rgba(21, 154, 163, 0.08);
}

.card:hover::before { opacity: 1; }
.card:hover::after  { opacity: 1; }

.card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1.3rem;
  color: var(--copper);
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}

.card:hover .card-icon { opacity: 1; transform: scale(1.1); }

.card h3 { font-size: 1.12rem; margin-bottom: 0.55rem; color: var(--text); }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--copper-light);
  letter-spacing: 0.03em;
  transition: gap 0.35s var(--ease), color 0.25s;
}

.text-link::after { content: '→'; }
.text-link:hover { gap: 0.75rem; color: var(--copper); }

/* ─────────────────────────────────────────────
   SERVO SECTION
───────────────────────────────────────────── */
.servo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.servo-card {
  background: rgba(21, 154, 163, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.servo-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--copper), transparent);
}

.servo-card:hover {
  border-color: rgba(21, 154, 163, 0.3);
  background: rgba(21, 154, 163, 0.07);
}

.servo-card h3 {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.servo-card p { color: var(--muted); font-size: 0.95rem; }

/* ─────────────────────────────────────────────
   CHECKLIST
───────────────────────────────────────────── */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist.cols-2 {
  columns: 2;
  column-gap: 3rem;
}

.checklist li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2rem;
  color: var(--muted);
  break-inside: avoid;
  font-size: 0.97rem;
  border-bottom: 1px solid rgba(21, 154, 163, 0.07);
  transition: color 0.25s, padding-left 0.3s;
}

.checklist li:hover { color: var(--text); padding-left: 2.3rem; }

.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border: 1.5px solid var(--copper);
  border-radius: 50%;
  background: rgba(21, 154, 163, 0.1);
}

.checklist li::after {
  content: '';
  position: absolute;
  left: 4px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
}

/* ─────────────────────────────────────────────
   PHOTO ROWS & GRIDS
───────────────────────────────────────────── */
.photo-row { display: grid; gap: 1.3rem; margin-top: 1.5rem; }
.photo-row.duo   { grid-template-columns: repeat(2, 1fr); }
.photo-row.trio  { grid-template-columns: repeat(3, 1fr); }
.photo-row figure { margin: 0; overflow: hidden; border-radius: var(--radius); }

.photo-row figure img {
  border-radius: 0;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.7s var(--ease), filter 0.4s;
  filter: brightness(0.88) saturate(0.8);
}

.photo-row figure:hover img {
  transform: scale(1.05);
  filter: brightness(1.02) saturate(1.05);
}

.photo-row figcaption {
  padding: 0.6rem 0.2rem 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}

.photo-grid.many {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 1.3rem;
  margin-top: 1.5rem;
}

.photo-grid figure {
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin: 0;
}

.photo-grid figure img {
  border-radius: 0;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.88) saturate(0.75);
}

.photo-grid figure:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.1);
}

.photo-grid figcaption {
  padding: 0.45rem 0.5rem 0.55rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}

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

/* ─────────────────────────────────────────────
   QUALITY
───────────────────────────────────────────── */
.qual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
  margin: 2rem 0 2.5rem;
}

.qual-card {
  background: rgba(21, 154, 163, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color 0.3s, background 0.3s, transform 0.4s var(--ease);
}

.qual-card:hover {
  border-color: rgba(21, 154, 163, 0.35);
  background: rgba(21, 154, 163, 0.08);
  transform: translateY(-3px);
}

.qual-card h3 {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.6rem;
}

.qual-card p { color: var(--muted); font-size: 0.95rem; }

.h3-spaced { margin-top: 2.5rem; font-family: 'Playfair Display', serif; }

/* ─────────────────────────────────────────────
   SERVICE BLOCKS
───────────────────────────────────────────── */
.service-blocks { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

.service-item {
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.service-item:hover {
  border-color: rgba(21, 154, 163, 0.32);
  transform: translateX(5px);
}

.service-num {
  font-family: 'DM Mono', monospace;
  font-size: 1.6rem;
  color: var(--copper);
  opacity: 0.4;
  line-height: 1;
  padding-top: 0.1rem;
}

.service-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.service-item p { color: var(--muted); font-size: 0.95rem; }

/* ─────────────────────────────────────────────
   SPLIT LAYOUT
───────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* ─────────────────────────────────────────────
   PHILOSOPHY LIST
───────────────────────────────────────────── */
.philosophy-list { list-style: none; padding: 0; }

.philosophy-list li {
  padding: 0.8rem 0 0.8rem 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.97rem;
  position: relative;
  transition: color 0.25s, padding-left 0.3s;
}

.philosophy-list li:last-child { border-bottom: none; }

.philosophy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 600;
}

.philosophy-list li:hover { color: var(--text); padding-left: 2.5rem; }

/* ─────────────────────────────────────────────
   TIMELINE
───────────────────────────────────────────── */
.timeline { list-style: none; padding: 0; position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--copper), transparent);
}

.timeline li {
  padding: 0.65rem 0 0.65rem 2.5rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: 2px; top: 1.05rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--copper);
  transition: background 0.3s;
}

.timeline li:hover::before { background: rgba(21, 154, 163, 0.25); }
.timeline strong { color: var(--copper-light); font-weight: 600; }

/* ─────────────────────────────────────────────
   NEWS
───────────────────────────────────────────── */
.news-list { list-style: none; padding: 0; }

.news-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left 0.3s;
}

.news-item:last-child { border-bottom: none; }
.news-item:hover { padding-left: 0.4rem; }

.news-date {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--copper);
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-top: 0.1rem;
}

.news-text { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.news-text strong { color: var(--text); }

/* ─────────────────────────────────────────────
   BEFORE / AFTER GALLERY
───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
  gap: 1.3rem;
  margin-top: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: auto;
}

.gallery-item img {
  border-radius: 0;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.7s var(--ease), filter 0.4s;
  filter: brightness(0.85) saturate(0.75);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 8, 15, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.76rem;
  color: rgba(240, 244, 255, 0.85);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────
   TEAM CARDS
───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  margin-top: 1.5rem;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.45s var(--ease), box-shadow 0.35s;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.team-card:hover {
  border-color: rgba(21, 154, 163, 0.4);
  transform: translateY(-7px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(21, 154, 163, 0.08);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(21, 154, 163, 0.25);
  margin: 0 0 1rem;
  filter: saturate(0.95) contrast(1.03);
}

.team-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.team-role { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.85rem; line-height: 1.4; }
.team-phone { font-family: 'DM Mono', monospace; font-size: 0.85rem; color: var(--copper-light); }
.team-phone a { color: inherit; }
.team-phone a:hover { color: var(--copper); }
.team-mail {
  font-size: 0.78rem;
  margin-top: 0.4rem;
  color: var(--muted);
  word-break: break-word;
}
.team-mail a { color: var(--muted); }
.team-mail a:hover { color: var(--copper-light); }

/* ─────────────────────────────────────────────
   KARRIERE
───────────────────────────────────────────── */
.karriere-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

.karriere-block {
  background: rgba(21, 154, 163, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: border-color 0.3s;
}

.karriere-block:hover { border-color: rgba(21, 154, 163, 0.28); }

.karriere-block h3 {
  color: var(--copper-light);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.karriere-block p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.karriere-block p:last-child { margin-bottom: 0; }
.karriere-block strong { color: var(--text); }

/* ─────────────────────────────────────────────
   STANDORT
───────────────────────────────────────────── */
.standort-times { list-style: none; padding: 0; margin: 1.5rem 0 0; }

.standort-times li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.97rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.standort-times li:last-child { border-bottom: none; }
.standort-times .time-detail { color: var(--muted); font-size: 0.85rem; }

.location-image {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--radius);
  filter: brightness(0.82) saturate(0.7);
  margin-bottom: 1.75rem;
  transition: filter 0.4s;
}

.location-image:hover { filter: brightness(0.9) saturate(0.85); }
.location-link { margin-top: 1.5rem; }

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

.contact-info p { color: var(--muted); font-size: 0.96rem; margin-bottom: 0.75rem; }
.contact-info strong { color: var(--text); }
.contact-info a { color: var(--copper-light); }
.contact-info a:hover { color: var(--copper); }

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--electric));
}

.form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

.form-field { margin-bottom: 1.1rem; }

.form-field label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(21, 154, 163, 0.2);
  background: rgba(6, 8, 15, 0.65);
  color: var(--text);
  padding: 0.875rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(21, 154, 163, 0.12);
}

.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; }

.ds-hinweis {
  margin-top: 2.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(6, 8, 15, 0.6);
}

.ds-hinweis h3 {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.55rem;
}

.ds-hinweis p { font-size: 0.83rem; color: var(--muted); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  background: #040609;
  padding: 2.5rem 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-top p { margin: 0.3rem 0; color: rgba(136, 153, 204, 0.72); font-size: 0.88rem; }
.footer-top a { color: var(--copper-light); }
.footer-top a:hover { color: var(--copper); }

.powered-by {
  text-align: right;
  font-size: 0.88rem;
  color: rgba(136, 153, 204, 0.55);
  white-space: nowrap;
  padding-left: 1.75rem;
  border-left: 1px solid rgba(21, 154, 163, 0.18);
}

.powered-by a { color: #22b8e0; font-weight: 700; }
.powered-by a:hover { color: #22b8e0; }

/* ─────────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.stagger-children.in-view > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger-children.in-view > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.stagger-children.in-view > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.19s; }
.stagger-children.in-view > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.26s; }
.stagger-children.in-view > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.33s; }
.stagger-children.in-view > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    border-radius: 12px;
    min-height: 42px;
    padding: 0 1rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
  }

  .main-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: rgba(6, 8, 15, 0.97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--line);
    padding: 1rem 4%;
    display: none;
    flex-direction: column;
    z-index: 100;
    gap: 0.25rem;
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.5rem 0; font-size: 0.95rem; }

  .contact-section-grid, .split, .karriere-grid { grid-template-columns: 1fr; }
  .photo-row.duo, .photo-row.trio { grid-template-columns: 1fr; }
  .checklist.cols-2 { columns: 1; }
  .contact-strip { grid-template-columns: 1fr; }
  .hero-content { padding-top: 7rem; }

  /* Disable custom cursor on touch devices */
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  .btn { cursor: pointer; }
}

@media (max-width: 640px) {
  .section { padding: 5rem 0; }
  .card-grid, .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .footer-top { flex-direction: column; text-align: center; }
  .powered-by { text-align: center; white-space: normal; padding-left: 0; border-left: none; border-top: 1px solid rgba(21, 154, 163, 0.18); padding-top: 0.75rem; }
  .cta-row .btn { width: 100%; }
}
