/* ================================================
   mpmg consulting – Haupt-Stylesheet
   ------------------------------------------------
   BILDER – lege diese Dateien in den Ordner images/
   logo-pink.png  → pinkes mpmg-Logo
   markus.jpg     → Markus Pütz Portrait
   michelle.jpg   → Michelle Göhring Portrait
   team.jpg       → Gemeinsames Teamfoto
   (Fotos müssen NICHT vorher in S/W konvertiert werden –
    der CSS-Filter erledigt das automatisch)
   ================================================ */

/* ── RESET & BOX MODEL ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN-TOKENS ── */
:root {
  --bg:          #0c0c0e;
  --bg-2:        #111115;
  --bg-3:        #18181c;
  --bg-4:        #1e1e24;
  --border:      #1f1f26;
  --border-2:    #2a2a32;
  --text-1:      #f0ece4;
  --text-2:      #888380;
  --text-3:      #46433f;
  --pink:        #e8107a;
  --pink-light:  rgba(232,16,122,0.14);
  --pink-xlight: rgba(232,16,122,0.06);
  --gap:         clamp(4rem, 9vw, 8rem);
  --r:           0px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ── UTILITY ── */
.pink { color: var(--pink); }
.thin { font-weight: 300; }

/* Used in headings: <span class="thin dim"> */
.dim  { color: var(--text-2); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}
.label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--pink);
  flex-shrink: 0;
}

/* ── SECTION TITLE (shared) ── */
.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text-1);
}

/* Abstand zwischen Label und nachfolgendem section-title */
.label + .section-title,
.label ~ .section-title {
  margin-top: 1.5rem;
}

/* Dim-Span innerhalb von Überschriften */
.section-title .thin { color: var(--text-2); }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 96px;
  background: rgba(12,12,14,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo-img { height: 104px; width: auto; }

/* Fallback-Text wenn Logo fehlt */
.nav-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.nav-logo-text span { color: var(--pink); }

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
nav ul li a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.2s;
}
nav ul li a:hover { color: var(--text-1); }

.nav-cta {
  background: var(--pink) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
}
.nav-cta:hover { opacity: 0.88; }

/* ── MOBILE NAV DRAWER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--text-2);
  display: block;
  transition: all 0.3s;
  transform-origin: center;
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
}
.nav-drawer.open { display: block; }

.nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.nav-drawer.open .nav-panel { transform: translateX(0); }

.nav-panel a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-1);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-panel a:hover { color: var(--pink); }
.nav-panel a.cta {
  margin-top: 2rem;
  background: var(--pink);
  color: #fff;
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  cursor: pointer;
  color: var(--text-2);
  padding: 0.5rem;
  line-height: 1;
  font-size: 1.5rem;
}

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3vw;
  align-items: center;
  padding: 96px 5vw 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

#hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,16,122,0.06) 0%, transparent 65%);
  top: 50%; right: 5%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem 0.35rem 0.5rem;
  border: 1px solid var(--border-2);
  background: var(--bg-3);
  margin-bottom: 2.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.hero-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
}

h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin-bottom: 2rem;
}
h1 .line-thin  { font-weight: 300; color: var(--text-2); display: block; }
h1 .line-pink  { color: var(--pink); display: block; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 46ch;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { transition: transform 0.25s; }
.btn:hover svg { transform: translateX(4px); }

.btn-fill {
  background: var(--pink);
  color: #fff;
  border: 1px solid var(--pink);
}
.btn-fill:hover { opacity: 0.85; }

.btn-outline {
  border: 1px solid var(--border-2);
  color: var(--text-2);
}
.btn-outline:hover { border-color: var(--text-2); color: var(--text-1); }

.hero-stats {
  display: flex;
  gap: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text-1);
  line-height: 1;
}
.stat-val sup {
  font-size: 1rem;
  color: var(--pink);
  letter-spacing: 0;
}
.stat-desc {
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

/* Hero rechts – Bild */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4rem 0;
}

.hero-img-frame {
  position: relative;
  width: clamp(260px, 38vw, 520px);
}

