/* =============================================================================
   Geisler Dachtechnik — styles.css
   Eine Datei, mobile-first. Reihenfolge:
   Fonts → Tokens → Reset → Typo → Layout → Nav → Hero → Trust → Sections →
   Services → Split → Steps → Instagram → CTA-Band → Detail-Subpage → FAQ →
   Formular → Footer → Utilities → Dashboard → Animationen
   ============================================================================= */

/* ===== Fonts: selbst gehostet (kein Google-Request → DSGVO) ===================
   Variable Fonts: eine Datei deckt den ganzen Gewichtsbereich ab.             */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/archivo-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: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/archivo-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: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-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: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-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;
}

/* ===== Design-Tokens ======================================================== */
:root {
  /* Marke — exakt aus dem Logo pipettiert */
  --gelb:        #F4BB41;
  --gelb-hell:   #FFD275;
  --gelb-tief:   #D89A1C;   /* nur für Flächen, Rahmen, Hover — NICHT für Text */

  /* Textfarbe auf hellem Grund. Gleicher Farbton (40°) wie --gelb-tief, aber dunkel
     genug für WCAG AA. --gelb-tief käme auf Weiß nur auf 2,45:1, nötig sind 4,5:1.
     Dieser Ton besteht auf BEIDEN hellen Flächen: 4,83:1 auf Weiß, 4,54:1 auf
     --papier (dort war ein hellerer Ton mit 4,34:1 knapp durchgefallen). */
  --gelb-text:   #956A13;
  --navy:        #071930;
  --navy-hoch:   #0D2440;
  --navy-weich:  #16304F;

  /* Flächen */
  --weiss:       #FFFFFF;
  --papier:      #F7F8FA;
  --papier-warm: #EFF1F4;
  --linie:       #DCE0E6;
  --linie-dunkel: rgba(255, 255, 255, 0.14);

  /* Text */
  --ink:         #0F1B2A;
  --ink-weich:   #3C4A5C;
  /* Auf Weiß lag der vorige Wert (#6B7887) exakt auf der Grenze (4,50:1), auf
     --papier darunter (4,24:1) — und genau dort steht die Brotkrumennavigation.
     Dieser Ton besteht auf beiden: 4,83:1 / 4,54:1. */
  --muted:       #677382;
  --auf-dunkel:  #E6EAF0;
  --muted-dunkel: #9BA9BB;

  /* Signal */
  --rot:         #C0392B;
  --gruen:       #1E7A4C;

  /* Schrift */
  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Maß */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 1220px;
  --radius: 4px;      /* kantig, nicht verspielt — Handwerk */
  --radius-gross: 8px;

  --schatten: 0 1px 2px rgba(7, 25, 48, .06), 0 8px 24px rgba(7, 25, 48, .08);
  --schatten-hoch: 0 2px 4px rgba(7, 25, 48, .08), 0 18px 44px rgba(7, 25, 48, .16);
}

/* ===== Reset =============================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--gelb);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ===== Typografie ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--navy);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 6.2vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.0625rem; font-weight: 700; }

/* Versalien-Headline wie auf dem Flyer */
.caps {
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

/* Kleines Label über einer Sektion */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gelb-text);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--gelb);
}
.on-dark .eyebrow, .hero .eyebrow { color: var(--gelb); }

p { text-wrap: pretty; }
.lede {
  font-size: clamp(1.075rem, 1.9vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-weich);
}

strong, b { font-weight: 600; }
mark {
  background: linear-gradient(transparent 58%, var(--gelb-hell) 58%);
  color: inherit;
  padding: 0 .1em;
}

/* ===== Layout ============================================================== */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--papier { background: var(--papier); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ===== Buttons ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease,
              border-color .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gelb);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(244, 187, 65, .35);
}
.btn-primary:hover { background: var(--gelb-hell); box-shadow: 0 8px 22px rgba(244, 187, 65, .45); }

