/* =========================================================================
   Wolf Holzwerk — Stylesheet
   =========================================================================
   Bewusst ohne externe Schriften (keine Google Fonts): das schützt dich vor
   Abmahnungen wegen DSGVO und macht die Seite schneller. Es werden nur
   Schriften genutzt, die auf jedem Gerät schon vorhanden sind.
   ========================================================================= */

:root {
  /* Markenfarben: Nussbraun. Warme, entsättigte Holztöne – dunkel genug,
     dass es nicht nach Landhaus aussieht, warm genug, dass man das Material
     erkennt, mit dem hier gearbeitet wird. */
  --tinte:        #3A2E24;   /* Markenfarbe, Überschriften – 12,3:1 */
  --tinte-weich:  #6B5847;   /* Fließtext – 6,3:1 */
  --akzent:       #8A6240;   /* Akzent für Text und Links – 5,0:1 */
  --akzent-hell:  #A8825E;   /* zweite Markenfarbe, Logo und Zierlinien */
  --akzent-stark: #3A2E24;   /* Hover-Zustände */
  --papier:       #FAF7F2;   /* Seitenhintergrund */
  --papier-warm:  #F1E9DE;   /* abgesetzte Flächen */
  --linie:        #E3D8C9;

  /* Farben für alles, was auf nussbraunem Grund steht: Kopfzeile und
     Fußbereich. Die Seite dazwischen bleibt Papier — das Braun rahmt sie
     ein, statt sie zu füllen. Ein Handwerker-Auftritt muss vor allem
     lesbar sein, und dunkler Fließtext auf hellem Grund liest sich über
     mehrere Absätze hinweg nachweislich leichter.
     Alle Werte gegen #3A2E24 gemessen: */
  --dunkel-text:   #FAF7F2;   /* Überschriften, Wortmarke – 12,6:1 */
  --dunkel-weich:  #D3C4B2;   /* Navigation, Fließtext im Fuß – 7,7:1 */
  --dunkel-akzent: #DCCDB8;   /* „holzwerk", Zierlinien – 8,4:1
                                 identisch mit signet-negativ.svg */
  --dunkel-linie:  #55463A;   /* Trennlinien auf dunklem Grund */

  --breite: 1100px;
  --serif: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --marke: Corbel, 'Lucida Grande', 'Segoe UI', sans-serif;
}

/* Warum zwei Akzenttöne?
   #A8825E ist die zweite Markenfarbe aus dem Logo, hat auf hellem Grund aber
   nur rund 3,3:1 Kontrast – für ein Logo in Ordnung, für Text zu wenig.
   Deshalb steht sie nur im Schriftzug und in Zierlinien; für alles, was
   gelesen werden muss, gilt --akzent mit 5,0:1. */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--tinte-weich);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--tinte);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--akzent-stark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--tinte); }

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

/* Tastatur-Bedienung sichtbar machen — Barrierefreiheit */
:focus-visible { outline: 3px solid var(--akzent); outline-offset: 3px; border-radius: 2px; }

.huelle { max-width: var(--breite); margin: 0 auto; padding: 0 1.25rem; }

