/* ==========================================================================
   Anwaltskanzlei Celik — Design-System
   Schwarz / Weiß, warme neutrale Zwischentöne. Mobile-first.
   ========================================================================== */

:root {
  --ink:        #0c0c0c;
  --ink-soft:   #262523;
  --paper:      #ffffff;
  --stone:      #f5f3ef;
  --stone-dark: #edeae4;
  --line:       #e0dcd5;
  --line-dark:  #33312e;
  --muted:      #6c6862;
  --muted-dark: #a8a49c;

  --font-serif: Georgia, 'Iowan Old Style', 'Times New Roman', Times, serif;
  --font-sans:  system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1180px;
  --gap:  clamp(1.25rem, 4vw, 2rem);

  --shadow: 0 1px 2px rgba(12,12,12,.04), 0 8px 28px rgba(12,12,12,.06);
  --ease:   cubic-bezier(.22,.61,.36,1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0 0 .6em;
}

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* --- Layout-Bausteine ---------------------------------------------------- */

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

.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--stone { background: var(--stone); }
.section--ink   { background: var(--ink); color: var(--paper); }

.section-head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}
.section--ink .eyebrow { color: var(--muted-dark); }

.section-head h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); }

.lead {
  font-size: 1.125rem;
  color: var(--muted);
}
.section--ink .lead { color: var(--muted-dark); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: .75rem 1.25rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  letter-spacing: .04em;
  text-decoration: none;
  padding: .95rem 2.1rem;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
.btn:hover { background: var(--paper); color: var(--ink); }

.btn--ink { border-color: var(--ink); }
.btn--ink:hover { background: var(--ink); color: var(--paper); }

.btn--solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--solid:hover { background: transparent; color: var(--ink); }

/* --- Kopfzeile ----------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--line);
  color: var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
  color: var(--paper);
}
.site-header.is-solid .header-inner { color: var(--ink); }

.brand {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  text-decoration: none;
  position: relative;
  padding-block: .25rem;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-right: -.6rem;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .45s var(--ease);
  }
  .nav.is-open { transform: translateY(0); }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem var(--gap) 1.75rem;
  }
  .nav li + li { border-top: 1px solid var(--line); }
  .nav a { display: block; padding: 1rem 0; font-size: 1.1875rem; }
}

/* --- Hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: clamp(600px, 92svh, 900px);
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(3.5rem, 8vh, 6rem);
  overflow: hidden;
}

/* Platzhalter-Flächengrafik, bis die Fotos des Fotografen vorliegen */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(255,255,255,.10), transparent 62%),
    radial-gradient(80% 60% at 50% 100%, rgba(255,255,255,.05), transparent 60%);
  pointer-events: none;
}

.hero-inner { position: relative; }

/* Breite auf das Seitenverhältnis des Logos (3:2) abgestimmt */
.hero-logo {
  width: min(520px, 90vw);
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  color: var(--paper);
}

.hero h1 {
  font-size: clamp(2.25rem, 6.2vw, 4.25rem);
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.hero-kicker {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(.75rem, 1.5vw, .8125rem);
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.74);
  max-width: 44ch;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  transform: translateX(-50%);
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}

/* --- Rechtsgebiete-Karten ------------------------------------------------ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.25rem, 2.4vw, 1.75rem);
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.4rem);
  text-decoration: none;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--ink);
}

.card-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.card-icon svg { width: 100%; height: 100%; }

.card h3 {
  font-size: 1.4375rem;
  margin-bottom: .55rem;
}

.card p {
  color: var(--muted);
  font-size: .9875rem;
  line-height: 1.7;
  flex: 1;
}

.card-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.card-more svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.card:hover .card-more svg { transform: translateX(5px); }

/* --- Über mich ----------------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  /* Einspaltig, solange keine Bildspalte vorhanden ist (Portraitfoto folgt). */
  .split--solo { grid-template-columns: 1fr; max-width: 62rem; }
}

.split h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }

