/* ═══════════════════════════════════════════════
   AUTO ALBIN GMBH – WEBSITE STYLESHEET
   Brand: #0A0A0A · #CC1B1B · #FFFFFF
   Fonts: Bebas Neue · Montserrat · Inter
   Vantis Group · 2026
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

/* ── RESET & ROOT ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --black:   #0A0A0A;
  --black2:  #111111;
  --black3:  #1A1A1A;
  --red:     #CC1B1B;
  --red-dark:#A81515;
  --white:   #FFFFFF;
  --grey:    #888888;
  --grey-light: #BBBBBB;
  --nav-h:   72px;

  /* Design System Aliases (subpages) */
  --bg:        #0A0A0A;
  --bg2:       #111111;
  --bg3:       #1A1A1A;
  --text:      #FFFFFF;
  --text-dim:  #BBBBBB;
  --text-faint:#888888;
  --line:      rgba(255,255,255,0.08);
  --red-border:rgba(204,27,27,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.0;
  text-transform: uppercase;
}
h1 { font-size: clamp(52px, 8vw, 100px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 36px); }

/* Label / Section Label (both variants) */
.label, .section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 16px;
}

/* Section Title / Sub (subpage design system) */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.04em;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--grey);
  max-width: 500px;
  line-height: 1.8;
}

/* ── LAYOUT ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 100px 0; }

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

/* btn-outline and btn-secondary are identical */
.btn-outline, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover, .btn-secondary:hover { border-color: var(--white); }

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-whatsapp:hover { background: #1fba58; }

/* Call button */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color .2s;
}
.btn-call:hover { border-color: var(--white); }

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  /* Gradient immer aktiv → Logo immer sichtbar */
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8,8,8,0.98);
  border-bottom-color: rgba(204,27,27,0.15);
  backdrop-filter: blur(12px);
}

/* Old nav inner wrapper (backwards compat) */
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo – mix-blend-mode:screen macht den schwarzen JPEG-Hintergrund unsichtbar */
.nav-logo img, a.nav-logo img, img.nav-logo {
  height: 40px;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
nav > a > img {
  height: 40px;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

/* Nav links */
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

/* Nav right (includes.js) */
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-tel {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--grey-light);
  transition: color .2s;
}
.nav-tel:hover { color: var(--white); }

/* Nav CTA button (both old .nav-cta and new .btn-primary in nav) */
.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 10px 22px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-right .btn-primary { padding: 10px 20px; font-size: 11px; }
.nav-right .btn-primary:hover { background: var(--red-dark); color: var(--white); }

/* Hamburger (both old .nav-burger and new .nav-hamburger) */
.nav-burger, .nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span, .nav-hamburger span { width: 24px; height: 2px; background: var(--white); transition: transform .3s, opacity .3s; }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--black2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  gap: 20px;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/fotos/dsc00931.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 85%, rgba(204,27,27,0.22) 0%, transparent 45%),
    linear-gradient(105deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.60) 55%, rgba(10,10,10,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  width: 100%;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-label::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }
.hero h1 { max-width: 820px; margin-bottom: 24px; color: var(--white); }
.hero h1 span { color: var(--red); }
.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--grey-light);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── STATS BAR ──────────────────────────────── */
.stats-bar { background: var(--red); padding: 0; }
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  display: block;
}

/* ── SECTION HEADER ─────────────────────────── */
.section-header { margin-bottom: 60px; }
.section-header .label, .section-header .section-label { margin-bottom: 16px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--grey);
  max-width: 500px;
  line-height: 1.8;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ── SERVICES ───────────────────────────────── */
.services { background: var(--black2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--black3);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
  border-top: 3px solid rgba(204,27,27,0.35);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width .3s ease;
}
.service-card:hover {
  background: #1f1f1f;
  border-top-color: var(--red);
}
.service-card:hover::before { width: 100%; }
.service-icon { width: 48px; height: 48px; margin-bottom: 28px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 16px; color: var(--white); }
.service-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 28px;
}
.service-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.service-card:hover .service-link { gap: 14px; }

