/* Taxi 25000 – helles, vertrauensorientiertes Layout
   Animiert, responsiv, prefers-reduced-motion */

:root {
  --bg: #f4f1eb;
  --bg-subtle: #ebe6dc;
  --surface: #ffffff;
  --ink: #15181d;
  --muted: #5a5f68;
  --line: rgba(21, 24, 29, 0.12);
  --brand: #d4a012;
  --brand-dark: #a67c0a;
  --navy: #1c2430;
  --teal: #0f766e;
  --teal-soft: rgba(15, 118, 110, 0.12);
  --shadow: 0 18px 50px rgba(28, 36, 48, 0.08);
  --shadow-hover: 0 22px 60px rgba(28, 36, 48, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-total: 108px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 0.96rem + 0.15vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  padding-top: var(--header-total);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 2000;
  padding: 0.65rem 1.25rem;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: transform 0.35s var(--ease);
}

.skip-link:focus {
  transform: translate(-50%, 0);
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.container {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: calc(var(--header-total) + 16px);
}

/* Top bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  animation: bar-enter 0.58s var(--ease) both;
}

@keyframes bar-enter {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  min-height: 36px;
  padding: 0.35rem 0;
}

.top-bar__tag {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.top-bar__phone {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s;
}

.top-bar__phone:hover {
  color: var(--brand);
}

.top-bar__hours {
  opacity: 0.75;
}

@media (max-width: 520px) {
  .top-bar__hours {
    display: none;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s var(--ease);
  animation: header-enter 0.62s var(--ease) 0.06s both;
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo__mark {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.logo__img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.logo:hover .logo__img {
  transform: scale(1.04);
}

.logo__img--header {
  max-width: 200px;
  max-height: 48px;
}

.logo__img--footer {
  max-width: 120px;
  max-height: 36px;
}

@media (max-width: 420px) {
  .logo__img--header {
    max-width: 168px;
    max-height: 40px;
  }
}

/* Graue Foto-/Logo-Platzhalter (Zielformate siehe assets/BILDMASSE.txt) */
.media-placeholder {
  position: relative;
  display: block;
  background: linear-gradient(160deg, #d0d0d0 0%, #b0b0b0 48%, #c8c8c8 100%);
  border: 2px dashed rgba(21, 24, 29, 0.22);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  overflow: hidden;
}

.media-placeholder__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(21, 24, 29, 0.38);
  text-align: center;
  line-height: 1.35;
  pointer-events: none;
}

.media-placeholder__ratio {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.media-placeholder__caption {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.media-placeholder--logo {
  width: 200px;
  height: 48px;
  border-radius: 10px;
}

.media-placeholder--logo-footer {
  width: 120px;
  height: 36px;
  border-radius: 8px;
}

.media-placeholder--logo .media-placeholder__label,
.media-placeholder--logo-footer .media-placeholder__label {
  font-size: 0.58rem;
}

.media-placeholder--hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 340px;
  border-radius: calc(var(--radius) + 4px);
}

.media-placeholder--banner {
  width: 100%;
  aspect-ratio: 3 / 1;
  max-height: 300px;
  border-radius: var(--radius);
}

.media-placeholder--card {
  width: 100%;
  aspect-ratio: 3 / 2;
}

.media-placeholder--company {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.media-placeholder--contact {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
}

/* Echte Fotos: gleicher Rahmen wie Platzhalter (gestrichelt, abgerundet) */
.media-frame {
  position: relative;
  display: block;
  border: 2px dashed rgba(21, 24, 29, 0.22);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  overflow: hidden;
  background: linear-gradient(160deg, #d0d0d0 0%, #b0b0b0 48%, #c8c8c8 100%);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s;
}

.media-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(28, 36, 48, 0.12);
  border-color: rgba(15, 118, 110, 0.35);
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.045);
}

.media-frame--hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 340px;
  border-radius: calc(var(--radius) + 4px);
}

.media-frame--banner {
  width: 100%;
  aspect-ratio: 3 / 1;
  max-height: 300px;
  border-radius: var(--radius);
}

.media-frame--card {
  width: 100%;
  aspect-ratio: 3 / 2;
}

.media-frame--company {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.media-frame--contact {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
}

.section--media-banner {
  padding-top: 1rem;
  padding-bottom: 0;
}

.section--media-banner .container {
  padding-bottom: 0.75rem;
}

.photo-banner {
  margin: 0;
}

.hero__photo {
  margin: 0;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand__mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.35rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.25s;
}

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

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
  box-shadow: inset 0 -2px 0 var(--brand);
  padding-bottom: 2px;
}

@media (min-width: 961px) {
  .nav a:not([aria-current="page"]) {
    position: relative;
  }

  .nav a:not([aria-current="page"])::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand), var(--teal));
    transition: width 0.38s var(--ease);
  }

  .nav a:not([aria-current="page"]):hover::after {
    width: 100%;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-call {
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  font-size: 0.9rem;
}

.header-call:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.menu-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

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

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

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

@media (max-width: 960px) {
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-total);
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(100dvh - var(--header-total));
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s var(--ease), opacity 0.3s, visibility 0.3s;
  }

  .nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-size: 1.2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}