.btn-navy { background: var(--navy); color: var(--weiss); }
.btn-navy:hover { background: var(--navy-weich); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--weiss); }

/* Heller Umriss-Button auf dunklem Grund.
   ACHTUNG: Diese Liste MUSS jeden dunklen Container enthalten. Fehlt einer, rendert
   .btn-outline dort mit color: var(--navy) auf navyfarbenem Grund — der Button ist dann
   unsichtbar. Genau das ist im .cta-band passiert.
   Neue dunkle Sektion? Entweder hier eintragen oder ihr die Klasse .on-dark geben. */
.on-dark .btn-outline,
.hero .btn-outline,
.cta-band .btn-outline,
.aside .btn-outline {
  border-color: rgba(255, 255, 255, .55);
  color: var(--weiss);
}
.on-dark .btn-outline:hover,
.hero .btn-outline:hover,
.cta-band .btn-outline:hover,
.aside .btn-outline:hover {
  background: var(--weiss);
  color: var(--navy);
  border-color: var(--weiss);
}

.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-gross { padding: 1.05rem 2rem; font-size: 1.02rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ===== Header / Navigation ================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--linie);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* flex: none ist hier nicht kosmetisch: ohne das schrumpft das Logo als Flex-Item
   neben der breiten Navigation auf width: 0 und verschwindet komplett. */
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { height: 40px; width: auto; flex: none; }
@media (min-width: 860px) { .brand img { height: 46px; } }

/* Icons in Buttons, Telefonlink und Call-Bar an die Schriftgröße koppeln.
   Ohne das rendern die Inline-SVGs in ihrer Standardgröße (300px) — riesig. */
.btn svg,
.nav-tel svg,
.call-bar a svg,
.hero-tel svg {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links.open {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 1rem var(--gutter) 1.4rem;
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  box-shadow: var(--schatten);
}
.nav-links a {
  display: block;
  padding: .7rem .25rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-weich);
  border-bottom: 1px solid var(--papier-warm);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a[aria-current="page"] { color: var(--navy); font-weight: 600; }

/* ----- Untermenü "Leistungen" -----
   Sechs Leistungen passen nicht als Top-Level-Links in die Leiste — sie brechen auf
   zwei Zeilen um. Deshalb gebündelt. Der Toggle ist ein echter Button (per Klick und
   Tastatur bedienbar); am Desktop öffnet zusätzlich Hover, weil das dort erwartet wird. */
.has-sub { position: relative; }

.sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
  width: 100%;
  padding: .7rem .25rem;
  background: none;
  border: none;
  border-bottom: 1px solid var(--papier-warm);
  font-weight: 500;
  color: var(--ink-weich);
  text-align: left;
  cursor: pointer;
}
.sub-toggle:hover { color: var(--navy); }
.sub-toggle .caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .2s ease;
}
.has-sub.open > .sub-toggle .caret { transform: rotate(-135deg) translate(-2px, -2px); }

.sub {
  list-style: none;
  margin: 0;
  padding: 0 0 0 .9rem;
  display: none;
}
.has-sub.open > .sub { display: grid; }

@media (min-width: 980px) {
  .sub-toggle {
    width: auto;
    padding: .5rem .7rem;
    border-bottom: none;
    font-size: .96rem;
    border-radius: var(--radius);
  }
  .sub-toggle:hover { background: var(--papier); }

  .sub {
    position: absolute;
    top: calc(100% + .4rem);
    left: 0;
    z-index: 10;
    min-width: 260px;
    padding: .45rem;
    background: var(--weiss);
    border: 1px solid var(--linie);
    border-top: 3px solid var(--gelb);
    border-radius: var(--radius);
    box-shadow: var(--schatten-hoch);
  }
  /* Hover-Brücke: ohne das reißt der Hover in der Lücke zwischen Button und Menü ab. */
  .has-sub::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: .5rem;
  }
  .has-sub:hover > .sub,
  .has-sub:focus-within > .sub { display: grid; }

  .sub a { padding: .6rem .75rem; }
}

