/* ==========================================================================
   Autoforum Ichenhausen – Design System
   ========================================================================== */

:root {
  /* Core brand colors (single source of truth) */
  --color-brand-black: #0B0B0B;
  --color-brand-gray: #C5C5C5;
  --color-bg-soft: #1a1a1a;
  --color-white: #FFFFFF;
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-15: rgba(255, 255, 255, 0.15);
  --color-white-08: rgba(255, 255, 255, 0.08);
  --color-accent: #AB2421;
  --color-accent-hover: #8B1017;
  --color-accent-soft: rgba(171, 36, 33, 0.12);

  /* Light surfaces for content sections */
  --color-surface: #FFFFFF;
  --color-surface-alt: #F4F4F4;
  --color-ink: #0B0B0B;
  --color-ink-70: rgba(11, 11, 11, 0.68);
  --color-ink-50: rgba(11, 11, 11, 0.5);
  --color-ink-15: rgba(11, 11, 11, 0.12);
  --color-ink-08: rgba(11, 11, 11, 0.07);

  --font-heading: 'Jost', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Type scale */
  --fs-h1: clamp(38px, 5vw, 64px);
  --fs-h2: clamp(28px, 3.5vw, 40px);
  --fs-h3: 18px;
  --fs-body: 15px;
  --fs-body-sm: 14px;
  --fs-label: 13px;
  --lh-body: 1.7;
  --lh-body-sm: 1.6;

  /* Section spacing scale */
  --space-section: 100px;
  --space-section-md: 72px;
  --space-section-sm: 56px;
  --space-head-gap: 48px;
  --space-head-gap-sm: 28px;

  --container-width: 1200px;
  --container-width-wide: 1320px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-brand-black);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 24px;
  z-index: 200;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- Scroll Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.84, 0.44, 1),
              transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.9s cubic-bezier(0.16, 0.84, 0.44, 1),
              transform 0.9s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.about-service.reveal:nth-child(2) { --reveal-delay: 0.1s; }
.about-service.reveal:nth-child(3) { --reveal-delay: 0.2s; }

.offer-card.reveal:nth-child(2) { --reveal-delay: 0.12s; }
.offer-card.reveal:nth-child(3) { --reveal-delay: 0.24s; }

.testimonial-card.reveal:nth-child(2) { --reveal-delay: 0.12s; }
.testimonial-card.reveal:nth-child(3) { --reveal-delay: 0.24s; }

.contact-card.reveal:nth-child(2) { --reveal-delay: 0.08s; }
.contact-card.reveal:nth-child(3) { --reveal-delay: 0.16s; }
.contact-card.reveal:nth-child(4) { --reveal-delay: 0.24s; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white-15);
}

.btn-secondary:hover {
  border-color: var(--color-white-70);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.site-header.is-light {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(11, 11, 11, 0.08);
  box-shadow: 0 4px 20px rgba(11, 11, 11, 0.08);
}

.site-header.is-light .main-nav a {
  color: var(--color-ink);
  text-shadow: none;
}

.site-header.is-light .nav-toggle span {
  background: var(--color-ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.5));
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  transition: color 0.2s ease;
  position: relative;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

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

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.2s ease;
}

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

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.is-active {
  color: var(--color-accent);
}

.site-header.is-light .main-nav a.is-active {
  color: var(--color-accent);
}

.main-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-white);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.header-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-phone:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.16);
}

.header-cta {
  min-height: 0;
  padding: 10px 20px;
  font-size: 13px;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.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);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-brand-black);
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.85) contrast(1.05) brightness(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 85% at 18% 100%,
      rgba(8, 8, 8, 0.9) 0%,
      rgba(8, 8, 8, 0.62) 35%,
      rgba(8, 8, 8, 0.28) 60%,
      rgba(8, 8, 8, 0) 82%),
    linear-gradient(180deg,
      rgba(8, 8, 8, 0.55) 0%,
      rgba(8, 8, 8, 0) 16%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding-top: var(--header-height);
  padding-bottom: calc(var(--header-height) + 24px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  max-width: 560px;
}

.hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--fs-h1);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  animation: heroRise 1.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-subtitle {
  margin-top: 22px;
  max-width: 440px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: 0.1px;
  color: var(--color-white-70);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  animation: heroRise 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---------- Facts ---------- */

.facts-section {
  position: relative;
  z-index: 5;
  background: var(--color-brand-black);
}

.facts-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  padding: 48px 0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin-top: 32px;
  animation: heroRise 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 220px;
}