.btn--sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #1a1303;
  box-shadow: 0 8px 24px rgba(212, 160, 18, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 160, 18, 0.45);
}

.btn--dark {
  background: var(--navy);
  color: #fff;
}

.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--outline:hover {
  border-color: var(--navy);
  background: rgba(28, 36, 48, 0.04);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(212, 160, 18, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, var(--teal-soft), transparent 50%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  z-index: 0;
  overflow: hidden;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: -30% -20%;
  background:
    radial-gradient(circle at 25% 30%, rgba(212, 160, 18, 0.11), transparent 42%),
    radial-gradient(circle at 78% 65%, rgba(15, 118, 110, 0.09), transparent 38%);
  animation: hero-bg-drift 22s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes hero-bg-drift {
  from {
    transform: translate(0, 0) rotate(0deg);
  }
  to {
    transform: translate(2%, -3%) rotate(2deg);
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw + 1rem, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero__title em {
  font-style: italic;
  color: var(--teal);
}

.hero__lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.05rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.hero__facts li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero__facts strong {
  color: var(--ink);
  font-weight: 800;
}

.hero__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  animation: panel-float 7s ease-in-out infinite;
}

@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero-panel__label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-dark);
}

.hero-panel__intro {
  margin: 0.35rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.hero-panel__steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.hero-panel__steps li:last-child {
  border-bottom: none;
}

.hero-panel__steps span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-panel__route {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.5rem 0;
}

.route-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(212, 160, 18, 0.25);
  flex-shrink: 0;
}

.route-dot--end {
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}

.route-line {
  flex: 1;
  height: 3px;
  margin: 0 0.35rem;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 10px,
    transparent 10px 18px
  );
  border-radius: 2px;
  animation: route-dash 1.2s linear infinite;
}

