/* ===========================
   AUTOVERWERTUNG HÖRSTER
   Stylesheet
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --red:     #c0392b;
  --red-dark:#922b21;
  --dark:    #1a1a1a;
  --dark2:   #2c2c2c;
  --mid:     #555;
  --light:   #f5f4f2;
  --white:   #ffffff;
  --border:  #e0ddd8;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
  padding: 7px 0;
  letter-spacing: .02em;
}
.topbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--red); }

/* ===== NAV ===== */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-brand-main {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .02em;
}
.nav-brand-sub {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 20px !important;
  border-radius: 2px;
  border: none !important;
  white-space: nowrap;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
  gap: 4px;
}
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.nav-mobile a:hover { color: var(--red); }
.nav-mobile a.active { color: var(--red); }
.nav-mobile.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,26,26,.92) 45%, rgba(26,26,26,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 24px;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--red);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 620px;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-sub {
  color: #c8c5c0;
  font-size: 17px;
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-meta-item {
  color: #aaa;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-meta-item::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background .2s, color .2s, transform .15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #333; }
.btn-ghost {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-ghost:hover { background: var(--red); color: #fff; }

/* ===== SECTION ===== */
section { padding: 80px 0; }
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-eye {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.section-sub {
  color: var(--mid);
  font-size: 17px;
  max-width: 580px;
  line-height: 1.65;
}

/* ===== INTRO SECTION ===== */
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.intro-img-wrap {
  position: relative;
}
.intro-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}
.intro-stat {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: #fff;
  padding: 20px 28px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.intro-stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.intro-stat-label {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 4px;
}

/* ===== SERVICES ===== */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  transition: box-shadow .2s, transform .2s;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
  transform: translateY(-2px);
  position: relative;
  z-index: 1;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; fill: #fff; }
.service-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .02em;
}
.service-desc { color: var(--mid); font-size: 15px; line-height: 1.6; }
.service-link {
  margin-top: auto;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }
.service-link::after { content: '→'; }

/* ===== PHOTO GRID ===== */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 48px;
}
.photo-item {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.photo-item:hover img { transform: scale(1.04); }
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  color: #fff;
  padding: 28px 18px 16px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ===== PARTS SECTION ===== */
.parts { background: var(--white); }
.parts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.parts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.parts-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--dark);
}
.parts-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 1px;
  flex-shrink: 0;
}
.parts-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark); padding: 80px 0; }
.testimonials .section-title { color: var(--white); }
.testimonials .section-eye { color: var(--red); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--dark2);
  padding: 36px;
  border-left: 4px solid var(--red);
  border-radius: 0 2px 2px 0;
}
.testimonial-text {
  color: #c8c5c0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--red);
  padding: 64px 0;
}
.cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 520px;
}
.cta-inner p {
  color: rgba(255,255,255,.8);
  margin-top: 8px;
  font-size: 16px;
}
.cta-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.cta-phone {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.cta-phone:hover { opacity: .85; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 64px 0 0;
}
.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 14px;
}
.footer-brand-sub {
  font-size: 12px;
  color: #777;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-about { font-size: 14px; line-height: 1.65; max-width: 240px; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col ul li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer-col ul li a { color: #aaa; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1140px;
  margin: 48px auto 0;
  padding: 20px 24px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: #aaa; margin-left: 16px; }
.footer-bottom a:hover { color: var(--white); }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .3;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,.95) 50%, rgba(26,26,26,.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero-eye {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-eye::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 600px;
  margin-bottom: 16px;
}
.page-hero-sub {
  color: #c0bdb8;
  font-size: 17px;
  max-width: 500px;
  margin-bottom: 32px;
}

/* ===== CONTENT SECTIONS ===== */
.content-block { padding: 80px 0; }
.content-block.bg-light { background: var(--light); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child { order: 1; }
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  margin-top: 1px;
  flex-shrink: 0;
}
.side-box {
  background: var(--dark);
  color: var(--white);
  padding: 36px;
  border-radius: 2px;
  border-top: 4px solid var(--red);
}
.side-box h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}
.side-box p { color: #c0bdb8; font-size: 15px; margin-bottom: 24px; }
.side-box-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.side-box-list li {
  color: #c0bdb8;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.side-box-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  padding: 32px 24px;
  background: var(--white);
  border-top: 3px solid var(--red);
  position: relative;
}
.step-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: rgba(192,57,43,.12);
  line-height: 1;
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.step-desc { color: var(--mid); font-size: 14px; line-height: 1.6; }

/* ===== PARTS TAGS ===== */
.parts-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 32px;
}
.parts-tag {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 8px 16px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.contact-info-top {
  background: var(--red);
  padding: 28px 32px;
  color: #fff;
}
.contact-info-top h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-top p { font-size: 14px; opacity: .85; }
.contact-info-body { padding: 32px; }
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-row-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
}
.contact-row-value {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
}
.contact-row-value a { color: var(--red); }
.contact-row-value a:hover { text-decoration: underline; }
.map-wrap {
  width: 100%;
  height: 340px;
  background: #ddd;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 28px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 760px;
  padding: 64px 24px 80px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--red);
}
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 12px;
}
.legal-content p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-content a { color: var(--red); }

/* ===== AREA SECTION ===== */
.area-section { background: var(--light); padding: 80px 0; }
.area-section p { color: var(--mid); font-size: 17px; max-width: 680px; margin-top: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .intro-grid, .parts-grid, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > :first-child { order: 0; }
  .two-col.reverse > :last-child { order: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .photo-row { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .intro-stat { bottom: -12px; right: 12px; }
  .intro-img-wrap img { height: 320px; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .services-grid, .photo-row, .steps-grid { grid-template-columns: 1fr; }
  .photo-item { height: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-phone-wrap { align-items: flex-start; }
  .hero { min-height: 400px; }
  section { padding: 56px 0; }
}
