/* ============================================================
   BMP – Bau mit Präzision | styles.css
   Aesthetic: Industrial Luxury — Beton trifft Goldakzente
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&family=Bebas+Neue&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg:           #0c0b09;
  --surface:      #141210;
  --surface-2:    #1e1c18;
  --surface-3:    #272420;
  --gold:         #c9922a;
  --gold-light:   #e8b84b;
  --gold-dim:     #7a5515;
  --text:         #f0ece4;
  --text-muted:   #8a8478;
  --text-faint:   #4a4640;
  --border:       #2a2520;
  --border-gold:  rgba(201,146,42,0.25);
  --radius:       2px;
  --transition:   0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
.label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Layout Utilities ───────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section--dark { background: var(--surface); }
.section--alt  { background: var(--surface-2); }

/* ── Decorative Lines ───────────────────────────────────────── */
.divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.divider--center { margin: 1.5rem auto; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  NAVIGATION
   ╚══════════════════════════════════════════════════════════╝ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(12,11,9,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  height: 60px;
  background: rgba(12,11,9,0.98);
  border-bottom-color: var(--border-gold);
}

.nav__logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav__logo-mark {
  width: 42px; height: 42px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%);
}
.nav__logo-mark span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--bg);
  letter-spacing: 0.05em;
}
.nav__logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav__logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text);
}
.nav__logo-text small {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav__links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  padding: 0.55rem 1.5rem;
  background: var(--gold);
  color: var(--bg) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold-light) !important; transform: translateY(-1px) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile nav — hamburger at ≤ 960px (6 links don't fit below that) */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--surface); padding: 2rem;
    border-bottom: 1px solid var(--border-gold);
    gap: 1.5rem;
  }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  HERO
   ╚══════════════════════════════════════════════════════════╝ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(201,146,42,0.04) 0%, transparent 50%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.015) 79px,
      rgba(255,255,255,0.015) 80px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.015) 79px,
      rgba(255,255,255,0.015) 80px
    );
}
.hero__bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero__accent {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px;
  border: 1px solid var(--border-gold);
  opacity: 0.4;
  animation: rotateSlow 60s linear infinite;
}
.hero__accent::before {
  content: '';
  position: absolute; inset: 40px;
  border: 1px solid var(--border-gold);
}
@keyframes rotateSlow { to { transform: translateY(-50%) rotate(360deg); } }

.hero__content {
  position: relative; z-index: 1;
  max-width: 760px;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.hero__eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}
.hero__title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero__title em {
  font-style: normal; color: var(--gold);
  display: block;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 3rem;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero__stats {
  position: absolute; right: 2rem; bottom: 4rem;
  display: flex; gap: 3rem;
  animation: fadeIn 1.2s 0.5s ease both;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--gold); line-height: 1;
}
.hero__stat-label {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  BUTTONS
   ╚══════════════════════════════════════════════════════════╝ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: var(--gold); color: var(--bg);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,146,42,0.3); }

.btn--outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-gold);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--ghost {
  background: transparent; color: var(--gold);
  padding: 0.5rem 0;
  letter-spacing: 0.12em;
}
.btn--ghost::after {
  content: ' →';
  transition: letter-spacing var(--transition);
}
.btn--ghost:hover { color: var(--gold-light); }
.btn--ghost:hover::after { letter-spacing: 0.25em; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  SECTION HEADER
   ╚══════════════════════════════════════════════════════════╝ */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 5rem; }
.section-header .label { margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-header--left { text-align: left; margin-left: 0; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  SERVICES CARDS
   ╚══════════════════════════════════════════════════════════╝ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
}
.service-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--surface-2); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem;
  font-size: 1.4rem;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--gold);
  border-color: var(--gold);
}
.service-card__icon svg { width: 26px; height: 26px; stroke: var(--gold); transition: var(--transition); }
.service-card:hover .service-card__icon svg { stroke: var(--bg); }

.service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.service-card__number {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; color: var(--text-faint);
  line-height: 1; pointer-events: none;
  transition: color var(--transition);
}
.service-card:hover .service-card__number { color: rgba(201,146,42,0.12); }

