/* =========================================================
   WS · PLAN · TEAM GmbH — Stylesheet
   Architektonisch-Editorial · Pure CSS, mobile-first
   ========================================================= */

/* === DESIGN TOKENS ===================================== */
:root {
  /* Farben */
  --color-bg: #faf7f2;
  --color-surface: #ffffff;
  --color-ink: #1a1a1a;
  --color-ink-soft: #5a5a5a;
  --color-rule: #e6e1d8;
  --color-accent: #7a6244;
  --color-accent-soft: rgba(122, 98, 68, 0.08);

  /* Typografie */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing-Skala */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-padding: 1.5rem;

  /* Bewegung */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === RESET / BASIS ===================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul, ol { list-style: none; }

/* === TYPOGRAFIE ======================================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  font-size: 1.0625rem;
  max-width: 65ch;
}

p + p { margin-top: 1rem; }

em { font-family: var(--font-serif); font-style: italic; font-size: 1.05em; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.5;
  color: var(--color-ink-soft);
  max-width: 50ch;
}

/* === LAYOUT-UTILS ====================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container--narrow {
  max-width: 880px;
}

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

@media (min-width: 768px) {
  section { padding: var(--space-2xl) 0; }
}

.section-header {
  display: grid;
  gap: 1rem;
  margin-bottom: var(--space-lg);
  max-width: 720px;
}

.divider {
  border: 0;
  height: 1px;
  background: var(--color-rule);
  margin: var(--space-lg) 0;
}

/* === HEADER / NAV ====================================== */
.site-header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--color-rule);
  z-index: 100;
}

/* Blur liegt auf einem Pseudo-Element: backdrop-filter direkt auf
   .site-header würde den Header zum Containing Block für das
   position:fixed-Mobilmenü machen und es auf Header-Höhe kollabieren. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-ink);
  white-space: nowrap;
}

.brand__dot {
  color: var(--color-accent);
  margin: 0 0.25em;
  font-style: italic;
}

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

.nav a {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s var(--ease);
}

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

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

.nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
}

.nav-toggle {
  display: none;
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1px;
  background: var(--color-ink);
  transition: transform 0.3s var(--ease), opacity 0.2s, top 0.3s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 14px; }
.nav-toggle span:nth-child(3) { top: 19px; }

.nav-toggle.is-open span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

/* 7 Navigationspunkte: auf mittleren Breiten enger stellen */
@media (min-width: 881px) and (max-width: 1180px) {
  .nav { gap: 1.1rem; }
  .nav a { font-size: 0.8125rem; letter-spacing: 0.02em; }
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 73px 0 0 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--color-bg);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0s 0.4s;
    padding: 2rem;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.4s var(--ease), visibility 0s 0s;
  }
  .nav a {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 0;
  }
}

/* === HERO ============================================== */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #b8a890 0%, #8a7660 45%, #4a3f30 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(255, 240, 220, 0.25), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 0, 0, 0.35), transparent 55%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
  opacity: 0.6;
  z-index: -1;
}

.hero__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 8rem var(--container-padding) var(--space-xl);
  color: #fff;
}

