html {
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  background-color: #101d42;
}

/* 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;
  }
}

/* ===============================
   Premium Hero – KFZ Gutachter
   =============================== */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;

  background-image: url("IMG_2072-2.jpg"); /* <-- Bild hier einsetzen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  margin-top: 15vh;
}

/* Subtile Abdunklung + Struktur */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.35)
  );
}

/* Content */
.hero-content {
  position: relative;
  max-width: 900px;
  padding: 0 18px;
  margin-left: clamp(20px, 6vw, 80px);
  color: #000;

  /* Text-Background-Shadow */
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9),
    0 6px 22px rgba(0, 0, 0, 0.18);
}

/* Headings */
.hero-content h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.hero-content h2 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 500;
  max-width: 520px;
  line-height: 1.6;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
  .hero {
    min-height: 65vh;
  }

  .hero-content {
    margin-left: 0;
    text-align: left;
  }
}

/* Section Layout */
.trust-section {
  background: #fff;
  color: #000;
  padding: clamp(42px, 6vw, 80px) 0;
}

.trust-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Headline Block */
.trust-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.trust-head h2 {
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 8px 0;
}

.trust-head p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.6;
}

/* Gallery Grid */
.trust-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

/* Card */
.trust-card {
  grid-column: span 4;
  border-radius: 18px;
  overflow: hidden;
  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.08);

  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trust-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Featured (middle image slightly larger) */
.trust-card--featured {
  grid-column: span 4;
}

.trust-card--featured img {
  height: 360px;
}

/* Subtle hover */
@media (hover: hover) {
  .trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .trust-card {
    grid-column: span 6;
  }
  .trust-card img {
    height: 300px;
  }
  .trust-card--featured {
    grid-column: span 12;
  }
  .trust-card--featured img {
    height: 340px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .trust-card {
    grid-column: span 12;
  }
  .trust-card img {
    height: 260px;
  }
}

.trust-card {
  opacity: 0;
  transform: translateY(10px);
}
.trust-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.22s ease;
}

/* =========================================================
   OFFER SECTION – PREMIUM KFZ GUTACHTER
   Background: #1f4fd8
   Font: Montserrat
   Layout: Desktop 2x2, CTA aligned
   ========================================================= */

/* Font safety */
.offer-section,
.offer-section * {
  font-family: "Montserrat", sans-serif;
}

/* Section */
.offer-section {
  background-color: #1f4fd8;
  color: #000;
  padding: clamp(48px, 6vw, 96px) 0;
}

/* Wrapper */
.offer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ===============================
   OFFER HEAD
   =============================== */

.offer-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.offer-eyebrow {
  display: inline-block;
  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.75);
}

.offer-head h2 {
  margin: 0 0 10px 0;

  font-size: clamp(22px, 3.3vw, 34px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #ffffff;
}

.offer-head p {
  margin: 0;
  max-width: 560px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.7);
}

/* ===============================
   GRID – FIX 2x2 DESKTOP
   =============================== */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 100px;
}

/* ===============================
   CARD
   =============================== */

.offer-card {
  display: flex;
  flex-direction: column;
  height: 100%;

  overflow: hidden;

  background: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);

  padding: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.offer-card h3 {
  margin: 6px 6px 10px 6px;

  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;

  color: #000;
}

/* Image */
.offer-media {
  border-radius: 14px;
  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.03);
}

.offer-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Text – grows, pushes CTA down */
.offer-card p {
  margin: 12px 6px 0 6px;

  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;

  color: rgba(0, 0, 0, 0.88);

  flex-grow: 1;
}

/* ===============================
   CTA – ALWAYS SAME HEIGHT
   =============================== */

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 14px;
  margin-left: 6px;

  padding: 10px 16px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;

  color: #000;
  text-decoration: none;

  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(0, 0, 0, 0.04);

  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.offer-cta:hover {
  background: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

/* Card hover */
@media (hover: hover) {
  .offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.92);
  }
}

/* ===============================
   FOOTER CALLOUT
   =============================== */

.offer-footer {
  margin-top: 22px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);

  padding: 14px 16px;
}

.offer-footer p {
  margin: 0;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.92);
}

.offer-phone {
  color: #000;
  text-decoration: none;
  font-weight: 850;

  padding: 2px 6px;
  border-radius: 8px;

  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.offer-phone:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-cta {
    width: calc(100% - 12px);
  }
}

@media (max-width: 560px) {
  .offer-media img {
    height: 230px;
  }
}

/* =========================================================
   ACTION SECTION – Premium Callout
   Background weiß | Text schwarz | Montserrat
   ========================================================= */

.action-section,
.action-section * {
  font-family: "Montserrat", sans-serif;
}

.action-section {
  background: #fff;
  color: #000;
  padding: clamp(52px, 6vw, 96px) 0;
}

.action-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Eyebrow */
.action-eyebrow {
  display: inline-block;
  margin-bottom: 12px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgba(0, 0, 0, 0.7);
}

/* Title */
.action-title {
  margin: 0 0 18px 0;

  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #000;
}

/* Highlight Box */
.action-highlight {
  border-radius: 18px;
  padding: 16px 16px;

  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);

  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}

.action-question {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.action-answer {
  margin: 0;
  font-size: 16px;
  font-weight: 650;
  color: rgba(0, 0, 0, 0.85);
}

/* Main Text */
.action-text {
  margin: 0 0 22px 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.86);
  max-width: 820px;
}