/* ╔══════════════════════════════════════════════════════════╗
   ║  PROJECTS GRID
   ╚══════════════════════════════════════════════════════════╝ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.project-card {
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.project-card:nth-child(1) { grid-column: span 7; }
.project-card:nth-child(2) { grid-column: span 5; }
.project-card:nth-child(3) { grid-column: span 4; }
.project-card:nth-child(4) { grid-column: span 4; }
.project-card:nth-child(5) { grid-column: span 4; }

@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card:nth-child(n) { grid-column: span 1; }
  .project-card:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 580px) {
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:nth-child(n) { grid-column: span 1; }
}

.project-card__img {
  width: 100%; height: 280px;
  object-fit: cover;
  background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s ease;
}
.project-card:nth-child(1) .project-card__img { height: 360px; }
.project-card:hover .project-card__img { transform: scale(1.04); }

.project-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.project-card__img-placeholder svg {
  opacity: 0.08; width: 80px; height: 80px;
}
.project-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.project-card__body {
  padding: 1.75rem;
  position: relative;
}
.project-card__tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.22em;
  color: var(--gold); margin-bottom: 0.5rem;
}
.project-card__title { font-size: 1.15rem; margin-bottom: 0.4rem; }
.project-card__meta { font-size: 0.82rem; color: var(--text-muted); }

.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.95) 30%, transparent);
  opacity: 0; display: flex; align-items: flex-end;
  padding: 2rem;
  transition: opacity var(--transition);
}
.project-card:hover .project-card__overlay { opacity: 1; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  WHY US / USP
   ╚══════════════════════════════════════════════════════════╝ */
.usp-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
@media (max-width: 768px) { .usp-layout { grid-template-columns: 1fr; gap: 3rem; } }

.usp-list { display: flex; flex-direction: column; gap: 2rem; }
.usp-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.usp-item:last-child { border-bottom: none; padding-bottom: 0; }
.usp-item__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; color: var(--gold); line-height: 1;
  min-width: 40px;
}
.usp-item__text h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.usp-item__text p { color: var(--text-muted); font-size: 0.92rem; }

.usp-visual {
  position: relative;
}
.usp-visual__box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
}
.usp-visual__box::before {
  content: '';
  position: absolute; top: -1px; left: 2rem; right: 2rem;
  height: 3px; background: var(--gold);
}
.usp-visual__quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-style: italic;
  color: var(--text); line-height: 1.5;
  margin-bottom: 2rem;
}
.usp-visual__author { font-size: 0.82rem; color: var(--text-muted); }
.usp-visual__author strong { color: var(--gold); display: block; font-style: normal; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  CONTACT FORM
   ╚══════════════════════════════════════════════════════════╝ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info {}
.contact-info__item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
}
.contact-info__icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-info__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.contact-info__value { color: var(--text); font-size: 0.95rem; }

/* Form */
.contact-form {
  background: var(--surface);
  padding: 3rem;
  border: 1px solid var(--border);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute; top: 0; left: 2rem; right: 2rem;
  height: 2px; background: var(--gold);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1.1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--surface-3);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface-2); }

.form-checkbox {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 2rem; cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 2px; cursor: pointer; accent-color: var(--gold);
}
.form-checkbox span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.form-success {
  display: none;
  text-align: center; padding: 2rem;
  color: var(--gold);
}
.form-success svg { width: 40px; height: 40px; margin: 0 auto 1rem; stroke: var(--gold); }

/* ╔══════════════════════════════════════════════════════════╗
   ║  MAP
   ╚══════════════════════════════════════════════════════════╝ */
.map-wrapper {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-wrapper iframe {
  width: 100%; height: 460px;
  border: none; display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.5) brightness(0.85);
}
.map-pin-label {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--gold); color: var(--bg);
  padding: 0.5rem 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.2em;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  TEAM CARDS
   ╚══════════════════════════════════════════════════════════╝ */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem;
}
.team-card { background: var(--surface-2); overflow: hidden; }
.team-card__photo {
  height: 280px; background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.team-card__photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
}
.team-card__photo-placeholder svg { width: 60px; height: 60px; opacity: 0.15; }
.team-card__body { padding: 1.5rem; }
.team-card__name { font-size: 1.15rem; margin-bottom: 0.2rem; }
.team-card__role { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* ╔══════════════════════════════════════════════════════════╗
   ║  TIMELINE
   ╚══════════════════════════════════════════════════════════╝ */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item { position: relative; padding: 0 0 3rem 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute; left: -0.4rem; top: 0.3rem;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-item__year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; color: var(--gold); line-height: 1; margin-bottom: 0.4rem;
}
.timeline-item h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.timeline-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  STATS BAR
   ╚══════════════════════════════════════════════════════════╝ */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--gold);
}
@media (max-width: 700px) { .stats-bar { grid-template-columns: 1fr 1fr; } }
.stats-bar__item {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(0,0,0,0.12);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; color: var(--bg); line-height: 1; margin-bottom: 0.3rem;
}
.stats-bar__label {
  font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(12,11,9,0.65);
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  CTA BANNER
   ╚══════════════════════════════════════════════════════════╝ */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  padding: 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: 'BMP';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20rem; color: rgba(201,146,42,0.025);
  pointer-events: none; line-height: 1;
  white-space: nowrap;
}
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); max-width: 500px; margin: 0 auto 2.5rem; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  BREADCRUMB
   ╚══════════════════════════════════════════════════════════╝ */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--surface);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--border-gold);
}
.page-hero__eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.page-hero p { color: var(--text-muted); max-width: 520px; margin-top: 1rem; font-size: 1.05rem; }