/* ── WHY US ─────────────────────────────────── */
.why {
  background: linear-gradient(160deg, #111111 0%, #0D0D0D 40%, #130707 100%);
  border-top: 1px solid rgba(204,27,27,0.15);
  border-bottom: 1px solid rgba(204,27,27,0.15);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img { position: relative; }
.why-img img { width: 100%; height: 520px; object-fit: cover; }
.why-img::after {
  content: '';
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid var(--red);
  z-index: -1;
}
.why-points { display: flex; flex-direction: column; gap: 32px; }
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--red);
  line-height: 1;
  min-width: 48px;
  opacity: 0.4;
}
.why-point h3 { margin-bottom: 8px; font-size: 22px; }
.why-point p { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--grey); line-height: 1.8; }

/* ── DETAILING PAKETE ───────────────────────── */
.detailing {
  background: var(--black2);
  border-top: 1px solid rgba(204,27,27,0.12);
}
.detailing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.detail-card { background: var(--black3); padding: 48px 36px; position: relative; }
.detail-card.featured { background: var(--red); }
.detail-card.featured .detail-badge { background: var(--white); color: var(--red); }
.detail-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 5px 12px;
  margin-bottom: 24px;
}
.detail-card h3 { margin-bottom: 8px; }
.detail-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.detail-price-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.detail-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.12); margin-bottom: 28px; }
.detail-card.featured .detail-divider { background: rgba(255,255,255,0.3); }
.detail-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.detail-feature::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.detail-duration {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ── GALLERY ────────────────────────────────── */
.gallery { background: #0D0D0D; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.04); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 4px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background .3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(204,27,27,0.2); }

/* ── REVIEWS ────────────────────────────────── */
.reviews { background: #141414; }
.reviews-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 48px; }
.stars { display: flex; gap: 4px; }
.star { color: #FFB800; font-size: 22px; }
.reviews-score { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--white); line-height: 1; }
.reviews-count { font-family: 'Montserrat', sans-serif; font-size: 12px; color: var(--grey); letter-spacing: 1px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.review-card {
  background: var(--black3);
  padding: 32px;
  border-left: 3px solid rgba(204,27,27,0.4);
  transition: border-left-color .2s;
}
.review-card:hover { border-left-color: var(--red); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-star { color: #FFB800; font-size: 14px; }
.review-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.review-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
}
.reviews-cta { margin-top: 48px; text-align: center; }
.reviews-cta a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── CTA SECTION (Homepage) ─────────────────── */
.cta-section { background: var(--red); padding: 80px 0; }
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 { color: var(--white); margin-bottom: 12px; }
.cta-text p { font-family: 'Montserrat', sans-serif; font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 280px; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.2);
  padding: 14px 20px;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  transition: background .2s;
}
.cta-phone:hover { background: rgba(0,0,0,0.35); }
.cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  padding: 14px 20px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s;
}
.cta-whatsapp:hover { background: #1fba58; }

/* ── CTA BANNER (Subpages) ──────────────────── */
.cta-banner {
  background: var(--red);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-banner-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .btn-secondary { border-color: rgba(255,255,255,0.5); }
.cta-banner .btn-secondary:hover { border-color: var(--white); }

/* ── CONTACT ────────────────────────────────── */
.contact {
  background: linear-gradient(180deg, #0D0D0D 0%, #0A0A0A 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item .label { margin-bottom: 8px; display: block; }
.contact-item p { font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--grey-light); line-height: 1.8; }
.contact-item a { color: var(--white); transition: color .2s; }
.contact-item a:hover { color: var(--red); }
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--grey-light); padding: 10px 0; }
.hours-table td:last-child { text-align: right; color: var(--white); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group label span.required, label .required { color: var(--red); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group select option { background: var(--black3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-family: 'Montserrat', sans-serif; font-size: 11px; color: var(--grey); line-height: 1.6; }

/* Generic form label styling (kontakt.html uses <label> directly, not in .form-group) */
label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 6px;
}
input[type="text"], input[type="tel"], input[type="date"], input[type="email"], select, textarea {
  background: var(--bg3);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  -webkit-appearance: none;
}
input[type="text"]:focus, input[type="tel"]:focus, input[type="date"]:focus, input[type="email"]:focus, select:focus, textarea:focus { border-color: var(--red); }
select option { background: var(--bg3); }
textarea { resize: vertical; min-height: 120px; }

/* ── MAP ────────────────────────────────────── */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 320px; border: none; display: block; filter: grayscale(1) contrast(1.1) brightness(0.7); }

/* Map consent overlay */
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background: var(--bg2);
  z-index: 2;
}
.map-consent.hidden { display: none; }
.map-consent p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--grey);
  max-width: 400px;
  margin: 8px 0 16px;
  line-height: 1.6;
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Old footer classes */
.footer-brand img, .footer-logo-img {
  height: 32px;
  margin-bottom: 20px;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.footer-brand p, .footer-desc { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--grey); line-height: 1.8; max-width: 260px; }
.footer-col h4, .footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul, .footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a, .footer-links li a { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--grey); transition: color .2s; }
.footer-col ul li a:hover, .footer-links li a:hover { color: var(--white); }

/* New footer contact items (includes.js) */
.footer-contact-item { margin-bottom: 14px; }
.footer-contact-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.footer-contact-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.6;
}
.footer-contact-value a { color: var(--grey-light); transition: color .2s; }
.footer-contact-value a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-copy { font-family: 'Montserrat', sans-serif; font-size: 11px; color: var(--grey); }
.footer-bottom a, .footer-legal a { color: var(--grey); transition: color .2s; }
.footer-bottom a:hover, .footer-legal a:hover { color: var(--white); }
.footer-legal { display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 11px; }
.footer-legal-sep { color: var(--grey); }
.footer-credit { font-family: 'Montserrat', sans-serif; font-size: 11px; color: var(--grey); }
.footer-credit span { color: var(--red); font-weight: 600; }

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 14px;
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }

