/* ============================================================
   MN MANAGEMENT — Hi-Fi Prototype Styles
   Basis: WordPress-Theme style.css, erweitert um Logo,
   Foto-Sektionen, Wien-Block und Cosmoconsult-inspirierte Struktur.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

:root {
  --dark:        #0a1f3c;
  --dark-2:      #0e2647;
  --dark-3:      #163359;
  --dark-4:      #1f4274;
  --cream:       #f5f1ea;
  --cream-2:     #ebe4d5;
  --cream-3:     #dccfb6;
  --gold:        #ff6a2c;
  --gold-2:      #ff8551;
  --gold-light:  #ffa97d;
  --gold-pale:   rgba(255,106,44,0.12);
  --text:        #0a1f3c;
  --text-2:      #2e3b54;
  --text-muted:  rgba(10,31,60,0.58);
  --text-light:  #f5f1ea;
  --text-lmuted: rgba(245,241,234,0.62);
  --border:      rgba(10,31,60,0.12);
  --border-2:    rgba(10,31,60,0.07);
  --border-d:    rgba(245,241,234,0.12);
  --border-d2:   rgba(245,241,234,0.06);
  --sans:        'DM Sans', system-ui, sans-serif;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --display:     'DM Sans', system-ui, sans-serif;
  --nav-h:       72px;
  --max-w:       1280px;
  --r:           3px;
  --r-md:        6px;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ======== TYPOGRAPHY ======== */