.breadcrumb {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-faint); }

/* ╔══════════════════════════════════════════════════════════╗
   ║  FOOTER
   ╚══════════════════════════════════════════════════════════╝ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo { margin-bottom: 1.25rem; }
.footer__desc { color: var(--text-muted); font-size: 0.9rem; max-width: 260px; line-height: 1.7; }
.footer__col h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer__col ul li { margin-bottom: 0.7rem; }
.footer__col ul li a {
  font-size: 0.88rem; color: var(--text-muted);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--text); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer__copy { font-size: 0.8rem; color: var(--text-faint); }
.footer__legal { display: flex; gap: 2rem; }
.footer__legal a { font-size: 0.8rem; color: var(--text-faint); transition: color var(--transition); }
.footer__legal a:hover { color: var(--text-muted); }

/* ╔══════════════════════════════════════════════════════════╗
   ║  ANIMATIONS
   ╚══════════════════════════════════════════════════════════╝ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

[data-animate] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ── Selection ───────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--bg); }

/* ╔══════════════════════════════════════════════════════════╗
   ║  RESPONSIVE — Tablet & Mobile
   ╚══════════════════════════════════════════════════════════╝ */

/* ── Tablet groß (≤ 960px) — Hamburger-Bereich ────────── */
@media (max-width: 960px) {
  /* Hero: Stats überlappen bei dieser Breite den Content */
  .hero__stats  { display: none; }
  /* Großer dekorativer Kreis verursacht overflow */
  .hero__accent { display: none; }
}

/* ── Tablet (≤ 900px) ──────────────────────────────────── */
@media (max-width: 900px) {
  .section      { padding: 5rem 0; }
  .page-hero    { padding: 8rem 0 4rem; }
  .contact-form { padding: 2rem; }
  .usp-layout   { gap: 3rem; }
  .usp-visual__box { padding: 2rem; }
  .map-wrapper iframe { height: 360px; }
}

/* ── Mobile (≤ 768px) ──────────────────────────────────── */
@media (max-width: 768px) {
  .section    { padding: 4rem 0; }
  .page-hero  { padding: 7rem 0 3rem; }

  .hero__title    { line-height: 1.05; }
  .hero__subtitle { font-size: 1rem; }

  .cta-banner         { padding: 2.5rem 2rem; }
  .usp-visual__quote  { font-size: 1.15rem; }

  .timeline      { padding-left: 1.25rem; }
  .timeline-item { padding-left: 2rem; }

  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer         { padding: 3.5rem 0 2rem; }
}

/* ── Small phones (≤ 480px) ────────────────────────────── */
@media (max-width: 480px) {
  .section    { padding: 3rem 0; }
  .container  { padding: 0 1.1rem; }
  .page-hero  { padding: 6rem 0 2.5rem; }

  .nav__links.open { padding: 1.5rem 1.1rem; gap: 1.25rem; }

  .hero__actions         { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn    { width: 100%; text-align: center; justify-content: center; }

  .stats-bar__item { padding: 1.5rem 0.75rem; }
  .stats-bar__num  { font-size: 2.6rem; }

  .service-card { padding: 2rem 1.5rem; }

  .cta-banner { padding: 2rem 1.25rem; }

  .contact-form       { padding: 1.5rem 1.1rem; }
  .map-wrapper iframe { height: 260px; }

  .usp-visual__box   { padding: 1.5rem; }
  .usp-visual__quote { font-size: 1.05rem; }

  .btn { padding: 0.8rem 1.75rem; letter-spacing: 0.12em; }

  .footer__legal { gap: 1.25rem; }
  .footer        { padding: 2.5rem 0 1.5rem; }
}
