/* ── Alltagshilfe Mülheim – Landingpage ─────────────────────────────────── */
:root {
  --papier: #FAF8F3;
  --tinte:  #161616;
  --marker: #B03A2E;
  --matt:   #6E6E6E;
  --linie:  #161616;

  --serif: "Charter", "Georgia", "Times New Roman", serif;
  --sans:  "Lato", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --sans-ar: "Noto Naskh Arabic", "Segoe UI", "Tahoma", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  /* dezente Papierstruktur */
  background-image:
    radial-gradient(circle at 20% 15%, rgba(22,22,22,.020) 0, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(176,58,46,.025) 0, transparent 50%);
}

:lang(ar), [dir="rtl"] { font-family: var(--sans-ar); }

/* ── Sprachumschalter ─────────────────────────────────────────────────── */
.langbar {
  display: flex;
  gap: .35rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.5rem .25rem;
}
.langbar a {
  color: var(--matt);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: 3px;
  border: 1px solid transparent;
}
.langbar a:hover { color: var(--tinte); border-color: rgba(22,22,22,.15); }
.langbar a.is-active {
  color: var(--marker);
  border-color: currentColor;
  font-weight: 700;
}

/* ── Das „Blatt" ──────────────────────────────────────────────────────── */
.sheet {
  max-width: 720px;
  margin: .5rem auto 4rem;
  padding: clamp(1.5rem, 5vw, 3.25rem);
  background: var(--papier);
  border: 1px solid rgba(22,22,22,.14);
  box-shadow: 0 1px 0 rgba(22,22,22,.05), 0 22px 45px -30px rgba(22,22,22,.4);
  position: relative;
}
/* rote Marker-Kante oben */
.sheet::before {
  content: "";
  position: absolute;
  inset-inline: -1px;
  top: -1px;
  height: 5px;
  background: var(--marker);
}

/* ── Kopf ─────────────────────────────────────────────────────────────── */
.head { margin-bottom: 2.5rem; }
.kicker {
  margin: 0 0 .9rem;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--marker);
  font-weight: 700;
}
.kicker::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--linie);
  margin-top: .7rem;
}
[dir="rtl"] .kicker::after { margin-inline: 0; }

h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -.01em;
}
[dir="rtl"] h1 { letter-spacing: 0; line-height: 1.4; }

.intro {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--tinte);
  margin: 0;
  font-weight: 400;
}

/* ── Blöcke ───────────────────────────────────────────────────────────── */
.block { margin: 2.25rem 0; }
.block h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0 0 .85rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(22,22,22,.16);
}
.block p { margin: 0; }

.tasks {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tasks li {
  position: relative;
  padding-inline-start: 1.6rem;
  margin-bottom: .85rem;
}
.tasks li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .62em;
  width: .55rem;
  height: .55rem;
  background: var(--marker);
  transform: rotate(45deg);
}

.coord {
  margin: 2.5rem 0;
  padding: 1.25rem 1.4rem;
  border-inline-start: 3px solid var(--marker);
  background: rgba(22,22,22,.025);
  font-style: italic;
  color: #33312d;
}
[dir="rtl"] .coord { font-style: normal; }

/* ── Kontakt ──────────────────────────────────────────────────────────── */
.contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--linie);
}
.cta { margin: 0 0 1.5rem; color: var(--matt); }

.field { display: block; margin-bottom: 1.25rem; }
.field span {
  display: block;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--matt);
  margin-bottom: .35rem;
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--tinte);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(22,22,22,.35);
  padding: .45rem .1rem;
  border-radius: 0;
}
.field textarea { resize: vertical; border: 1.5px solid rgba(22,22,22,.35); padding: .6rem; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--marker);
}

button[type="submit"] {
  font: inherit;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--papier);
  background: var(--tinte);
  border: none;
  padding: .8rem 2.2rem;
  cursor: pointer;
  margin-top: .5rem;
  transition: background .15s ease;
}
button[type="submit"]:hover { background: var(--marker); }
button[type="submit"]:disabled { opacity: .6; cursor: default; }

.privacy { font-size: .8rem; color: var(--matt); margin: 1rem 0 0; }

.formnote {
  margin: 1rem 0 0;
  padding: .85rem 1rem;
  font-size: .95rem;
  border-inline-start: 3px solid;
}
.formnote.is-ok  { border-color: #2e7d32; background: rgba(46,125,50,.08); color: #1f5622; }
.formnote.is-err { border-color: var(--marker); background: rgba(176,58,46,.07); color: var(--marker); }

/* Honeypot verstecken – ohne physisches left:-9999px, das RTL-Overflow erzeugt */
.hp {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 480px) {
  body { font-size: 17px; }
  .sheet { border-inline: none; }
}
