/* ==========================================================================
   Partystall – Stylesheet
   Keine externen Ressourcen: Systemschriften, lokale Bilder, kein Framework.
   ========================================================================== */

/* --------------------------------------------------------------- Tokens -- */
:root {
  color-scheme: light dark;

  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    "Times New Roman", serif;

  --c-bg: #fbf7f2;
  --c-bg-alt: #f3ebe0;
  --c-surface: #ffffff;
  --c-text: #211d18;
  --c-muted: #554c41;
  --c-border: #e2d8c9;
  --c-accent: #9c4a16;
  --c-accent-hover: #7d3a0f;
  --c-on-accent: #ffffff;
  --c-accent-soft: #f7e9da;
  --c-green: #2c6140;
  --c-focus: #0f5bb5;

  --shadow-sm: 0 1px 2px rgb(33 29 24 / 0.06), 0 2px 8px rgb(33 29 24 / 0.05);
  --shadow-md: 0 4px 12px rgb(33 29 24 / 0.08), 0 12px 32px rgb(33 29 24 / 0.07);
  --shadow-lg: 0 8px 24px rgb(33 29 24 / 0.12), 0 24px 60px rgb(33 29 24 / 0.12);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;

  --w-page: 74rem;
  --w-prose: 44rem;
  --gutter: clamp(1.125rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 9vw, 6.5rem);

  --header-h: 4.5rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --c-bg: #15120e;
    --c-bg-alt: #1d1913;
    --c-surface: #221d17;
    --c-text: #f4efe7;
    --c-muted: #c3b7a7;
    --c-border: #3a3228;
    --c-accent: #e8a06a;
    --c-accent-hover: #f2b78a;
    --c-on-accent: #15120e;
    --c-accent-soft: #2c231a;
    --c-green: #7fc79a;
    --c-focus: #7ab8ff;

    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.4);
    --shadow-md: 0 4px 12px rgb(0 0 0 / 0.45);
    --shadow-lg: 0 12px 40px rgb(0 0 0 / 0.55);
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-underline-offset: 0.2em;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 1.6rem + 3.2vw, 4rem);
}
h2 {
  font-size: clamp(1.75rem, 1.4rem + 1.7vw, 2.6rem);
}
h3 {
  font-size: clamp(1.25rem, 1.13rem + 0.6vw, 1.5rem);
}

p,
ul,
ol,
dl,
blockquote,
figure {
  margin: 0 0 1.1em;
}

p {
  text-wrap: pretty;
}

:where(a) {
  color: var(--c-accent);
  text-decoration-thickness: 0.08em;
}

:where(a):hover {
  color: var(--c-accent-hover);
}

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

hr {
  border: 0;
  border-top: 1px solid var(--c-border);
  margin: 2.5rem 0;
}

/* Sichtbarer, kontrastreicher Fokusring – überall gleich. */
:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--c-accent);
  color: var(--c-on-accent);
}

/* ------------------------------------------------------------ Utilities -- */
/* [hidden] muss jede display-Regel schlagen (z. B. .nav-toggle im Mobilmodus). */
[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--c-accent);
  color: var(--c-on-accent);
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
  color: var(--c-on-accent);
}

.wrap {
  width: min(100% - 2 * var(--gutter), var(--w-page));
  margin-inline: auto;
}

.prose {
  max-width: var(--w-prose);
}

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

.section--alt {
  background: var(--c-bg-alt);
}

.section__intro {
  max-width: var(--w-prose);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.lede {
  font-size: 1.15em;
  color: var(--c-muted);
}

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.85rem;
}

/* -------------------------------------------------------------- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.8em 1.5em;
  min-height: 44px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease;
}

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

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

.btn--primary:hover {
  background: var(--c-accent-hover);
  color: var(--c-on-accent);
}

.btn--ghost {
  border-color: currentColor;
  color: var(--c-text);
  background: transparent;
}

.btn--ghost:hover {
  color: var(--c-accent);
}

.btn--on-dark {
  border-color: #fff;
  color: #fff;
  background: rgb(255 255 255 / 0.08);
  backdrop-filter: blur(4px);
}

.btn--on-dark:hover {
  background: #fff;
  color: #21160d;
}

.btn__icon {
  width: 1.1em;
  height: 1.1em;
  flex: none;
  fill: currentColor;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* --------------------------------------------------------------- Header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--c-bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-border);
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header {
    background: var(--c-bg);
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--c-text);
  text-decoration: none;
}

.brand:hover {
  color: var(--c-accent);
}

.brand__mark {
  width: 2.1rem;
  height: 2.1rem;
  flex: none;
}

.brand__tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 0.1em;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  min-height: 44px;
  background: transparent;
  border: 2px solid var(--c-border);
  border-radius: 999px;
  color: var(--c-text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle__bars {
  display: grid;
  gap: 4px;
  width: 18px;
}

.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__link:hover {
  background: var(--c-accent-soft);
  color: var(--c-accent);
}

.site-nav__link[aria-current="page"] {
  color: var(--c-accent);
  box-shadow: inset 0 -2px 0 var(--c-accent);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.site-nav__link--cta {
  margin-left: 0.5rem;
  padding-inline: 1.15rem;
  background: var(--c-accent);
  color: var(--c-on-accent);
  border-radius: 999px;
}

.site-nav__link--cta:hover,
.site-nav__link--cta[aria-current="page"] {
  background: var(--c-accent-hover);
  color: var(--c-on-accent);
  box-shadow: none;
  border-radius: 999px;
}

@media (max-width: 61.25rem) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
    padding: 0.75rem var(--gutter) 1.5rem;
  }

  .site-nav[hidden] {
    display: none;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .site-nav__link {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }

  .site-nav__link[aria-current="page"] {
    background: var(--c-accent-soft);
    box-shadow: inset 3px 0 0 var(--c-accent);
    border-radius: var(--radius-sm);
  }

  .site-nav__link--cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  /* Ohne JavaScript: Menue dauerhaft als normale Liste unter dem Logo. */
  .no-js .site-nav {
    position: static;
    padding: 0 0 1rem;
    border: 0;
    box-shadow: none;
  }
}

