/* Ordnungsliebe Düren - gemeinsames Stylesheet für alle Seiten
   Farben und Formensprache übernommen aus dem Logo von Cathérine:
   Petrol, Salbeigrün, Terrakotta, Bronze auf Creme. */

:root {
  --bg: #fdf7ee;
  --bg-header: rgba(253, 247, 238, 0.88);
  --bg-soft: #f6ecdd;
  --card: #fffcf7;
  --text: #3d382f;
  --text-muted: #756c5e;

  --teal: #2f7d8a;
  --teal-dark: #266773;
  --teal-soft: rgba(47, 125, 138, 0.11);
  --teal-line: rgba(47, 125, 138, 0.28);
  --sage: #8daa7f;
  --sage-dark: #6f8f62;
  --sage-soft: rgba(141, 170, 127, 0.16);
  --coral: #e07a5f;
  --tan: #b8895e;

  --border: #ecdfcd;
  --radius: 20px;
  --font: "Segoe UI Rounded", ui-rounded, "SF Pro Rounded", Quicksand, Nunito,
          "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-family: var(--font);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--teal);
  line-height: 1.2;
}
.nav .brand:hover { text-decoration: none; }
.nav .brand img { width: 38px; height: 38px; display: block; }
.nav .brand .b-sage { color: var(--sage-dark); font-weight: 600; }
.nav .brand .b-town {
  color: var(--sage-dark);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.nav a.item {
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav a.item:hover { background: var(--teal-soft); color: var(--teal-dark); text-decoration: none; }
.nav a.item.active { background: var(--teal-soft); color: var(--teal-dark); }

/* ---------- Layout ---------- */
main { flex: 1; width: 100%; max-width: 1080px; margin: 0 auto; padding: 56px 20px 96px; }

h1, h2, h3 { font-weight: 700; letter-spacing: -0.015em; color: var(--teal); }
h1 {
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 .sage { color: var(--sage-dark); }
h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); margin: 44px 0 14px; }
h3 { color: var(--text); }
p { margin-bottom: 14px; }
.muted { color: var(--text-muted); }
.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 640px; }

ul { margin: 0 0 14px 22px; max-width: 640px; }
ul li { margin-bottom: 6px; }
ul li::marker { color: var(--coral); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-soft);
  border: 1px solid rgba(141, 170, 127, 0.34);
  border-radius: 999px;
  padding: 5px 15px;
  margin-bottom: 22px;
}

/* ---------- Hero (Startseite) ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(0, 380px);
  gap: 48px;
  align-items: center;
  padding: 24px 0 8px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -200px -320px auto -240px;
  height: 520px;
  background: radial-gradient(620px 340px at 24% 34%, rgba(47, 125, 138, 0.11), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-text { max-width: 620px; }
/* Logomarke als Blickfang, auf einem weichen Cremekreis */
.hero-art {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--card) 55%, var(--bg-soft) 100%);
  box-shadow: 0 18px 44px rgba(84, 66, 46, 0.09);
}

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--teal-dark); transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 600;
}
.btn.secondary:hover { border-color: var(--teal); color: var(--teal-dark); background: transparent; }

/* ---------- Feature-Leiste ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 72px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.feature svg { width: 26px; height: 26px; color: var(--teal); margin-bottom: 12px; }
.feature h3 { font-size: 1.08rem; margin-bottom: 4px; }
.feature p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }

.more-link { margin-top: 22px; }

/* ---------- Karten (Leistungen) ---------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 76px;
}
.section-head h2 { margin: 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-line);
  box-shadow: 0 14px 34px rgba(84, 66, 46, 0.1);
}
.card svg { width: 26px; height: 26px; color: var(--teal); margin-bottom: 12px; }
.card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ---------- Ablauf ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  counter-reset: step;
}
.step { position: relative; padding-top: 14px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-soft);
  border: 1px solid rgba(141, 170, 127, 0.34);
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.06rem; margin-bottom: 6px; }
.step p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }

/* ---------- Abschluss-Band ---------- */
.band {
  margin-top: 84px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
}
.band h2 { margin-top: 0; }
.band p { color: var(--text-muted); max-width: 560px; margin-left: auto; margin-right: auto; }
.band .cta-row { justify-content: center; }

blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.55;
  font-weight: 600;
  color: var(--teal);
  border-left: 3px solid var(--coral);
  padding-left: 22px;
  margin: 32px 0;
  max-width: 640px;
}

/* ---------- Über mich ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 340px);
  gap: 52px;
  align-items: start;
}
.about-text { max-width: 640px; }
.about img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
  max-width: 720px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.contact-card:hover { transform: translateY(-2px); border-color: var(--teal); text-decoration: none; }
.contact-card svg { width: 24px; height: 24px; color: var(--teal); flex-shrink: 0; }
.contact-card strong { display: block; font-size: 0.98rem; }
.contact-card span { display: block; color: var(--text-muted); font-size: 0.88rem; }
.address { margin-top: 32px; font-size: 0.95rem; }

/* ---------- Kontaktformular ---------- */
.form {
  max-width: 620px;
  margin-top: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.form .optional { color: var(--text-muted); font-weight: 400; font-size: 0.88rem; }
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  line-height: 1.5;
}
.form textarea { resize: vertical; min-height: 130px; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.form input::placeholder,
.form textarea::placeholder { color: #a89e90; }

/* Honigtopf: für Menschen unsichtbar, Bots füllen ihn aus */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form .btn { margin-top: 6px; border: 0; cursor: pointer; font: inherit; font-weight: 700; }
.form .btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.form-note { font-size: 0.86rem; margin: 12px 0 0; }
.form-status { margin: 12px 0 0; font-size: 0.95rem; font-weight: 600; }
.form-status.ok { color: var(--sage-dark); }
.form-status.fehler { color: #b4442a; }

/* ---------- Rechtstexte ---------- */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.18rem; margin: 30px 0 8px; color: var(--teal); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer-inner a { color: var(--text-muted); }
.footer-inner a:hover { color: var(--teal-dark); }
.footer-inner .spacer { flex: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 28px; }
  .hero-art { max-width: 340px; }
  .features { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about img { max-width: 340px; }
  main { padding-top: 40px; }
  .band { padding: 34px 24px; }
}
@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form { padding: 22px; }
}
@media (max-width: 520px) {
  .nav { gap: 2px; }
  .nav .brand { font-size: 1.08rem; gap: 8px; }
  .nav .brand img { width: 32px; height: 32px; }
  .nav .brand .b-town { display: none; }
  .nav a.item { padding: 7px 11px; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