@keyframes route-dash {
  to {
    background-position: 18px 0;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.68s var(--ease),
    transform 0.68s var(--ease),
    filter 0.68s var(--ease);
  transition-delay: calc(var(--i, 0) * 75ms);
  filter: blur(2px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Hero: seitliches Einblenden */
.reveal.reveal--from-left {
  transform: translate3d(clamp(-1.75rem, -5vw, -2.75rem), 0, 0) scale(0.985);
  filter: blur(1.5px);
}

.reveal.reveal--from-left.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal.reveal--from-right {
  transform: translate3d(clamp(1.75rem, 5vw, 2.75rem), 0, 0) scale(0.985);
  filter: blur(1.5px);
}

.reveal.reveal--from-right.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.hero .reveal {
  transition-duration: 0.78s;
  transition-delay: calc(var(--i, 0) * 95ms);
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin: 0 0 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw + 0.75rem, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.section-desc {
  margin: 0;
  color: var(--muted);
  max-width: 44rem;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 40rem;
}

.section-head--center .section-desc {
  margin-inline: auto;
}

.section-desc--center {
  margin-inline: auto;
  text-align: center;
  max-width: 38rem;
}

/* Startseite: Leistungen + Krankentransport hervorgehoben */
.section--home-services {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.home-service-spotlight {
  position: relative;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(155deg, rgba(15, 118, 110, 0.12) 0%, var(--surface) 42%, rgba(212, 160, 18, 0.12) 100%);
  border: 2px solid rgba(15, 118, 110, 0.4);
  box-shadow: 0 20px 50px rgba(28, 36, 48, 0.1);
}

.home-service-spotlight__badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1303;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(212, 160, 18, 0.35);
}

.home-service-spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 700;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.home-service-spotlight__text {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--muted);
}

.home-service-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-services-label {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--teal);
}

.home-services-more {
  margin-top: 2rem;
}

.service-tags--home {
  margin-bottom: 0;
}

/* Strip */
.section--strip {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.strip-grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .strip-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .strip-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.strip-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}

.strip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 118, 110, 0.25);
}

.strip-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.strip-card__text {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.strip-card__link {
  font-weight: 800;
  color: var(--teal);
  text-decoration: none;
  text-underline-offset: 0.2em;
  transition: color 0.25s, text-decoration-color 0.25s;
  text-decoration: underline solid transparent;
}

.strip-card__link:hover {
  text-decoration-color: currentColor;
  color: var(--brand-dark);
}

/* Booking */
.section--booking {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 100%);
}

.booking-layout {
  max-width: 800px;
  margin-inline: auto;
}

.form-feedback {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  white-space: pre-line;
}

.form-feedback[hidden] {
  display: none !important;
}

.form-feedback--success {
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(15, 118, 110, 0.35);
}

.form-feedback--error {
  background: rgba(185, 28, 28, 0.08);
  color: #991b1b;
  border: 1px solid rgba(185, 28, 28, 0.35);
}

/* Erfolgs-Modal (Fahrt anfragen) */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
}

.booking-modal[hidden] {
  display: none !important;
}

.booking-modal.is-open {
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 48, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: booking-modal-backdrop 0.35s var(--ease) both;
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: min(85vh, 520px);
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--surface);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(28, 36, 48, 0.22);
  text-align: center;
  animation: booking-modal-panel 0.45s var(--ease) both;
}

.booking-modal__icon {
  color: var(--teal);
  margin: 0 auto 1rem;
  line-height: 0;
}

.booking-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.booking-modal__body {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: left;
  white-space: pre-line;
}

.booking-modal__btn {
  margin: 0;
}

@keyframes booking-modal-backdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes booking-modal-panel {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-modal__backdrop,
  .booking-modal__panel {
    animation: none;
  }
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-field--captcha .form-captcha-input {
  max-width: 7rem;
}

.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.booking-fieldset {
  border: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.booking-fieldset legend {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0 0 0.75rem;
  border-bottom: 2px solid var(--brand);
  width: 100%;
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row--2 {
  grid-template-columns: 1fr;
}

.form-row--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }

  .form-row--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.form-field span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fafaf8;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.form-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  cursor: pointer;
}

.form-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Company */
.company-grid {
  display: grid;
  gap: 2rem;
}

.company-col--main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.company-photo {
  margin: 0;
}

@media (min-width: 880px) {
  .company-grid {
    grid-template-columns: 1.15fr minmax(260px, 420px);
    align-items: start;
  }

  .company-photo {
    position: sticky;
    top: calc(var(--header-total) + 1rem);
  }
}

.company-text p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.company-text p:first-of-type {
  color: var(--ink);
}

.company-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-highlights li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}

.company-highlights li:hover {
  transform: translateX(4px);
}

.company-highlights strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.company-highlights span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Services */
.section--services {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.service-tags span {
  padding: 0.4rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.service-tags span:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 160, 18, 0.45);
  box-shadow: 0 8px 22px rgba(28, 36, 48, 0.08);
}

