/* ------------------------------------------------------------
   Steinmetz Krieg — Landingpage Grabmale
   Design & Entwicklung: SION Design, siondesign.de
   Stand: 08/2026 · Umsetzung nach SION Standard
   ------------------------------------------------------------ */


/* ============================================================
   Eigene Schriften
   Lokal ausgeliefert, keine Verbindung zu Google Fonts.
   ============================================================ */

/* Newsreader variabel, wght 200–800 — Fließtext und Überschriften */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts/newsreader-latin-var.woff2) format('woff2-variations');
}

@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts/newsreader-latin-var-italic.woff2) format('woff2-variations');
}

/* IBM Plex Mono — Telefonnummern, Labels, Bildunterschriften */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/ibm-plex-mono-latin-400.woff2) format('woff2');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/ibm-plex-mono-latin-500.woff2) format('woff2');
}

/* Instrument Sans nur für die Wortmarke im Kopf — deshalb auf die
   benötigten Zeichen subsettet (1,2 kB). */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/instrument-sans-600-subset.woff2) format('woff2');
}


/* ============================================================
   Basis & Typografie
   ============================================================ */

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #FDFBF5;
  font-family: 'Newsreader', Georgia, serif;
  color: #1D1D1A;
  -webkit-font-smoothing: antialiased;
}

a { color: #2E3B2C; }
a:hover { color: #1D1D1A; }

input,
select,
textarea,
button { font-family: inherit; }

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #2E3B2C;
  outline-offset: 1px;
}

/* Sichtbarer Tastaturfokus auch außerhalb der Formularfelder */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #2E3B2C;
  outline-offset: 2px;
}

