/* =========================
   GRUNDLAGEN
========================= */

:root {
  --bg: #090909;
  --bg-soft: #141412;
  --bg-light: #d8d4c8;

  --text: #eeeae0;
  --text-dark: #11110f;
  --muted: #a5a196;

  --accent: #9c9888;
  --accent-light: #c7c2b2;
  --accent-dark: #6f6c61;
  --border: rgba(199, 194, 178, 0.16);

  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
}

/* Dezentes, feststehendes Wasserzeichen im Hintergrund */
body::before {
  content: "";
  position: fixed;
  top: 53%;
  left: 50%;
  width: min(64vw, 820px);
  height: min(88vh, 1100px);
  transform: translate(-50%, -50%);
  background: url("images/watermark.png") center / contain no-repeat;
  opacity: 0.042;
  pointer-events: none;
  z-index: 0;
}

.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

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

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

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid var(--border);
}


/* =========================
   NAVIGATION
========================= */

.nav {
  min-height: 84px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

.logo-main {
  color: var(--accent-light);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}


.logo:hover .logo-main {
  color: var(--text);
}

.navigation {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 38px;
}

.navigation a {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--accent);
  transition: right 0.2s ease;
}

.navigation a:hover {
  color: var(--accent-light);
}

.navigation a:hover::after {
  right: 0;
}



.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #66645d;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.language-switch a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.language-switch a:hover,
.language-switch a.active {
  color: var(--accent-light);
}

.language-switch a.active {
  border-bottom: 1px solid var(--accent);
}


/* =========================
   BUTTONS
========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 26px;

  background: var(--accent);
  color: var(--text-dark);

  font-size: 0.9rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.7px;

  border: 2px solid var(--accent);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

  background: transparent;
  color: var(--accent);
}

.button-small {
  min-height: 44px;

  padding: 0 20px;

  font-size: 0.78rem;
}

.text-link {
  color: var(--text);

  font-weight: 700;

  border-bottom: 1px solid rgba(255, 255, 255, 0.4);

  transition: 0.2s;
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}


/* =========================
   HERO
========================= */

.hero {
  padding: 90px 0 80px;
}

.hero-grid {
  display: grid;

  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);

  gap: clamp(38px, 5vw, 76px);

  align-items: center;
}

.eyebrow {
  color: var(--accent);

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(3.15rem, 5.35vw, 5.75rem);

  line-height: 0.96;

  letter-spacing: -3px;

  font-weight: 900;

  margin-bottom: 34px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 560px;

  color: var(--muted);

  font-size: 1.2rem;

  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;

  gap: 28px;

  flex-wrap: wrap;
}

.hero-logo {
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo::before {
  content: "";
  position: absolute;
  inset: 9% 4%;
  background: radial-gradient(circle at center, rgba(199, 194, 178, 0.08), transparent 68%);
  pointer-events: none;
}

.hero-logo img {
  width: min(100%, 500px);
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0.92;
  mix-blend-mode: screen;
  filter: contrast(0.98) brightness(0.92);
}


/* =========================
   PLATZHALTER
========================= */

.placeholder {
  position: relative;

  background:
    linear-gradient(
      135deg,
      #222222,
      #191919
    );

  border: 1px solid var(--border);

  overflow: hidden;
}

.placeholder::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  border: 1px solid rgba(156, 152, 136, 0.28);

  transform: rotate(45deg);

  right: -80px;
  bottom: -80px;
}