/* .nav-links a setzt display:block — ohne die höhere Spezifität hier stapeln sich
   Icon und Nummer untereinander statt nebeneinander. */
.nav-links a.nav-tel {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: .45rem;
  font-family: var(--display);
  font-weight: 700;
  white-space: nowrap;
  color: var(--navy) !important;
  text-decoration: none;
}

/* Der Header-CTA muss das sichtbarste Element der Leiste sein. Gelb auf Weiß erfüllt
   das nicht: Die Schrift ist zwar lesbar, aber die Fläche hebt sich vom weißen Header
   kaum ab (~1,7:1) — der Button "poppt" nicht. Navy auf Weiß dagegen schon.
   Auf Hover dreht er auf Gelb: klare Rückmeldung, und es bleibt in der Marke. */
.nav-cta {
  margin-top: .5rem;
  text-align: center;
  background: var(--navy);
  color: var(--weiss) !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
  font-family: var(--display);
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .85rem 1.2rem !important;
  box-shadow: 0 2px 10px rgba(7, 25, 48, .25);
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
}
.nav-cta:hover {
  background: var(--gelb) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: .35rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }
  .nav-links a {
    padding: .5rem .7rem;
    border-bottom: none;
    font-size: .96rem;
    border-radius: var(--radius);
  }
  .nav-links a:hover { background: var(--papier); }
  .nav-links a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--gelb); }
  .nav-cta { margin-top: 0; margin-left: .5rem; }
  .nav-cta:hover { background: var(--gelb-hell) !important; }
}

/* Sticky Klick-to-Call — Hauptconversion ist der Anruf, nicht das Formular.
   Nur mobil: am Desktop steht die Nummer ohnehin in der Navigation. */
.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--linie-dunkel);
  box-shadow: 0 -4px 20px rgba(7, 25, 48, .18);
}
.call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem .5rem;
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-decoration: none;
}
.call-bar .cb-tel { background: var(--gelb); color: var(--navy); }
.call-bar .cb-mail { background: var(--navy); color: var(--weiss); }
body { padding-bottom: 56px; }
@media (min-width: 980px) {
  .call-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ===== Hero ================================================================ */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--weiss);
  overflow: hidden;
}
.hero::after {
  /* Gelber Dachfirst-Akzent unten — Logo-Motiv, subtil */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: var(--gelb);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Farbverlauf über dem Foto: links dunkel genug für weiße Schrift, rechts lässt er
   das Bild durch. Ein gleichmäßiger Schleier über dem ganzen Bild würde entweder den
   Text unlesbar oder das Foto matschig machen. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(7,25,48,.94) 0%, rgba(7,25,48,.86) 38%,
                    rgba(7,25,48,.55) 62%, rgba(7,25,48,.35) 100%);
}
@media (max-width: 899px) {
  /* Mobil steht der Text über dem ganzen Bild — dort braucht es flächige Deckung. */
  .hero::before {
    background: linear-gradient(180deg, rgba(7,25,48,.88) 0%, rgba(7,25,48,.78) 100%);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(3.5rem, 9vw, 7rem);
  max-width: 46rem;
}

/* Micro-Trust direkt unter dem CTA — die Sorgen, die vor dem Anruf im Kopf sind. */
.hero-mikro {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  margin-top: 1.5rem;
  font-size: .9rem;
  color: var(--auf-dunkel);
}
.hero-mikro span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.hero-mikro span::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 50%;
  background: var(--gelb) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23071930' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.hero h1 { color: var(--weiss); }
.hero h1 .akzent { color: var(--gelb); display: block; }
.hero .lede { color: var(--auf-dunkel); margin-top: 1.15rem; }
.hero .btn-row { margin-top: 2rem; }

.hero-tel {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.6rem;
  font-size: .95rem;
  color: var(--muted-dunkel);
}
.hero-tel a {
  font-family: var(--display);
  font-weight: 700;
  color: var(--weiss);
  text-decoration: none;
  border-bottom: 2px solid var(--gelb);
}

/* ===== Trust-Bar (Zuverlässig · Hochwertig · Regional) ====================== */
.trust {
  background: var(--navy-hoch);
  color: var(--weiss);
  border-top: 1px solid var(--linie-dunkel);
}
.trust-grid {
  display: grid;
  gap: 1.5rem;
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
}
@media (min-width: 760px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.trust-item { display: flex; align-items: flex-start; gap: .9rem; }
.trust-item svg { flex: none; width: 30px; height: 30px; color: var(--gelb); }
.trust-item h3 {
  font-size: .95rem;
  color: var(--weiss);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .2rem;
}
.trust-item p { font-size: .92rem; color: var(--muted-dunkel); line-height: 1.5; }

/* ===== Leistungs-Karten ==================================================== */
.services {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .services { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-gross);
  padding: 1.6rem;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten-hoch);
  border-color: transparent;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--gelb);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .55rem;
}
.service-card p { font-size: .96rem; color: var(--ink-weich); flex: 1; }
.service-card .mehr {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.1rem;
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gelb-text);
}
.service-card:hover .mehr .arrow { transform: translateX(3px); }
.service-card .arrow { transition: transform .15s ease; }

