/* ==========================================================================
   Ulmer City Taxi 24/7 — Designsystem
   Charcoal / Taxi-Gelb. Farben als oklch mit Hex-Fallback für alte Browser.
   ========================================================================== */

:root {
  --radius: 0.875rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.125rem;
  --radius-2xl: 1.375rem;
  --radius-3xl: 1.625rem;

  --background: #fefdfb;
  --background: oklch(0.995 0.003 95);
  --foreground: #1b1e26;
  --foreground: oklch(0.19 0.012 265);
  --card: #ffffff;
  --card-foreground: #1b1e26;
  --card-foreground: oklch(0.19 0.012 265);
  --primary: #f5b62c;
  --primary: oklch(0.83 0.17 87);
  --primary-foreground: #251f11;
  --primary-foreground: oklch(0.18 0.02 90);
  --muted: #f7f5f2;
  --muted: oklch(0.965 0.005 95);
  --muted-foreground: #6d717c;
  --muted-foreground: oklch(0.52 0.014 265);
  --accent: #f8f0da;
  --accent: oklch(0.95 0.03 92);
  --destructive: #dc2a1c;
  --destructive: oklch(0.58 0.22 27);
  --destructive-foreground: #fdfcfa;
  --destructive-foreground: oklch(0.99 0.003 95);
  --border: #e7e4df;
  --border: oklch(0.91 0.006 95);
  --input: #e7e4df;
  --input: oklch(0.91 0.006 95);
  --ring: #f5b62c;
  --ring: oklch(0.83 0.17 87);
  --ink: #1b1e26;
  --ink: oklch(0.19 0.012 265);
  --ink-foreground: #fbfaf8;
  --ink-foreground: oklch(0.985 0.003 95);
  --ink-muted: #2a2f39;
  --ink-muted: oklch(0.27 0.014 265);
  --surface: #f9f8f5;
  --surface: oklch(0.975 0.004 95);
  --whatsapp: #22a45d;
  --whatsapp: oklch(0.68 0.16 150);

  /* Farbe für gelben Text auf hellen Flächen.
     Bewusst auf das leuchtende Taxi-Gelb gesetzt – so ist der Auftritt
     einheitlich. Hinweis: auf Weiß ergibt das nur 1,7:1 Kontrast und ist
     damit für sehschwache Leser schwer zu entziffern. Wer das ändern will,
     setzt hier oklch(0.54 0.13 72) ein; dann greift der Wert automatisch
     an allen betroffenen Stellen. */
  --gold-text: var(--primary);

  --shadow-soft: 0 12px 40px -16px rgba(30, 34, 46, 0.28);
  --shadow-lift: 0 24px 60px -24px rgba(30, 34, 46, 0.4);
  --shadow-glow: 0 16px 44px -14px rgba(245, 182, 44, 0.5);

  --font-display: "Outfit", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    sans-serif;
}

/* --------------------------------------------------------------- Reset -- */

*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid var(--border);
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 800;
}

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* Sprungmarke für Tastaturnutzer – wird erst beim Fokussieren sichtbar */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 100;
  border-radius: var(--radius-lg);
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.75rem;
}

main:focus {
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------------------------------------------------------- Grundlagen -- */

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.surface-ink {
  background: linear-gradient(160deg, var(--ink), var(--ink-muted));
  color: var(--ink-foreground);
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon--xs {
  width: 0.875rem;
  height: 0.875rem;
}

.icon--lg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Auf hellem Grund gilt das dunklere Textgold … */
.text-primary {
  color: var(--gold-text);
}

/* … auf dunklem Grund bleibt das leuchtende Gelb. */
.surface-ink .text-primary,
.hero .text-primary,
.surface-ink .eyebrow,
.hero .eyebrow {
  color: var(--primary);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-xl);
  padding: 0.875rem 1.75rem;
  font-weight: 700;
  text-align: center;
  transition: transform 0.18s ease, background-color 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

.btn--primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--gold-text);
}

/* Umrandeter Button auf dunklem Grund */
.btn--onink {
  border: 1px solid rgba(251, 250, 248, 0.35);
  color: var(--ink-foreground);
}

.btn--onink:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--lg {
  padding: 1rem 1.75rem;
}

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

.link-strong {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--gold-text);
}