/* --- Sprungmarke für Screenreader und Tastatur ------------------------- */
.skip {
  position: absolute; left: -9999px;
  background: var(--tinte); color: #fff; padding: .75rem 1.25rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

/* --- Kopfzeile --------------------------------------------------------- */
/* Der Kopf trägt den Markengrund, nicht die Seite. Zusammen mit dem
   Fußbereich, der schon immer nussbraun war, steht der Inhalt dadurch in
   einem Rahmen aus Markenfarbe. Wichtig: Das Signet im Kopf muss die
   Negativfassung sein (signet-negativ.svg) — die dunkle verschwindet hier. */
.kopf {
  border-bottom: 1px solid var(--dunkel-linie);
  background: var(--tinte);
  position: sticky; top: 0; z-index: 50;
}
.kopf__innen {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: .85rem; padding-bottom: .85rem;
}
/* --- Das Logo ----------------------------------------------------------
   Zeichen links, Name zweizeilig, Unterstrich. Der Strich sitzt als
   border-bottom am Textblock und ist dadurch immer exakt so breit wie
   die längere Zeile — bei jeder Schriftgröße und auf jedem Gerät. */
.marke { display: flex; align-items: center; gap: .95rem; text-decoration: none; }
.marke svg, .marke img { width: 72px; height: 72px; flex: none; }
.marke__text {
  display: flex; flex-direction: column; line-height: 1.14;
  border-bottom: 2px solid var(--dunkel-akzent);
  padding-bottom: .2rem;
}
.marke__name, .marke__zusatz {
  font-family: var(--marke); font-weight: 400; font-size: 1.6rem;
  letter-spacing: .15em; text-transform: lowercase;
}
/* Der Kopf steht auf Markenfarbe – hier gelten die Negativ-Töne.
   Mit den hellen Werten aus dem Fließtext wäre „wolf" unsichtbar. */
.marke__name { color: var(--dunkel-text); }
.marke__zusatz { color: var(--dunkel-akzent); }

/* Auf schmalen Bildschirmen zurücknehmen: Die Kopfzeile bleibt beim Scrollen
   stehen und darf dort nicht zu viel vom Bildschirm wegnehmen. */
@media (max-width: 800px) {
  .marke { gap: .75rem; }
  .marke svg, .marke img { width: 58px; height: 58px; }
  .marke__name, .marke__zusatz { font-size: 1.28rem; }
}
@media (max-width: 520px) {
  .marke svg, .marke img { width: 48px; height: 48px; }
  .marke__name, .marke__zusatz { font-size: 1.08rem; }
}

.nav ul { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav a {
  text-decoration: none; color: var(--dunkel-weich); font-weight: 500;
  font-size: .95rem; padding: .3rem 0; border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--dunkel-text); border-bottom-color: var(--dunkel-akzent); }
.nav a[aria-current="page"] { color: var(--dunkel-text); border-bottom-color: var(--dunkel-akzent); }

/* Der Menü-Knopf auf dem Handy. Sein Rahmen ist ein Bedienelement und
   braucht deshalb mindestens 3:1 gegen den Markengrund – die Linienfarbe
   käme nur auf 1,5:1 und wäre praktisch unsichtbar. */
.nav-schalter {
  display: none; background: none; border: 1px solid var(--dunkel-weich);
  border-radius: 6px; padding: .5rem .7rem; cursor: pointer; color: var(--dunkel-text);
  font-size: 1.1rem; line-height: 1;
}
.nav-schalter:hover,
.nav-schalter[aria-expanded="true"] {
  border-color: var(--dunkel-text);
  background: rgba(250,247,242,.10);
  color: var(--dunkel-text);
}

/* -----------------------------------------------------------------------
   Hover- und Fokuszustände im Kopf

   Weiter oben gilt global: a:hover { color: var(--tinte) }. Für den hellen
   Seitenbereich ist das richtig – im Kopf färbt es den Link aber genau auf
   dessen eigene Hintergrundfarbe, er verschwindet also beim Darüberfahren.
   Deshalb bekommt der ganze Kopf hier eigene Zustände in den Negativtönen.
----------------------------------------------------------------------- */
.kopf a:hover,
.kopf a:focus-visible { color: var(--dunkel-text); }

.marke:hover .marke__name,
.marke:focus-visible .marke__name { color: var(--dunkel-text); }
.marke:hover .marke__zusatz,
.marke:focus-visible .marke__zusatz { color: var(--dunkel-akzent); }
.marke:hover .marke__text { border-bottom-color: var(--dunkel-text); }

/* Fokusrahmen: der Akzentton käme auf dunklem Grund nur auf 2,4:1 und
   wäre für Tastaturnutzer kaum zu erkennen. */
.kopf :focus-visible { outline-color: var(--dunkel-akzent); }

@media (max-width: 800px) {
  .nav-schalter { display: block; }
  /* Das Klappmenü setzt den Markengrund des Kopfes nach unten fort –
     sonst stünde die helle Navigationsschrift auf hellem Papier. */
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--tinte); border-bottom: 1px solid var(--dunkel-linie);
    box-shadow: 0 12px 24px rgba(0,0,0,.28);
  }
  .nav.offen { display: block; }
  .nav ul { flex-direction: column; gap: 0; padding: .5rem 1.25rem 1.25rem; }
  .nav li { border-bottom: 1px solid var(--dunkel-linie); }
  .nav li:last-child { border-bottom: none; }
  .nav a { display: block; padding: .9rem 0; border-bottom: none; }
}