/* CTAs */
.action-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.action-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 18px;
  border-radius: 999px;

  text-decoration: none;
  color: #000;

  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;
}

.action-cta:hover {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.action-cta--ghost {
  background: transparent;
}

/* Mobile */
@media (max-width: 560px) {
  .action-cta {
    width: 100%;
  }
}

/* =========================================================
   RIGHTS SECTION – Premium / Clean
   Background weiß | Text schwarz | Montserrat
   ========================================================= */

.rights-section,
.rights-section * {
  font-family: "Montserrat", sans-serif;
}

.rights-section {
  background: #1f4fd8;
  color: #000000;
  padding: clamp(52px, 6vw, 96px) 0;
}

.rights-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Head */
.rights-head {
  max-width: 860px;
  margin-bottom: 18px;
}

.rights-eyebrow {
  display: inline-block;
  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgb(255, 255, 255);
}

.rights-head h2 {
  margin: 0 0 10px 0;

  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: rgb(255, 255, 255);
}

.rights-head p {
  margin: 0;
  max-width: 860px;

  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;

  color: rgb(255, 255, 255);
}

/* Callout */
.rights-callout {
  margin-top: 18px;
  border-radius: 18px;

  background: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);

  padding: 16px 16px;
}

.rights-callout h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.rights-callout p {
  margin: 0 0 14px 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  color: rgb(0, 0, 0);
}

/* CTAs */
.rights-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rights-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 18px;
  border-radius: 999px;

  text-decoration: none;
  color: rgb(0, 0, 0);

  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;
}

.rights-cta:hover {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.rights-cta--ghost {
  background: transparent;
}

/* Grid (4 benefits) */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.rights-item {
  display: flex;
  gap: 12px;

  border-radius: 18px;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);

  padding: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rights-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.04);
  flex: 0 0 auto;
}

.rights-icon i {
  font-size: 16px;
  color: rgb(0, 0, 0);
}

.rights-text h4 {
  margin: 2px 0 6px 0;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rights-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: rgb(0, 0, 0);
}

/* Hover (subtil) */
@media (hover: hover) {
  .rights-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .rights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .rights-cta {
    width: 100%;
  }
}

/* =========================================================
   ABOUT SECTION – Premium / Clean
   Background weiß | Text schwarz | Montserrat
   ========================================================= */

.about-section,
.about-section * {
  font-family: "Montserrat", sans-serif;
}

.about-section {
  background: #fff;
  color: #000;
  padding: clamp(52px, 6vw, 96px) 0;
}

.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: center;
}

/* Image */
.about-media {
  border-radius: 20px;
  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.about-media img {
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
  display: block;
}

/* Content */
.about-content {
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);

  padding: 18px 18px;
}

/* Eyebrow */
.about-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);
}

/* Headline */
.about-content h2 {
  margin: 0 0 12px 0;

  font-size: clamp(20px, 3vw, 30px);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: #000;
}

/* Text */
.about-content p {
  margin: 0 0 16px 0;

  font-size: 14.5px;
  line-height: 1.75;
  font-weight: 500;

  color: rgba(0, 0, 0, 0.86);
  max-width: 64ch;
}

/* CTAs */
.about-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 18px;
  border-radius: 999px;

  text-decoration: none;
  color: #000;

  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;
}

.about-cta:hover {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.about-cta--ghost {
  background: transparent;
}

/* Divider line */
.about-divider {
  margin-top: 26px;
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 340px;
  }
}

@media (max-width: 560px) {
  .about-cta {
    width: 100%;
  }
}

/* =========================================================
   CONTACT SECTION – Premium / Clean
   Font: Montserrat | Text schwarz | Modern layout
   ========================================================= */

.contact-section,
.contact-section * {
  font-family: "Montserrat", sans-serif;
}

.contact-section {
  background: #fff;
  color: #000;
  padding: clamp(52px, 6vw, 96px) 0;
}

.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  align-items: stretch;
}

/* Shared card */
.contact-card {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 18px;
}

/* Left card */
.contact-card--light {
  background: rgba(0, 0, 0, 0.02);
}

.contact-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);
}

.contact-card--light h2 {
  margin: 0 0 12px 0;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-lead {
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.86);
}

.contact-lead strong {
  font-weight: 850;
  letter-spacing: 0.02em;
}

/* Actions */
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 18px;
  border-radius: 999px;

  text-decoration: none;
  color: #000;

  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);

  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.contact-btn--ghost {
  background: transparent;
}

.contact-note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.72);
  max-width: 60ch;
}

/* Right (Blue) card */
.contact-card--blue {
  background: #1f4fd8; /* seriöses KFZ-Blau */
  color: #000;
  padding: 0; /* we handle inside */
}

.contact-profile {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  height: 100%;
}

.contact-profile__text {
  padding: 18px;
}

.contact-profile__text h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
}

.contact-role {
  margin: 0 0 14px 0;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.85);
}

.contact-lines p {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.88);
}

.contact-link {
  display: inline-block;
  margin: 0 0 8px 0;
  color: #000;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 4px 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* Image */
.contact-profile__media {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  padding: 14px;
}

.contact-profile__media img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-profile {
    grid-template-columns: 1fr;
  }

  .contact-profile__media {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }

  .contact-profile__media img {
    max-height: 320px;
  }
}

@media (max-width: 560px) {
  .contact-btn {
    width: 100%;
  }
}

/* =========================================================
   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;
  }
}