.fact-number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 34px;
  color: var(--color-white);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.fact-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-label);
  color: var(--color-white-70);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.fact-divider {
  width: 1px;
  height: 56px;
  background: var(--color-white-15);
  align-self: center;
}

@media (max-width: 600px) {
  .facts-list {
    justify-content: space-between;
    gap: 0;
    padding: 16px 0;
  }

  .fact-divider {
    height: 40px;
  }

  .fact {
    gap: 8px;
    max-width: none;
  }

  .fact-number {
    font-size: 22px;
  }

  .fact-title {
    font-size: 10px;
    letter-spacing: 0.4px;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 992px) {
  .hero-title {
    font-size: 52px;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 860px) {
  .facts-section {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    background: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 90;
  }

  .site-header.is-light .main-nav {
    background: rgba(255, 255, 255, 0.98);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 32px;
  }

  .main-nav a {
    font-size: 20px;
    text-shadow: none;
  }

  .site-header.is-light .main-nav a {
    color: var(--color-ink);
  }

  .site-header.is-light .main-nav a.is-active {
    color: var(--color-accent);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    height: 100svh;
    aspect-ratio: auto;
    display: flex;
  }

  .hero-media {
    inset: 0;
  }

  .hero-img {
    object-position: center 48%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-overlay {
    background:
      radial-gradient(140% 95% at 50% 100%,
        rgba(8, 8, 8, 0.92) 0%,
        rgba(8, 8, 8, 0.6) 35%,
        rgba(8, 8, 8, 0.25) 60%,
        rgba(8, 8, 8, 0) 82%),
      linear-gradient(180deg,
        rgba(8, 8, 8, 0.55) 0%,
        rgba(8, 8, 8, 0) 16%,
        rgba(8, 8, 8, 0) 66%,
        rgba(8, 8, 8, 0.97) 100%);
  }

  .hero-cta-row .btn-secondary {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: transparent;
  }

  .hero-cta-row .btn-secondary:hover {
    background: var(--color-accent-hover);
  }

  .hero-cta-row .call-choice-trigger {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white-15);
  }

  .hero-cta-row .call-choice-trigger:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-white-70);
  }

  .btn {
    min-height: 44px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 64px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo img {
    width: 150px;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: 33px;
  }

  .hero-subtitle {
    max-width: 100%;
  }
}

@media (min-width: 1600px) {
  :root {
    --fs-h1: clamp(38px, 4.4vw, 80px);
  }

  .hero-content.container {
    max-width: none;
    padding-left: 6vw;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-subtitle {
    max-width: 560px;
  }

  .header-inner.container {
    max-width: none;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

/* ---------- About / Über uns ---------- */

.about {
  scroll-margin-top: var(--header-height);
  background: var(--color-brand-black);
  padding: var(--space-section) 0;
}

.about-cta {
  margin-top: 12px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}

.about-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
}

.about-copy p {
  max-width: 560px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-white-70);
  margin-bottom: 18px;
}

.about-copy p strong {
  color: var(--color-white);
  font-weight: 600;
}

.about-services {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 110px;
  scroll-margin-top: var(--header-height);
}

.about-service {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.about-service h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-h3);
  color: var(--color-white);
  margin-bottom: 6px;
}

.about-service p {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body-sm);
  color: var(--color-white-70);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-white-15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-accent);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.3s ease;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.about-service:hover .feature-icon {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
  transform: translateY(-3px);
}