.service-tags.is-visible span {
  animation: tag-pop 0.5s var(--ease) backwards;
  animation-delay: calc(var(--i, 0) * 40ms);
}

.service-tags span:nth-child(1) {
  --i: 0;
}

.service-tags span:nth-child(2) {
  --i: 1;
}

.service-tags span:nth-child(3) {
  --i: 2;
}

.service-tags span:nth-child(4) {
  --i: 3;
}

.service-tags span:nth-child(5) {
  --i: 4;
}

.service-tags span:nth-child(6) {
  --i: 5;
}

.service-tags span:nth-child(7) {
  --i: 6;
}

.service-tags span:nth-child(8) {
  --i: 7;
}

.service-tags span:nth-child(9) {
  --i: 8;
}

.service-tags span:nth-child(10) {
  --i: 9;
}

.service-tags span:nth-child(11) {
  --i: 10;
}

.service-tags span:nth-child(12) {
  --i: 11;
}

@keyframes tag-pop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.service-columns {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .service-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-col {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  background: var(--bg);
}

.service-col h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.service-col ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-col li {
  margin-bottom: 0.4rem;
}

/* Fleet */
.fleet-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fleet-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.fleet-card__media {
  border-bottom: 1px solid var(--line);
}

.fleet-card__media .media-placeholder,
.fleet-card__media .media-frame {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

.fleet-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.fleet-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), var(--teal));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease);
  z-index: 1;
  pointer-events: none;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.fleet-card:hover::before {
  transform: scaleY(1);
}

.fleet-card__meta {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
  margin-bottom: 0.35rem;
}

.fleet-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.fleet-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Quotes */
.section--voices {
  background: var(--navy);
  color: #e8eaef;
}

.section--voices .section-eyebrow {
  color: var(--brand);
}

.section--voices .section-title {
  color: #fff;
}

.quote-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .quote-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quote {
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background 0.35s, transform 0.35s var(--ease);
}

.quote:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.quote blockquote {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.quote figcaption {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* FAQ */
.faq-wrap {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item[open] {
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-weight: 800;
  color: var(--teal);
  transition: transform 0.35s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact */
.section--contact {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-figure {
  margin: 0;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }

  .contact-figure {
    grid-column: 1 / -1;
    max-width: 720px;
  }

  .contact-block {
    grid-column: 1;
  }

  .contact-aside {
    grid-column: 2;
    grid-row: 2;
  }
}

.contact-block p {
  color: var(--muted);
  max-width: 36rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.contact-list a {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--teal);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
}

.contact-extra {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.contact-extra__title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.contact-extra__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-extra__text:last-child {
  margin-bottom: 0;
}

.contact-aside {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-aside__title {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.contact-aside__links {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.contact-aside__links a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.contact-aside__links a:hover {
  color: var(--teal);
}

.contact-aside__links li {
  margin-bottom: 0.35rem;
}

.contact-aside__note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 1.75rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-copy {
  margin: 0;
  flex: 1;
  text-align: center;
}

@media (max-width: 640px) {
  .footer-copy {
    flex-basis: 100%;
    order: 3;
    text-align: left;
  }
}

.footer-meta a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

.footer-dot {
  margin: 0 0.35rem;
  opacity: 0.4;
}

/* Unterseiten / Rechtstext */
.page-hero {
  padding: clamp(2rem, 5vw, 3rem) 0 1.5rem;
  background: linear-gradient(125deg, var(--surface) 0%, var(--bg) 45%, var(--surface) 100%);
  background-size: 220% 220%;
  animation: page-hero-glow 16s ease-in-out infinite alternate;
  border-bottom: 1px solid var(--line);
}

@keyframes page-hero-glow {
  from {
    background-position: 0% 40%;
  }
  to {
    background-position: 100% 60%;
  }
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.legal-content {
  max-width: 720px;
  margin-inline: auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

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

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

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content .legal-note {
  font-size: 0.9rem;
  padding: 1rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  color: var(--ink);
}