.hero h1 { color: #fff; max-width: 14ch; }

.hero__lead {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.5;
  max-width: 48ch;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero__meta {
  position: absolute;
  bottom: 2rem;
  right: var(--container-padding);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
}

.hero__meta::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.hero--page {
  min-height: 60vh;
}

.hero--page .hero__inner {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero__index {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-accent);
  filter: brightness(1.6);
  margin-bottom: 1rem;
  display: block;
}

/* Hero-Varianten pro Service – jeweils eigener Farb-Verlauf */
.hero--architektur { background: linear-gradient(135deg, #c2b6a0 0%, #877a64 50%, #3d362b 100%); }
.hero--sigeko      { background: linear-gradient(135deg, #9aa39a 0%, #5e6a64 50%, #2c332f 100%); }
.hero--hausverw    { background: linear-gradient(135deg, #c0b09a 0%, #7a6e5a 50%, #3a3326 100%); }
.hero--interior    { background: linear-gradient(135deg, #d4c2ad 0%, #9a8770 50%, #4d402f 100%); }
.hero--referenzen  { background: linear-gradient(135deg, #aea08c 0%, #6e6150 50%, #312a22 100%); }
.hero--kontakt     { background: linear-gradient(135deg, #c8b8a0 0%, #8b7c66 50%, #382f24 100%); }
.hero--legal       {
  background: var(--color-bg);
  min-height: auto;
  border-bottom: 1px solid var(--color-rule);
}
.hero--legal .hero__inner { padding-top: 6rem; padding-bottom: 3rem; color: var(--color-ink); }
.hero--legal h1 { color: var(--color-ink); font-size: clamp(2.5rem, 5vw, 4rem); }
.hero--legal .hero__index { filter: none; }

/* === BUTTONS =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--color-ink);
  color: var(--color-bg);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  border: 1px solid var(--color-ink);
  cursor: pointer;
}

.btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

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

.btn--ghost:hover {
  background: var(--color-ink);
  color: var(--color-bg);
  border-color: var(--color-ink);
}

.btn--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--light:hover { background: #fff; color: var(--color-ink); border-color: #fff; }

.btn__arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Inline-Link mit Pfeil */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  transition: gap 0.25s var(--ease);
}
.arrow-link:hover { gap: 0.875rem; }

/* === INTRO / TEXT-ZEILE ================================ */
.intro {
  display: grid;
  gap: var(--space-md);
  align-items: start;
}

@media (min-width: 880px) {
  .intro {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-xl);
  }
}

.intro__title { max-width: 14ch; }

.intro__text > p + p { margin-top: 1.25rem; }

/* === SERVICE GRID (Startseite) ========================= */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-rule);
  border: 1px solid var(--color-rule);
}

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

.service-card {
  position: relative;
  background: var(--color-surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 360px;
  transition: background 0.3s var(--ease);
}

.service-card:hover {
  background: var(--color-accent-soft);
}

.service-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--color-ink-soft);
  line-height: 1.6;
}

.service-card__cta {
  margin-top: auto;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  gap: 0.5rem;
  transition: gap 0.25s var(--ease);
}

.service-card:hover .service-card__cta { gap: 0.875rem; }

/* === SPLIT-SECTION (asymmetrisch) ====================== */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .split--reverse > :first-child { order: 2; }
  .split--media-wide { grid-template-columns: 1.3fr 1fr; }
}

.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #c9bca8 0%, #8a7a64 100%) center/cover no-repeat;
  overflow: hidden;
}

.split__media--alt-1 { background: linear-gradient(135deg, #b8a890 0%, #5e503a 100%); }
.split__media--alt-2 { background: linear-gradient(135deg, #aab09a 0%, #4e574a 100%); }
.split__media--alt-3 { background: linear-gradient(135deg, #d4c2a8 0%, #806a4a 100%); }

.split__content > * + * { margin-top: 1.5rem; }
.split__content h2 { max-width: 16ch; }

/* === PHASEN-LISTE ====================================== */
.phases {
  counter-reset: phase;
  display: flex;
  flex-direction: column;
}

.phases li {
  counter-increment: phase;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-rule);
  align-items: start;
}

.phases li:last-child { border-bottom: 1px solid var(--color-rule); }

.phases li::before {
  content: counter(phase, decimal-leading-zero);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.phases h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.phases p {
  color: var(--color-ink-soft);
  font-size: 0.9375rem;
}

/* === BULLET-LISTE (mit Akzent) ========================= */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.bullet-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 1rem;
  height: 1px;
  background: var(--color-accent);
}

/* === REFERENZ-GRID ===================================== */
.refs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.ref-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  cursor: pointer;
}

.ref-card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #c9bca8 0%, #8a7a64 100%) center/cover no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}

.ref-card:hover .ref-card__media { transform: scale(0.98); }

.ref-card__media--1 { background: linear-gradient(135deg, #b3a48a 0%, #5a4d38 100%); }
.ref-card__media--2 { background: linear-gradient(135deg, #aab09a 0%, #4e574a 100%); }
.ref-card__media--3 { background: linear-gradient(135deg, #d4c2a8 0%, #806a4a 100%); }
.ref-card__media--4 { background: linear-gradient(135deg, #c0a890 0%, #5e483a 100%); }
.ref-card__media--5 { background: linear-gradient(135deg, #a89e8a 0%, #524838 100%); }
.ref-card__media--6 { background: linear-gradient(135deg, #c8b8a0 0%, #6a5b48 100%); }

.ref-card__category {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.ref-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.ref-card p {
  font-size: 0.9375rem;
  color: var(--color-ink-soft);
}

/* === ZAHLEN-LEISTE ===================================== */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
}

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

.facts__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.facts__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--color-accent);
}

.facts__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

/* === CTA-BLOCK ========================================= */
.cta {
  background: var(--color-ink);
  color: var(--color-bg);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta h2 { color: var(--color-bg); max-width: 18ch; margin: 0 auto 1.5rem; }
.cta p { color: rgba(250, 247, 242, 0.75); margin: 0 auto 2.5rem; max-width: 50ch; }

/* === KONTAKT-LAYOUT ==================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 880px) {
  .contact-layout { grid-template-columns: 1fr 1.5fr; gap: 5rem; }
}

.contact-info dl { display: grid; gap: 1.5rem; }
.contact-info dt {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}
.contact-info dd {
  font-size: 1.0625rem;
  font-family: var(--font-serif);
  color: var(--color-ink);
  line-height: 1.5;
}
.contact-info dd a { border-bottom: 1px solid var(--color-rule); transition: border-color 0.2s; }
.contact-info dd a:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* === FORMULAR ========================================== */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  font-weight: 500;
}

.form__input,
.form__textarea,
.form__select {
  padding: 0.875rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-rule);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-ink);
  transition: border-color 0.25s var(--ease);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form__textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.5;
}

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

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

.form__hint {
  font-size: 0.8125rem;
  color: var(--color-ink-soft);
  margin-top: 0.5rem;
}

/* === PROSE (rechtliche Seiten) ========================= */
.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
}

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

.prose h3 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p { margin-bottom: 1rem; max-width: none; }

.prose ul {
  list-style: disc;
  margin: 1rem 0 1rem 1.5rem;
  color: var(--color-ink-soft);
}

.prose ul li { margin-bottom: 0.5rem; }

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

.prose .placeholder {
  background: var(--color-accent-soft);
  padding: 0.05em 0.4em;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.95em;
  color: var(--color-accent);
  font-weight: 500;
}

/* === FOOTER ============================================ */
.site-footer {
  background: var(--color-ink);
  color: rgba(250, 247, 242, 0.85);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 0 var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.site-footer__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--color-bg);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.site-footer__tagline {
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.9375rem;
  max-width: 30ch;
}

.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.site-footer ul { display: flex; flex-direction: column; gap: 0.625rem; }

.site-footer a {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.9375rem;
  transition: color 0.2s var(--ease);
}

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

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: var(--space-lg) auto 0;
  padding: var(--space-md) var(--container-padding) 0;
  max-width: var(--container-max);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(250, 247, 242, 0.5);
}

.site-footer__legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer__ai-note {
  font-style: italic;
  color: rgba(250, 247, 242, 0.45);
}

/* === KLEINE HILFSKLASSEN =============================== */
.text-center { text-align: center; }
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* Skip-Link für A11y */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: var(--color-bg);
  z-index: 200;
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
