/* ==========================================================================
   edel aktuelle Modetrends - Stylesheet
   Farbwelt abgeleitet vom Ladenschild: Aubergine + Salbei
   ========================================================================== */

/* --- Design-Tokens -------------------------------------------------------- */

:root {
  /* Farben */
  --plum: #5c2a63;
  --plum-deep: #3b1a41;
  --plum-mid: #7a3d83;
  --plum-soft: #f3edf4;
  --sage: #c6c9ae;
  --sage-deep: #8d9470;
  --sage-soft: #f0f1e7;
  --cream: #faf8f5;
  --paper: #ffffff;
  --ink: #22202a;
  --muted: #5f5b66;
  --line: #e4dfe6;

  /* Typografie */
  --font-head: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.84rem, 0.82rem + 0.1vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1: clamp(1.18rem, 1.1rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.4rem, 1.25rem + 0.75vw, 1.85rem);
  --step-3: clamp(1.7rem, 1.42rem + 1.4vw, 2.6rem);
  --step-4: clamp(2.1rem, 1.6rem + 2.5vw, 3.6rem);

  /* Abstände */
  --space-2xs: 0.375rem;
  --space-xs: 0.75rem;
  --space-s: 1.25rem;
  --space-m: 2rem;
  --space-l: 3rem;
  --space-xl: clamp(3.5rem, 2.5rem + 4vw, 6rem);

  --radius: 3px;
  --radius-lg: 6px;
  --shadow: 0 1px 2px rgba(59, 26, 65, 0.06), 0 8px 24px -12px rgba(59, 26, 65, 0.22);
  --shadow-lg: 0 2px 4px rgba(59, 26, 65, 0.08), 0 24px 48px -20px rgba(59, 26, 65, 0.3);
  --wrap: 72rem;
  --wrap-narrow: 46rem;
  --transition: 200ms ease;
}

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

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  color: var(--plum-deep);
  margin: 0 0 var(--space-s);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 var(--space-s); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--plum);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover { color: var(--plum-mid); }

:focus-visible {
  outline: 3px solid var(--plum-mid);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Hilfsklassen --------------------------------------------------------- */

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2.5rem, var(--wrap-narrow));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-xl);
}

.section--tight { padding-block: var(--space-l); }

.section--plum {
  background: var(--plum-deep);
  color: #f2ecf3;
}

.section--plum h2,
.section--plum h3 { color: #fff; }

.section--sage { background: var(--sage-soft); }

.section--paper { background: var(--paper); }

.lede {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--muted);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: var(--space-xs);
}

.section--plum .eyebrow { color: var(--sage); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: var(--space-s);
  top: -100%;
  z-index: 100;
  background: var(--plum-deep);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.8em 1.6em;
  border: 1px solid var(--plum);
  border-radius: var(--radius);
  background: var(--plum);
  color: #fff;
  font-size: var(--step-0);
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover {
  background: var(--plum-mid);
  border-color: var(--plum-mid);
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--plum);
}

.btn--ghost:hover {
  background: var(--plum-soft);
  color: var(--plum-deep);
  border-color: var(--plum);
}

/* Auf dunklem Grund muss der Ghost-Button hell sein */
.section--plum .btn--ghost,
.hero .btn--ghost,
.pagehead .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.section--plum .btn--ghost:hover,
.hero .btn--ghost:hover,
.pagehead .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-m);
}

/* --- Kopfbereich ---------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s);
  padding-block: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand img {
  width: clamp(112px, 22vw, 148px);
  height: auto;
  border-radius: 2px;
}

/* Navigation */

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--plum-deep);
  font: inherit;
  font-size: var(--step--1);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: background var(--transition);
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition);
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 0.5rem 0;
}

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

.site-nav a[aria-current] {
  color: var(--plum);
  font-weight: 600;
}

.site-nav .subnav a {
  font-size: var(--step--1);
  color: var(--muted);
  padding-left: 0.9rem;
  border-left: 2px solid var(--line);
}

.site-nav .subnav a:hover,
.site-nav .subnav a[aria-current] {
  color: var(--plum);
  border-left-color: var(--sage-deep);
}

