/* =============================================================
   Friseursalon Silke Molle
   Handgeschriebenes CSS, keine Frameworks, kein Build-Schritt.

   Farbsystem : Papier/Tinte monochrom + EIN Akzent, das Rot aus
                dem Logo (#ED2524). Kein zweiter Akzent, nirgends.
   Radien     : konsequent 0. Einzige Ausnahme sind Flaechen, die
                von Natur aus rund sind (Icon-Kreise).
   Bewegung   : nur :hover / :focus / :active. Keine Autoplay-
                Animationen, kein Parallax, kein Scroll-Hijack.
   ============================================================= */

/* ---------- 1. Schriften (selbst gehostet, DSGVO-konform) ---- */

@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/bricolage-grotesque-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/bricolage-grotesque-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/instrument-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/instrument-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

/* ---------- 2. Farb- und Masstokens ------------------------- */

:root {
  color-scheme: light dark;

  --papier:       #F4F4F3;
  --flaeche:      #FFFFFF;
  --flaeche-tief: #EAEAE8;
  --tinte:        #16161A;
  --tinte-leise:  #5A5A62;
  --linie:        #DEDEDB;
  --rot:          #ED2524;   /* Logo-Rot, Flaechen und grosse Typo   */
  --rot-tief:     #C4160F;   /* dunkler, fuer kleinen Text auf hell  */
  --rot-kontrast: #FFFFFF;   /* Text auf roter Flaeche               */

  --schrift-display: 'Bricolage Grotesque', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --schrift-text:    'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --breite:   1200px;
  --luft:     clamp(1.25rem, 5vw, 2.5rem);
  --abschnitt: clamp(3.5rem, 9vw, 6.5rem);

  --tempo: 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --papier:       #131316;
    --flaeche:      #1B1B20;
    --flaeche-tief: #23232A;
    --tinte:        #F2F2F0;
    --tinte-leise:  #A3A3AB;
    --linie:        #2E2E36;
    --rot:          #ED2524;
    --rot-tief:     #FF6154;   /* aufgehellt, damit kleiner Text traegt */
  }
}

/* ---------- 3. Grundlagen ----------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(237, 37, 36, 0.18);
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--schrift-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* Verzoegerung durch Doppeltipp-Zoom auf Touchgeraeten vermeiden. */
a, button, summary, label { touch-action: manipulation; }

h1, h2, h3, h4 {
  font-family: var(--schrift-display);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--rot);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: var(--luft);
}

.zur-hauptsache {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--tinte);
  color: var(--papier);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.zur-hauptsache:focus {
  left: 0.75rem;
  top: 0.75rem;
}

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

/* ---------- 4. Kopfzeile und Navigation --------------------- */

.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--papier) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linie);
}

.kopf__zeile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 68px;
}

.kopf__logo { display: flex; align-items: center; flex: 0 0 auto; }
.kopf__logo img { width: 172px; height: 79px; }

@media (prefers-color-scheme: dark) {
  /* Das Logo ist schwarz auf transparent: im Dunkelmodus umkehren,
     das Rot der Schere bleibt dabei erkennbar rot. */
  .kopf__logo img,
  .fuss__logo img { filter: invert(1) hue-rotate(180deg); }
}

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

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

.nav__link {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--tinte-leise);
  transition: color var(--tempo);
}
.nav__link:hover { color: var(--tinte); }
.nav__link[aria-current='page'] {
  color: var(--tinte);
  box-shadow: inset 0 -2px 0 var(--rot);
}

.nav__schalter {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  margin-right: -0.5rem;
  padding: 0;
  border: 1px solid var(--linie);
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.nav__balken, .nav__balken::before, .nav__balken::after {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  transition: transform var(--tempo), opacity var(--tempo);
}
.nav__balken::before, .nav__balken::after {
  content: '';
  position: absolute;
}
.nav__balken::before { transform: translateY(-6px); }
.nav__balken::after  { transform: translateY(6px); }
.nav__schalter[aria-expanded='true'] .nav__balken { background: transparent; }
.nav__schalter[aria-expanded='true'] .nav__balken::before { transform: rotate(45deg); }
.nav__schalter[aria-expanded='true'] .nav__balken::after  { transform: rotate(-45deg); }

@media (max-width: 900px) {
  /* Auf schmalen Geraeten darf das Logo die Kopfzeile nicht dominieren. */
  .kopf__logo img { width: 138px; height: 63px; }
  .kopf__zeile { min-height: 64px; }

  .nav__schalter { display: inline-flex; position: relative; }
  .nav__liste {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--luft) 1.25rem;
    background: var(--papier);
    border-bottom: 1px solid var(--linie);
  }
  .kopf[data-offen='true'] .nav__liste { display: flex; }
  .nav__link {
    padding: 0.9rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--linie);
  }
  .nav__link[aria-current='page'] { box-shadow: none; color: var(--rot-tief); }
  .nav__liste .knopf { display: flex; margin-top: 1rem; justify-content: center; }
}