.link-strong:hover {
  text-decoration: underline;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar {
  display: none;
  font-size: 0.75rem;
}

.topbar__inner {
  display: flex;
  height: 2.25rem;
  align-items: center;
  justify-content: space-between;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  opacity: 0.9;
}

.topbar__meta span,
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.topbar__phones {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.topbar__phone {
  font-weight: 600;
  color: var(--primary);
}

.header-bar {
  position: relative;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.header-bar__inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: none;
  border-radius: var(--radius-lg);
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.logo__mark-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(27, 30, 38, 0.8);
  transition: color 0.18s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--gold-text);
}

.nav__group {
  position: relative;
}

.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 16rem;
  padding-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-inner {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background-color: var(--card);
  box-shadow: var(--shadow-lift);
}

.nav__dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav__dropdown a:hover {
  background-color: var(--accent);
  color: var(--gold-text);
}

.header-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.18s ease, color 0.18s ease;
}

.icon-btn:hover {
  border-color: var(--primary);
  color: var(--gold-text);
}

.icon-btn > span {
  display: flex;
}

.header-bar__cta {
  display: none;
  border-radius: var(--radius-lg);
  background-color: var(--primary);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
  transition: transform 0.18s ease;
}

.header-bar__cta:hover {
  transform: translateY(-2px);
}

/* ------------------------------------------------- Burger-Schaltfläche -- */

.burger {
  position: relative;
}

.burger__bar,
.burger__bar::before,
.burger__bar::after {
  position: absolute;
  width: 1.125rem;
  height: 2px;
  border-radius: 2px;
  background-color: currentColor;
}

.burger__bar {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -0.5625rem;
  transition: background-color 0.15s ease 0.1s;
}

.burger__bar::before,
.burger__bar::after {
  content: "";
  left: 0;
  transition: top 0.2s ease 0.15s, transform 0.25s ease;
}

.burger__bar::before {
  top: -0.375rem;
}

.burger__bar::after {
  top: 0.375rem;
}

.burger.is-open .burger__bar {
  background-color: transparent;
  transition-delay: 0s;
}

.burger.is-open .burger__bar::before,
.burger.is-open .burger__bar::after {
  top: 0;
  transition: top 0.2s ease, transform 0.25s ease 0.15s;
}

.burger.is-open .burger__bar::before {
  transform: rotate(45deg);
}

.burger.is-open .burger__bar::after {
  transform: rotate(-45deg);
}

/* ------------------------------------------------------- Mobiles Menü -- */

.mnav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 45;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--shadow-lift);
  max-height: calc(100dvh - 4rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.75rem);
  transition: opacity 0.25s ease, transform 0.25s ease,
    visibility 0s linear 0.25s;
}

.mnav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}

.mnav__inner {
  display: flex;
  flex-direction: column;
  padding-block: 0.5rem 1.25rem;
}

/* Einträge fahren beim Öffnen leicht versetzt ein */
.mnav.is-open .mnav__link,
.mnav.is-open .mnav__group,
.mnav.is-open .mnav__cta,
.mnav.is-open .mnav__contact {
  animation: mnav-in 0.32s ease both;
}

.mnav.is-open > .mnav__inner > *:nth-child(1) { animation-delay: 0.02s; }
.mnav.is-open > .mnav__inner > *:nth-child(2) { animation-delay: 0.06s; }
.mnav.is-open > .mnav__inner > *:nth-child(3) { animation-delay: 0.1s; }
.mnav.is-open > .mnav__inner > *:nth-child(4) { animation-delay: 0.14s; }
.mnav.is-open > .mnav__inner > *:nth-child(5) { animation-delay: 0.18s; }
.mnav.is-open > .mnav__inner > *:nth-child(6) { animation-delay: 0.22s; }
.mnav.is-open > .mnav__inner > *:nth-child(7) { animation-delay: 0.26s; }

@keyframes mnav-in {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.mnav__link,
.mnav__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(231, 228, 223, 0.7);
  padding-block: 0.9375rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  color: var(--foreground);
}

.mnav__link:active,
.mnav__toggle:active {
  color: var(--gold-text);
}

.mnav__chevron {
  flex: none;
  color: var(--muted-foreground);
  transition: transform 0.28s ease, color 0.28s ease;
}

.mnav__group.is-open .mnav__chevron {
  transform: rotate(180deg);
  color: var(--gold-text);
}

.mnav__group.is-open > .mnav__toggle {
  color: var(--gold-text);
  border-bottom-color: transparent;
}