.placeholder span {
  position: absolute;

  left: 24px;
  bottom: 20px;

  color: #777777;

  font-size: 0.8rem;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* =========================
   SERVICE STRIP
========================= */

.service-strip {
  background: var(--accent);
  color: var(--text-dark);
  padding: 22px 0;
}

.strip-content {
  width: min(94%, 1500px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 8px;
  font-size: clamp(0.9rem, 1.55vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

.strip-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.strip-item:not(:last-child)::after {
  content: "•";
  margin: 0 clamp(12px, 2.1vw, 24px);
}


/* =========================
   ALLGEMEINE SEKTIONEN
========================= */

.section {
  padding: 120px 0;
}

.section-dark {
  background: rgba(20, 20, 18, 0.94);
}

.section-header {
  max-width: 700px;

  margin-bottom: 70px;
}

.section h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);

  line-height: 1;

  letter-spacing: -2px;

  font-weight: 900;
}


/* =========================
   LEISTUNGEN
========================= */

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service {
  min-height: 220px;

  padding: 38px;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.service:hover {
  background: #1a1916;
}


.service h3 {
  font-size: 1.5rem;

  margin-bottom: 14px;
}

.service p {
  color: var(--muted);

  max-width: 310px;
}


/* =========================
   TEAM
========================= */

.team-section {
  overflow: hidden;
}

.team-header {
  margin-bottom: 42px;
}

.team-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0d0d;
}

.team-banner img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================
   GALERIE
========================= */

.garage-section {
  overflow: hidden;
}

.gallery {
  columns: 3 320px;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  margin: 0 0 18px;
  break-inside: avoid;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: contrast(1.02);
}


/* =========================
   KONTAKT
========================= */

.contact-section {
  background: var(--bg);
  color: var(--text);
  border-top: 1px solid var(--border);
}

.contact-section .eyebrow {
  color: var(--accent);
}

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 0.7fr;

  gap: 100px;

  align-items: start;
}

.contact-intro {
  font-size: 1.25rem;

  margin-top: 30px;

  color: var(--muted);
}

.contact-card {
  background: var(--bg-soft);
  padding: 45px;
  border: 1px solid var(--border);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.contact-card h3 {
  font-family: "Rockwell Extra Bold", Rockwell, Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 30px;
}

.contact-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.contact-card strong {
  color: var(--text);
}

.contact-link {
  color: var(--accent-light);
  border-bottom: 1px solid rgba(199, 194, 178, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover {
  color: var(--text);
  border-color: var(--text);
}

.contact-card .button {
  margin-top: 12px;
}


.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.contact-section .button,
.contact-section .button-outline {
  background: var(--accent-light);
  color: var(--text-dark);
  border-color: var(--accent-light);
}

.contact-section .button:hover,
.contact-section .button-outline:hover {
  background: transparent;
  color: var(--accent-light);
  border-color: var(--accent-light);
}


/* =========================
   FOOTER
========================= */

.footer {
  border-top: 1px solid var(--border);

  padding: 35px 0;

  color: #777777;

  font-size: 0.88rem;
}

.footer-inner {
  display: flex;

  justify-content: space-between;

  gap: 30px;
}

.footer-inner div {
  display: flex;

  gap: 24px;
}

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


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-actions {
    gap: 12px;
  }

  .navigation {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

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

  .hero-logo {
    min-height: 400px;
  }

  .hero-logo img {
    width: min(78vw, 430px);
  }

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

  .gallery {
    columns: 2 280px;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .service-strip {
    padding: 18px 0;
  }

  .strip-content {
    width: min(94%, 760px);
    font-size: 0.92rem;
    letter-spacing: 1.2px;
    row-gap: 7px;
  }

  .strip-item:not(:last-child)::after {
    margin: 0 14px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  body::before {
    width: 92vw;
    height: 78vh;
    opacity: 0.05;
  }

  .container {
    width: min(90%, var(--container));
  }

  .nav {
    min-height: 76px;
    gap: 18px;
  }

  .logo-main {
    font-size: 1.05rem;
    letter-spacing: 1.1px;
  }


  .header .button-small {
    display: none;
  }

  .nav-actions {
    gap: 0;
  }

  .language-switch {
    font-size: 0.72rem;
    gap: 6px;
  }

  .hero {
    padding:
      55px 0
      60px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-logo {
    min-height: 310px;
  }

  .hero-logo img {
    width: min(82vw, 360px);
  }

  .service-strip {
    padding: 16px 0;
  }

  .strip-content {
    width: min(92%, 430px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    font-size: 0.82rem;
    letter-spacing: 1px;
  }

  .strip-item {
    justify-content: center;
  }

  .strip-item:not(:last-child)::after {
    display: none;
  }

  .section {
    padding: 85px 0;
  }

  .section-header {
    margin-bottom: 45px;
  }

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

  .service {
    min-height: auto;

    padding: 30px;
  }

  .team-header {
    margin-bottom: 28px;
  }

  .gallery {
    columns: 1;
    column-gap: 0;
  }

  .gallery-item {
    margin-bottom: 14px;
  }

  .contact-card {
    padding: 30px;
  }

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

}
/* =========================
   FOOTER / RECHTLICHES
========================= */
.footer-content {
  display: grid;
  gap: 26px;
}

.footer-business {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  color: #8e8a80;
  line-height: 1.55;
}

.footer-business strong {
  width: 100%;
  color: var(--accent-light);
  font-size: 0.9rem;
  letter-spacing: 0.4px;
}

.footer-business a,
.footer-links a {
  transition: color 0.2s ease;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.legal-main {
  min-height: calc(100vh - 180px);
  padding: 80px 0 110px;
}

.legal-shell {
  max-width: 900px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--accent-light);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.legal-page-title {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 54px;
}

.legal-card {
  background: rgba(20, 20, 18, 0.86);
  border: 1px solid var(--border);
  padding: clamp(28px, 5vw, 54px);
}

.legal-card h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.35rem;
  color: var(--accent-light);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p + p {
  margin-top: 14px;
}

.legal-card ul {
  margin: 12px 0 0 20px;
}

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

.legal-meta {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px 22px;
}

.legal-meta dt {
  color: var(--accent);
  font-weight: 700;
}

.legal-meta dd {
  color: var(--text);
}

@media (max-width: 600px) {
  .footer-business {
    flex-direction: column;
    gap: 5px;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .legal-main {
    padding: 55px 0 80px;
  }

  .legal-page-title {
    margin-bottom: 36px;
  }

  .legal-meta {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .legal-meta dd {
    margin-bottom: 12px;
  }
}