/* Mobile: Panel */
@media (max-width: 63.99em) {
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: var(--space-s) 0 var(--space-m);
    max-height: calc(100dvh - 5rem);
    overflow-y: auto;
  }

  .site-nav.is-open { display: block; }

  .site-nav > ul {
    width: min(100% - 2.5rem, var(--wrap));
    margin-inline: auto;
  }

  .site-nav > ul > li + li { border-top: 1px solid var(--line); }

  .site-nav > ul > li > a {
    font-family: var(--font-head);
    font-size: var(--step-1);
    padding: 0.7rem 0 0.35rem;
  }

  .site-nav .subnav {
    padding-bottom: 0.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0 var(--space-s);
  }
}

/* Desktop: horizontale Leiste mit Dropdown */
@media (min-width: 64em) {
  .nav-toggle { display: none; }

  .site-nav > ul {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.2vw, 2rem);
  }

  .site-nav > ul > li {
    position: relative;
  }

  .site-nav > ul > li > a {
    padding: 1.1rem 0;
    font-size: var(--step-0);
  }

  .site-nav > ul > li > a::after {
    content: "";
    display: block;
    height: 2px;
    background: var(--sage-deep);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    margin-top: 2px;
  }

  .site-nav > ul > li > a:hover::after,
  .site-nav > ul > li > a[aria-current]::after { transform: scaleX(1); }

  .site-nav .subnav {
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 13rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .site-nav li:hover > .subnav,
  .site-nav li:focus-within > .subnav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav .subnav a {
    border-left: 0;
    padding: 0.45rem 1rem;
    font-size: var(--step-0);
  }

  .site-nav .subnav a:hover,
  .site-nav .subnav a[aria-current] {
    background: var(--plum-soft);
    border-left: 0;
  }
}

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

.hero {
  position: relative;
  background: var(--plum-deep);
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Schmale Viewports: fast deckender Schleier, damit der Text vor dem
   kontrastreichen Ladenschild lesbar bleibt. */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59, 26, 65, 0.93) 0%, rgba(59, 26, 65, 0.9) 60%, rgba(59, 26, 65, 0.75) 100%);
}

@media (min-width: 48em) {
  .hero__media::after {
    background: linear-gradient(100deg, rgba(59, 26, 65, 0.95) 0%, rgba(59, 26, 65, 0.86) 42%, rgba(59, 26, 65, 0.45) 100%);
  }
}

.hero__inner {
  position: relative;
  padding-block: clamp(4rem, 3rem + 9vw, 8.5rem);
  max-width: 40rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: var(--space-s);
}

.hero p {
  font-size: var(--step-1);
  color: #eee3ef;
  max-width: 34rem;
}

.hero .eyebrow { color: var(--sage); }

/* Kompakter Seitenkopf für Unterseiten */

.pagehead {
  background: var(--plum-deep);
  color: #fff;
  padding-block: clamp(2.75rem, 2rem + 4vw, 4.5rem);
}

.pagehead h1 {
  color: #fff;
  margin-bottom: 0;
}

.pagehead p {
  color: #ddd0e0;
  margin-top: var(--space-xs);
  max-width: 40rem;
  font-size: var(--step-1);
}

.pagehead .eyebrow { color: var(--sage); }

/* Brotkrumen */

.breadcrumb {
  font-size: var(--step--1);
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 0.4rem;
  color: var(--sage-deep);
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--plum); }

/* --- Split: Bild + Text --------------------------------------------------- */

.split {
  display: grid;
  gap: var(--space-m);
  align-items: start;
}

/* Nur wenn ein Bild beteiligt ist, wirkt vertikales Zentrieren gut;
   zwei Textspalten sollen oben bündig stehen. */
.split:has(.split__media) { align-items: center; }

.split + .split { margin-top: var(--space-xl); }

.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

@media (min-width: 48em) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .split--reverse .split__media { order: 2; }
}

/* --- Karten / Teaser ------------------------------------------------------ */

.cards {
  display: grid;
  gap: var(--space-m);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 35%;
}