/* Aufklappen ohne feste Höhe: 0fr -> 1fr */
.mnav__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.mnav__group.is-open .mnav__panel {
  grid-template-rows: 1fr;
}

.mnav__panel-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mnav__sub {
  border-bottom: 1px solid rgba(231, 228, 223, 0.55);
  padding: 0.8125rem 0 0.8125rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  border-left: 2px solid var(--border);
  margin-left: 0.125rem;
  transition: color 0.15s ease, border-left-color 0.15s ease;
}

.mnav__sub:active {
  color: var(--gold-text);
  border-left-color: var(--primary);
}

.mnav__group.is-open .mnav__panel-inner > :last-child {
  border-bottom: 1px solid rgba(231, 228, 223, 0.7);
}

.mnav__cta {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-lg);
  background-color: var(--primary);
  padding-block: 0.875rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}

.mnav__contact {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.mnav__contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding-block: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.mnav__contact a:active {
  border-color: var(--primary);
  color: var(--gold-text);
}

/* Seite hinter dem offenen Menü nicht mitscrollen lassen */
body.has-open-nav {
  overflow: hidden;
}

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

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -10;
  background: linear-gradient(
    to right,
    var(--ink),
    rgba(27, 30, 38, 0.8) 45%,
    rgba(27, 30, 38, 0.2)
  );
}

.hero__inner {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: center;
  padding-block: 5rem;
  color: var(--ink-foreground);
}

.hero__badge {
  width: fit-content;
  border-radius: 9999px;
  background-color: var(--destructive);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--destructive-foreground);
}

.hero__title {
  margin-top: 1.25rem;
  max-width: 48rem;
  font-size: 2.25rem;
  line-height: 1.03;
  font-weight: 800;
}

.hero__text {
  margin-top: 1.25rem;
  max-width: 36rem;
  color: rgba(251, 250, 248, 0.85);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Seiten-Hero der Unterseiten */

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero__glow {
  pointer-events: none;
  position: absolute;
  right: -6rem;
  top: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  background-color: rgba(245, 182, 44, 0.2);
  filter: blur(64px);
}

.page-hero__inner {
  position: relative;
  padding-block: 4rem;
}

.page-hero__eyebrow {
  display: inline-block;
  border-radius: 9999px;
  background-color: rgba(245, 182, 44, 0.15);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.page-hero__title {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: 2.25rem;
  line-height: 1.05;
}

.page-hero__text {
  margin-top: 1.25rem;
  max-width: 42rem;
  color: rgba(251, 250, 248, 0.75);
}

/* ------------------------------------------------------------ Sections -- */

.section {
  padding-block: 4rem;
  background-color: var(--background);
}

.section--muted {
  background-color: var(--surface);
}

.section__head {
  margin-inline: auto;
  margin-bottom: 3rem;
  max-width: 42rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-text);
}

.section__title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
}