@media (max-width: 860px) {
  .about {
    padding: var(--space-section-md) 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-copy p {
    max-width: none;
  }

  .about-services {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .about {
    padding: var(--space-section-sm) 0;
  }
}

/* ---------- Key Banner ---------- */

.key-banner {
  position: relative;
  height: 50vh;
  min-height: 300px;
  max-height: 540px;
  overflow: hidden;
  background: var(--color-brand-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.key-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.key-banner-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 8, 0.4);
}

.key-banner-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 140px;
  pointer-events: none;
}

.key-banner-fade-top {
  top: 0;
  background: linear-gradient(180deg, var(--color-brand-black) 0%, rgba(10, 8, 8, 0) 100%);
}

.key-banner-fade-bottom {
  bottom: 0;
  background: linear-gradient(0deg, var(--color-brand-black) 0%, rgba(10, 8, 8, 0) 100%);
}

.key-banner-tagline {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
  z-index: 2;
}

.key-banner-tagline p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(19px, 2.6vw, 30px);
  line-height: 1.4;
  max-width: 720px;
  color: var(--color-white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}

@media (max-width: 860px) {
  .key-banner {
    height: 32vh;
    min-height: 220px;
  }

  .key-banner-fade {
    height: 90px;
  }
}

/* ---------- Vehicles / Unsere Fahrzeuge ---------- */

.vehicles {
  scroll-margin-top: var(--header-height);
  background: var(--color-surface);
  padding: var(--space-section) 0;
}

.vehicles-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: var(--space-head-gap);
}

.vehicles-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--fs-h2);
  letter-spacing: -0.3px;
  color: var(--color-ink);
}

.vehicles-subtitle {
  max-width: 380px;
  text-align: right;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body-sm);
  color: var(--color-ink-70);
}

.vehicles-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 11, 11, 0.15);
}

.vehicles-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 21 / 9;
  display: block;
}

.vehicles-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 11, 0.6) 0%, rgba(11, 11, 11, 0) 40%);
}

.vehicles-media-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
}

@media (max-width: 860px) {
  .vehicles {
    padding: var(--space-section-md) 0;
  }

  .vehicles-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: var(--space-head-gap-sm);
  }

  .vehicles-subtitle {
    max-width: none;
    text-align: left;
  }

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

  .vehicles-media-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .vehicles {
    padding: var(--space-section-sm) 0;
  }
}

/* ---------- Aktuelle Angebote ---------- */

.offers {
  background: var(--color-brand-black);
  padding: var(--space-section) 0;
}

.offers-head {
  text-align: left;
  max-width: 900px;
  margin: 0 0 var(--space-head-gap);
}

.offers-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--fs-h2);
  letter-spacing: -0.3px;
  color: var(--color-white);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-white-08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
}

.offer-tag {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.offer-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-h3);
  color: var(--color-white);
  margin-bottom: 10px;
}

.offer-card p {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body-sm);
  color: var(--color-white-70);
}

@media (max-width: 860px) {
  .offers {
    padding: var(--space-section-md) 0;
  }

  .offers-head {
    margin-bottom: var(--space-head-gap-sm);
  }

  .offer-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .offers {
    padding: var(--space-section-sm) 0;
  }
}

/* ---------- Kundenbewertungen ---------- */

.testimonials {
  background: var(--color-surface);
  padding: var(--space-section) 0;
}

.testimonials-head {
  text-align: left;
  max-width: 560px;
  margin: 0 0 var(--space-head-gap);
}

.testimonials-head .eyebrow {
  display: block;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--fs-h2);
  letter-spacing: -0.3px;
  color: var(--color-ink);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonials-cta-row {
  text-align: center;
  margin-top: 40px;
}

.testimonials-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body-sm);
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-ink-15);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.testimonials-cta:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.testimonial-card {
  background: var(--color-surface-alt);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 11, 11, 0.1);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-ink);
  margin-bottom: 20px;
}

.testimonial-author {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body-sm);
  color: var(--color-ink-70);
}

@media (max-width: 860px) {
  .testimonials {
    padding: var(--space-section-md) 0;
  }

  .testimonials-head {
    margin-bottom: var(--space-head-gap-sm);
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: var(--space-section-sm) 0;
  }
}

/* ---------- Häufige Fragen ---------- */

.faq {
  scroll-margin-top: var(--header-height);
  background: var(--color-surface);
  padding: var(--space-section) 0;
}

.faq-head {
  max-width: 560px;
  margin: 0 0 var(--space-head-gap);
  text-align: left;
}

.faq-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--fs-h2);
  letter-spacing: -0.3px;
  color: var(--color-ink);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-surface-alt);
  border-radius: 14px;
  padding: 6px 24px;
  transition: background 0.2s ease;
}

.faq-item[open] {
  background: var(--color-surface-alt);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-body);
  color: var(--color-ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item p {
  max-width: 720px;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body-sm);
  color: var(--color-ink-70);
  padding: 0 0 20px;
}