/* ===== Split (Bild + Text) ================================================= */
.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split-media { order: 2; }
}
.split-media img {
  width: 100%;
  border-radius: var(--radius-gross);
  box-shadow: var(--schatten);
}
.split-body h2 { margin-bottom: 1rem; }
.split-body p + p { margin-top: .9rem; }

/* Häkchen-Liste */
.check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .7rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .98rem;
}
.check-list li::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: .2rem;
  border-radius: 50%;
  background: var(--gelb) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23071930' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ===== Ablauf-Schritte ===================================================== */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  padding: 1.6rem 1.4rem 1.4rem;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-top: 3px solid var(--gelb);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--papier-warm);
  margin-bottom: .5rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { font-size: .95rem; color: var(--ink-weich); }

/* ===== Instagram-Raster ==================================================== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
}
@media (min-width: 620px) { .insta-grid { grid-template-columns: repeat(3, 1fr); gap: .85rem; } }
@media (min-width: 980px) { .insta-grid { grid-template-columns: repeat(6, 1fr); } }

.insta-item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--papier-warm);
  text-decoration: none;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.insta-item:hover img { transform: scale(1.06); }
.insta-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 25, 48, .55), transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
}
.insta-item:hover::after { opacity: 1; }
.insta-item .reel {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .5));
}
/* Skeleton während des Ladens */
.insta-item.is-loading {
  background: linear-gradient(100deg, var(--papier-warm) 30%, var(--papier) 50%, var(--papier-warm) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
}
@keyframes shimmer { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .insta-item.is-loading { animation: none; } }

.insta-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* ===== CTA-Band ============================================================ */
.cta-band {
  background: var(--navy);
  color: var(--weiss);
  text-align: center;
}
.cta-band .container { padding-block: clamp(3rem, 6vw, 4.75rem); }
.cta-band h2 { color: var(--weiss); max-width: 22ch; margin-inline: auto; }
.cta-band p { color: var(--muted-dunkel); max-width: 52ch; margin: 1rem auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ===== Detail-Unterseiten ================================================== */
.detail-hero {
  background: var(--papier);
  border-bottom: 1px solid var(--linie);
  padding-block: clamp(2.25rem, 5vw, 3.75rem);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .9rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }
.detail-hero h1 { max-width: 20ch; }
.detail-hero .lede { margin-top: 1rem; max-width: 60ch; }

/* Leistungsseite mit Foto: Text links, echtes Baustellenbild rechts. */
.detail-hero-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) {
  .detail-hero-grid { grid-template-columns: 1.1fr 1fr; }
}
.detail-hero-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-gross);
  box-shadow: var(--schatten);
}

