/* ==========================================================================
   AssumHard - Stylesheet
   Nachbau der bisherigen WordPress-Optik (Theme "Mitech") als reines HTML.
   Farben stammen aus den Theme-Einstellungen der alten Installation.
   ========================================================================== */

/* Rubik war die Schrift des alten Themes. Hier liegt sie lokal im Ordner
   assets/fonts - kein Nachladen von Google, damit keine IP-Adressen der
   Besucher an Dritte gehen. */
@font-face {
  font-family: "Rubik"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/rubik-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Rubik"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("fonts/rubik-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Rubik"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("fonts/rubik-latin-700-normal.woff2") format("woff2");
}

:root {
  --primary:    #d64a31;   /* Akzentfarbe des Themes */
  --primary-dk: #b93a24;
  --secondary:  #086ad8;   /* Zweitfarbe, u. a. Buttons */
  --blue-deep:  #072a83;   /* Hintergrund Kopfbereich */
  --blue-head:  #002fa6;   /* Große blaue Überschriften */
  --text:       #333333;
  --heading:    #000000;
  --muted:      #7e7e7e;
  --grey-label: #ababab;
  --bg-1:       #f8f8f8;
  --bg-2:       #f5f5f5;
  --bg-3:       #f6f2ed;
  --bg-cta:     #eff2f6;
  --line:       #e6e6e6;

  --wrap: 1200px;
  --shadow: 0 0 40px rgba(51, 51, 51, 0.1);
  --font: "Rubik", Helvetica, Arial, "Nimbus Sans L", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.74;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dk); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--primary); color: #fff; padding: .7rem 1.2rem; font-weight: 500; }
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* --- Typografie ---------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-weight: 500; color: var(--heading); margin: 0 0 .55em; line-height: 1.28;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.09; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); line-height: 1.4; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

mark { background: none; color: var(--primary); }

/* Kleine graue Zwischenüberschrift ("modern" im alten Theme) */
.label {
  display: block; font-size: .9rem; font-weight: 400; letter-spacing: .04em;
  color: var(--grey-label); margin: 0 0 1rem;
}
.label.center { text-align: center; }

.lead { font-size: 1.15rem; line-height: 1.67; }
.center { text-align: center; }
.narrow { max-width: 740px; margin-left: auto; margin-right: auto; }

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 230px; padding: 1rem 1.8rem;
  font: inherit; font-size: .95rem; font-weight: 500;
  background: var(--secondary); color: #fff;
  border: 2px solid var(--secondary); border-radius: 5px;
  transition: background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn--primary { background: var(--primary); border-color: var(--primary); }
