/* ============================================================
   AUTOHAUS SITTNER – Hauptstylesheet
   ============================================================ */

/* 1. Custom Properties */
:root {
  --primary:      #e31c23;
  --primary-dark: #b51519;
  --dark:         #0d0d0d;
  --dark-2:       #1a1a1a;
  --text:         #1a1a1a;
  --muted:        #5c6b7b;
  --bg:           #f5f7fa;
  --surface:      #ffffff;
  --line:         #e0e0e0;
  --shadow:       0 8px 32px rgba(0,0,0,0.10);
  --radius:       16px;
  --container:    1240px;
  --transition:   0.2s ease;
}

/* 2. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 3. Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section          { padding: 5rem 0; }
.section--dark    { background: var(--dark-2); color: #fff; }
.section--light   { background: var(--bg); }
.section--white   { background: var(--surface); }

/* 4. Typography */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section--dark .eyebrow { color: rgba(255,255,255,0.55); }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.7;
}
.section--dark .lead { color: rgba(255,255,255,0.65); }

/* 5. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ============================================================
   6. HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-top {
  background: var(--dark-2);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
}
.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  gap: 1rem;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-contact a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.header-contact a:hover { color: var(--primary); }
.header-hours {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--text);
}
.brand__mark {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.brand__name {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-dark);
}
.brand__sub {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.header-nav a {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover  { background: var(--bg); color: var(--primary); }
.header-nav a.active { color: var(--primary); }
.header-nav .nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  margin-left: 0.5rem;
}
.header-nav .nav-cta:hover { background: var(--primary-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .nav-cta {
  background: var(--primary);
  color: #fff !important;
  border: none;
  margin-top: 0.5rem;
  text-align: center;
  border-radius: 8px;
}

/* ============================================================
   7. HERO (Startseite)
   ============================================================ */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background:
    linear-gradient(to right, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.50) 50%, rgba(0,0,0,0.20) 100%),
    linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero--img {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.50) 50%, rgba(0,0,0,0.20) 100%),
    url('../images/hero.jpg');
}
.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  display: flex;
  align-items: center;
}
.hero__content { max-width: 700px; }
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.btn--hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: background var(--transition), border-color var(--transition);
}
.btn--hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* Hero Feature Bar */
.hero-features {
  position: relative;
  z-index: 2;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-feature:last-child { border-right: none; }
.hero-feature__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--primary);
}
.hero-feature__icon svg { width: 100%; height: 100%; }
.hero-feature__title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}
.hero-feature__sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   8. PAGE HERO (Unterseiten)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark-2) 0%, #2d0f12 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(227,28,35,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
}
.page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 55ch;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ============================================================
   9. SECTION HEADER
   ============================================================ */
.section-header          { margin-bottom: 3rem; }
.section-header--center  { text-align: center; }
.section-header--center .lead { margin: 0.75rem auto 0; }

/* ============================================================
   10. BRANDS
   ============================================================ */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.brand-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title logo"
    "text text"
    "button button";
  align-items: start;
  gap: 1.25rem 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.brand-card__logo {
  grid-area: logo;
  justify-self: end;
  height: 56px;
  display: flex;
  align-items: center;
}
.brand-card__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.brand-card h3 {
  grid-area: title;
  align-self: center;
  font-size: 1.4rem;
  font-weight: 800;
}
.brand-card p  {
  grid-area: text;
  color: var(--muted);
  line-height: 1.65;
}
.brand-card .btn {
  grid-area: button;
  align-self: flex-start;
  justify-self: start;
  padding: 0.65rem 1.2rem;
  min-height: 40px;
  font-size: 0.88rem;
}

@media (max-width: 480px) {
  .brand-card {
    padding: 2rem;
    gap: 1rem 1.25rem;
  }
  .brand-card__logo {
    height: 46px;
  }
}

/* ============================================================
   11. SERVICES
   ============================================================ */