.detail-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
@media (min-width: 940px) {
  .detail-grid { grid-template-columns: 7fr 4fr; align-items: start; }
}

.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.9rem; }
.prose ul, .prose ol { padding-left: 1.25rem; display: grid; gap: .5rem; }
.prose li { padding-left: .2rem; }
.prose li::marker { color: var(--gelb-text); font-weight: 700; }
.prose a { color: var(--navy); text-decoration-color: var(--gelb); text-underline-offset: 3px; }

/* Hervorgehobener Kasten im Fließtext */
.hinweis {
  padding: 1.15rem 1.3rem;
  background: var(--papier);
  border-left: 4px solid var(--gelb);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .98rem;
}
.hinweis strong { color: var(--navy); }

.aside {
  padding: 1.6rem;
  background: var(--navy);
  color: var(--weiss);
  border-radius: var(--radius-gross);
}
@media (min-width: 940px) { .aside { position: sticky; top: 92px; } }
.aside h3 {
  color: var(--weiss);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.aside p { font-size: .95rem; color: var(--muted-dunkel); }
.aside dl { margin: 1.25rem 0; display: grid; gap: .7rem; font-size: .92rem; }
.aside dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--linie-dunkel);
}
.aside dt { color: var(--muted-dunkel); }
.aside dd { margin: 0; font-weight: 600; text-align: right; }
.aside .btn { width: 100%; }
.aside .aside-tel {
  display: block;
  margin-top: .85rem;
  text-align: center;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gelb);
  text-decoration: none;
}

/* ===== FAQ ================================================================= */
.faq { display: grid; gap: .75rem; max-width: 62rem; }
.faq details {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq details[open] { border-color: var(--gelb); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--gelb-tief);
  border-bottom: 2.5px solid var(--gelb-tief);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq summary:hover { background: var(--papier); }
.faq .faq-body { padding: 0 1.3rem 1.3rem; color: var(--ink-weich); font-size: .98rem; }

/* ===== Formular ============================================================ */
.form-wrap {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
@media (min-width: 940px) { .form-wrap { grid-template-columns: 6fr 5fr; align-items: start; } }

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: .8rem .9rem;
  background: var(--weiss);
  border: 1.5px solid var(--linie);
  border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gelb);
  box-shadow: 0 0 0 3px rgba(244, 187, 65, .25);
}
.field textarea { resize: vertical; min-height: 140px; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--rot); }
.field-error { font-size: .85rem; color: var(--rot); }

.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }

.consent {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: var(--ink-weich);
}
.consent input { width: 18px; height: 18px; margin-top: .2rem; flex: none; accent-color: var(--gelb-tief); }
.consent a { color: var(--navy); }

/* Honeypot — für Menschen unsichtbar, für Bots verlockend */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  font-size: .95rem;
}
.form-status.is-success { background: #E8F5EE; color: var(--gruen); border: 1px solid #B6E0C8; }
.form-status.is-error { background: #FDECEA; color: var(--rot); border: 1px solid #F5C6C0; }

.kontakt-karte {
  padding: 1.75rem;
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--radius-gross);
}
.kontakt-karte h2 {
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.kontakt-liste { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.kontakt-liste li { display: flex; align-items: flex-start; gap: .8rem; }
.kontakt-liste svg { flex: none; width: 22px; height: 22px; color: var(--gelb-text); margin-top: .15rem; }
.kontakt-liste a { color: var(--navy); font-weight: 600; text-decoration: none; }
.kontakt-liste a:hover { text-decoration: underline; }
.kontakt-liste small { display: block; color: var(--muted); font-weight: 400; }

/* ===== Footer ============================================================== */
.site-footer {
  background: var(--navy);
  color: var(--muted-dunkel);
  border-top: 5px solid var(--gelb);
}
.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-block: clamp(2.75rem, 6vw, 4rem);
}
@media (min-width: 680px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.site-footer img.f-logo { height: 44px; width: auto; margin-bottom: 1rem; }
.site-footer h3 {
  color: var(--weiss);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}
.site-footer p { font-size: .92rem; line-height: 1.6; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer a { color: var(--muted-dunkel); text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: var(--gelb); }
.site-footer address { font-style: normal; font-size: .92rem; line-height: 1.7; }
.site-footer .f-tel {
  display: inline-block;
  margin-top: .5rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--weiss);
}
.site-footer .f-tel:hover { color: var(--gelb); }

.footer-social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--linie-dunkel);
  border-radius: var(--radius);
  transition: background-color .15s ease, color .15s ease;
}
.footer-social a:hover { background: var(--gelb); color: var(--navy); }
.footer-social svg { width: 19px; height: 19px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--linie-dunkel);
  font-size: .85rem;
}
.footer-bottom nav { display: flex; gap: 1.1rem; }