/* ---------- 5. Knoepfe -------------------------------------- */

.knopf {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  min-height: 48px;
  border: 1px solid transparent;
  font-family: var(--schrift-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--tempo), color var(--tempo), transform var(--tempo);
}

.knopf--haupt {
  background: var(--rot);
  color: var(--rot-kontrast);
}
.knopf--haupt:hover { background: var(--rot-tief); color: #fff; }
.knopf--haupt:active { transform: translateY(1px); }

@media (prefers-color-scheme: dark) {
  .knopf--haupt:hover { background: #FF4034; color: #16161A; }
}

.knopf--rand {
  background: transparent;
  color: var(--tinte);
  border-color: var(--tinte);
}
.knopf--rand:hover { background: var(--tinte); color: var(--papier); }
.knopf--rand:active { transform: translateY(1px); }

.knopf--klein { padding: 0.6rem 1rem; min-height: 44px; font-size: 0.95rem; }

/* ---------- 6. Buehne (Hero) -------------------------------- */

.buehne {
  border-bottom: 1px solid var(--linie);
}
.buehne__raster {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}
@media (min-width: 900px) {
  .buehne__raster {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
}

.buehne__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
  padding-right: clamp(0rem, 4vw, 3.5rem);
}

.buehne__titel {
  font-size: clamp(2.15rem, 4.4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.buehne__titel span { color: var(--rot-tief); }

.buehne__intro {
  max-width: 38ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--tinte-leise);
}

.buehne__aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.buehne__bild {
  position: relative;
  min-height: 300px;
  background: var(--flaeche-tief);
}
.buehne__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
}
@media (min-width: 900px) {
  .buehne__bild { min-height: min(72vh, 620px); }
}

/* ---------- 7. Infoband ------------------------------------- */

.infoband {
  border-bottom: 1px solid var(--linie);
  background: var(--flaeche);
}
.infoband__raster {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .infoband__raster { grid-template-columns: repeat(3, 1fr); }
}
.infoband__feld {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--linie);
}
.infoband__feld:last-child { border-bottom: 0; }
@media (min-width: 760px) {
  .infoband__feld {
    padding: 1.75rem 2rem;
    border-bottom: 0;
    border-left: 1px solid var(--linie);
  }
  .infoband__feld:first-child { padding-left: 0; border-left: 0; }
  .infoband__feld:last-child  { padding-right: 0; }
}
.infoband__titel {
  margin: 0 0 0.4rem;
  font-family: var(--schrift-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tinte-leise);
}
.infoband__wert {
  font-size: 1.02rem;
  line-height: 1.5;
}
.infoband__wert a { text-decoration: none; font-weight: 600; }
.infoband__wert a:hover { color: var(--rot-tief); }

/* ---------- 8. Abschnitte ----------------------------------- */

.abschnitt { padding-block: var(--abschnitt); }
.abschnitt--flaeche { background: var(--flaeche); border-block: 1px solid var(--linie); }

.abschnitt__titel {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  max-width: 20ch;
}
.abschnitt__vorspann {
  margin-top: 1rem;
  max-width: 72ch;
  color: var(--tinte-leise);
  font-size: 1.08rem;
}

/* ---------- 9. Vorstellung (Bild + Text) -------------------- */

.vorstellung__raster {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .vorstellung__raster { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
}
.vorstellung__bild img { width: 100%; }
.vorstellung__fliesstext { display: grid; gap: 1.1rem; }
.vorstellung__fliesstext p { color: var(--tinte-leise); }
.vorstellung__fliesstext p strong { color: var(--tinte); font-weight: 600; }
.vorstellung__signatur {
  margin-top: 0.5rem;
  font-family: var(--schrift-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.vorstellung__signatur span {
  display: block;
  font-family: var(--schrift-text);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--tinte-leise);
}

/* ---------- 10. Leistungsraster (Bento) --------------------- */

.leistungen {
  display: grid;
  gap: 1px;
  background: var(--linie);
  border: 1px solid var(--linie);
  margin-top: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .leistungen { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .leistungen { grid-template-columns: repeat(3, 1fr); } }

.kachel {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--flaeche);
  min-height: 200px;
}
.kachel h3 { font-size: 1.35rem; }
.kachel p { color: var(--tinte-leise); font-size: 0.99rem; }
.kachel__preis {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--schrift-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tinte);
}

.kachel--bild { padding: 0; min-height: 240px; }
.kachel--bild picture { display: block; flex: 1 1 auto; min-height: 0; }
.kachel--bild img { width: 100%; height: 100%; object-fit: cover; }

.kachel--rot { background: var(--rot); color: var(--rot-kontrast); }
.kachel--rot h3 { color: var(--rot-kontrast); }
.kachel--rot p { color: color-mix(in srgb, var(--rot-kontrast) 88%, transparent); }
.kachel--rot .kachel__preis { color: var(--rot-kontrast); }

@media (min-width: 1000px) {
  .kachel--breit { grid-column: span 2; }
}

/* ---------- 11. Preis-Anriss -------------------------------- */

.preisanriss__raster {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .preisanriss__raster { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); }
}
.preisanriss__aktion { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.eckpreise {
  display: grid;
  gap: 1px;
  background: var(--linie);
  border: 1px solid var(--linie);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .eckpreise { grid-template-columns: repeat(4, 1fr); } }
.eckpreis {
  background: var(--flaeche);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.eckpreis__wert {
  display: block;
  font-family: var(--schrift-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}
.eckpreis__was {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.eckpreis__detail {
  display: block;
  font-size: 0.88rem;
  color: var(--tinte-leise);
}

/* ---------- 12. Markenzeile --------------------------------- */

.marken {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: 2rem;
}
.marken img {
  width: clamp(120px, 18vw, 168px);
  height: auto;
  mix-blend-mode: multiply;
}
@media (prefers-color-scheme: dark) {
  .marken img {
    mix-blend-mode: normal;
    background: #fff;
    padding: 0.5rem 0.75rem;
  }
}

/* ---------- 13. Fragen (FAQ) -------------------------------- */

.fragen {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--linie);
}
@media (min-width: 1000px) {
  /* Zwei Spalten fuellen die Breite aus, statt den Text auf halber Strecke
     enden zu lassen. Jede Antwort bleibt bei rund 60 Zeichen pro Zeile. */
  .fragen {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 4vw, 4rem);
  }
}
.frage { border-bottom: 1px solid var(--linie); }
.frage summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  min-height: 48px;
  font-family: var(--schrift-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: '+';
  flex: 0 0 auto;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--rot-tief);
  transition: transform var(--tempo);
}
.frage[open] summary::after { content: '\2013'; }
.frage summary:hover { color: var(--rot-tief); }
.frage__antwort {
  padding: 0 0 1.5rem;
  color: var(--tinte-leise);
}
.frage__antwort a { color: var(--rot-tief); text-underline-offset: 3px; }

/* ---------- 14. Kontaktblock -------------------------------- */

.kontakt__raster {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .kontakt__raster { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

.zeiten { width: 100%; border-collapse: collapse; margin-top: 1.25rem; }
.zeiten th, .zeiten td {
  padding: 0.7rem 0;
  text-align: left;
  border-bottom: 1px solid var(--linie);
  font-weight: 400;
}
.zeiten th { font-weight: 600; }
.zeiten td { text-align: right; color: var(--tinte-leise); font-variant-numeric: tabular-nums; }
.zeiten tr:last-child th, .zeiten tr:last-child td { border-bottom: 0; }
.zeiten .geschlossen td { color: var(--rot-tief); }

.anruf {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--flaeche-tief);
  border-left: 3px solid var(--rot);
}
.anruf__nummer {
  display: block;
  font-family: var(--schrift-display);
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.anruf__nummer:hover { color: var(--rot-tief); }
.anruf__zusatz { display: block; font-size: 0.92rem; color: var(--tinte-leise); }

.adresse { font-style: normal; line-height: 1.75; }
.adresse a { text-decoration: none; font-weight: 600; }
.adresse a:hover { color: var(--rot-tief); }

.zahlung { margin-top: 2.25rem; }
.zahlung__reihe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.zahlung__reihe img {
  width: 58px;
  height: 38px;
  object-fit: contain;
  padding: 5px 7px;
  background: #fff;
  border: 1px solid var(--linie);
}
.zahlung__hinweis { margin-top: 0.9rem; font-size: 0.92rem; color: var(--tinte-leise); }

/* ---------- 15. Preistabellen (Unterseite) ------------------ */

.preisgruppe { margin-top: clamp(2.5rem, 5vw, 4rem); }
.preisgruppe__kopf {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--tinte);
}
.preisgruppe__kopf h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.preisgruppe__zusatz { font-size: 0.92rem; color: var(--tinte-leise); }

.preisgruppe__tabelle { overflow-x: auto; }
.preistabelle { width: 100%; border-collapse: collapse; }
.preistabelle caption { text-align: left; padding: 0; }
.preistabelle th, .preistabelle td { padding: 0.95rem 0; vertical-align: baseline; }
.preistabelle tbody tr + tr th,
.preistabelle tbody tr + tr td { border-top: 1px solid var(--linie); }
.preistabelle th {
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
}
.preistabelle th span {
  display: block;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--tinte-leise);
}
.preistabelle td {
  text-align: right;
  white-space: nowrap;
  font-family: var(--schrift-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding-left: 1rem;
}

.hinweiskasten {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: 46rem;
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-left: 3px solid var(--rot);
}
.hinweiskasten h2 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.hinweiskasten p { color: var(--tinte-leise); }
.hinweiskasten p + p { margin-top: 0.75rem; }

/* ---------- 16. Textseiten (Impressum, Datenschutz) --------- */

.textseite { max-width: 74ch; }
.textseite h2 {
  margin-top: 2.75rem;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
}
.textseite h3 {
  margin-top: 2rem;
  font-size: 1.1rem;
}
.textseite p, .textseite ul, .textseite ol { margin-top: 1rem; color: var(--tinte-leise); }
.textseite ul, .textseite ol { padding-left: 1.25rem; }
.textseite li + li { margin-top: 0.4rem; }
.textseite a { color: var(--rot-tief); text-underline-offset: 3px; }
.textseite strong { color: var(--tinte); }

.entwurfshinweis {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--flaeche-tief);
  border-left: 3px solid var(--rot);
  font-size: 0.95rem;
  color: var(--tinte-leise);
}

/* ---------- 17. Seitenkopf der Unterseiten ------------------ */

.seitenkopf {
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--linie);
}
.seitenkopf h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
.seitenkopf p { margin-top: 1rem; max-width: 72ch; color: var(--tinte-leise); font-size: 1.08rem; }

.brotkrumen { font-size: 0.9rem; color: var(--tinte-leise); margin-bottom: 1.1rem; }
.brotkrumen a { text-decoration: none; }
.brotkrumen a:hover { color: var(--rot-tief); text-decoration: underline; }

/* ---------- 18. Fusszeile ----------------------------------- */

.fuss {
  padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
  background: var(--flaeche);
  border-top: 1px solid var(--linie);
}
.fuss__raster {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .fuss__raster { grid-template-columns: 1.4fr 1fr 1fr; }
}
.fuss__logo img { width: 168px; height: 77px; }
.fuss__titel {
  margin: 0 0 0.85rem;
  font-family: var(--schrift-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tinte-leise);
}
.fuss__liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.fuss__liste a { text-decoration: none; }
.fuss__liste a:hover { color: var(--rot-tief); text-decoration: underline; }
.fuss__text { color: var(--tinte-leise); font-size: 0.98rem; line-height: 1.7; }
.fuss__schluss {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--linie);
  font-size: 0.9rem;
  color: var(--tinte-leise);
}
.fuss__schluss a { text-decoration: none; }
.fuss__schluss a:hover { text-decoration: underline; }

/* Auf sehr schmalen Geraeten die Hauptaktionen auf volle Breite ziehen:
   groessere Trefferflaeche und ein ruhigeres Bild als zwei ungleiche Knoepfe. */
@media (max-width: 479px) {
  .buehne__aktionen,
  .preisanriss__aktion { flex-direction: column; align-items: stretch; }
  .buehne__aktionen .knopf,
  .preisanriss__aktion .knopf { justify-content: center; }
}

/* ---------- 19. Druck --------------------------------------- */

@media print {
  .kopf, .fuss, .buehne__bild, .knopf { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .abschnitt { padding-block: 1rem; }
  a[href^='http']::after { content: ' (' attr(href) ')'; font-size: 9pt; }
}