/* Pink corner lines */
.hero-img-frame::before,
.hero-img-frame::after {
  content: '';
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero-img-frame::before {
  top: -14px; right: -14px;
  width: 55%; height: 55%;
  border-top: 2px solid var(--pink);
  border-right: 2px solid var(--pink);
}
.hero-img-frame::after {
  bottom: -14px; left: -14px;
  width: 35%; height: 35%;
  border-bottom: 2px solid var(--pink);
  border-left: 2px solid var(--pink);
}

.hero-img-inner {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-3);
}
.hero-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.12) brightness(0.95);
}

.hero-img-caption {
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Platzhalter wenn Bild fehlt */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--bg-3);
  color: var(--text-3);
}
.img-placeholder svg  { opacity: 0.3; }
.img-placeholder span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── ÜBER UNS ── */
#about {
  padding: var(--gap) 5vw;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}

.about-right p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 54ch;
}
.about-right p.lead {
  font-size: 1.1rem;
  color: var(--text-1);
  font-weight: 400;
  line-height: 1.7;
}

.about-quote {
  margin-top: 2.5rem;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 3px solid var(--pink);
  background: var(--pink-xlight);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-1);
  line-height: 1.7;
}

/* ── TEAM ── */
#team {
  padding: var(--gap) 5vw;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.team-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: 4rem;
}

.team-header-right {
  max-width: 48ch;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
  justify-self: end;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.team-card { display: flex; flex-direction: column; }

.team-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-3);
  margin-bottom: 1.8rem;
}
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.08) brightness(0.95);
  transition: transform 0.65s cubic-bezier(.25,.46,.45,.94),
              filter 0.4s ease;
}
.team-card:hover .team-photo-wrap img { transform: scale(1.04); }

.team-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink-light);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s;
}
.team-card:hover .team-photo-wrap::before { opacity: 1; }

.team-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--pink);
  z-index: 2;
  transition: width 0.45s ease;
}
.team-card:hover .team-photo-wrap::after { width: 100%; }

.team-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.25rem;
}
.team-bio {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 50ch;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--border-2);
  padding: 0.3rem 0.7rem;
  font-weight: 500;
}

/* ── LEISTUNGEN ── */
#leistungen {
  padding: var(--gap) 5vw;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.leistungen-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 4rem;
}
.leistungen-top-right {
  max-width: 50ch;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.leistung {
  padding: 2.8rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.leistung::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--pink);
  transition: width 0.4s ease;
}
.leistung:hover { background: var(--bg-4); border-color: var(--border-2); }
.leistung:hover::after { width: 100%; }

.leistung-num {
  font-size: 0.68rem;
  color: var(--pink);
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 1.8rem;
}
.leistung-icon-wrap {
  width: 40px; height: 40px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leistung-icon-wrap svg { stroke: var(--text-3); transition: stroke 0.3s; }
.leistung:hover .leistung-icon-wrap svg { stroke: var(--pink); }

.leistung-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 0.9rem;
}
.leistung-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.leistung-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.leistung-bullets li {
  font-size: 0.78rem;
  color: var(--text-3);
  padding-left: 1rem;
  position: relative;
}
.leistung-bullets li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--pink);
}

/* ── PROZESS ── */
#prozess {
  padding: var(--gap) 5vw;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.prozess-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 4.5rem;
}
.prozess-top-right {
  max-width: 48ch;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
}

.prozess-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.prozess-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.prozess-step:last-child { border-right: none; }

.step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--bg-3);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.prozess-step:hover .step-num { color: var(--pink-light); }

.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── KONTAKT ── */
#kontakt {
  padding: var(--gap) 5vw;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Hintergrund-Logo (Gestaltungselement) */
.kontakt-bg-logo {
  position: absolute;
  right: -6vw;
  bottom: -6vw;
  width: 42vw;
  max-width: 520px;
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.kontakt-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6vw;
  align-items: start;
}

.kontakt-left .section-title { margin-bottom: 2.5rem; }

.kontakt-detail { margin-bottom: 2rem; }
.kontakt-detail-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.35rem;
}
.kontakt-detail-val { font-size: 0.95rem; color: var(--text-1); }
.kontakt-detail-val a {
  text-decoration: none;
  color: var(--text-1);
  transition: color 0.2s;
}
.kontakt-detail-val a:hover { color: var(--pink); }

/* Kontaktformular */
form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}

input[type=text],
input[type=email],
textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-1);
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
  border-radius: var(--r);
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus,        textarea:focus        { border-color: var(--pink); }
textarea { min-height: 150px; }