/* ===== Utilities =========================================================== */
.center { text-align: center; }
.mt-lg { margin-top: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: .75rem 1.2rem;
  background: var(--gelb);
  color: var(--navy);
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ===== Animationen ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    animation: fadeUp .6s cubic-bezier(.22, 1, .36, 1) both;
  }
  .d1 { animation-delay: .06s; }
  .d2 { animation-delay: .12s; }
  .d3 { animation-delay: .18s; }
  .d4 { animation-delay: .24s; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }
}

/* =============================================================================
   Dashboard (/dashboard.html) — intern, noindex.
   Das Panel wurde aus dem Bärbel-Projekt übernommen und nutzt dessen
   Token-Namen. Statt alle Regeln umzuschreiben, mappt diese Alias-Schicht die
   alten Namen auf die Geisler-Palette. Ändert sich oben eine Farbe, zieht das
   Dashboard automatisch mit.
   ============================================================================= */
:root {
  --paper:       var(--weiss);
  --paper-warm:  var(--papier);
  --stone:       var(--linie);
  --rule:        var(--linie);
  --ink-soft:    var(--ink-weich);
  --sage:        var(--gelb);
  --sage-deep:   var(--gelb-tief);
  --sage-shadow: var(--navy);
  --terracotta:      var(--rot);
  --terracotta-deep: #8E3527;
  --serif:        var(--display);
  --serif-italic: var(--display);
}

/* ========== dashboard ========== */

.dash-header {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.dash-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.dash-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 350;
  margin-bottom: 0.35rem;
}
.dash-header p {
  color: var(--muted);
  font-size: 0.95rem;
}
.period-select {
  display: inline-flex;
  padding: 3px;
  background: var(--paper-warm);
  border-radius: 999px;
  border: 1px solid var(--rule);
}
.period-select button {
  background: none;
  border: none;
  padding: 0.45rem 0.95rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.period-select button.active {
  background: var(--ink);
  color: var(--paper);
}

.kpi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) { .kpi-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

.kpi-card {
  background: var(--paper-warm);
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--sage);
  position: relative;
  overflow: hidden;
}
.kpi-card::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 10px;
  height: 10px;
  background: var(--sage);
}
.kpi-card.terracotta { border-left-color: var(--terracotta); }
.kpi-card.terracotta::before { background: var(--terracotta); }
.kpi-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.kpi-value {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 350;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: 'opsz' 144, 'SOFT' 40;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .dash-grid.two   { grid-template-columns: 1fr 1fr; }
  .dash-grid.three { grid-template-columns: 1fr 1fr 1fr; }
}

.dash-card {
  background: var(--paper-warm);
  padding: 1.75rem 2rem;
  position: relative;
}
.dash-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.005em;
}
.dash-card .sub {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

/* horizontal bar list */
.hbars { display: grid; gap: 0.6rem; }
.hbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
}
.hbar-label {
  position: relative;
  padding: 0.35rem 0.6rem;
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hbar-label::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--sage);
  opacity: 0.35;
  width: var(--w, 0%);
  transition: width 0.5s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 0;
}
.hbar-label span { position: relative; z-index: 1; }
.hbar-n {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  min-width: 2ch;
  text-align: right;
}