#leistungen {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13,13,13,0.78) 0%, rgba(26,26,26,0.55) 48%, rgba(13,13,13,0.82) 100%),
    url('../images/back_alles_aus_einer_hand.png') center / cover no-repeat;
  color: #fff;
}
#leistungen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 32%),
    radial-gradient(ellipse at 20% 15%, rgba(227,28,35,0.22) 0%, rgba(227,28,35,0) 48%);
  pointer-events: none;
}
#leistungen .container {
  position: relative;
  z-index: 1;
}
#leistungen .section-header h2 {
  color: #fff;
}
#leistungen .lead {
  color: rgba(255,255,255,0.78);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.10) 100%);
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow:
    0 18px 50px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.28);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0) 46%);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.52);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.36);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
  margin-bottom: 0.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34);
}
.service-card__icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.service-card h3  { font-size: 1.1rem; font-weight: 800; color: #fff; }
.service-card p   { color: rgba(255,255,255,0.74); font-size: 0.91rem; line-height: 1.65; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.87rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.25rem;
  transition: gap var(--transition), color var(--transition);
}
.service-card__link:hover { gap: 0.6rem; color: #ffd6d8; }

/* ============================================================
   12. GEBRAUCHTWAGEN BANNER
   ============================================================ */
.gebrauchtwagen-banner {
  background: linear-gradient(135deg, var(--dark-2) 0%, #1a0507 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.gebrauchtwagen-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,28,35,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.gebrauchtwagen-banner__text h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.75rem; }
.gebrauchtwagen-banner__text p  { color: rgba(255,255,255,0.65); max-width: 50ch; }
.gebrauchtwagen-banner__cta     { flex-shrink: 0; position: relative; z-index: 1; }

/* ============================================================
   13. CTA BANNER
   ============================================================ */
.cta-banner {
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  color: var(--text);
  padding: 4.5rem 0;
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(180px, calc(100% - 3rem));
  height: 3px;
  background: var(--primary);
  transform: translateX(-50%);
}
.cta-banner h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.75rem; }
.cta-banner p  {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 55ch;
  margin: 0 auto 0;
}
.cta-banner .btn-group { justify-content: center; }
.cta-banner .btn--white {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cta-banner .btn--white:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.cta-banner .btn--outline {
  color: var(--primary);
  border-color: rgba(227,28,35,0.45);
}
.cta-banner .btn--outline:hover {
  background: #fef0f0;
  border-color: var(--primary);
}

/* ============================================================
   14. TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #dde3ea 0%, #c8d0da 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-card__initials {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.team-card__body { padding: 1.5rem; }
.team-card__position {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.team-card__name { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; }
.team-card__bio  { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   15. TIMELINE (Historie)
   ============================================================ */
.timeline {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline-year {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary);
  text-align: right;
  padding-top: 0.2rem;
  position: relative;
}
.timeline-year::after {
  content: '';
  position: absolute;
  right: -2.75rem;
  top: 0.55rem;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.timeline-content h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; }
.timeline-content p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   16. KONTAKT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.contact-info-block h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--primary);
}
.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon { color: var(--primary); flex-shrink: 0; font-size: 1rem; }
.contact-detail a { color: var(--primary); }

.opening-hours table  { width: 100%; border-collapse: collapse; }
.opening-hours tr     { border-bottom: 1px solid var(--line); }
.opening-hours tr:last-child { border-bottom: none; }
.opening-hours td     { padding: 0.45rem 0; font-size: 0.87rem; }
.opening-hours td:last-child { text-align: right; color: var(--muted); }
.opening-hours .closed { color: var(--muted); font-style: italic; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { display: block; }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h2   { font-size: 1.4rem; margin-bottom: 0.5rem; }
.contact-form-wrap .lead { font-size: 0.92rem; margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-field label     { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-field label .req { color: var(--primary); margin-left: 0.1rem; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227,28,35,0.1);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 140px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--primary);
  margin-top: 0.1rem;
  cursor: pointer;
}
.form-checkbox a { color: var(--primary); }

.form-msg {
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.form-msg--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-msg--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.footer-brand-mark {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.footer-brand-name { font-size: 1rem; font-weight: 800; color: #fff; line-height: 1.1; }
.footer-brand-sub  { font-size: 0.68rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-desc       { font-size: 0.87rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; }
.footer-title      { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 1rem; }

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }

.footer-contact-list  { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item  { display: flex; gap: 0.6rem; font-size: 0.87rem; color: rgba(255,255,255,0.6); align-items: flex-start; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.32);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-legal a:hover { color: var(--primary); }

/* ============================================================
   18. CONTENT SEITEN (Impressum, Datenschutz)
   ============================================================ */
.content-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.content-page h1 { font-size: 2rem; margin-bottom: 2rem; }
.content-page h2 { font-size: 1.2rem; margin: 2rem 0 0.6rem; color: var(--dark-2); }
.content-page h3 { font-size: 1rem; margin: 1.5rem 0 0.4rem; font-weight: 700; }
.content-page p  { font-size: 0.93rem; color: var(--muted); margin-bottom: 0.75rem; line-height: 1.7; }
.content-page a  { color: var(--primary); }
.content-page ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.content-page li { font-size: 0.93rem; color: var(--muted); margin-bottom: 0.35rem; line-height: 1.65; }

/* ============================================================
   19. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__inner          { grid-template-columns: 1fr; max-width: 680px; }
  .hero__card           { display: none; }
  .brands-grid          { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .team-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .contact-grid         { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 3.5rem 0; }

  .header-top__inner    { flex-wrap: wrap; }
  .header-hours         { display: none; }
  .header-nav           { display: none; }
  .hamburger            { display: flex; }

  .hero                 { min-height: auto; }
  .hero__inner          { padding: 4rem 1.5rem 3rem; }
  .hero-features__grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-feature         { border-bottom: 1px solid rgba(255,255,255,0.08); }

  .services-grid        { grid-template-columns: 1fr; }
  .team-grid            { grid-template-columns: 1fr; }
  .brands-grid          { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; gap: 2rem; }

  .gebrauchtwagen-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .form-row             { grid-template-columns: 1fr; }
  .contact-form-wrap    { padding: 1.5rem; }

  .timeline::before     { left: 0; }
  .timeline-item        { grid-template-columns: 1fr; gap: 0.75rem; }
  .timeline-year        { text-align: left; padding-left: 1.5rem; }
  .timeline-year::after { left: -0.55rem; right: auto; }

  .footer-bottom        { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .btn-group .btn               { width: 100%; justify-content: center; }
  .cta-banner .btn-group .btn   { width: auto; }
  .hero__badge                  { font-size: 0.7rem; }
}