/* ── MOBILE BAR (Fixed bottom CTA) ──────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black2);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 12px;
  gap: 8px;
  z-index: 90;
}
.mobile-bar .btn-primary { flex: 1; justify-content: center; padding: 13px 8px; font-size: 11px; letter-spacing: 1.5px; }
.mobile-bar .btn-call { flex: 1; justify-content: center; padding: 11px 8px; font-size: 11px; letter-spacing: 1.5px; }

/* ── PAGE HERO (Unterseiten) ────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 72px;
  overflow: hidden;
  background: linear-gradient(135deg, #111111 0%, #0A0A0A 60%, #130707 100%);
  border-bottom: 1px solid rgba(204,27,27,0.15);
}
.page-hero .section-label,
.page-hero .label { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 20px; font-size: clamp(44px, 6vw, 84px); }
.page-hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--grey-light);
  max-width: 540px;
  line-height: 1.8;
}
.breadcrumb { font-family: 'Montserrat', sans-serif; font-size: 11px; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.breadcrumb a { color: var(--grey); transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 8px; }

/* ── SCROLL ANIMATIONS ──────────────────────── */
/* Nur wenn JS geladen → Elemente ausblenden. Kein Flash bei langsamem Laden. */
.js [data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js [data-animate][data-delay="100"]  { transition-delay: 0.1s; }
.js [data-animate][data-delay="150"]  { transition-delay: 0.15s; }
.js [data-animate][data-delay="200"]  { transition-delay: 0.2s; }
.js [data-animate][data-delay="300"]  { transition-delay: 0.3s; }
.js [data-animate][data-delay="400"]  { transition-delay: 0.4s; }
.js [data-animate][data-delay="450"]  { transition-delay: 0.45s; }
.js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CARD LIFT EFFECT ───────────────────────── */
.card-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-lift:hover {
  transform: translateY(-4px);
}

/* ── WERTE SECTION (Über uns) ───────────────── */
.werte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.wert-card {
  background: var(--black3);
  padding: 36px 28px;
  border-top: 3px solid rgba(204,27,27,0.35);
  transition: border-top-color .2s;
}
.wert-card:hover { border-top-color: var(--red); }
.wert-icon { margin-bottom: 20px; display: block; line-height: 1; }
.wert-icon svg { display: block; }
.wert-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--white);
}
.wert-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.8;
}

/* ── TEAM CARD (Über uns) ───────────────────── */
.team-card {
  background: var(--black3);
  overflow: hidden;
  border: 1px solid var(--line);
}
.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--black3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.team-info { padding: 28px; }
.team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  margin-bottom: 4px;
  color: var(--white);
}
.team-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}
.team-bio {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 20px;
}
.team-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-img { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .detailing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 240px 240px 240px; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .werte-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta, .nav-right { display: none; }
  .nav-burger, .nav-hamburger { display: flex; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 70px; } /* space for mobile bar */

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 240px; }
  .gallery-item:first-child { grid-column: span 1; }
  .cta-inner { flex-direction: column; }
  .cta-actions { min-width: auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .werte-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .werte-grid { grid-template-columns: 1fr; }
  .detailing-grid { grid-template-columns: 1fr; }
}