.card__body {
  padding: var(--space-s) var(--space-s) var(--space-m);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card h3 {
  font-size: var(--step-2);
  margin-bottom: var(--space-2xs);
}

.card p {
  color: var(--muted);
  font-size: var(--step-0);
}

.card__link {
  margin-top: auto;
  padding-top: var(--space-s);
  font-size: var(--step-0);
  color: var(--plum);
  text-decoration: none;
  font-weight: 600;
}

.card__link::after {
  content: " →";
  transition: margin var(--transition);
}

.card:hover .card__link::after { margin-left: 0.2rem; }

/* Ganze Karte klickbar */
.card--link { position: relative; }

.card--link .card__link::before {
  content: "";
  position: absolute;
  inset: 0;
}

/* --- Fakten-Streifen ------------------------------------------------------ */

.facts {
  display: grid;
  gap: var(--space-s) var(--space-m);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.facts li {
  border-top: 2px solid var(--sage);
  padding-top: var(--space-xs);
}

.facts strong {
  display: block;
  font-family: var(--font-head);
  font-size: var(--step-2);
  font-weight: 400;
  color: var(--plum-deep);
  line-height: 1.2;
}

.section--plum .facts strong { color: #fff; }
.section--plum .facts li { border-top-color: var(--sage-deep); }

.facts span {
  font-size: var(--step--1);
  color: var(--muted);
  letter-spacing: 0.04em;
}

.section--plum .facts span { color: #cdbfd1; }

/* --- Öffnungszeiten-Tabelle ----------------------------------------------- */

.hours {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.hours caption {
  text-align: left;
  font-family: var(--font-head);
  font-size: var(--step-2);
  color: var(--plum-deep);
  margin-bottom: var(--space-s);
}

.hours th,
.hours td {
  padding: 0.8rem 0.5rem 0.8rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: baseline;
}

.hours th {
  font-weight: 600;
  white-space: nowrap;
}

.hours td { text-align: right; font-variant-numeric: tabular-nums; }

.hours tr:last-child th,
.hours tr:last-child td { border-bottom: 0; }

.hours .is-closed { color: var(--muted); }

.section--plum .hours th,
.section--plum .hours td { border-bottom-color: rgba(255, 255, 255, 0.18); }

.section--plum .hours caption { color: #fff; }

/* --- Info-Box / Zitat ----------------------------------------------------- */

.box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage-deep);
  border-radius: var(--radius);
  padding: var(--space-s) var(--space-m);
}

.box--sage { background: var(--sage-soft); border-color: var(--sage); border-left-color: var(--sage-deep); }
.box--plum { background: var(--plum-soft); border-color: #e2d5e5; border-left-color: var(--plum); }

.box h3 { font-size: var(--step-1); }

.quote {
  font-family: var(--font-head);
  font-size: var(--step-2);
  line-height: 1.4;
  color: var(--plum-deep);
  border-left: 3px solid var(--sage);
  padding-left: var(--space-s);
  margin: var(--space-m) 0;
}

/* --- Galerie -------------------------------------------------------------- */

.gallery {
  display: grid;
  gap: var(--space-xs);
  /* min(48%, …) sorgt dafür, dass auch auf dem Handy zwei Spalten passen */
  grid-template-columns: repeat(auto-fill, minmax(min(48%, 14rem), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery a {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--plum-soft);
}

.gallery img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 400ms ease, filter var(--transition);
}

.gallery a:hover img,
.gallery a:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(59, 26, 65, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

/* --- Lightbox ------------------------------------------------------------- */

.lightbox {
  border: 0;
  padding: 0;
  /* Auch auf dem Element selbst, damit die Abdunklung unabhängig von
     der ::backdrop-Unterstützung greift. */
  background: rgba(29, 12, 33, 0.95);
  max-width: 100vw;
  max-height: 100dvh;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(29, 12, 33, 0.95);
}

.lightbox__figure {
  margin: 0;
  height: 100%;
  display: grid;
  /* minmax(0, 1fr) statt 1fr: sonst wächst die Bildzeile über den
     Dialog hinaus und die Bildunterschrift wird abgeschnitten. */
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 2.5rem);
  gap: var(--space-xs);
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__caption {
  color: #e9dfeb;
  font-size: var(--step--1);
  text-align: center;
}

.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(29, 12, 33, 0.6);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__btn:hover { background: rgba(122, 61, 131, 0.85); }

.lightbox__btn--prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__btn--next { right: clamp(0.5rem, 2vw, 1.5rem); }

.lightbox__btn--close {
  top: clamp(0.5rem, 2vw, 1.5rem);
  right: clamp(0.5rem, 2vw, 1.5rem);
  transform: none;
}

/* --- Anfahrtsskizze ------------------------------------------------------- */

.map {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-s);
}

.map svg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Kontaktdaten --------------------------------------------------------- */

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-s);
}

.contact-list dt,
.contact-list .label {
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.contact-list .value {
  font-family: var(--font-head);
  font-size: var(--step-1);
  color: var(--plum-deep);
}

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

address {
  font-style: normal;
}

/* --- Team ----------------------------------------------------------------- */

.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-s);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}

.team-list li {
  border-top: 2px solid var(--sage);
  padding-top: var(--space-xs);
}

.team-list .name {
  display: block;
  font-family: var(--font-head);
  font-size: var(--step-1);
  color: var(--plum-deep);
}

.team-list .role {
  font-size: var(--step--1);
  color: var(--muted);
}

/* --- Fließtext-Seiten (Impressum, Datenschutz) ---------------------------- */

.prose h2 {
  font-size: var(--step-2);
  margin-top: var(--space-l);
  padding-top: var(--space-s);
  border-top: 1px solid var(--line);
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.prose h3 {
  font-size: var(--step-1);
  margin-top: var(--space-m);
}

.prose ul {
  padding-left: 1.2rem;
  margin: 0 0 var(--space-s);
}

.prose li { margin-bottom: 0.35rem; }

.prose li::marker { color: var(--sage-deep); }

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

.cta {
  background: var(--plum);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1rem + 4vw, 3.25rem);
  display: grid;
  gap: var(--space-s);
  align-items: center;
}

.cta h2 { color: #fff; }
.cta p { color: #eddff0; margin-bottom: 0; }

.cta .btn {
  background: #fff;
  color: var(--plum-deep);
  border-color: #fff;
}

.cta .btn:hover {
  background: var(--sage-soft);
  border-color: var(--sage-soft);
  color: var(--plum-deep);
}

@media (min-width: 48em) {
  .cta {
    grid-template-columns: 1.4fr auto;
    gap: var(--space-m);
  }

  .cta .btn-row { margin-top: 0; }
}

/* --- Fußbereich ----------------------------------------------------------- */

.site-footer {
  background: var(--plum-deep);
  color: #d9cbdc;
  padding-block: var(--space-xl) var(--space-m);
  font-size: var(--step-0);
}

.site-footer h2 {
  font-size: var(--step-1);
  color: #fff;
  margin-bottom: var(--space-xs);
}

.site-footer a { color: #fff; }

.site-footer__grid {
  display: grid;
  gap: var(--space-m);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li { margin-bottom: 0.35rem; }

.site-footer__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1rem;
  margin: 0;
}

.site-footer__hours dt { color: #d9cbdc; }

.site-footer__hours dd {
  margin: 0;
  color: #fff;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.site-footer__bar {
  margin-top: var(--space-l);
  padding-top: var(--space-s);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-m);
  justify-content: space-between;
  align-items: center;
  font-size: var(--step--1);
}

.site-footer__bar ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
}

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

.notfound {
  text-align: center;
  padding-block: var(--space-xl);
}

.notfound .btn-row { justify-content: center; }

/* --- Bewegung reduzieren -------------------------------------------------- */

@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;
  }
}

/* --- Druck ---------------------------------------------------------------- */

@media print {
  .site-header,
  .site-footer,
  .cta,
  .breadcrumb,
  .skip-link,
  .lightbox { display: none !important; }

  body { background: #fff; color: #000; font-size: 11pt; }

  .hero,
  .pagehead { background: #fff; color: #000; padding-block: 0 1rem; }

  .hero h1,
  .pagehead h1 { color: #000; }

  .hero__media { display: none; }

  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