.section__text {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.h2 {
  font-size: 1.875rem;
}

.h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.lead {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

/* --------------------------------------------------------------- Grids -- */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--split {
  gap: 3rem;
  align-items: center;
}

.stack-sm > * + * {
  margin-top: 1rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background-color: var(--card);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.18s ease, color 0.18s ease;
}

a.chip:hover {
  border-color: var(--primary);
  color: var(--gold-text);
}

/* --------------------------------------------------------------- Cards -- */

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.card--lift {
  padding: 2rem;
  box-shadow: var(--shadow-lift);
}

.feature-card {
  display: block;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

a.feature-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 182, 44, 0.5);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background-color: var(--accent);
  color: var(--gold-text);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.feature-card:hover .icon-badge {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.feature-card__title {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.feature-card__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.feature-card__meta {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-text);
}

/* ---------------------------------------------------------- Checkliste -- */

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(27, 30, 38, 0.85);
}

.checklist__mark {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex: none;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.checklist__mark .icon {
  width: 0.875rem;
  height: 0.875rem;
  stroke-width: 3;
}

/* Nummerierte Ablaufliste */

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.steps li {
  display: flex;
  gap: 1rem;
}

.steps__num {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  flex: none;
  border-radius: 9999px;
  background-color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.steps li span:last-child {
  font-size: 0.875rem;
  color: rgba(27, 30, 38, 0.85);
}

/* ---------------------------------------------------------- Bildbänder -- */

.image-band {
  margin-top: -2rem;
}

.image-band img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-lift);
}

.image-band figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.image-band-wrap {
  background-color: var(--background);
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.rounded-photo {
  border-radius: var(--radius-3xl);
  object-fit: cover;
  box-shadow: var(--shadow-lift);
  width: 100%;
}

/* --------------------------------------------------------- Breadcrumbs -- */

.breadcrumbs {
  background-color: var(--surface);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-block: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs a:hover {
  color: var(--gold-text);
}

.breadcrumbs__current {
  font-weight: 600;
  color: var(--foreground);
}

/* ----------------------------------------------------------------- FAQ -- */

.faq {
  margin-inline: auto;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.faq summary > span {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.faq__toggle {
  flex: none;
  color: var(--gold-text);
  font-size: 1.25rem;
  line-height: 1.2;
  transition: transform 0.2s ease;
}

.faq details[open] .faq__toggle {
  transform: rotate(45deg);
}

.faq p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

/* ------------------------------------------------------------ CTA-Band -- */

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-block: 4rem;
  text-align: center;
}

.cta-band__text {
  max-width: 36rem;
  color: rgba(251, 250, 248, 0.75);
}

/* ------------------------------------------------------------ Formular -- */

.form {
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-lift);
}

.form--soft {
  box-shadow: var(--shadow-soft);
}

.form__grid {
  display: grid;
  gap: 1rem;
}

.form__label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.field {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: var(--radius-xl);
  background-color: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 182, 44, 0.3);
}

textarea.field {
  resize: vertical;
  min-height: 8rem;
}

.form__note {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.form__status {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-success {
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lift);
}

.form-success .icon {
  margin-inline: auto;
  width: 3rem;
  height: 3rem;
  color: var(--gold-text);
}

.form-success h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.form-success p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.is-hidden {
  display: none !important;
}

/* Honigtopf gegen Spam-Bots: für Menschen unsichtbar, für Bots ein Köder.
   Bewusst nicht display:none, das erkennen manche Bots. */
.honigtopf {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Aufklappbare Zusatzangaben */
.form__more {
  margin-top: 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.form__more summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.form__more summary::before {
  content: "+";
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  border-radius: 9999px;
  background-color: var(--accent);
  color: var(--primary-foreground);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.form__more[open] summary::before {
  content: "−";
}

.form__more-hint {
  font-weight: 400;
  color: var(--muted-foreground);
}

/* Kontrollkästchen */
.check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
  cursor: pointer;
}

.check input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 1.125rem;
  height: 1.125rem;
  flex: none;
  accent-color: var(--primary);
  cursor: pointer;
}

.form__checks {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.check--privacy {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
}

.check--privacy a {
  font-weight: 600;
  color: var(--gold-text);
  text-decoration: underline;
}

/* Fehlermeldungen */
.field.has-error,
.check input.has-error {
  border-color: var(--destructive);
  box-shadow: 0 0 0 3px rgba(220, 42, 28, 0.15);
}

.form__errors {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  background-color: rgba(220, 42, 28, 0.08);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--destructive);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* ------------------------------------------------- Einwilligungsbanner -- */

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  border-top: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: 0 -12px 40px -18px rgba(30, 34, 46, 0.35);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.consent.is-visible {
  transform: translateY(0);
}

.consent__inner {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consent__title {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.consent__text p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted-foreground);
}

.consent__text a {
  font-weight: 600;
  color: var(--gold-text);
  text-decoration: underline;
}

.consent__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.consent__actions .btn {
  width: 100%;
  padding-block: 0.75rem;
}

/* Damit die schwebenden Buttons das Banner nicht überdecken */
.consent.is-visible ~ .fab,
body:has(.consent.is-visible) .fab {
  bottom: 11rem;
}

@media (min-width: 768px) {
  .consent__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 1rem;
  }

  .consent__actions {
    flex-direction: row;
    flex: none;
  }

  .consent__actions .btn {
    width: auto;
    white-space: nowrap;
  }

  body:has(.consent.is-visible) .fab {
    bottom: 6.5rem;
  }
}

/* ------------------------------------------------- Kontakt & Profildaten -- */

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.contact-list .icon {
  flex: none;
  color: var(--gold-text);
}

.contact-list__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.contact-list strong,
.contact-list a.is-strong {
  font-weight: 700;
}

.hours-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hours-list dt {
  color: var(--muted-foreground);
}

.hours-list dd {
  margin: 0;
  font-weight: 600;
}

.profile-address {
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.profile-address .is-strong {
  font-weight: 600;
  color: var(--foreground);
}

.profile-label {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.profile-value {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(27, 30, 38, 0.85);
}

.profile-highlights {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.18s ease;
}

.quick-link:hover {
  border-color: var(--primary);
}

.quick-link .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
  color: var(--gold-text);
}

.quick-link strong {
  display: block;
  font-weight: 700;
}

.quick-link span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.numbered {
  margin-top: 0.5rem;
  padding-left: 1.125rem;
  list-style: decimal;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.numbered li {
  margin-top: 0.25rem;
}

.map-frame {
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 20rem;
  border: 0;
}

.map-consent {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--surface);
  padding: 2rem 1.25rem;
  text-align: center;
}

.map-consent .icon {
  color: var(--primary);
}

.map-consent__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.map-consent__text {
  max-width: 30rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* -------------------------------------------------------------- Kennzahlen */

.stats {
  border-bottom: 1px solid var(--border);
  background-color: var(--card);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding-block: 2.5rem;
}

.stats__value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--gold-text);
}

.stats__label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

/* ------------------------------------------------------------ Textseiten -- */

.prose {
  margin-inline: auto;
  max-width: 48rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(27, 30, 38, 0.85);
}

.prose > div + div {
  margin-top: 2rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.prose p {
  margin-top: 0.5rem;
}

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

.site-footer {
  margin-top: 6rem;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.site-footer__about {
  margin-top: 1rem;
  max-width: 20rem;
  font-size: 0.875rem;
  color: rgba(251, 250, 248, 0.7);
}

.site-footer__copy {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(251, 250, 248, 0.5);
}

.site-footer h3 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.site-footer h3 + ul {
  margin-top: 1rem;
}

.site-footer h3.is-spaced {
  margin-top: 2rem;
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(251, 250, 248, 0.75);
}

.site-footer ul.is-contact {
  gap: 0.75rem;
}

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

.site-footer li a,
.site-footer li > span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.site-footer .icon {
  flex: none;
  color: var(--primary);
  margin-top: 0.125rem;
}

.site-footer__legal {
  margin-top: 1.25rem;
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(251, 250, 248, 0.6);
}

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

.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fab a {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  transition: transform 0.18s ease;
}

.fab a:hover {
  transform: scale(1.05);
}

.fab__call {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}

.fab__whatsapp {
  background-color: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-lift);
}

/* ------------------------------------------------------------------- 404 -- */

.error-page {
  display: flex;
  min-height: 60vh;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.error-page__code {
  font-size: 4.5rem;
  font-weight: 700;
}

/* ================================================== Responsive Breakpoints */

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

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

  .form__grid--2 .is-full {
    grid-column: span 2;
  }

  .header-bar__cta {
    display: inline-flex;
  }

  .form {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .topbar {
    display: block;
  }

  .header-bar__inner {
    height: 5rem;
  }

  .logo__text {
    font-size: 1.25rem;
  }

  .mnav {
    max-height: calc(100dvh - 5rem);
  }

  .hero__inner {
    min-height: 640px;
  }

  .hero__title {
    font-size: 3.75rem;
  }

  .hero__text {
    font-size: 1.125rem;
  }

  .page-hero__inner {
    padding-block: 6rem;
  }

  .page-hero__title {
    font-size: 3.75rem;
  }

  .page-hero__text {
    font-size: 1.125rem;
  }

  .section {
    padding-block: 6rem;
  }

  .section__title,
  .h2 {
    font-size: 2.25rem;
  }

  .cta-band__inner {
    padding-block: 5rem;
  }

  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-band {
    margin-top: -3rem;
  }

  .image-band img {
    aspect-ratio: 16 / 7;
  }

  .image-band-wrap {
    padding-bottom: 6rem;
  }

  .stats__value {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .header-bar__actions .icon-btn--call,
  .header-bar__actions .burger {
    display: none;
  }

  .mnav {
    display: none;
  }

  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .grid--split-wide {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .grid--split-narrow {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero__title {
    font-size: 4.5rem;
  }
}

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

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

@media print {
  .site-header,
  .fab,
  .cta-band,
  .site-footer {
    display: none;
  }
}
