:root {
  --red: #e51721;
  --red-dark: #a90912;
  --black: #0c0d0f;
  --charcoal: #17191d;
  --steel: #5f656b;
  --silver: #d9dee2;
  --white: #ffffff;
  --soft: #f4f6f7;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--soft);
  line-height: 1.55;
}

body.intro-active {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 34%),
    rgba(12, 13, 15, 0.98);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.intro-screen.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.intro-logo-stack {
  position: relative;
  width: min(72vw, 300px);
  max-width: 300px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.intro-logo,
.intro-logo img {
  width: min(72vw, 300px);
  max-width: 300px;
}

.intro-logo img {
  height: auto;
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.42));
}

.intro-piktogram {
  position: absolute;
  top: -2%;
  left: 52%;
  width: clamp(76px, 24vw, 220px);
  width: 220px;
  transform: translateX(-50%);
  animation: introPulse 1.65s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(229, 23, 33, 0.42));
  transform-origin: center;
}

.intro-piktogram img {
  width: 100%;
  height: auto;
}

@keyframes introPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: translateX(-50%) scale(0.96);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 13, 15, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand picture,
.brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}

.brand picture {
  display: block;
}

.brand img {
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand small {
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
}

.main-nav a {
  color: var(--silver);
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

/*@media screen and (max-width: 768px) {
  padding: 10px 6px;
}*/

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--white);
  background: rgba(229, 23, 33, 0.16);
  border-color: rgba(229, 23, 33, 0.5);
  outline: none;
}

.main-nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--red);
}

.section {
  padding: 86px 0;
}

.inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 76px);
  position: relative;
  isolation: isolate;
  color: var(--white);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.88) 0%, rgba(8, 9, 10, 0.62) 46%, rgba(8, 9, 10, 0.34) 100%),
    image-set(
      url("../assets/images/responsive/hero-car-lift-1200.jpg") 1x,
      url("../assets/images/responsive/hero-car-lift-1800.jpg") 2x
    ) center / cover;
  filter: saturate(0.95);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(0deg, var(--soft), rgba(244, 246, 247, 0));
}

.hero-content {
  width: min(780px, 100%);
  padding: 88px 0 122px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.lead {
  max-width: 660px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(229, 23, 33, 0.32);
}

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

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--steel);
  margin-bottom: 0;
}

.kicker {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(12, 13, 15, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.service-card div {
  padding: 18px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--steel);
  font-size: 0.95rem;
}

.about-band {
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  min-height: 430px;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about-images img:last-child {
  margin-top: 46px;
  height: calc(100% - 46px);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.fact {
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: 6px;
}

.fact strong {
  display: block;
  font-size: 1.45rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:nth-child(2),
.gallery img:nth-child(5) {
  grid-column: span 2;
}

.contact-band {
  background: linear-gradient(135deg, var(--black), #25282d);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px;
}

.contact-panel p,
.contact-panel li {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list,
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.contact-list a {
  color: var(--white);
  font-weight: 800;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.map-link {
  margin-top: 18px;
}

.legal {
  background: var(--white);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.legal article {
  border-top: 4px solid var(--red);
  padding-top: 18px;
}

.legal p,
.legal li {
  color: var(--steel);
  font-size: 0.95rem;
}

.source-list {
  columns: 2;
  padding-left: 18px;
}

.site-footer {
  background: var(--black);
  color: var(--silver);
  padding: 24px 0;
}

.footer-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-brand picture,
.footer-brand img {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
}

.footer-brand picture {
  display: block;
}

.footer-brand img {
  object-fit: contain;
  opacity: 0.86;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
}

.footer-nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.footer-nav a:hover {
  color: var(--white);
}

@media (max-width: 960px) {
  .section-head,
  .about-grid,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .site-header {
    position: fixed;
    right: 0;
    left: 0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  }

  .nav-wrap {
    min-height: 76px;
    padding: 9px 0;
    align-items: center;
    flex-direction: row;
    gap: 14px;
  }

  main {
    padding-top: 76px;
  }

  .hero,
  .section,
  #datenschutz {
    scroll-margin-top: 88px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand picture,
  .brand img {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    cursor: pointer;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background: rgba(12, 13, 15, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  body.nav-open .main-nav {
    max-height: 320px;
    padding-top: 10px;
    padding-bottom: 16px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 13px 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: calc(100svh - 76px);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 9, 10, 0.72), rgba(8, 9, 10, 0.9)),
      image-set(
        url("../assets/images/responsive/hero-car-lift-800.jpg") 1x,
        url("../assets/images/responsive/hero-car-lift-1200.jpg") 2x
      ) center / cover;
  }

  .hero-content {
    padding: 72px 0 110px;
  }

  .section {
    padding: 64px 0;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .about-images {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-images img {
    aspect-ratio: 4 / 3;
  }

  .about-images img:last-child {
    margin-top: 0;
    height: auto;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery img:nth-child(2),
  .gallery img:nth-child(5) {
    grid-column: auto;
  }

  .source-list {
    columns: 1;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand picture,
  .footer-brand img {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }
}

@media (max-width: 460px) {
  .brand span {
    font-size: 0.92rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .contact-panel {
    padding: 22px;
  }

  .hours-list li {
    display: grid;
    gap: 2px;
  }
}