.sec-dark a:focus-visible,
.sec-dark button:focus-visible { outline-color: #EDECE7; }

::selection { background: rgba(46, 59, 44, .16); }

input::placeholder,
textarea::placeholder { color: #9A968A; }

summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

img { max-width: 100%; }

/* <picture> ist reines Beiwerk um das <img> und soll weder eine Zeilenbox
   aufmachen noch als eigenes Flex-/Grid-Element auffallen. */
picture { display: block; }

/* Muss die display-Regeln der Komponenten schlagen, sonst greift die
   Flag-Umschaltung bei .mobilebar & Co. nicht. */
[hidden] { display: none !important; }


/* ============================================================
   Kopfzeile
   ============================================================ */

.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FDFBF5;
  border-bottom: 1px solid #1D1D1A;
}

.hdr-in {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

/* Die Bildmarke hat keine Schriftlinie, an der sie ausgerichtet werden
   könnte — sie wird deshalb aus der Grundlinie genommen und mittig gesetzt. */
.hdr-mark { align-self: center; }

/* display:block, sonst hängt unter dem Bild noch die Unterlänge der Zeile
   und die Marke sitzt zwei Pixel zu hoch. */
.hdr-logo {
  display: block;
  height: 30px;
  width: auto;
}

/* Wortmarke, Nummer und Link stehen auf der vollen Kopfhöhe, damit sie
   trotz align-items:baseline auf einer Linie sitzen. */
.hdr-name,
.hdr-tel,
.hdr-link { line-height: 58px; }

.hdr-name {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .24em;
  white-space: nowrap;
}

.hdr-fill { flex: 1; }

.hdr-tel {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13.5px;
  color: #1D1D1A;
  text-decoration: none;
  white-space: nowrap;
}

.hdr-tel:hover { color: #2E3B2C; }

.hdr-link {
  font-size: 15px;
  color: #2E3B2C;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}


/* ============================================================
   Abschnitts-Raster
   ============================================================ */

.sec {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) 24px 0;
}

.sec--auftakt { padding-top: clamp(48px, 7vw, 84px); }
.sec--foto { padding-top: clamp(40px, 6vw, 64px); }


/* ============================================================
   Auftakt
   ============================================================ */

.h1 {
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 22px;
  max-width: 820px;
  text-wrap: balance;
}

.lead {
  font-size: clamp(17px, 1.7vw, 19.5px);
  line-height: 1.6;
  color: #3A3831;
  margin: 0 0 34px;
  max-width: 640px;
  text-wrap: pretty;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
}

.btn-tel {
  display: inline-block;
  background: #2E3B2C;
  color: #FDFBF5;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 26px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-tel:hover {
  background: #243021;
  color: #FDFBF5;
}

.cta-link {
  font-size: 16.5px;
  color: #2E3B2C;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-wa {
  font-size: 16.5px;
  color: #57554E;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-wa:hover { color: #2E3B2C; }

.cta-note {
  font-size: 14.5px;
  color: #57554E;
  margin-top: 16px;
}

.rabatt {
  border-top: 1px solid #1D1D1A;
  border-bottom: 1px solid #1D1D1A;
  margin-top: 30px;
  padding: 16px 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: baseline;
}

.rabatt-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  color: #2E3B2C;
  white-space: nowrap;
}

.rabatt-txt {
  font-size: 15.5px;
  color: #3A3831;
}


/* ============================================================
   Startbild (Einzelbild oder Collage) und Eckdaten
   ============================================================ */

.hero-img {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  object-fit: cover;
  object-position: 50% 42%;
}

.collage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  height: clamp(340px, 46vw, 520px);
  overflow: hidden;
}

/* Ohne die Nullbreite sprengen die Bilder ihre Rasterzellen. */
.collage picture {
  min-width: 0;
  min-height: 0;
}

.collage picture:first-child { grid-row: span 2; }

.collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage .op-a { object-position: 50% 45%; }
.collage .op-b { object-position: 50% 78%; }
.collage .op-c { object-position: 38% 50%; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0 32px;
  border-top: 2px solid #1D1D1A;
  margin-top: 12px;
}

.fact {
  padding: 16px 2px;
  border-bottom: 1px solid #C9C6BC;
}

.fact-k {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #57554E;
}

.fact-v {
  font-size: 17px;
  margin-top: 2px;
}


/* ============================================================
   Überschriften und Preistabelle
   ============================================================ */

.h2 {
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 14px;
}

.h2--gap12 { margin-bottom: 12px; }
.h2--gap18 { margin-bottom: 18px; }
.h2--gap26 { margin-bottom: 26px; }
.h2--gap30 { margin-bottom: 30px; }
.h2--flush { margin-bottom: 0; }

.sec-lead {
  font-size: 16.5px;
  color: #3A3831;
  line-height: 1.6;
  margin: 0 0 30px;
  max-width: 620px;
  text-wrap: pretty;
}

.tbl { border-top: 2px solid #1D1D1A; }

.tbl-row {
  display: grid;
  grid-template-columns: minmax(150px, 240px) 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 17px 2px;
  border-bottom: 1px solid #C9C6BC;
}

.tbl-name {
  font-size: 18.5px;
  font-weight: 500;
}

.tbl-desc {
  font-size: 14.5px;
  color: #57554E;
  line-height: 1.5;
}

.tbl-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  white-space: nowrap;
}

.tbl-price--muted { color: #57554E; }

.tbl-note {
  font-size: 13.5px;
  color: #57554E;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 640px;
}

/* Variante ohne Richtpreise */
.nopreise {
  border-top: 2px solid #1D1D1A;
  padding: 17px 2px;
  font-size: 16.5px;
  color: #3A3831;
  max-width: 640px;
  line-height: 1.6;
}


/* ============================================================
   Galerie
   ============================================================ */

.gal-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.gal-nav {
  display: flex;
  gap: 8px;
}

.gal-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #1D1D1A;
  background: transparent;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  color: #1D1D1A;
  cursor: pointer;
}

.gal-btn:hover {
  background: #1D1D1A;
  color: #FDFBF5;
}

.gal {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.gal::-webkit-scrollbar { display: none; }

.gal-item {
  margin: 0;
  flex: 0 0 320px;
  min-width: 0;
  max-width: 320px;
  scroll-snap-align: start;
}

.gal-img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Bildausschnitt je Motiv */
.op-40 { object-position: 50% 40%; }
.op-45 { object-position: 50% 45%; }
.op-50 { object-position: 50% 50%; }

.cap {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: #57554E;
  padding-top: 10px;
}


/* ============================================================
   Ablauf
   ============================================================ */

.split { display: grid; }

.split--steps {
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  border-top: 2px solid #1D1D1A;
}

.step {
  display: grid;
  padding: 22px 2px;
  border-bottom: 1px solid #C9C6BC;
}

.step-t {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 5px;
}

.step-p {
  font-size: 15.5px;
  color: #3A3831;
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

.note {
  font-size: 15px;
  color: #57554E;
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 640px;
  text-wrap: pretty;
}


/* ============================================================
   Werkstatt und Ansprechpartner
   ============================================================ */

.split--about {
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}

.about-p {
  font-size: 16.5px;
  color: #3A3831;
  line-height: 1.65;
  margin: 0 0 16px;
  text-wrap: pretty;
}

.about-p--last { margin-bottom: 24px; }

.about-img {
  display: block;
  width: 100%;
  height: clamp(360px, 38vw, 470px);
  object-fit: cover;
  object-position: 50% 88%;
  margin-bottom: 20px;
}

.innung {
  border-top: 1px solid #C9C6BC;
  padding-top: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.innung-logo {
  height: 44px;
  width: auto;
}

.innung-txt {
  font-size: 14px;
  color: #57554E;
  line-height: 1.6;
}

.card {
  border-top: 2px solid #1D1D1A;
  padding-top: 18px;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: #57554E;
  margin-bottom: 14px;
}

.portrait {
  display: block;
  width: min(240px, 60%);
  height: 280px;
  object-fit: cover;
  object-position: 50% 15%;
  margin-bottom: 16px;
}

.p-name {
  font-size: 22px;
  font-weight: 500;
}

.p-role {
  font-size: 14.5px;
  color: #57554E;
  margin: 2px 0 12px;
}

.p-txt {
  font-size: 15.5px;
  color: #3A3831;
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 340px;
  text-wrap: pretty;
}

.p-tel {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  color: #1D1D1A;
  text-decoration: none;
  white-space: nowrap;
}

.p-tel:hover { color: #2E3B2C; }

.p-mail-wrap { margin-top: 4px; }

.p-mail {
  font-size: 14.5px;
  color: #57554E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.p-mail:hover { color: #2E3B2C; }


/* ============================================================
   Konfigurator-Leiste
   ============================================================ */

.konf {
  border-top: 2px solid #1D1D1A;
  border-bottom: 1px solid #1D1D1A;
  padding: 26px 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  align-items: baseline;
  justify-content: space-between;
}

.konf-body { max-width: 640px; }

.konf-t {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 6px;
}

.konf-p {
  font-size: 15.5px;
  color: #3A3831;
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

.konf-link {
  font-size: 16.5px;
  color: #2E3B2C;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}


/* ============================================================
   Region
   ============================================================ */

.split--region {
  grid-template-columns: 1fr 1fr;
  gap: 24px 64px;
  align-items: start;
}

.region-p {
  font-size: 16px;
  color: #3A3831;
  line-height: 1.65;
  margin: 0;
  max-width: 440px;
  text-wrap: pretty;
}

.orte {
  columns: 2;
  column-gap: 40px;
  font-size: 16px;
  line-height: 2.2;
  border-top: 2px solid #1D1D1A;
  padding-top: 14px;
}

.orte-muted { color: #57554E; }


/* ============================================================
   Fragen
   ============================================================ */

.faq {
  border-top: 2px solid #1D1D1A;
  max-width: 760px;
}

.faq details { border-bottom: 1px solid #C9C6BC; }

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  font-size: 19px;
  font-weight: 500;
  padding: 18px 2px;
  cursor: pointer;
}

/* Auf-/Zuklapp-Zeichen rechts: + wird im offenen Zustand zum Minus */
.faq summary::after {
  content: '+';
  font-family: 'IBM Plex Mono', monospace;
  font-size: 19px;
  font-weight: 400;
  color: #57554E;
  flex-shrink: 0;
}

.faq details[open] summary::after { content: '\2212'; }

.faq p {
  font-size: 15.5px;
  color: #3A3831;
  line-height: 1.65;
  margin: 0;
  padding: 0 2px 20px;
  text-wrap: pretty;
}


/* ============================================================
   Formular (dunkler Abschnitt)
   ============================================================ */

.sec-dark {
  background: #050505;
  color: #EDECE7;
  margin-top: clamp(56px, 8vw, 92px);
}

.sec-dark-in {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) 24px;
}

.form-lead {
  font-size: 15.5px;
  color: #A8A498;
  line-height: 1.6;
  margin: 0 0 30px;
  max-width: 440px;
  text-wrap: pretty;
}

.danke {
  border: 1px solid #4C5A49;
  padding: 24px 26px;
}

.danke-t {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.danke-p {
  font-size: 14.5px;
  color: #A8A498;
  line-height: 1.65;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.f {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.f-lab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: #A8A498;
}

.f-in {
  background: #FDFBF5;
  border: 0;
  border-radius: 0;
  padding: 13px 14px;
  font-size: 16px;
  color: #1D1D1A;
}

textarea.f-in { resize: vertical; }

.f-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  max-width: 460px;
}

.f-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #2E3B2C;
}

.f-check span {
  font-size: 13px;
  color: #A8A498;
  line-height: 1.6;
}

.f-check a { color: #EDECE7; }

.f-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-submit {
  background: #FDFBF5;
  color: #1D1D1A;
  font-size: 16px;
  font-weight: 500;
  border: 0;
  border-radius: 0;
  padding: 14px 30px;
  cursor: pointer;
}

.btn-submit:hover { background: #DEDBD2; }
.btn-submit[disabled] { opacity: .6; cursor: default; }

.f-hint {
  font-size: 13.5px;
  color: #A8A498;
}

.f-error {
  font-size: 14.5px;
  color: #F0C9C1;
  line-height: 1.6;
  margin: 0;
}

.f-error a {
  color: #F0C9C1;
  text-underline-offset: 3px;
}

/* Honigtopf gegen Bots — aus dem Blickfeld und aus dem Screenreader heraus */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Kontaktspalte neben dem Formular */
.contact {
  font-size: 15.5px;
  line-height: 1.7;
}

.cbox {
  border-top: 1px solid #4A4842;
  padding: 18px 0;
}

.cbox-lab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: #A8A498;
  margin-bottom: 8px;
}

.big-tel {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(21px, 2.4vw, 26px);
  color: #EDECE7;
  text-decoration: none;
  white-space: nowrap;
}

.big-tel:hover { color: #fff; }

.cbox-note {
  font-size: 14px;
  color: #A8A498;
  margin-top: 6px;
}

.wa-link {
  display: inline-block;
  font-size: 15px;
  color: #A8A498;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 12px;
}

.wa-link:hover { color: #EDECE7; }

.geb-img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 14px;
}

.addr-muted {
  font-size: 14px;
  color: #A8A498;
}


/* ============================================================
   Consent-Hinweis (Consent Mode v2)
   ============================================================ */

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: #FDFBF5;
  border-top: 1px solid #1D1D1A;
}

.consent-in {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  align-items: center;
  justify-content: space-between;
}

.consent-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #3A3831;
  margin: 0;
  max-width: 560px;
}

.consent-txt a {
  color: #2E3B2C;
  text-underline-offset: 3px;
}

.consent-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.consent-btn {
  min-height: 48px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #1D1D1A;
  background: transparent;
  color: #1D1D1A;
  cursor: pointer;
}

.consent-btn:hover {
  background: #1D1D1A;
  color: #FDFBF5;
}

.consent-btn--yes {
  background: #2E3B2C;
  border-color: #2E3B2C;
  color: #FDFBF5;
}

.consent-btn--yes:hover {
  background: #243021;
  border-color: #243021;
  color: #FDFBF5;
}


/* ============================================================
   Fußzeile
   ============================================================ */

.foot { background: #050505; }

.foot-in {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px solid #4A4842;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: space-between;
  font-size: 13px;
  color: #7C796E;
}

.foot-dev { color: #5A5850; }
.foot-dev a { color: #7C796E; }

.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.foot-links a { color: #A8A498; }

.foot-btn {
  background: none;
  border: 0;
  padding: 0;
  font-size: 13px;
  color: #A8A498;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}


/* ============================================================
   Mobil — Anrufleiste und Umbruch bei 860 px
   ============================================================ */

/* Sitzt am unteren Rand; --bar-offset schiebt sie über den
   Consent-Hinweis, solange der noch steht (gesetzt in main.js). */
.mobilebar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: var(--bar-offset, 0px);
  z-index: 60;
  background: #FDFBF5;
  border-top: 1px solid #1D1D1A;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 12px;
  align-items: center;
}

.mb-call {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2E3B2C;
  color: #FDFBF5;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 8px;
  text-decoration: none;
  white-space: nowrap;
}

.mb-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15.5px;
  color: #1D1D1A;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr !important; }
  .hdr-tel { display: none !important; }
  /* !important, weil [hidden] ebenfalls mit !important arbeitet */
  .mobilebar { display: flex !important; }
  .mobilebar[hidden] { display: none !important; }
  .tbl-desc { display: none !important; }

  .collage {
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) !important;
    height: clamp(420px, 120vw, 620px) !important;
  }

  .collage picture:first-child { grid-row: span 1 !important; }

  /* Platz für die Anrufleiste */
  body { padding-bottom: 70px; }
}