.form-note { font-size: 0.75rem; color: var(--text-3); line-height: 1.6; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 2.2rem;
  background: var(--pink);
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.25s;
  align-self: flex-start;
  border-radius: var(--r);
}
.btn-submit:hover { opacity: 0.85; }
.btn-submit svg { transition: transform 0.25s; }
.btn-submit:hover svg { transform: translateX(4px); }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo img { height: 104px; width: auto; }
.footer-copy     { font-size: 0.75rem; color: var(--text-3); }
.footer-links    { display: flex; gap: 2rem; }
.footer-links a  {
  font-size: 0.75rem;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE – Tablet (≤900px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  nav ul        { display: none !important; }
  .nav-burger   { display: flex !important; }
}

@media (max-width: 900px) {
  :root { --gap: clamp(3rem, 7vw, 5rem); }

  .about-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-header       { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .leistungen-top    { grid-template-columns: 1fr; }
  .leistungen-grid   { grid-template-columns: repeat(2, 1fr); }
  .prozess-top       { grid-template-columns: 1fr; }
  .prozess-steps     { grid-template-columns: repeat(2, 1fr); }
  .prozess-step:nth-child(2) { border-right: none; }
  .prozess-step:nth-child(3),
  .prozess-step:nth-child(4) { border-top: 1px solid var(--border); }
  .kontakt-grid      { grid-template-columns: 1fr; }
  #hero              { grid-template-columns: 1fr; padding-top: calc(96px + 2rem); }
  .hero-right        { justify-content: flex-start; }
  .hero-img-frame    { width: min(400px, 80vw); }
  .team-header-right { justify-self: start; }
  footer             { flex-direction: column; text-align: center; gap: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE – Phone (≤600px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --gap: 3rem; }
  body  { font-size: 15px; }

  nav             { height: 72px; padding: 0 4vw; }
  .nav-logo-img   { height: 76px; }

  /* Hero */
  #hero {
    grid-template-columns: 1fr;
    padding: calc(72px + 2.5rem) 4vw 3rem;
    gap: 2.5rem;
    text-align: left;
  }
  h1              { font-size: clamp(2.4rem, 10vw, 3.2rem); letter-spacing: -0.03em; }
  .hero-sub       { font-size: 0.95rem; }
  .hero-btns      { flex-direction: column; }
  .btn            { width: 100%; justify-content: center; }
  .hero-right     { justify-content: center; }
  .hero-img-frame { width: 80vw; }
  .hero-img-frame::before,
  .hero-img-frame::after { display: none; }
  .hero-badge     { font-size: 0.65rem; }
  .hero-stats     { gap: 2rem; flex-wrap: wrap; }
  .stat-val       { font-size: 1.8rem; }

  /* About */
  .about-grid   { grid-template-columns: 1fr; }
  .about-quote  { font-size: 0.95rem; }

  /* Team */
  .team-header      { gap: 1.5rem; }
  .team-grid        { grid-template-columns: 1fr; }
  .team-photo-wrap  { max-height: 70vw; }

  /* Leistungen */
  .leistungen-grid  { grid-template-columns: 1fr; gap: 1rem; }
  .leistung         { padding: 1.75rem; }

  /* Prozess */
  .prozess-steps { grid-template-columns: 1fr; }
  .prozess-step  { border-right: none; border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
  .prozess-step:last-child { border-bottom: none; }
  .step-num      { font-size: 2.5rem; }

  /* Kontakt */
  .form-row    { grid-template-columns: 1fr; }
  .btn-submit  { width: 100%; justify-content: center; }

  /* Sections */
  section         { padding: var(--gap) 4vw; }
  .section-title  { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Footer */
  footer        { padding: 1.5rem 4vw; flex-direction: column; align-items: center; gap: 1rem; }
  footer img    { height: 76px; }
  .footer-copy  { text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  /* Touch-Mindestgröße / iOS-Zoom-Schutz */
  input, textarea, button, .btn, a.btn-fill {
    min-height: 44px;
    font-size: 16px; /* verhindert iOS-Zoom */
  }
  select { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE – sehr klein (≤380px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  h1              { font-size: 2.1rem; }
  .hero-img-frame { width: 88vw; }
}