/* --- Aufmacher --------------------------------------------------------- */
.hero { padding: clamp(3rem, 8vw, 6rem) 0; }
.hero__zeile {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--akzent); font-weight: 600; margin-bottom: 1rem;
}
.hero p.gross {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 42ch; color: var(--tinte-weich);
}
.hero__aktionen { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* --- Schaltflächen ----------------------------------------------------- */
.knopf {
  display: inline-block; padding: .85rem 1.7rem; border-radius: 4px;
  font-weight: 600; text-decoration: none; font-size: .97rem;
  border: 2px solid var(--tinte); transition: background .15s, color .15s;
}
.knopf--voll { background: var(--tinte); color: var(--papier); }
.knopf--voll:hover { background: var(--akzent-stark); border-color: var(--akzent-stark); color: #fff; }
.knopf--leer { background: transparent; color: var(--tinte); }
.knopf--leer:hover { background: var(--tinte); color: var(--papier); }

/* --- Abschnitte -------------------------------------------------------- */
.block { padding: clamp(3rem, 7vw, 5rem) 0; }
.block--warm { background: var(--papier-warm); }
.block__kopf { max-width: 60ch; margin-bottom: 2.5rem; }

/* --- Raster ------------------------------------------------------------ */
.raster {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.karte {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: 6px;
  padding: 1.75rem;
  /* damit Bilder, die bis an den Kartenrand laufen, die runden Ecken
     nicht überstehen (siehe projekte.html) */
  overflow: hidden;
}
/* Bild, das oben bündig mit der Karte abschließt */
.karte > .bildplatz:first-child,
.karte > img:first-child {
  margin: -1.75rem -1.75rem 1.25rem;
  width: calc(100% + 3.5rem);
  max-width: none;
}
.block--warm .karte { background: var(--papier); }
.karte h3 { margin-bottom: .5rem; }
.karte__nummer {
  font-family: var(--serif); font-size: .85rem; color: var(--akzent);
  font-weight: 700; letter-spacing: .1em; display: block; margin-bottom: .6rem;
}
.karte ul { margin: .8rem 0 0; padding-left: 1.1rem; font-size: .95rem; }
.karte li { margin-bottom: .3rem; }

/* --- Projektkarte mit Galerie ------------------------------------------
   Das Vorschaubild ist ein Knopf, der die Galerie öffnet. Er sieht nicht
   wie ein Knopf aus, verhält sich aber wie einer — inklusive Tastatur. */
.projekt__oeffnen {
  display: block; width: calc(100% + 3.5rem);
  margin: -1.75rem -1.75rem 1.25rem;
  padding: 0; border: none; background: none;
  cursor: pointer; text-align: left; font: inherit;
  position: relative;
}
.projekt__oeffnen .bildplatz { margin: 0; border-radius: 0; }

/* Alle Vorschaubilder im gleichen Ausschnitt, egal ob das Original hoch oder
   quer aufgenommen wurde. Sonst stehen die Karten unterschiedlich hoch und
   das Raster wirkt unruhig. Beschnitten wird nur die Vorschau — in der
   Galerie ist danach das vollständige Bild zu sehen. */
.projekt__oeffnen img {
  width: 100%; display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.projekt__anzahl {
  position: absolute; right: .75rem; bottom: .75rem;
  background: rgba(58,46,36,.88); color: #fff;
  font-size: .78rem; font-weight: 600;
  padding: .35rem .7rem; border-radius: 999px;
  display: flex; align-items: center; gap: .4rem;
}
.projekt__anzahl svg { width: 14px; height: 14px; }
.projekt__oeffnen:hover .projekt__anzahl,
.projekt__oeffnen:focus-visible .projekt__anzahl { background: var(--akzent); }

/* --- Galerie ------------------------------------------------------------ */
.galerie {
  border: none; border-radius: 8px; padding: 0;
  max-width: 60rem; width: calc(100% - 2rem);
  background: var(--papier); color: var(--tinte-weich);
  box-shadow: 0 24px 60px rgba(58,46,36,.3);
}
.galerie::backdrop { background: rgba(31,25,19,.82); }

.galerie__buehne {
  position: relative; background: #1F1913;
  display: flex; align-items: center; justify-content: center;
  min-height: 40vh; max-height: 68vh; overflow: hidden;
}
.galerie__buehne img,
.galerie__buehne .bildplatz {
  max-width: 100%; max-height: 68vh; width: auto; margin: 0;
  object-fit: contain;
}
.galerie__buehne .bildplatz {
  min-width: min(100%, 34rem); aspect-ratio: 16/10;
  border-color: #4A3D30; color: #A8825E; background: #251E17;
}

.galerie__pfeil {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(255,255,255,.9); color: #1F1913;
  display: flex; align-items: center; justify-content: center;
}
.galerie__pfeil:hover { background: #fff; }
.galerie__pfeil[disabled] { opacity: .3; cursor: default; }
.galerie__pfeil svg { width: 20px; height: 20px; }
.galerie__pfeil--zurueck { left: .85rem; }
.galerie__pfeil--vor { right: .85rem; }

.galerie__zaehler {
  position: absolute; left: 50%; bottom: .85rem; transform: translateX(-50%);
  background: rgba(31,25,19,.8); color: #fff;
  font-size: .78rem; padding: .3rem .8rem; border-radius: 999px;
  font-variant-numeric: tabular-nums;
}

.galerie__fuss { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.galerie__kopf { display: flex; justify-content: space-between; gap: 1.5rem; align-items: flex-start; }
.galerie__titel { font-family: var(--serif); font-size: 1.25rem; color: var(--tinte); margin: 0 0 .3rem; }
.galerie__bereich {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--akzent); font-weight: 600;
}
.galerie__text { margin: 0; font-size: .95rem; }

.galerie__zu {
  flex: none; width: 2.4rem; height: 2.4rem; border-radius: 50%;
  border: 1px solid var(--linie); background: var(--papier);
  cursor: pointer; color: var(--tinte);
  display: flex; align-items: center; justify-content: center;
}
.galerie__zu:hover { background: var(--papier-warm); }
.galerie__zu svg { width: 18px; height: 18px; }

.galerie__minis { display: flex; gap: .5rem; flex-wrap: wrap; }
.galerie__mini {
  width: 4.5rem; height: 3.4rem; padding: 0; cursor: pointer;
  border: 2px solid transparent; border-radius: 4px; overflow: hidden;
  background: var(--papier-warm);
  font-size: .65rem; color: var(--tinte-3, #9E9084);
}
.galerie__mini img { width: 100%; height: 100%; object-fit: cover; }
.galerie__mini[aria-current="true"] { border-color: var(--akzent); }

@media (max-width: 620px) {
  .galerie__buehne { min-height: 32vh; }
  .galerie__pfeil { width: 2.4rem; height: 2.4rem; }
}

/* --- Kundenstimmen ------------------------------------------------------
   Zitat in Serif, Quelle darunter in der Akzentfarbe. Das Anführungszeichen
   ist ein Ornament und wird Screenreadern nicht vorgelesen. */
.stimme { display: flex; flex-direction: column; gap: 1rem; }
.stimme blockquote {
  margin: 0;
  font-family: var(--serif); font-style: italic;
  font-size: 1.08rem; line-height: 1.55; color: var(--tinte);
}
.stimme blockquote p { margin: 0; }

/* Anführungszeichen im Textfluss statt als absolut gesetztes Ornament:
   So sitzen sie bei jeder Schriftgröße und jeder Absatzzahl richtig.
   Öffnendes Zeichen vor dem ersten Absatz, schließendes nach dem letzten. */
.stimme blockquote p:first-child::before { content: '\201E'; }
.stimme blockquote p:last-child::after   { content: '\201C'; }
.stimme__quelle {
  font-size: .85rem; font-weight: 600; color: var(--akzent);
  font-style: normal; margin-top: auto;
}
.stimme blockquote p + p { margin-top: .9em; }

/* Einzelne Stimme: nicht über die volle Breite laufen lassen, sonst wird
   die Zeile zu lang zum Lesen. */
.stimme--einzeln {
  max-width: 46rem; margin: 0 auto;
  padding: 2rem 2rem 1.75rem;
}
.stimme--einzeln blockquote { font-size: 1.14rem; }
@media (max-width: 620px) { .stimme--einzeln { padding: 1.6rem 1.4rem; } }

/* --- Ablauf in Schritten ----------------------------------------------- */
.schritte { list-style: none; counter-reset: schritt; margin: 0; padding: 0; }
.schritte li {
  counter-increment: schritt; position: relative;
  padding-left: 3.5rem; margin-bottom: 2rem;
}
.schritte li::before {
  content: counter(schritt); position: absolute; left: 0; top: -.15rem;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--papier-warm); border: 1px solid var(--akzent);
  color: var(--akzent); font-family: var(--serif); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.block--warm .schritte li::before { background: var(--papier); }
.schritte h3 { margin-bottom: .3rem; }

/* --- Zweispaltiges Layout ---------------------------------------------- */
.zwei-spalten {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 820px) {
  .zwei-spalten { grid-template-columns: 1.1fr 1fr; }
  .zwei-spalten--schmal-links { grid-template-columns: 1fr 1.4fr; }
}

/* --- Bildplatzhalter ---------------------------------------------------
   Bleibt sichtbar, solange noch keine echten Fotos da sind. Sobald du ein
   Bild einsetzt, verschwindet der Platzhalter von selbst.               */
.bildplatz {
  aspect-ratio: 4 / 3;
  background: var(--papier-warm);
  border: 2px dashed var(--linie);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  color: #9E9084; font-size: .88rem; line-height: 1.5;
}
.bildplatz--hoch { aspect-ratio: 3 / 4; }
.bildplatz--breit { aspect-ratio: 16 / 9; }

/* --- Zitat / Hervorhebung ---------------------------------------------- */
.zitat {
  border-left: 3px solid var(--akzent);
  padding: .3rem 0 .3rem 1.5rem;
  font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--tinte); font-style: italic; line-height: 1.5;
  margin: 2rem 0;
}

/* --- Kontaktzeile ------------------------------------------------------ */
.kontakt-liste { list-style: none; margin: 0; padding: 0; }
.kontakt-liste li { margin-bottom: 1.4rem; }
.kontakt-liste dt,
.kontakt-liste .beschriftung {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--akzent); font-weight: 600; margin-bottom: .15rem;
}
.kontakt-liste .wert { font-size: 1.15rem; color: var(--tinte); }
.kontakt-liste .wert a { text-decoration: none; font-weight: 600; }
.kontakt-liste .wert a:hover { text-decoration: underline; }

/* --- Formular ---------------------------------------------------------- */
.feld { margin-bottom: 1.25rem; }
.feld label { display: block; font-weight: 600; color: var(--tinte); margin-bottom: .35rem; font-size: .95rem; }
.feld input, .feld textarea, .feld select {
  width: 100%; padding: .75rem .9rem; font: inherit; color: var(--tinte);
  background: var(--papier); border: 1px solid var(--linie); border-radius: 4px;
}
.feld input:focus, .feld textarea:focus, .feld select:focus { border-color: var(--akzent); }
.feld textarea { min-height: 150px; resize: vertical; }
.feld--pflicht label::after { content: ' *'; color: var(--akzent); }
.hinweis { font-size: .85rem; color: var(--tinte-weich); }

/* Honigtopf: unsichtbares Feld gegen Spam-Roboter.
   Menschen sehen es nicht, Roboter füllen es aus und werden abgewiesen. */
.honigtopf { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- Kontakt-Auswahl ---------------------------------------------------
   Öffnet sich bei jedem Kontakt-Knopf und bietet Anrufen, E-Mail oder
   Formular an. Nutzt das native <dialog>-Element: Escape schließt, der
   Tastaturfokus bleibt drin, kein zusätzliches Skript nötig. */
.kdialog {
  border: 1px solid var(--linie);
  border-radius: 8px;
  padding: 0;
  max-width: 24rem;
  width: calc(100% - 2rem);
  background: var(--papier);
  color: var(--tinte-weich);
  box-shadow: 0 18px 48px rgba(58,46,36,.22);
}
.kdialog::backdrop { background: rgba(58,46,36,.55); }

.kdialog__innen { padding: 1.75rem 1.5rem 1.5rem; }
.kdialog h2 {
  font-size: 1.2rem; margin: 0 0 .35rem;
}
.kdialog__hinweis { font-size: .88rem; margin: 0 0 1.5rem; }

.kdialog__wege { display: flex; flex-direction: column; gap: .7rem; }
.kdialog__weg {
  display: flex; align-items: center; gap: .9rem;
  padding: .9rem 1rem;
  border: 1px solid var(--linie); border-radius: 6px;
  background: var(--papier);
  text-decoration: none; color: var(--tinte);
  transition: border-color .15s, background .15s;
}
.kdialog__weg:hover, .kdialog__weg:focus-visible {
  border-color: var(--akzent); background: var(--papier-warm); color: var(--tinte);
}
.kdialog__weg svg { width: 22px; height: 22px; flex: none; color: var(--akzent); }
.kdialog__weg b { display: block; font-size: .98rem; font-weight: 600; }
.kdialog__weg span { display: block; font-size: .83rem; color: var(--tinte-weich); }

.kdialog__zu {
  display: block; width: 100%; margin-top: 1.25rem;
  background: none; border: none; cursor: pointer;
  font: inherit; font-size: .88rem; color: var(--tinte-weich);
  padding: .5rem; border-radius: 4px;
}
.kdialog__zu:hover { color: var(--tinte); text-decoration: underline; }

/* --- Fußzeile ---------------------------------------------------------- */
.fuss {
  background: var(--tinte); color: #CFC2B2;
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.75rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  font-size: .93rem;
}
.fuss h3 { color: var(--papier); font-size: .78rem; letter-spacing: .16em;
           text-transform: uppercase; font-family: var(--sans); margin-bottom: .9rem; }
.fuss a { color: #EBE1D4; text-decoration: none; }
.fuss a:hover { color: #fff; text-decoration: underline; }
.fuss__raster {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { margin-bottom: .5rem; }
.fuss__unten {
  border-top: 1px solid #55463A; margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem 1.75rem;
  justify-content: space-between; font-size: .85rem; color: #A3937F;
}
.fuss__unten a { color: #A3937F; }

/* --- Rechtstexte ------------------------------------------------------- */
.rechtstext { max-width: 75ch; }
.rechtstext h2 { margin-top: 2.5rem; font-size: 1.4rem; }
.rechtstext h3 { margin-top: 1.75rem; }
.rechtstext ul { padding-left: 1.25rem; }
.rechtstext li { margin-bottom: .4rem; }

/* --- Platzhalter-Markierung -------------------------------------------
   Alles, was du noch ersetzen musst, ist gelb hinterlegt. Wenn die Seite
   keine gelben Stellen mehr hat, ist sie fertig für den Livegang.
   Zum Schluss diese Regel löschen — dann sieht man nichts mehr davon.  */
.platzhalter {
  background: #FFF4C2; border-bottom: 1px dotted #B9962A;
  padding: 0 .15em; border-radius: 2px;
}

/* --- Druckansicht ------------------------------------------------------ */
@media print {
  .kopf, .fuss, .nav-schalter, .hero__aktionen { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  a { color: #000; }
}

/* --- Bewegung reduzieren, wenn das System es verlangt ------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
