:root {
  --red: #b40000;
  --red-dark: #860000;
  --anthracite: #293338;
  --dark: #172026;
  --text: #263238;
  --muted: #657078;
  --light: #f4f6f7;
  --white: #ffffff;
  --border: #dfe4e7;
  --shadow: 0 20px 55px rgba(12, 22, 28, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 4px solid var(--red);
}

.header-inner,
.hero-inner,
.benefits-inner,
.content-width,
.footer-inner,
.footer-bottom {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.header-inner {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: block;
  width: min(320px, 45vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-contact {
  margin: 0;
  display: grid;
  gap: 12px;
  font-style: normal;
  font-weight: 700;
}

.header-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact a:hover {
  color: var(--red);
}

.header-contact span {
  width: 26px;
  color: var(--red);
  font-size: 1.25rem;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--dark) url("../images/bauer-lkw-hero.png") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 26%,
    rgba(255, 255, 255, 0.26) 53%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding-block: 70px;
}

.hero-copy {
  width: min(610px, 100%);
}

.slogan {
  width: max-content;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 0 20px 7px 0;
  color: var(--red);
  border-bottom: 3px solid var(--red);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1;
  transform: rotate(-4deg);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.92);
}

h1 {
  margin: 0;
  color: var(--anthracite);
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.intro {
  margin: 28px 0 0;
  max-width: 590px;
  color: #243138;
  font-size: clamp(1.06rem, 1.3vw, 1.3rem);
}

.construction-card {
  margin-top: 34px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.construction-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 3px solid var(--red);
  border-radius: 16px;
  font-size: 2.6rem;
  font-weight: 900;
}

.construction-card h2 {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.construction-card p {
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(22, 29, 33, 0.18);
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: var(--red);
  background: rgba(255, 255, 255, 0.72);
}

.benefits {
  background: linear-gradient(90deg, #202a30, #303c43);
  color: var(--white);
}

.benefits-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.benefit {
  min-height: 138px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.benefit:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 15px;
  font-size: 1.7rem;
  font-weight: 800;
}

.benefit h2 {
  margin: 0 0 3px;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.coming-soon {
  padding: 76px 0 84px;
  background: var(--light);
  text-align: center;
}

.section-label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coming-soon h2 {
  margin: 0;
  color: var(--anthracite);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
}

.coming-soon > .content-width > p:not(.section-label) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-cards {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.contact-card {
  min-height: 130px;
  padding: 23px;
  display: flex;
  align-items: center;
  gap: 17px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(25, 36, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 0, 0, 0.35);
  box-shadow: 0 18px 36px rgba(25, 36, 42, 0.13);
}

.contact-card-icon {
  flex: 0 0 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-card span:last-child {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--anthracite);
}

.site-footer {
  padding-top: 38px;
  color: rgba(255, 255, 255, 0.76);
  background: #11191e;
}

.footer-inner {
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.08rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: auto;
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: min(300px, 75vw);
  }

  .hero {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.82) 52%,
      rgba(0, 0, 0, 0.2) 100%
    );
  }

  .benefits-inner,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .benefit,
  .benefit:last-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .hero-inner,
  .benefits-inner,
  .content-width,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1280px);
  }

  .header-contact {
    font-size: 0.92rem;
  }

  .hero-inner {
    min-height: 700px;
    padding-block: 48px;
    align-items: flex-start;
  }

  .construction-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .benefit {
    padding-inline: 14px;
  }

  .contact-card {
    padding: 20px;
  }
}

/* Rechtliche Unterseiten */
.legal-page {
  background: var(--light);
}

.legal-main {
  padding: 64px 24px 76px;
}

.legal-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border-top: 5px solid var(--red);
  box-shadow: 0 18px 50px rgba(23, 32, 38, 0.1);
}

.legal-card > h1 {
  margin: 0;
  color: var(--anthracite);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  text-transform: none;
}

.legal-intro {
  margin: 15px 0 38px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-card section {
  padding: 22px 0;
  border-top: 1px solid var(--border);
}

.legal-card section h2 {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.legal-card section p {
  margin: 0;
}

.legal-card section a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 520px) {
  .legal-main {
    padding: 28px 14px 42px;
  }

  .legal-card {
    padding: 26px 20px;
  }

  .legal-actions .button {
    width: 100%;
  }
}