/* line chart container */
.chart-wrap {
  width: 100%;
  aspect-ratio: 16 / 7;
  position: relative;
}
.chart-wrap svg { width: 100%; height: 100%; display: block; }

/* donut */
.donut-wrap {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.donut-wrap svg { width: 130px; height: 130px; flex-shrink: 0; }
.donut-legend {
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
}
.donut-legend .swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 0.6rem;
  vertical-align: middle;
}

/* token login screen */
.login-screen {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}
.login-card {
  background: var(--paper-warm);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 460px;
  width: 100%;
  border-top: 3px solid var(--terracotta);
}
.login-card h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.login-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.login-card input {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
  margin-bottom: 1.5rem;
}
.login-card input:focus {
  outline: none;
  border-bottom-color: var(--terracotta);
}
.login-card .err {
  color: var(--terracotta);
  font-size: 0.85rem;
  margin-top: -1rem;
  margin-bottom: 1rem;
}

.dash-loading {
  color: var(--muted);
  font-family: var(--serif-italic);
  font-style: italic;
  padding: 3rem 0;
  text-align: center;
}

.dash-empty {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  padding: 1rem 0;
}

/* ========== animation on load ========== */

@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .fade-up.d1 { animation-delay: 0.1s; }
  .fade-up.d2 { animation-delay: 0.25s; }
  .fade-up.d3 { animation-delay: 0.4s; }
  .fade-up.d4 { animation-delay: 0.55s; }
  .fade-up.d5 { animation-delay: 0.7s; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ============================================================
   Dashboard — Kontaktanfragen
   Steht über den KPIs: das hier will erledigt werden.
   ============================================================ */

.inquiries-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.inquiries-head h3 { margin: 0; }

.inquiries-badge {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--paper);
  padding: 0.2rem 0.55rem;
}

.inq-empty {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.inq-list { display: flex; flex-direction: column; gap: 1rem; }

.inq {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--terracotta);   /* offen = terracotta */
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.45);
}
.inq.is-done {
  border-left-color: var(--sage);
  opacity: 0.6;                                /* erledigt tritt zurück, verschwindet aber nicht */
}

.inq-top {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}
.inq-top strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}
.inq-topic {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.inq-top time {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: auto;
}

.inq-contact {
  font-family: var(--sans);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.inq-contact a { color: var(--sage-deep); }

.inq-msg {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
  white-space: pre-wrap;      /* Zeilenumbrüche der Besucherin erhalten */
  overflow-wrap: anywhere;    /* lange Wörter/URLs sprengen die Karte nicht */
}

/* Sichtbarer Hinweis, wenn KEINE Benachrichtigungsmail rausging —
   sonst wartet Bärbel auf eine Mail, die nie kommt. */
.inq-warn {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--terracotta-deep);
  background: rgba(181, 74, 60, 0.07);
  padding: 0.45rem 0.6rem;
  margin: 0 0 0.75rem;
}

.inq-btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.inq-btn:hover:not(:disabled) { background: var(--ink); color: var(--paper); }
.inq-btn:disabled { opacity: 0.4; cursor: default; }

/* =============================================================================
   Bild-Platzhalter
   Steht dort, wo ein Foto hingehört, das noch fehlt. Bewusst als Platzhalter
   erkennbar — ein schlechtes Foto schadet mehr als eine ehrliche Leerstelle.
   ============================================================================= */
.bild-platzhalter {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .75rem;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  background: var(--papier-warm);
  border: 2px dashed var(--linie);
  border-radius: var(--radius-gross);
  color: var(--muted);
}
.bild-platzhalter svg { width: 40px; height: 40px; }
.bild-platzhalter span {
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