/* Der Umschalter ergibt nur mit JavaScript Sinn. */
.no-js .nav-toggle {
  display: none !important;
}

.no-js .site-header__inner {
  flex-wrap: wrap;
  padding-block: 0.5rem;
}

/* ----------------------------------------------------------------- Hero -- */
/* Reiner CSS-Verlauf, kein Hintergrundbild: warmer Holzton mit einem weichen
   Lichtschein oben links und einer dunklen Ecke unten rechts fuer Tiefe.
   Die Farbwerte sind so gewaehlt, dass weisser Text auch an der hellsten
   Stelle des Verlaufs noch ueber 7:1 Kontrast erreicht. */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(24rem, 62vh, 40rem);
  padding-block: clamp(4rem, 10vw, 8rem);
  color: #fff;
  background-color: #33200f;
  background-image: radial-gradient(
      120% 95% at 14% 6%,
      rgb(214 122 48 / 0.32) 0%,
      rgb(214 122 48 / 0) 58%
    ),
    radial-gradient(
      95% 80% at 92% 104%,
      rgb(24 13 5 / 0.62) 0%,
      rgb(24 13 5 / 0) 62%
    ),
    linear-gradient(158deg, #3d2614 0%, #5d3317 46%, #2a1a0e 100%);
  overflow: hidden;
}

.hero--compact {
  min-height: clamp(15rem, 34vh, 22rem);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.hero__content {
  max-width: 48rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.35em;
  text-shadow: 0 2px 24px rgb(0 0 0 / 0.35);
}

.hero__eyebrow {
  color: #f6d3ac;
}

.hero__text {
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.35rem);
  color: #f0e5d8;
  max-width: 36rem;
}

.hero__text strong {
  color: #fff;
}

/* --------------------------------------------------------------- Panels -- */
.card-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin-bottom: 0.35em;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card__icon {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.85rem;
  padding: 0.55rem;
  color: var(--c-accent);
  background: var(--c-accent-soft);
  border-radius: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split {
  display: grid;
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 52rem) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Merkmalsliste mit Häkchen */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1em;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--c-accent-soft);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c-accent) 30%, transparent);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 0.63em;
  width: 0.5rem;
  height: 0.28rem;
  border-left: 2px solid var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  transform: rotate(-45deg);
}