/* Platzhalter für das Portraitfoto */
.photo-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--stone-dark);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.principles {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}
.principles li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: 1.0625rem;
}
.principles svg {
  flex: none;
  width: 19px; height: 19px;
  margin-top: .34em;
}

/* --- Kontaktband --------------------------------------------------------- */

.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 820px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}
.contact-list dt,
.contact-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: .3rem;
}
.contact-list dd { margin: 0; }

.contact-list address {
  font-style: normal;
  font-family: var(--font-serif);
  font-size: 1.3125rem;
}

.contact-list a {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.28);
  padding-bottom: 2px;
  transition: border-color .3s var(--ease);
}
.contact-list a:hover { border-bottom-color: var(--paper); }

.hours {
  border: 1px solid var(--line-dark);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}
.hours h3 { font-size: 1.4375rem; }
.hours table { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 400;
}
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }

.hours-note {
  margin-top: 1.5rem;
  font-size: .9375rem;
  color: var(--muted-dark);
}

.hours-cta { margin-top: 1.5rem; }

/* --- Fußzeile ------------------------------------------------------------ */

.site-footer {
  background: var(--ink);
  color: var(--muted-dark);
  border-top: 1px solid var(--line-dark);
  padding-block: 2.5rem;
  font-size: .9375rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.footer-inner p { margin: 0; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--paper); }

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

/* Unterseiten: Kopfzeile ist IMMER solide (weiß, dunkler Text) – unabhängig vom
   JavaScript, damit die Menüleiste nie unsichtbar wird. */
.site-header--static {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.site-header--static .header-inner { color: var(--ink); }

.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(8rem, 16vh, 11rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 20ch;
  margin-inline: auto;
}

.page-hero-sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: rgba(255,255,255,.74);
  max-width: 58ch;
  margin: 0 auto;
}

.page-hero-icon {
  display: block;
  width: 46px; height: 46px;
  margin: 0 auto 1.5rem;
  color: rgba(255,255,255,.85);
}
.page-hero-icon svg { width: 100%; height: 100%; }

.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
}

.btn-plain {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 2px;
  transition: border-color .3s var(--ease);
}
.btn-plain:hover { border-bottom-color: var(--paper); }

.page-hero--klein {
  padding: clamp(7rem, 13vh, 9rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}
.page-hero--klein h1 { max-width: none; }

/* Brotkrumen */
.crumbs { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.crumbs li + li::before { content: '/'; margin-right: .5rem; opacity: .55; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--paper); }
.crumbs [aria-current] { color: var(--paper); }

/* --- Fließtext-Layout mit Seitenkarte ------------------------------------ */

.prose-layout,
.termin-layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 980px) {
  .prose-layout,
  .termin-layout { grid-template-columns: minmax(0, 1fr) 340px; }
}

.prose { max-width: 68ch; font-size: 1.09375rem; }
.prose h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  margin-top: 2.5em;
}
.prose h2:first-child { margin-top: 0; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.prose--center {
  margin-inline: auto;
  text-align: center;
}
.prose--center h2 { margin-top: 0; }

/* Rechtstexte: Impressum, Datenschutz */
.prose--legal { font-size: 1.03125rem; }
.prose--legal h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin-top: 2.25em;
}
.prose--legal h2:first-child { margin-top: 0; }
.prose--legal ul { padding-left: 1.25rem; }
.prose--legal li { margin-bottom: .35rem; }
.prose--legal mark {
  background: #fff3cd;
  color: var(--ink-soft);
  padding: .1em .4em;
  font-style: italic;
}
.prose-hinweis { display: none; }