.btn--primary:hover { background: var(--secondary); border-color: var(--secondary); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn--outline:hover { background: var(--primary); border-color: var(--primary); }
.btn--auto { min-width: 0; }

/* --- Kopfbereich --------------------------------------------------------- */

.site-header { position: sticky; top: 0; z-index: 60; background: #fff;
  box-shadow: 0 1px 0 var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 86px; }

.brand { margin-right: auto; display: block; }
.brand img { height: 46px; width: auto; }


.menu { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu > li > a {
  display: block; padding: .7rem .85rem; color: var(--heading);
  font-size: .95rem; font-weight: 400;
}
.menu > li > a:hover, .menu > li:hover > a { color: var(--primary); }
.menu > li > a[aria-current="page"] { color: var(--primary); }

.menu .sub {
  position: absolute; left: 0; top: 100%; min-width: 220px;
  background: #fff; box-shadow: var(--shadow); border-radius: 4px;
  list-style: none; margin: 0; padding: .6rem 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.menu > li:hover .sub, .menu > li:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.menu .sub a { display: block; padding: .5rem 1.3rem; color: var(--text); font-size: .93rem; }
.menu .sub a:hover { color: var(--primary); }
.menu .has-sub > a::after { content: ""; display: inline-block; margin-left: .45rem;
  border: 4px solid transparent; border-top-color: currentColor; transform: translateY(2px); }

.header-cta { display: inline-flex; }
.menu .mobile-only { display: none; }

.burger { display: none; background: none; border: 0; padding: .5rem; cursor: pointer;
  font-size: 1.7rem; line-height: 1; color: var(--heading); }

@media (max-width: 1080px) {
  .burger { display: block; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; box-shadow: 0 20px 30px rgba(0,0,0,.08);
    padding: .5rem 20px 1.4rem; max-height: 78vh; overflow-y: auto;
  }
  .site-nav.open { display: block; }
  .site-header .wrap { position: relative; }
  .menu { flex-direction: column; align-items: stretch; gap: 0; }
  .menu > li > a { padding: .85rem .2rem; border-bottom: 1px solid var(--line); }
  .menu .sub { position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; padding: 0 0 .4rem .9rem; }
  .menu .sub a { padding: .55rem .2rem; }
  .menu .has-sub > a::after { float: right; margin-top: .6rem; }
  .header-cta { display: none; }
  .menu .mobile-only { display: block; }
}

/* --- Kopfbereich Startseite ---------------------------------------------- */

.hero {
  background: #2b2b2b url("img/hero-bg.jpg") center/cover no-repeat;
  color: #fff; text-align: center;
  padding: clamp(5rem, 13vw, 12.4rem) 0;
  position: relative;
}
/* Leichte Abdunklung, damit die weiße Schrift lesbar bleibt.
   Für ein helleres Bild den Wert 0.45 verringern. */
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.hero .wrap { position: relative; }
.hero .kicker { font-size: clamp(1.1rem, 2.4vw, 1.9rem); font-weight: 400; margin: 0 0 1.1rem; }
.hero h1 { color: #fff; margin: 0 0 2.1rem; }

/* --- Seitenkopf Unterseiten ---------------------------------------------- */

/* Seitenkopf. Eigenes Bild pro Seite direkt im <header>-Tag setzen:
       style="background-image:url('assets/img/datei.jpg')"
   Der Pfad muss dort stehen und nicht in einer CSS-Variablen - relative
   Pfade in Variablen löst der Browser sonst gegen diese Datei hier auf.
   Die Abdunklung steuert --kopf-dunkel (reine Zahl, das geht als Variable). */
.page-head {
  background: #2b2b2b url("img/hero-bg.jpg") center/cover no-repeat;
  color: #fff; padding: clamp(3.4rem, 8vw, 6.6rem) 0; position: relative;
  text-align: center;
}
.page-head::before { content: ""; position: absolute; inset: 0;
  background: rgba(0, 0, 0, var(--kopf-dunkel, .55)); }

/* Variante mit Einleitungstext im Bild, mittig - wie auf "Über Uns" */
.page-head--gross { padding: clamp(4.5rem, 11vw, 9rem) 0; text-align: center; }
.page-head--gross h1 { font-size: clamp(2.2rem, 5.6vw, 4rem); margin-bottom: 1.2rem; }
.page-head--gross .kopf-text {
  max-width: 740px; margin: 0 auto; font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem); line-height: 1.67; color: #fff;
}
.page-head .wrap { position: relative; }
.page-head h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: .6rem; }
.crumbs { font-size: .92rem; color: rgba(255,255,255,.75); }
.crumbs a { color: #fff; }
.crumbs a:hover { color: var(--primary); }

/* --- Abschnitte ---------------------------------------------------------- */

.section { padding: clamp(3.4rem, 7vw, 6.5rem) 0; }
.section--grey  { background: var(--bg-1); }
.section--grey2 { background: var(--bg-2); }
.section--sand  { background: var(--bg-3); }
.section--slim  { padding: 2.7rem 0; }
.section-head { margin-bottom: 3rem; }

/* --- Logo-Streifen ------------------------------------------------------- */

/* Logo-Raster. Wächst automatisch mit: neue Logos einfach als weiteres
   <img> ergänzen, die Zeilen brechen von selbst um. */
.clients {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem 3rem; align-items: center; justify-items: center;
}
.clients img { max-height: 80px; max-width: 100%; width: auto;
  opacity: .85; transition: opacity .2s ease, transform .2s ease; }
.clients img:hover { opacity: 1; }
/* Verlinkte Kundenlogos */
.clients a { display: block; line-height: 0; }
.clients a:hover img, .clients a:focus-visible img { opacity: 1; transform: scale(1.04); }
@media (max-width: 900px) { .clients { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (max-width: 600px) { .clients { grid-template-columns: repeat(2, 1fr); }
                            .clients img { max-height: 60px; } }

/* --- Raster -------------------------------------------------------------- */

.grid { display: grid; gap: 30px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 980px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); }
                             .grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 680px)  { .grid--2, .grid--4, .grid--5 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 2.4rem; } }

/* --- Info-Kästen --------------------------------------------------------- */

.infobox { display: flex; gap: 1.2rem; align-items: flex-start; }
/* Symbole neben den Kurztexten. Sie erben die Textfarbe, ein Farbwechsel
   geht also über "color". */
.infobox .ico {
  flex: 0 0 48px; height: 48px; display: grid; place-items: center;
  color: var(--heading);
}
.infobox .ico svg { width: 46px; height: 46px; }
.infobox h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.infobox p { color: var(--muted); margin: 0; }

.tile {
  background: #fff; border-radius: 5px; box-shadow: var(--shadow);
  padding: 2.2rem 1.9rem; height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
a.tile { display: block; color: inherit; }
a.tile:hover { transform: translateY(-5px); box-shadow: 0 10px 45px rgba(51,51,51,.16); color: inherit; }
.tile img { margin-bottom: 1.3rem; max-height: 90px; width: auto; }
.tile h3 { font-size: 1.15rem; }
.tile p { color: var(--muted); margin: 0; }
.tile .more { display: inline-block; margin-top: 1.1rem; color: var(--primary); font-weight: 500; }

.tile--photo { padding: 0; overflow: hidden; }
.tile--photo img { width: 100%; max-height: none; aspect-ratio: 3/2; object-fit: cover; margin: 0; }
.tile--photo .body { padding: 1.7rem 1.6rem 2rem; }

/* --- Aufklappbereich ----------------------------------------------------- */

.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  list-style: none; cursor: pointer; padding: 1.15rem 2.2rem 1.15rem 0;
  font-size: 1.1rem; font-weight: 500; color: var(--heading); position: relative;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--primary); font-weight: 400; line-height: 1;
}
.accordion details[open] summary::after { content: "\2013"; }
.accordion summary:hover { color: var(--primary); }
.accordion .panel { padding: 0 2.2rem 1.4rem 0; color: var(--muted); }

/* --- Zitate -------------------------------------------------------------- */

/* Raster für Kundenstimmen: passt sich der Anzahl an. Zwei Stimmen stehen
   nebeneinander, ab drei bricht es in drei Spalten um. */
.quotes { display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
@media (max-width: 720px) { .quotes { grid-template-columns: 1fr; } }

.quote {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: 5px; box-shadow: var(--shadow);
  padding: 2.4rem 2rem 1.9rem; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.quote::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--primary); opacity: 0; transition: opacity .2s ease;
}
.quote:hover { transform: translateY(-4px); box-shadow: 0 12px 45px rgba(51,51,51,.14); }
.quote:hover::after { opacity: 1; }

/* Anführungszeichen als Schmuckelement, nicht im Textfluss */
.quote-zeichen {
  position: absolute; top: 1rem; right: 1.4rem;
  font-size: 4.6rem; line-height: 1; color: var(--primary); opacity: .13;
  font-weight: 700; pointer-events: none; user-select: none;
}

.quote blockquote { position: relative; margin: 0 0 1.7rem; font-size: 1.06rem;
  color: var(--heading); line-height: 1.65; flex: 1; }

.quote figcaption { display: flex; align-items: center; gap: .9rem;
  padding-top: 1.3rem; border-top: 1px solid var(--line); }
.quote .initialen {
  flex: 0 0 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(214,74,49,.12); color: var(--primary-dk);
  font-weight: 500; font-size: .95rem; letter-spacing: .02em;
}
.quote .wer { display: block; font-weight: 500; color: var(--heading); }
.quote .was { display: block; color: var(--muted); font-size: .9rem; }

/* --- Team ---------------------------------------------------------------- */

/* Team. Ohne Kasten - die runden Portraits tragen den Abschnitt allein. */
.team { display: grid; gap: 2.4rem 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
@media (max-width: 860px) { .team { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .team { grid-template-columns: repeat(2, 1fr); } }

.member { margin: 0; text-align: center; }
.member .avatar {
  position: relative; width: 132px; max-width: 100%; aspect-ratio: 1;
  margin: 0 auto 1.2rem; border-radius: 50%; overflow: hidden;
  background: #e7eaee;
  box-shadow: 0 0 0 0 rgba(214,74,49,0);
  transition: box-shadow .22s ease, background .22s ease;
}
.member:hover .avatar { background: #dfe3e8; box-shadow: 0 0 0 5px rgba(214,74,49,.18); }

/* Umriss als Platzhalter, bis echte Fotos vorliegen */
.member .silhouette { width: 100%; height: 100%; display: block; fill: #9aa3ad;
  transition: fill .22s ease; }
.member:hover .silhouette { fill: #828c97; }

/* Foto: füllt den Kreis formatfüllend aus */
.member .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.member .name { display: block; font-weight: 500; color: var(--heading);
  font-size: 1.05rem; line-height: 1.35; }
.member .rolle { display: block; margin-top: .25rem; color: var(--muted); font-size: .92rem; }

/* --- Leistungsblöcke ----------------------------------------------------- */

.service { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem;
  align-items: center; padding: clamp(3rem, 6vw, 5rem) 0; }
.service + .service { border-top: 1px solid var(--line); }
.service img { border-radius: 5px; width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.service:nth-of-type(even) .media { order: -1; }
@media (max-width: 900px) { .service { grid-template-columns: 1fr; gap: 2rem; }
                            .service:nth-of-type(even) .media { order: 0; } }

.chips { list-style: none; margin: 1.6rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { background: #fff; box-shadow: var(--shadow); border-radius: 5px;
  padding: .6rem 1.1rem; font-size: .93rem; font-weight: 500; color: var(--text); }

/* --- Preistabelle -------------------------------------------------------- */

.price { background: #fff; border-radius: 5px; box-shadow: var(--shadow);
  padding: 2.6rem 1.9rem; text-align: center; height: 100%; }
.price h3 { font-size: 1.2rem; margin-bottom: 1.2rem; }
.price .amount { color: var(--blue-head); font-weight: 500; line-height: 1;
  font-size: 3.4rem; letter-spacing: -.02em; }
.price .amount .cur { font-size: 1.25rem; vertical-align: super; margin-right: .1rem; }
.price .amount .per { font-size: 1rem; color: var(--muted); font-weight: 400; }
.price ul { list-style: none; margin: 1.6rem 0 0; padding: 1.5rem 0 0;
  border-top: 1px solid var(--line); color: var(--muted); display: grid; gap: .9rem; }

/* --- Kontaktkarten ------------------------------------------------------- */

.contact-card { background: #fff; border-radius: 5px; box-shadow: var(--shadow); padding: 2rem 1.8rem; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: .9rem; }
.contact-card address { font-style: normal; line-height: 2; }

/* --- Aufruf-Band --------------------------------------------------------- */

.cta { background: var(--bg-cta); padding: clamp(3.5rem, 8vw, 8rem) 0; }
.cta .split { align-items: center; }
.cta h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); border-left: 4px solid var(--primary);
  padding-left: 30px; margin-bottom: .8rem; }
.cta .sub { padding-left: 34px; color: var(--text); }
.cta .right { text-align: center; }
/* Telefonhörer über der Rufnummer. Erbt die Textfarbe. */
.cta .tel-icon { display: block; width: 46px; height: 46px; margin: 0 auto .8rem;
  color: var(--primary); }
.cta .right .small { color: rgba(51,51,51,.75); margin-bottom: .3rem;
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; }
.cta .right .tel { display: block; color: var(--blue-head); font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.17; margin-bottom: 1.6rem; }
.cta .right .tel:hover { color: var(--primary); }
@media (max-width: 900px) { .cta h2, .cta .sub { padding-left: 20px; } }

/* --- Fußbereich ---------------------------------------------------------- */

.site-footer { padding: 5rem 0 0; font-size: .95rem; color: var(--muted); }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: 2.5rem; }
.site-footer h3 { font-size: 1.15rem; margin-bottom: 1.4rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--primary); }
.site-footer .f-brand img { height: 46px; width: auto; margin-bottom: 1.8rem; }
.site-footer .f-brand .tel { color: var(--heading); font-weight: 500; }
.site-footer .f-brand .web { color: var(--primary); }
.site-footer .tv img { max-width: 150px; }
.footer-bottom { margin-top: 3rem; padding: 1.6rem 0; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .6rem 2rem; align-items: center; font-size: .92rem; }
.footer-bottom .legal { margin-left: auto; display: flex; gap: 1.2rem; }
@media (max-width: 1080px) { .site-footer .cols { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 680px)  { .site-footer .cols { grid-template-columns: 1fr; gap: 2rem; }
                             .footer-bottom .legal { margin-left: 0; } }

/* --- Fließtextseiten (Impressum, Datenschutz) ---------------------------- */

.prose { max-width: 800px; }
.prose h2 { font-size: 1.45rem; margin: 2.6rem 0 1rem; }
.prose h3 { font-size: 1.15rem; margin: 1.8rem 0 .7rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .5rem; }
.prose address { font-style: normal; line-height: 2; }
.prose strong { color: var(--heading); }

/* --- Einwilligungshinweis ------------------------------------------------ */

.consent {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: flex-end; justify-content: center;
  background: rgba(0,0,0,.45); padding: 20px;
}
.consent.offen { display: flex; }
@media (min-width: 700px) { .consent { align-items: center; } }

.consent-karte {
  background: #fff; border-radius: 5px; box-shadow: 0 20px 60px rgba(0,0,0,.3);
  padding: 2rem 1.9rem; width: 100%; max-width: 620px;
  max-height: 88vh; overflow-y: auto;
}
.consent-karte h2 { font-size: 1.35rem; margin-bottom: .7rem; }
.consent-karte > p { color: var(--muted); }

.consent-details { margin: 1.4rem 0 .4rem; border-top: 1px solid var(--line); }
.consent-zeile { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.consent-zeile p { margin: .45rem 0 0 1.9rem; color: var(--muted); font-size: .92rem; }
.consent-schalter { display: flex; align-items: center; gap: .7rem;
  font-weight: 500; color: var(--heading); cursor: pointer; }
.consent-schalter input { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; }
.consent-schalter input:disabled { cursor: default; }
.consent-schalter em { font-style: normal; font-weight: 400; color: var(--muted); font-size: .88rem; }

/* Ablehnen und Akzeptieren sind bewusst gleich gestaltet und gleich gut
   erreichbar - das verlangt die Rechtsprechung zu Einwilligungshinweisen. */
.consent-aktionen { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center;
  margin-top: 1.6rem; }
.consent-aktionen .btn { flex: 1 1 190px; }
.consent-link { background: none; border: 0; padding: .6rem .2rem; cursor: pointer;
  font: inherit; font-size: .93rem; color: var(--muted); text-decoration: underline; }
.consent-link:hover { color: var(--primary); }
.consent-speichern { flex-basis: 100%; }

.consent-fuss { margin-top: 1.3rem; font-size: .9rem; color: var(--muted); }
.consent-fuss a { color: var(--muted); text-decoration: underline; }
.consent-fuss a:hover { color: var(--primary); }

/* Platzhalter für blockierte externe Inhalte */
.consent-platzhalter {
  background: var(--bg-1); border: 1px dashed var(--line); border-radius: 5px;
  padding: 2rem 1.6rem; text-align: center;
}
.consent-platzhalter p { color: var(--muted); }
.consent-platzhalter p:first-child { color: var(--heading); }

/* Kleines Etikett über einer Kontaktkarte, z. B. "Firmensitz" / "Büro" */
.karte-label {
  display: block; font-size: .72rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--primary); margin-bottom: .35rem;
}
.contact-card .karte-label + h3 { margin-bottom: .8rem; }

/* --- Kontaktformular ----------------------------------------------------- */

.formular-block { margin-top: 3.5rem; background: #fff; border-radius: 5px;
  box-shadow: var(--shadow); padding: 2.6rem 2.2rem; max-width: 760px; }
.formular-block h2 { font-size: 1.5rem; margin-bottom: .5rem; }

.hinweis { padding: 1rem 1.2rem; border-radius: 5px; margin: 1.6rem 0 0;
  border-left: 4px solid; font-size: .97rem; }
.hinweis--gut    { background: #eef7ef; border-color: #3f8f4a; color: #24572c; }
.hinweis--fehler { background: #fdf0ec; border-color: var(--primary); color: #8f2f19; }

.formular { margin-top: 1.8rem; }
.feld-paar { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.4rem; }
@media (max-width: 620px) { .feld-paar { grid-template-columns: 1fr; } }

.feld { margin: 0 0 1.3rem; }
.feld label { display: block; margin-bottom: .4rem; font-weight: 500; color: var(--heading);
  font-size: .95rem; }
.feld label .muted { font-weight: 400; }
.feld input, .feld textarea {
  width: 100%; padding: .8rem .9rem; font: inherit; color: var(--text);
  background: #fff; border: 1px solid #cfd6dd; border-radius: 4px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.feld textarea { resize: vertical; min-height: 140px; }
.feld input:focus, .feld textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(214,74,49,.15);
}
/* Erst nach dem Verlassen des Feldes meckern, nicht beim Tippen */
.feld input:not(:placeholder-shown):invalid,
.feld textarea:not(:placeholder-shown):invalid { border-color: var(--primary); }

.feld-fuss { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem;
  margin: 1.8rem 0 0; }
.feld-fuss .muted { flex: 1 1 300px; font-size: .88rem; line-height: 1.5; }

/* Der Honigtopf muss für Bots im Quelltext stehen, für Menschen aber
   unsichtbar sein - display:none würde von manchen Bots erkannt. */
.honigtopf { position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; }
