html {
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
}

/* Font global */
* {
  font-family: "Montserrat", sans-serif;
}

.kfz-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  background: #fff;
  z-index: 1000;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: transform 0.35s ease;
}

/* Versteckt beim Hochscrollen */
.kfz-header.is-hidden {
  transform: translateY(-100%);
}

.kfz-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.kfz-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.kfz-logo {
  height: 100px;
  width: auto;
  display: block;
  /* subtil hochwertig, ohne "zu viel" */
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.1));
}

/* Kontakt-Link (premium minimal) */
.kfz-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;

  padding: 10px 14px;
  border-radius: 999px;

  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #1f4fd8;

  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.kfz-link:hover {
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
  color: #000;
}

.kfz-link:active {
  transform: translateY(0px);
}

/* Mobile Optimierung */
@media (max-width: 600px) {
  .kfz-nav {
    padding: 12px 14px;
  }

  .kfz-logo {
    height: 36px;
  }

  .kfz-link {
    font-size: 13px;
    padding: 9px 12px;
  }
}

/* =========================================================
   REACH SECTION – Premium / Clean
   Background weiß | Text schwarz | Montserrat
   ========================================================= */

.reach-section,
.reach-section * {
  font-family: "Montserrat", sans-serif;
}

.reach-section {
  background: #fff;
  color: #000;
  padding: clamp(52px, 6vw, 96px) 0;
  margin-top: 150px;
}

.reach-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Head */
.reach-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.reach-eyebrow {
  display: inline-block;
  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgba(0, 0, 0, 0.7);
}

.reach-head h2 {
  margin: 0;

  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: #000;
}

/* Grid */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Cards */
.reach-card {
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);

  padding: 18px;
}

.reach-card h3 {
  margin: 0 0 8px 0;

  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reach-card p {
  margin: 0 0 14px 0;

  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 500;

  color: rgba(0, 0, 0, 0.86);
}

/* Kontakt-Link */
.reach-link {
  display: inline-block;

  padding: 10px 14px;
  border-radius: 999px;

  color: #000;
  text-decoration: none;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(0, 0, 0, 0.06);

  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.reach-link:hover {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* Full-width final card */
.reach-card--full {
  grid-column: span 2;
  background: rgba(0, 0, 0, 0.03);
}

.reach-final {
  margin: 0 0 10px 0;
  font-weight: 600;
}

.reach-signature {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .reach-grid {
    grid-template-columns: 1fr;
  }

  .reach-card--full {
    grid-column: span 1;
  }
}

/* =========================================================
   FOOTER – Premium / Clean
   Background weiß | Text schwarz | Montserrat
   ========================================================= */

.site-footer,
.site-footer * {
  font-family: "Montserrat", sans-serif;
}

.site-footer {
  background: #1f4fd8;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 44px 0 22px 0;
}

.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

/* Columns */
.footer-col {
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  padding: 18px;
  background-color: #fff;
}

/* Eyebrow */
.footer-eyebrow {
  display: inline-block;
  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgba(0, 0, 0, 0.7);
}

/* Title */
.footer-title {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
}

/* Links */
.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(0, 0, 0, 0.88);
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;

  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);

  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-links a:hover {
  background: rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* Contact rows */
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 12px 12px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
}

.footer-value {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.footer-value:hover {
  text-decoration: underline;
}

/* Bottom line */
.footer-bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