.checklist {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}
@media (min-width: 640px) {
  .checklist { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: 1.0625rem;
}
.checklist svg { flex: none; width: 18px; height: 18px; margin-top: .38em; }

/* Hinweis „bundesweit tätig" auf den Rechtsgebietsseiten */
.bundesweit {
  margin-top: 2rem;
  padding: 1.1rem 1.35rem;
  background: var(--stone);
  border-left: 3px solid var(--ink);
  font-size: 1.03125rem;
}

/* --- Seitenkarte --------------------------------------------------------- */

.sidecard {
  background: var(--stone);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  position: sticky;
  top: 100px;
}
.sidecard h2 { font-size: 1.5rem; margin-top: 0; }
.sidecard p { font-size: .9875rem; color: var(--muted); }
.sidecard .eyebrow { margin-bottom: .6rem; }

.sidecard-phone { margin: 1.25rem 0; }
.sidecard-phone a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.sidecard-phone a:hover { border-bottom-color: var(--ink); }

.sidecard-mail { margin: .4rem 0 0; word-break: break-word; }
.sidecard-mail a {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.sidecard-mail a:hover { border-bottom-color: var(--ink); }

.sidecard-adresse {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .9375rem;
}

.slot-tabelle { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.slot-tabelle th,
.slot-tabelle td {
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
  font-size: .9375rem;
}
.slot-tabelle th { text-align: left; }
.slot-tabelle td { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.slot-tabelle tr:last-child th,
.slot-tabelle tr:last-child td { border-bottom: 0; }

@media (max-width: 979px) {
  .sidecard { position: static; }
}

/* --- Download-Liste ------------------------------------------------------ */

.downloads {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  max-width: 56rem;
  margin: 2rem auto 0;
}
.download-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.1rem 1.3rem;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.download-item:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.download-item svg { flex: none; width: 28px; height: 28px; }
.download-item .dl-titel { font-family: var(--font-serif); font-size: 1.1875rem; }
.download-item .dl-info { font-size: .8125rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

/* --- Häufige Fragen ------------------------------------------------------ */

.faq {
  max-width: 62rem;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  line-height: 1.4;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  flex: none;
  width: 13px; height: 13px;
  margin-top: .45em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq-answer {
  padding-bottom: 1.5rem;
  max-width: 68ch;
  color: var(--muted);
}

.faq-hinweis {
  max-width: 62rem;
  margin: 2rem auto 0;
  font-size: .875rem;
  color: var(--muted);
}

/* --- Formular ------------------------------------------------------------ */

.form { max-width: 44rem; }

.form-titel { font-size: clamp(1.5rem, 2.8vw, 2.05rem); margin-top: 0; }

.hours-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
}

.feld { margin-bottom: 1.4rem; }

.feld-reihe {
  display: grid;
  gap: 0 1.5rem;
}
@media (min-width: 620px) {
  .feld-reihe { grid-template-columns: 1fr 1fr; }
}

.feld label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}

.feld input[type='text'],
.feld input[type='email'],
.feld input[type='tel'],
.feld select,
.feld textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: .85rem 1rem;
  border-radius: 0;
  transition: border-color .25s var(--ease);
}
.feld textarea { resize: vertical; }
.feld input:focus,
.feld select:focus,
.feld textarea:focus {
  border-color: var(--ink);
  outline: none;
}
.feld [aria-invalid='true'] { border-color: #a4211d; }

.feld-fehler {
  margin: .45rem 0 0;
  font-size: .875rem;
  color: #a4211d;
}

.feld--check label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  line-height: 1.6;
}
.feld--check input { flex: none; margin-top: .35em; width: 18px; height: 18px; accent-color: var(--ink); }

.pflichtfeld-hinweis {
  font-size: .8125rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.hinweis {
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 2rem;
}
.hinweis h2 { margin-top: 0; font-size: 1.625rem; }
.hinweis--ok { background: var(--stone); }
.hinweis--fehler { border-color: #a4211d; color: #a4211d; }
.hinweis-entwurf {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .875rem;
  color: var(--muted);
}

/* --- Hinweisleiste Prototyp (wird vor Livegang entfernt) ----------------- */

.proto-note {
  background: var(--stone-dark);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .875rem;
  text-align: center;
  padding: .75rem var(--gap);
}