.display-xl  { font-family: var(--display); font-size: clamp(54px, 8vw, 128px); font-weight: 700; line-height: 0.96; letter-spacing: -0.035em; }
.display-lg  { font-family: var(--display); font-size: clamp(40px, 5.5vw, 78px); font-weight: 600; line-height: 1.02; letter-spacing: -0.025em; }
.display-md  { font-family: var(--display); font-size: clamp(28px, 3.4vw, 48px); font-weight: 600; line-height: 1.1; letter-spacing: -0.018em; }
.display-sm  { font-family: var(--display); font-size: clamp(22px, 2.4vw, 32px); font-weight: 500; line-height: 1.18; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ======== LAYOUT ======== */
.wrap {
  max-width: calc(var(--max-w) + 80px);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ======== NAV ======== */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: var(--dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-d);
}
.nav-inner {
  width: 100%;
  max-width: calc(var(--max-w) + 80px);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}
.nav-logo .logo-mark {
  width: 68.4px;
  height: 68.4px;
  filter: invert(1);
  mix-blend-mode: lighten;
  flex-shrink: 0;
}
.nav-logo .logo-word {
  font-family: var(--display);
  font-size: 19.2px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #ffffff;
}
.nav-logo .logo-word em { font-style: normal; color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-lmuted);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover  { color: #ffffff; }
.nav-links a.active { color: var(--gold); border-color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 10px 20px;
  border-radius: var(--r);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-2); transform: translateY(-1px); }
.nav-cta::after { content: '→'; transition: transform 0.2s; }
.nav-cta:hover::after { transform: translateX(3px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--cream); transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu { display: none; position: fixed; top: var(--nav-h); inset-inline: 0; background: var(--dark-2); border-bottom: 1px solid var(--border-d); z-index: 999; padding: 16px 0 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-size: 14px; color: var(--text-lmuted); text-decoration: none; padding: 13px 40px; border-bottom: 1px solid var(--border-d2); letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .m-cta { display: block; margin: 20px 40px 0; text-align: center; background: var(--gold); color: var(--dark); border-radius: var(--r); padding: 12px; font-size: 13px; font-weight: 500; text-transform: none; border-bottom: none; }

/* ======== PAGE SYSTEM ======== */
.page        { display: none; }
.page.active { display: block; }

/* ======== BUTTONS ======== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 13.5px; font-weight: 500; padding: 13px 26px; border-radius: var(--r); cursor: pointer; text-decoration: none; transition: all 0.2s; border: none; line-height: 1; white-space: nowrap; }
.btn-gold    { background: var(--gold);  color: var(--dark);  }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,93,143,0.28); }
.btn-outline { background: transparent; color: #ffffff; border: 1px solid rgba(243,237,226,0.22); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark    { background: var(--dark);  color: #ffffff; }
.btn-dark:hover { background: var(--dark-3); transform: translateY(-1px); }
.btn-ghost   { background: transparent; color: var(--text);  border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--text-2); }
.btn-arrow::after { content: '→'; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ======== ANIMATIONS ======== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; animation: fadeUp 0.75s ease forwards; }
.d1 { animation-delay: 0.08s; } .d2 { animation-delay: 0.18s; } .d3 { animation-delay: 0.30s; } .d4 { animation-delay: 0.44s; } .d5 { animation-delay: 0.58s; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.vis { opacity: 1; transform: none; }

/* ======== HERO ======== */
.hero {
  background: var(--dark);
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243,237,226,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,237,226,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow { position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(44,93,143,0.10) 0%, transparent 70%); pointer-events: none; }
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 100px 40px 0;
  max-width: calc(var(--max-w) + 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.075px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(44,93,143,0.32);
  padding: 7px 14px; border-radius: 50px; margin-bottom: 28px;
}
.hero-badge::before { content: ''; display: block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.hero-title { color: #ffffff; margin-bottom: 30px; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub { color: var(--text-lmuted); font-size: 16.5px; line-height: 1.8; max-width: 540px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-photo-wrap {
  position: relative;
  align-self: stretch;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo {
  width: 100%;
  height: 580px;
  border: 1px solid var(--border-d);
  overflow: hidden;
  position: relative;
  background: var(--dark-2);
}
.hero-photo image-slot { width: 100%; height: 100%; --slot-bg: #1c1a14; --slot-fg: rgba(243,237,226,0.4); }
.hero-photo-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(13,12,10,0.78);
  padding: 7px 12px;
  border: 1px solid rgba(44,93,143,0.35);
  z-index: 2;
}
.hero-photo-deco {
  position: absolute; right: -14px; bottom: -14px;
  width: 64px; height: 64px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.hero-photo-deco2 {
  position: absolute; left: -14px; top: -14px;
  width: 64px; height: 64px;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
}

.hero-stats-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-d);
  padding: 36px 0 40px;
  margin-top: 56px;
  gap: 32px;
}
.hero-stat-n { font-family: var(--display); font-size: 52px; font-weight: 700; letter-spacing: -0.03em; color: #ffffff; line-height: 1; margin-bottom: 6px; }
.hero-stat-n span { font-size: 26px; color: var(--gold); font-weight: 500; }
.hero-stat-l { font-size: 12px; color: var(--text-lmuted); line-height: 1.5; letter-spacing: 0.04em; }

/* ======== POSITIONING BAND ======== */
.pos-band { background: var(--dark-2); padding: 90px 0; }
.pos-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pos-quote { font-family: var(--display); font-size: clamp(28px, 3.6vw, 48px); font-weight: 600; letter-spacing: -0.02em; color: #ffffff; font-style: normal; line-height: 1.08; }
.pos-quote em { font-style: normal; color: var(--gold); font-weight: 600; }
.pos-text { font-size: 15px; color: var(--text-lmuted); line-height: 1.85; }
.pos-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.tag-pill { font-size: 11px; color: rgba(123,168,208,0.85); border: 1px solid rgba(44,93,143,0.22); padding: 5px 13px; border-radius: 50px; letter-spacing: 0.03em; }

/* ======== SERVICES (mit Foto-Akzent) ======== */
.services-section { background: var(--cream); padding: 100px 0 110px; }
.services-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.services-head .lead {
  font-size: 16px; color: var(--text-2); line-height: 1.75; max-width: 460px;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.svc-card { padding: 40px 32px 44px; border: 1px solid var(--border); margin: -1px 0 0 -1px; transition: background 0.25s, border-color 0.25s; cursor: default; background: var(--cream); position: relative; }
.svc-icon { display: block; width: 36px; height: 36px; color: var(--gold); margin-bottom: 22px; stroke-width: 1.6; transition: color 0.25s; }
.svc-card:hover .svc-icon { color: #fff; }
.svc-card:hover { background: var(--dark); border-color: var(--dark); }
.svc-card:hover .svc-n     { color: rgba(184,147,90,0.4); }
.svc-card:hover .svc-title { color: #ffffff; }
.svc-card:hover .svc-text  { color: var(--text-lmuted); }
.svc-card:hover .svc-line  { background: var(--gold); }
.svc-card:hover .svc-link  { color: var(--gold); }
.svc-n { font-family: var(--serif); font-size: 11px; color: var(--text-muted); letter-spacing: 0.12em; margin-bottom: 16px; transition: color 0.25s; }
.svc-line { width: 24px; height: 1.5px; background: var(--text-muted); margin-bottom: 20px; transition: background 0.25s; }
.svc-title { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); margin-bottom: 14px; line-height: 1.2; transition: color 0.25s; }
.svc-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; transition: color 0.25s; margin-bottom: 18px; }
.svc-link { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s, color .25s; }
.svc-link::after { content: '→'; }
.svc-card:hover .svc-link { gap: 10px; }
.services-more { text-align: center; margin-top: 56px; }

/* ======== WIEN STRIP (Foto-driven Showcase) ======== */
.wien-strip { background: var(--cream); padding: 80px 0 110px; }
.wien-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 44px;
}
.wien-head h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); line-height: 1.05; }
.wien-head h2 em { font-style: normal; color: var(--gold); }
.wien-head .sub { color: var(--text-muted); font-size: 14.5px; max-width: 380px; line-height: 1.75; }
.wien-head .nav-arrows { display: flex; gap: 8px; }
.wien-head .nav-arrows button {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  transition: all .2s;
}
.wien-head .nav-arrows button:hover { background: var(--dark); color: #ffffff; border-color: var(--dark); }

.wien-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.wien-grid > div { position: relative; overflow: hidden; }
.wien-grid > div:nth-child(1) { grid-row: 1 / 3; }
.wien-grid > div image-slot { width: 100%; height: 100%; --slot-bg: #ece5d8; --slot-fg: rgba(13,12,10,0.4); }
.wien-cap {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #ffffff;
  background: rgba(13,12,10,0.7);
  padding: 6px 11px;
  z-index: 2;
}
.wien-cap b { color: var(--gold-light); font-weight: 500; }

/* ======== PROJECTS ======== */
.proj-section { background: var(--dark); position: relative; }
.proj-section .hero-pattern { opacity: 0.6; }
.proj-label { padding: 90px 40px 56px; max-width: calc(var(--max-w) + 80px); margin: 0 auto; position: relative; z-index: 1; }
.proj-grid { display: grid; grid-template-columns: repeat(2, 1fr); position: relative; z-index: 1; }
.proj-card {
  padding: 0;
  border: 1px solid var(--border-d);
  margin: -1px 0 0 -1px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.proj-card::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 2px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform 0.4s ease; z-index: 3; }
.proj-card:hover { background: var(--dark-3); }
.proj-card:hover::before { transform: scaleY(1); }
.proj-img {
  height: 240px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-d);
}
.proj-img image-slot { width: 100%; height: 100%; --slot-bg: #ffffff; --slot-fg: rgba(13,12,10,0.4); }
.proj-body { padding: 36px 44px 44px; }
.proj-tag { font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.proj-title { font-family: var(--display); font-size: 28px; font-weight: 600; letter-spacing: -0.02em; color: #ffffff; margin-bottom: 12px; line-height: 1.15; }
.proj-text { font-size: 14px; color: var(--text-lmuted); line-height: 1.8; margin-bottom: 24px; }
.proj-link { font-size: 12.5px; color: var(--gold); text-decoration: none; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; border-bottom: 1px solid rgba(44,93,143,0.30); padding-bottom: 2px; }
.proj-link:hover { gap: 10px; border-color: var(--gold); }
.proj-more { padding: 56px 40px 100px; text-align: center; position: relative; z-index: 1; max-width: calc(var(--max-w) + 80px); margin: 0 auto; }

/* ======== ABOUT SPLIT (mit Foto) ======== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; }
.about-light { background: var(--cream); padding: 90px 80px; }
.about-light .about-portrait {
  width: 100%; aspect-ratio: 4/5;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.about-light .about-portrait image-slot { width: 100%; height: 100%; --slot-bg: #ece5d8; --slot-fg: rgba(13,12,10,0.4); }
.about-dark  { background: var(--dark-2); padding: 90px 80px; display: flex; flex-direction: column; justify-content: center; }
.about-values { list-style: none; margin-top: 28px; }
.about-values li {
  font-family: var(--display); font-size: 17px; font-weight: 500; color: #ffffff;
  padding: 14px 0; border-bottom: 1px solid var(--border-d);
  display: flex; align-items: center; gap: 16px; line-height: 1.35;
}
.about-values li::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ======== CTA BAND ======== */
.cta-band {
  background: var(--gold); padding: 100px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(13,12,10,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(13,12,10,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .display-md { color: var(--dark); margin-bottom: 12px; }
.cta-band .sub { color: rgba(13,12,10,0.62); font-size: 16px; margin-bottom: 36px; }

/* ======== PAGE HEADER ======== */
.pg-header { background: var(--dark); padding: calc(var(--nav-h) + 80px) 40px 80px; position: relative; overflow: hidden; }
.pg-header .hero-pattern { opacity: 0.5; }
.pg-header-inner { max-width: calc(var(--max-w) + 80px); margin: 0 auto; position: relative; z-index: 1; }
.pg-header h1 { color: #ffffff; }
.pg-header .sub { color: var(--text-lmuted); font-size: 16px; max-width: 560px; margin-top: 20px; line-height: 1.8; }

/* ======== LEISTUNGEN ======== */
.leistung-list { padding: 60px 0; }
.leistung-item { display: grid; grid-template-columns: 72px 1fr 1fr; gap: 48px; padding: 72px 48px; border: 1px solid var(--border); margin: -1px 0 0 0; align-items: start; background: var(--cream); transition: background 0.25s; }
.leistung-item:first-child { padding-top: 72px; }
.leistung-item:nth-child(even) { background: #ece2cf; }
.leistung-item:nth-child(odd)  { background: var(--cream); }

/* Company Builder page — einheitlicher Off-White Hintergrund + dunklere Schrift für Kontrast */
#page-leistungen .leistung-item,
#page-leistungen .leistung-item:nth-child(odd),
#page-leistungen .leistung-item:nth-child(even) { background: #f7f6f2; }
#page-leistungen .leistung-item .l-body { color: #1a2540; }
#page-leistungen .leistung-item .l-bullets li { color: #243049; }
#page-leistungen .leistung-item:hover { background: var(--dark); }
#page-leistungen .leistung-item:hover .l-body,
#page-leistungen .leistung-item:hover .l-bullets li { color: var(--text-lmuted); }

.leistung-item:hover { background: var(--dark); }
.leistung-item:hover .l-num     { color: rgba(255,106,44,0.4); }
.leistung-item:hover .l-title   { color: #ffffff; }
.leistung-item:hover .l-eyebrow { color: var(--gold-light); }
.leistung-item:hover .l-body,
.leistung-item:hover .l-bullets li { color: var(--text-lmuted); }
.leistung-item:hover .l-bullets li { border-bottom-color: var(--border-d); }
.leistung-item:hover .l-icon    { color: var(--gold); }
.l-num { font-family: var(--display); font-size: 64px; color: var(--gold); line-height: 1; font-weight: 700; letter-spacing: -0.04em; transition: color 0.25s; }
.l-head .l-icon { display: block; width: 56px; height: 56px; color: var(--gold); stroke-width: 1.5; margin-top: 28px; transition: color 0.25s; }
.l-eyebrow { transition: color 0.25s; }
.l-title { transition: color 0.25s; }
.l-body, .l-bullets li { transition: color 0.25s, border-color 0.25s; }
.l-eyebrow { font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.l-title { font-family: var(--display); font-size: clamp(24px, 2.5vw, 34px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.12; }
.l-body { font-size: 14.5px; color: var(--text-muted); line-height: 1.85; }
.l-body p + p { margin-top: 14px; }
.l-bullets { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 2px; }
.l-bullets li { font-size: 13.5px; color: var(--text-muted); padding: 7px 0; display: flex; gap: 12px; align-items: baseline; border-bottom: 1px solid var(--border-2); }
.l-bullets li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 12px; }

/* ======== PROJEKTE DETAIL ======== */
.projekt-item { display: grid; grid-template-columns: 360px 1fr; gap: 80px; padding: 72px 0; border-bottom: 1px solid var(--border-2); align-items: start; }
.projekt-item:first-child { padding-top: 0; }
.projekt-item .p-photo { width: 100%; aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--border); margin-bottom: 18px; }
.projekt-item .p-photo image-slot { width: 100%; height: 100%; --slot-bg: #ffffff; --slot-fg: rgba(13,12,10,0.4); }
.p-title { font-family: var(--display); font-size: 34px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 6px; }
.p-url { font-size: 12.5px; color: var(--gold); text-decoration: none; letter-spacing: 0.05em; display: inline-block; margin-bottom: 18px; border-bottom: 1px solid rgba(44,93,143,0.35); padding-bottom: 2px; }
.p-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.p-tag { font-size: 11.5px; color: var(--text-muted); border: 1px solid var(--border); padding: 4px 11px; border-radius: 50px; }
.p-body h3 { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 12px; }
.p-body p  { font-size: 14.5px; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }

/* ======== ÜBER ======== */
.ueber-layout { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.ueber-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); }
.u-portrait { width: 100%; aspect-ratio: 4/5; background: var(--cream-2); margin-bottom: 24px; border: 1px solid var(--border); overflow: hidden; }
.u-portrait image-slot { width: 100%; height: 100%; --slot-bg: #ece5d8; --slot-fg: rgba(13,12,10,0.4); }
.u-name  { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.u-role  { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.u-contact { display: flex; flex-direction: column; gap: 9px; }
.u-contact a { font-size: 13px; color: var(--gold); text-decoration: none; }
.u-contact a:hover { text-decoration: underline; }
.u-contact span { font-size: 13px; color: var(--text-muted); }
.u-body h2 { font-family: var(--display); font-size: clamp(22px, 2.5vw, 32px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 22px; }
.u-body p  { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
.u-props { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.u-prop-title { font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -0.005em; margin-bottom: 7px; }
.u-prop-text  { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* ======== KONTAKT ======== */
.kontakt-layout { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; }
.k-form { display: flex; flex-direction: column; gap: 22px; }
.k-group { display: flex; flex-direction: column; gap: 7px; }
.k-label { font-size: 10.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.k-input { font-family: var(--sans); font-size: 15px; color: var(--text); background: transparent; border: none; border-bottom: 1px solid var(--border); padding: 11px 0; outline: none; transition: border-color 0.2s; width: 100%; }
.k-input:focus { border-color: var(--gold); }
.k-input::placeholder { color: var(--text-muted); }
select.k-input { cursor: pointer; }
textarea.k-input { border: 1px solid var(--border); padding: 12px; border-radius: var(--r); resize: vertical; min-height: 130px; }
textarea.k-input:focus { border-color: var(--gold); }
.k-info-block { padding: 22px 0; border-bottom: 1px solid var(--border); }
.k-info-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.k-info-value { font-family: var(--display); font-size: 19px; font-weight: 500; line-height: 1.4; }
.k-box { margin-top: 40px; background: var(--dark-2); padding: 28px 28px 32px; border-radius: var(--r-md); }
.k-box-title { font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: -0.01em; color: #ffffff; margin-bottom: 12px; line-height: 1.3; }
.k-box-text  { font-size: 13.5px; color: var(--text-lmuted); line-height: 1.75; margin-bottom: 18px; }
.k-box-note  { font-size: 12px; color: var(--gold); letter-spacing: 0.04em; }

/* ======== FOOTER ======== */
footer { background: var(--dark); padding: 72px 0 0; }
.footer-inner { max-width: calc(var(--max-w) + 80px); margin: 0 auto; padding: 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; }
.f-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.f-brand .logo-mark { width: 88.8px; height: 88.8px; filter: invert(1); mix-blend-mode: lighten; }
.f-logo { font-family: var(--display); font-size: 26.4px; font-weight: 700; letter-spacing: -0.015em; color: #ffffff; line-height: 1; }
.f-logo em { font-style: normal; color: var(--gold); }
.f-tag { font-size: 11px; color: var(--text-lmuted); letter-spacing: 0.16em; text-transform: uppercase; margin-top: 4px; }
.f-desc { font-size: 13px; color: var(--text-lmuted); line-height: 1.75; max-width: 260px; }
.f-col-title { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.f-links a { font-size: 13px; color: var(--text-lmuted); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.f-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 1px solid var(--border-d); }
.f-copy  { font-size: 12px; color: var(--text-lmuted); }
.f-legal { display: flex; gap: 22px; }
.f-legal a { font-size: 12px; color: var(--text-lmuted); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.f-legal a:hover { color: var(--gold); }

/* ======== UTILITY ======== */
.section-pad { padding: 80px 0; }

/* ======== FAQ ======== */
.faq-section { background: var(--cream); padding: 100px 0 110px; }
.faq-head { margin-bottom: 56px; max-width: 760px; }
.faq-head h2 { letter-spacing: -0.02em; }
.faq-list { max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover h3 { color: var(--gold); }
.faq-item summary h3 {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
  flex: 1;
  transition: color 0.2s;
}
.faq-plus {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text);
  transition: all 0.25s;
  margin-top: 2px;
}
.faq-item[open] .faq-plus { background: var(--gold); border-color: var(--gold); color: #ffffff; transform: rotate(45deg); }
.faq-body { padding: 0 64px 32px 0; }
.faq-body p { font-size: 15px; color: var(--text-2); line-height: 1.85; margin-bottom: 14px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(255,106,44,0.3); }
.faq-body a:hover { border-color: var(--gold); }
.faq-bullets { list-style: none; padding: 0; margin: 6px 0 14px; }
.faq-bullets li { font-size: 14.5px; color: var(--text-2); padding: 4px 0 4px 18px; position: relative; line-height: 1.6; }
.faq-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ======== RESPONSIVE PHOTO SLOTS ======== */
.slot-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.slot-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  background: #ffffff;
  padding: 28px;
}

/* Defensive fallback — any direct <img> child inside a photo container
   gets cover-sized, so a missing class still renders correctly */
.hero-photo > img,
.wien-grid > div > img,
.about-portrait > img,
.u-portrait > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proj-img > img,
.projekt-item .p-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  padding: 24px;
  box-sizing: border-box;
}

/* ======== LEGAL / IMPRESSUM ======== */
.legal-doc { max-width: 760px; margin: 0 auto; }
.legal-block { padding: 28px 0; border-bottom: 1px solid var(--border); }
.legal-block:first-child { padding-top: 0; }
.legal-block:last-child { border-bottom: none; }
.legal-block h2 { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.015em; color: var(--text); margin-bottom: 14px; }
.legal-block p { font-size: 14.5px; color: var(--text-2); line-height: 1.85; margin-bottom: 10px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(255,106,44,0.3); }
.legal-block a:hover { border-color: var(--gold); }
.legal-list { list-style: none; padding: 0; margin: 0; }
.legal-list li { font-size: 14.5px; color: var(--text-2); line-height: 1.7; padding: 5px 0; }
.legal-list li strong { color: var(--text); font-weight: 600; margin-right: 6px; }

/* ======== TWEAK: PHOTO TREATMENT ======== */
body.photos-bw image-slot img { filter: grayscale(1) contrast(1.05); }
body.photos-warm image-slot img { filter: sepia(0.18) saturate(1.05); }

/* ======== RESPONSIVE ======== */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-wrap { min-height: 420px; }
  .hero-photo { height: 420px; }
  .hero-stats-row { grid-template-columns: repeat(4, 1fr); }
  .wien-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .wien-grid > div:nth-child(1) { grid-row: 1 / 2; grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  :root { --nav-h: 62px; }
  .nav-links, .nav-cta-desk { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
  .nav-logo .logo-word { font-size: 18px; }
  .hero-inner { padding: 70px 24px 0; }
  .hero-stats-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pos-band-inner { grid-template-columns: 1fr; gap: 36px; }
  .services-head { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .wien-head { grid-template-columns: 1fr; gap: 20px; }
  .wien-head .nav-arrows { display: none; }
  .wien-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
  .wien-grid > div:nth-child(1) { grid-row: auto; grid-column: auto; }
  .proj-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-light, .about-dark { padding: 56px 32px; }
  .faq-section { padding: 70px 0 80px; }
  .faq-body { padding: 0 0 28px 0; }
  .faq-item summary { gap: 16px; padding: 22px 0; }
  .leistung-item { grid-template-columns: 52px 1fr; gap: 28px; padding: 48px 28px; }
  .leistung-item .l-body { grid-column: 2; }
  .projekt-item { grid-template-columns: 1fr; gap: 28px; }
  .ueber-layout { grid-template-columns: 1fr; }
  .ueber-sidebar { position: static; }
  .u-portrait { max-width: 320px; }
  .u-props { grid-template-columns: 1fr; gap: 20px; }
  .kontakt-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .wrap { padding-left: 24px; padding-right: 24px; }
  .pg-header { padding: calc(var(--nav-h) + 56px) 24px 60px; }
  .cta-band { padding: 80px 24px; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .leistung-item { grid-template-columns: 1fr; gap: 16px; }
  .l-num { font-size: 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .f-legal { justify-content: center; }
  .about-light, .about-dark { padding: 44px 24px; }
}