/* Zitat / Hervorhebung */
.callout {
  padding: clamp(1.25rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 2rem);
  background: var(--c-accent-soft);
  border-left: 4px solid var(--c-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.callout > :last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------- Kontaktblock -- */
.contact-band {
  background: var(--c-bg-alt);
  border-block: 1px solid var(--c-border);
}

.contact-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.contact-band h2 {
  margin-bottom: 0.3em;
}

.contact-band p {
  margin-bottom: 0;
  color: var(--c-muted);
  max-width: 34rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  font-weight: 700;
  color: var(--c-accent);
  text-decoration: none;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--c-accent-hover);
  text-decoration: underline;
}

.phone-link svg {
  width: 0.95em;
  height: 0.95em;
  flex: none;
  fill: currentColor;
}

/* -------------------------------------------------------------- Galerie -- */
.gallery {
  display: grid;
  gap: clamp(0.6rem, 1.6vw, 1.1rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery__btn {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery__btn img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__btn:hover {
  box-shadow: var(--shadow-md);
}

.gallery__btn:hover img {
  transform: scale(1.045);
}

.gallery__zoom {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgb(20 14 8 / 0.62);
  color: #fff;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery__btn:hover .gallery__zoom,
.gallery__btn:focus-visible .gallery__zoom {
  opacity: 1;
  transform: none;
}

.gallery__zoom svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Lightbox (natives <dialog>) */
.lightbox {
  width: min(96vw, 78rem);
  max-width: none;
  max-height: 94dvh;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgb(12 8 4 / 0.9);
  backdrop-filter: blur(3px);
}

.lightbox__figure {
  margin: 0;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 78dvh;
  width: auto;
  border-radius: var(--radius);
  background: #1b130b;
  box-shadow: var(--shadow-lg);
}

.lightbox__caption {
  margin: 0;
  padding: 0 0.5rem;
  font-size: 0.95rem;
  color: #ece2d6;
  text-align: center;
  max-width: 48rem;
}

.lightbox__count {
  display: block;
  font-size: 0.82rem;
  color: #b9ab9b;
  margin-top: 0.25rem;
}

.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid rgb(255 255 255 / 0.35);
  border-radius: 50%;
  background: rgb(20 14 8 / 0.75);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.lightbox__btn:hover {
  background: #fff;
  color: #1b130b;
  border-color: #fff;
}

.lightbox__btn svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox__btn--prev {
  left: -0.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__btn--next {
  right: -0.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__btn--close {
  right: 0.5rem;
  top: 0.5rem;
}

@media (max-width: 48rem) {
  .lightbox__btn {
    width: 2.75rem;
    height: 2.75rem;
  }
  .lightbox__btn--prev {
    left: 0.35rem;
  }
  .lightbox__btn--next {
    right: 0.35rem;
  }
  .lightbox__img {
    max-height: 68dvh;
  }
}

/* --------------------------------------------------------- Anfahrt/Steps -- */
.routes {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.route {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.route h3 {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.7em;
}

.route h3::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: none;
  border-radius: 50%;
  background: var(--c-accent);
}

.route p:last-child {
  margin-bottom: 0;
}

.address-card {
  display: grid;
  gap: 0.35rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--c-accent-soft);
  border-radius: var(--radius-lg);
  font-style: normal;
}

.address-card strong {
  font-size: 1.1em;
}

/* Hinweis auf externe Links */
.ext::after {
  content: "";
  display: inline-block;
  width: 0.68em;
  height: 0.68em;
  margin-left: 0.35em;
  background: currentColor;
  vertical-align: baseline;
  -webkit-mask: var(--ext-icon) center / contain no-repeat;
  mask: var(--ext-icon) center / contain no-repeat;
  --ext-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M14 4h6v6"/><path d="M20 4 10 14"/><path d="M18 14v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h5"/></svg>');
}

/* ---------------------------------------------------------- Rechtstexte -- */
.legal h2 {
  margin-top: 2.5em;
  padding-top: 0.6em;
  font-size: clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
  border-top: 1px solid var(--c-border);
}

.legal h2:first-of-type {
  margin-top: 1em;
}

.legal h3 {
  margin-top: 1.8em;
  font-size: 1.15rem;
}

.legal ul {
  padding-left: 1.3rem;
}

.legal li {
  margin-bottom: 0.4em;
}

.legal a {
  overflow-wrap: anywhere;
}

.toc {
  padding: 1.25rem 1.5rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}

.toc h2 {
  margin: 0 0 0.6rem;
  padding: 0;
  border: 0;
  font-size: 1.05rem;
  font-family: var(--font-sans);
}

.toc ol {
  margin: 0;
  padding-left: 1.2rem;
  columns: 2;
  column-gap: 2rem;
}

@media (max-width: 40rem) {
  .toc ol {
    columns: 1;
  }
}

.toc li {
  margin-bottom: 0.3em;
  break-inside: avoid;
}

.meta-note {
  font-size: 0.92rem;
  color: var(--c-muted);
}

/* --------------------------------------------------------------- Footer -- */
.site-footer {
  padding-block: clamp(2.75rem, 6vw, 4rem) 2rem;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  font-size: 0.95rem;
}

.site-footer__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.site-footer h2 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.9em;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.site-footer a {
  color: var(--c-text);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--c-accent);
  text-decoration: underline;
}

.site-footer address {
  font-style: normal;
  color: var(--c-muted);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  color: var(--c-muted);
  font-size: 0.88rem;
}

.site-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------------------------------------- Erhöhter Kontrast/HC -- */
@media (forced-colors: active) {
  .card,
  .route,
  .gallery__btn,
  .site-header {
    border: 1px solid CanvasText;
  }

  .btn {
    border-color: CanvasText;
  }
}

/* ---------------------------------------------------------------- Print -- */
@media print {
  .site-header,
  .site-footer__bottom,
  .nav-toggle,
  .btn-row,
  .lightbox {
    display: none !important;
  }

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

  .hero {
    color: #000;
    background: none;
    min-height: 0;
    padding-block: 0 1rem;
  }

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

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    word-break: break-all;
  }
}