@media (max-width: 860px) {
  .faq {
    padding: var(--space-section-md) 0;
  }

  .faq-head {
    margin-bottom: var(--space-head-gap-sm);
  }

  .faq-item {
    padding: 4px 18px;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: var(--space-section-sm) 0;
  }
}

/* ---------- Kontakt ---------- */

.contact {
  scroll-margin-top: var(--header-height);
  background: var(--color-surface-alt);
  padding: var(--space-section) 0;
}

.contact-head {
  max-width: 620px;
  margin: 0 0 var(--space-head-gap);
  text-align: left;
}

.contact-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--fs-h2);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  color: var(--color-ink);
}

.contact-subtitle {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-ink-70);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

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

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-ink-08);
  border-radius: 16px;
  padding: 26px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 12px 28px rgba(11, 11, 11, 0.08);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-ink-15);
  border-radius: 12px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-h3);
  margin-bottom: 10px;
  color: var(--color-ink);
}

.contact-card p,
.contact-card address {
  font-style: normal;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body-sm);
  color: var(--color-ink-70);
}

.contact-card .link-strong {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-ink-15);
}

.contact-card .link-strong:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body-sm);
  color: #25D366;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-whatsapp:hover {
  border-color: #25D366;
}

.contact-whatsapp-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-map {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-ink-08);
  min-height: 320px;
  cursor: pointer;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.2) contrast(0.98);
  pointer-events: none;
}

.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0);
  transition: background-color 0.2s ease;
}

.contact-map:hover::after {
  background: rgba(11, 11, 11, 0.08);
}

.contact-footer-row {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-ink-08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-mobilede {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  color: var(--color-ink-70);
}

.contact-mobilede strong {
  color: var(--color-ink);
}

.contact-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.call-choice {
  position: relative;
  display: inline-flex;
}

.call-choice-trigger {
  cursor: pointer;
}

.call-choice-menu {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  z-index: 20;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-ink-08);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(11, 11, 11, 0.16);
}

.call-choice-menu[hidden] {
  display: none;
}

.call-choice-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  transition: background-color 0.15s ease;
}

.call-choice-option:hover {
  background: var(--color-surface-alt);
}

.call-choice-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.call-choice-icon.whatsapp-icon {
  color: #25D366;
}

.hero-cta-row .call-choice-menu {
  background: var(--color-bg-soft);
  border-color: var(--color-white-15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.hero-cta-row .call-choice-option {
  color: var(--color-white);
}

.hero-cta-row .call-choice-option:hover {
  background: var(--color-white-08);
}

.contact-cta .btn-secondary {
  color: var(--color-ink);
  border-color: var(--color-ink-15);
}

.contact-cta .btn-secondary:hover {
  border-color: var(--color-ink);
  background: rgba(11, 11, 11, 0.05);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 280px;
  }
}

@media (max-width: 860px) {
  .contact {
    padding: var(--space-section-md) 0;
  }

  .contact-head {
    margin-bottom: var(--space-head-gap-sm);
  }
}

@media (max-width: 560px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .contact {
    padding: var(--space-section-sm) 0;
  }
}

/* ---------- Impressum / Legal ---------- */

.legal {
  scroll-margin-top: var(--header-height);
  background: var(--color-brand-black);
  padding: var(--space-section) 0;
}

.legal-inner {
  max-width: 760px;
}

.legal h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--fs-h2);
  letter-spacing: -0.3px;
  margin-bottom: 24px;
}

.legal h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-h3);
  margin: 32px 0 12px;
}

.legal p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-white-70);
  margin-bottom: 14px;
}

.legal address {
  font-style: normal;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-white-70);
  margin-bottom: 8px;
}

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

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

@media (max-width: 860px) {
  .legal {
    padding: var(--space-section-md) 0;
  }
}

@media (max-width: 480px) {
  .legal {
    padding: var(--space-section-sm) 0;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-brand-black);
  border-top: 1px solid var(--color-white-08);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-white-08);
}

.footer-brand img {
  height: 24px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body-sm);
  color: var(--color-white-50);
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-white);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: var(--fs-body-sm);
  color: var(--color-white-70);
}

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

.footer-address {
  font-style: normal;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body-sm);
  color: var(--color-white-70);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: var(--fs-label);
  color: var(--color-white-50);
}

@media (max-width: 760px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer {
    padding: 48px 0 24px;
  }
}
