/* ============================================================
   Gabriele Vargas Hein – Heilpraktikerin für Psychotherapie
   Bad Vilbel bei Frankfurt
   Stylesheet – statisch, ohne externe Abhängigkeiten (DSGVO-freundlich)
   ============================================================ */

/* ---------- 1. Design-Tokens ---------- */
:root {
  /* Farben */
  --tuerkis:      #00a695;
  --tuerkis-700:  #00806f;
  --tuerkis-900:  #004f47;
  --tuerkis-050:  #eef8f6;
  --bluete:       #e08fae;
  --bluete-050:   #fdf2f6;
  --sand:         #fbf9f7;
  --papier:       #ffffff;
  --tinte:        #22322f;
  --nebel:        #61736f;
  --linie:        #e4eae8;

  /* Schrift */
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, ui-serif, serif;
  --font-body:    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Form */
  --r-petal: 2px 28px 28px 28px;
  --r-soft: 16px;
  --schatten: 0 1px 2px rgba(34,50,47,.04), 0 12px 32px -12px rgba(34,50,47,.14);
  --schatten-hoch: 0 2px 4px rgba(34,50,47,.05), 0 24px 48px -18px rgba(0,105,95,.28);

  /* Raster */
  --breite: 1180px;
  --breite-text: 760px;
  --luft: clamp(3.5rem, 7vw, 6.5rem);
}

/* ---------- 2. Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 120px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--sand);
  color: var(--tinte);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--tuerkis-700); text-decoration-color: rgba(0,166,149,.35); text-underline-offset: .18em; }
a:hover { color: var(--tuerkis-900); text-decoration-color: currentColor; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--tuerkis-900);
  margin: 0 0 .6em;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.05rem, 1.35rem + 3vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 1.15rem + 2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.02rem + .6vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
p  { margin: 0 0 1.15em; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

strong, b { font-weight: 650; color: var(--tuerkis-900); }

::selection { background: var(--tuerkis); color: #fff; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 999;
  background: var(--tuerkis-900); color: #fff; padding: .8rem 1.4rem;
  border-radius: 0 0 12px 12px; font-weight: 600; text-decoration: none;
  transition: top .2s;
}
.skip:focus { top: 0; color: #fff; }

/* ---------- 3. Layout-Hilfen ---------- */
.wrap { width: min(100% - 2.5rem, var(--breite)); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: min(100% - 1.75rem, var(--breite)); } }

.section { padding-block: var(--luft); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--sand  { background: var(--sand); }
.section--paper { background: var(--papier); }
.section--wash  { background: var(--tuerkis-050); }

.textblock { max-width: var(--breite-text); }
.center { text-align: center; }
.center .textblock { margin-inline: auto; }

.eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tuerkis);
  margin-bottom: .9rem;
}
.eyebrow--light { color: rgba(255,255,255,.82); }

.lead { font-size: clamp(1.075rem, 1rem + .35vw, 1.28rem); line-height: 1.72; color: #354945; }

/* Blüten-Trenner: die Signatur der Seite */
.bluete-trenner {
  display: flex; align-items: center; gap: 1.1rem;
  margin: 0 0 2.6rem;
}
.bluete-trenner::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--linie), transparent);
}
.bluete-trenner svg { width: 26px; height: 26px; flex: none; color: var(--bluete); }
.center .bluete-trenner { justify-content: center; }
.center .bluete-trenner::after { display: none; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  padding: .85rem 1.65rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background-color .18s, color .18s, border-color .18s;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--tuerkis); color: #fff; box-shadow: 0 8px 20px -10px rgba(0,105,95,.7); }
.btn--primary:hover { background: var(--tuerkis-700); color: #fff; box-shadow: 0 14px 28px -12px rgba(0,105,95,.75); }

.btn--ghost { border-color: rgba(0,166,149,.4); color: var(--tuerkis-700); background: transparent; }
.btn--ghost:hover { border-color: var(--tuerkis); background: var(--tuerkis-050); color: var(--tuerkis-900); }

.btn--light { background: #fff; color: var(--tuerkis-900); }
.btn--light:hover { background: #fff; color: var(--tuerkis-900); box-shadow: 0 14px 30px -14px rgba(0,0,0,.45); }

.btn--outline-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }

.btn--block { width: 100%; }

.btn-reihe { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.center .btn-reihe { justify-content: center; }

/* Textlink mit Pfeil */
.pfeil {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  color: var(--tuerkis-700);
}
.pfeil svg { width: 15px; height: 15px; transition: transform .2s; }
.pfeil:hover svg { transform: translateX(4px); }

/* ---------- 5. Kopfbereich ---------- */
.topbar {
  background: var(--tuerkis);
  color: #fff;
  font-size: .82rem;
  letter-spacing: .01em;
}
.topbar .wrap { display: flex; justify-content: flex-end; gap: 1.6rem; padding-block: .5rem; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .45rem; opacity: .95; }
.topbar a:hover { opacity: 1; color: #fff; text-decoration: underline; }
.topbar svg { width: 14px; height: 14px; }
@media (max-width: 560px) { .topbar .wrap { justify-content: center; gap: 1.1rem; font-size: .78rem; } }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--linie);
  transition: box-shadow .25s;
}
.header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(34,50,47,.5); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 78px; }

.marke { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.marke__blume { width: 38px; height: 38px; color: var(--tuerkis); flex: none; }
.marke__name  { font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; color: var(--tuerkis-900); line-height: 1.15; }
.marke__rolle { display: block; font-family: var(--font-body); font-size: .655rem; font-weight: 600; letter-spacing: .155em; text-transform: uppercase; color: var(--nebel); margin-top: .18rem; }
@media (max-width: 400px) { .marke__name { font-size: 1.05rem; } .marke__blume { width: 32px; height: 32px; } }

/* Navigation Desktop */
.nav { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .6rem .85rem;
  font-size: .93rem; font-weight: 550;
  color: var(--tinte); text-decoration: none;
  border-radius: 10px;
  transition: color .18s, background-color .18s;
}
.nav__link:hover { color: var(--tuerkis-700); background: var(--tuerkis-050); }
.nav__link[aria-current="page"] { color: var(--tuerkis-700); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .28rem;
  height: 2px; border-radius: 2px; background: var(--bluete);
}
.nav__pfeil { width: 11px; height: 11px; transition: transform .2s; }
.nav__gruppe { position: relative; }
.nav__gruppe.is-offen .nav__pfeil { transform: rotate(180deg); }

.nav__panel {
  position: absolute; top: calc(100% + .55rem); left: 50%;
  transform: translate(-50%, 8px);
  width: 280px; padding: .55rem;
  background: #fff;
  border: 1px solid var(--linie);
  border-radius: 18px;
  box-shadow: var(--schatten);
  opacity: 0; visibility: hidden;
  transition: opacity .18s, transform .18s, visibility .18s;
}
.nav__gruppe.is-offen .nav__panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__panel a {
  display: block; padding: .62rem .85rem; border-radius: 12px;
  font-size: .92rem; color: var(--tinte); text-decoration: none;
}
.nav__panel a small { display: block; font-size: .76rem; color: var(--nebel); margin-top: .1rem; }
.nav__panel a:hover { background: var(--tuerkis-050); color: var(--tuerkis-900); }

.nav__cta { margin-left: .6rem; padding: .62rem 1.25rem; font-size: .9rem; }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px; padding: 0;
  background: transparent; border: 1px solid var(--linie); border-radius: 12px;
  cursor: pointer; align-items: center; justify-content: center;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--tuerkis-900); border-radius: 2px; position: relative; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--tuerkis-900); border-radius: 2px;
  transition: transform .25s;
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Navigation Mobil */
.mobilnav {
  display: none;
  position: fixed; inset: 0; top: 0; z-index: 99;
  background: #fff;
  padding: 110px 0 3rem;
  overflow-y: auto;
}
.mobilnav.is-offen { display: block; }
.mobilnav a {
  display: block;
  padding: .95rem 0;
  border-bottom: 1px solid var(--linie);
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--tuerkis-900);
  text-decoration: none;
}
.mobilnav a.ist-unterpunkt { padding-left: 1.3rem; font-family: var(--font-body); font-size: 1rem; color: var(--tinte); }
.mobilnav .btn { margin-top: 1.8rem; }
body.nav-offen { overflow: hidden; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60rem 34rem at 88% -10%, var(--bluete-050) 0%, transparent 62%),
    radial-gradient(52rem 30rem at 6% 8%, var(--tuerkis-050) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--sand) 100%);
}
.hero__watermark {
  position: absolute; right: -9rem; bottom: -11rem;
  width: 42rem; height: 42rem;
  color: var(--tuerkis);
  opacity: .055;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.hero__titel { margin-bottom: 1.1rem; }
.hero__portraet { position: relative; justify-self: center; max-width: 380px; width: 100%; }
.hero__portraet img {
  width: 100%;
  border-radius: 40% 40% 40% 40% / 32% 32% 32% 32%;
  box-shadow: var(--schatten-hoch);
}
.hero__portraet::before {
  content: "";
  position: absolute; inset: -6% -6% -6% -6%;
  border: 1.5px solid rgba(0,166,149,.28);
  border-radius: 40% 40% 40% 40% / 32% 32% 32% 32%;
  pointer-events: none;
}
.hero__badge {
  position: absolute; left: -.5rem; bottom: 1.2rem;
  background: #fff;
  border-radius: var(--r-petal);
  box-shadow: var(--schatten);
  padding: .8rem 1.1rem;
  font-size: .8rem; line-height: 1.45; font-weight: 600; color: var(--tuerkis-900);
  max-width: 210px;
}
.hero__badge small { display: block; font-weight: 500; color: var(--nebel); font-size: .74rem; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: left; }
  .hero__portraet { order: -1; max-width: 260px; justify-self: start; }
  .hero__badge { display: none; }
  .hero__watermark { width: 28rem; height: 28rem; right: -8rem; bottom: -8rem; }
}

/* Seitenkopf für Unterseiten */
.seitenkopf {
  position: relative; overflow: hidden;
  background:
    radial-gradient(46rem 26rem at 82% -20%, var(--bluete-050) 0%, transparent 65%),
    radial-gradient(40rem 24rem at 4% 20%, var(--tuerkis-050) 0%, transparent 62%),
    linear-gradient(180deg, #ffffff 0%, var(--sand) 100%);
  padding-block: clamp(2.8rem, 5.5vw, 4.6rem);
  border-bottom: 1px solid var(--linie);
}
.seitenkopf__watermark {
  position: absolute; right: -6rem; top: -8rem; width: 26rem; height: 26rem;
  color: var(--tuerkis); opacity: .05; pointer-events: none;
}
.seitenkopf .wrap { position: relative; z-index: 1; }
.seitenkopf h1 { margin-bottom: .55rem; }
.seitenkopf .lead { max-width: 68ch; }

/* Brotkrumen */
.brotkrumen { font-size: .8rem; color: var(--nebel); margin-bottom: 1.4rem; }
.brotkrumen ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; }
.brotkrumen li::after { content: "›"; margin-left: .45rem; color: var(--linie); }
.brotkrumen li:last-child::after { content: none; }
.brotkrumen a { color: var(--nebel); text-decoration: none; }
.brotkrumen a:hover { color: var(--tuerkis-700); text-decoration: underline; }

/* ---------- 7. Karten ---------- */
.karten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
}
.karte {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--r-petal);
  padding: 2rem 1.9rem;
  box-shadow: 0 1px 2px rgba(34,50,47,.03);
  transition: transform .25s ease, box-shadow .28s ease, border-color .25s;
}
.karte:hover { transform: translateY(-5px); box-shadow: var(--schatten); border-color: rgba(0,166,149,.3); }
.karte h3 { margin-bottom: .35rem; }
.karte__regel { width: 42px; height: 2px; background: var(--bluete); border-radius: 2px; margin-bottom: 1.1rem; }
.karte p { font-size: .97rem; color: #3d514d; }
.karte .pfeil { margin-top: auto; padding-top: 1.35rem; }
.karte--gefuellt {
  background: linear-gradient(160deg, var(--tuerkis) 0%, var(--tuerkis-700) 100%);
  border-color: transparent; color: #fff;
}
.karte--gefuellt h3, .karte--gefuellt strong { color: #fff; }
.karte--gefuellt p { color: rgba(255,255,255,.94); }
.karte--gefuellt .karte__regel { background: rgba(255,255,255,.6); }

/* nummerierte Ablauf-Schritte (echte Reihenfolge) */
.schritte { display: grid; gap: 1.3rem; counter-reset: schritt; list-style: none; padding: 0; margin: 0; }
@media (min-width: 760px) { .schritte { grid-template-columns: repeat(3, 1fr); } }
.schritte li {
  counter-increment: schritt;
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--r-petal);
  padding: 1.7rem 1.6rem;
}
.schritte li::before {
  content: counter(schritt, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--bluete); line-height: 1;
  margin-bottom: .7rem;
}
.schritte h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.schritte p { font-size: .95rem; margin: 0; color: #3d514d; }

/* ---------- 8. Listen ---------- */
.blueten-liste { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.blueten-liste li { position: relative; padding-left: 1.9rem; }
.blueten-liste li::before {
  content: "";
  position: absolute; left: 0; top: .62em;
  width: 9px; height: 9px;
  background: var(--tuerkis);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.blueten-liste--zwei { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); column-gap: 2.5rem; }
.blueten-liste--hell li::before { background: rgba(255,255,255,.85); }

.check-liste { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.check-liste li { position: relative; padding-left: 2.1rem; }
.check-liste li::before {
  content: "";
  position: absolute; left: 0; top: .42em;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--tuerkis-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300806f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/.78rem no-repeat;
}

/* ---------- 9. Farbband ---------- */
.band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--tuerkis) 0%, #009083 55%, var(--tuerkis-700) 100%);
  color: #fff;
}
.band h2, .band h3, .band strong { color: #fff; }
.band p { color: rgba(255,255,255,.93); }
.band a:not(.btn) { color: #fff; }
.band__watermark {
  position: absolute; left: -5rem; bottom: -9rem; width: 26rem; height: 26rem;
  color: #fff; opacity: .09; pointer-events: none;
}
.band .wrap { position: relative; z-index: 1; }

.zitat { max-width: 46ch; }
.zitat blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 1.4vw, 2rem);
  line-height: 1.42;
  margin: 0 0 1.1rem;
  color: #fff;
}
.zitat cite { font-style: normal; font-size: .85rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.78); }

/* Split-Layout */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.split--mittig { align-items: center; }

/* ---------- 10. Reiter (Tabs) ---------- */
.reiter__leiste {
  display: flex; flex-wrap: wrap; gap: .5rem;
  border-bottom: 1px solid var(--linie);
  padding-bottom: .8rem; margin-bottom: 2rem;
}
.reiter__knopf {
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  padding: .68rem 1.15rem;
  border: 1px solid var(--linie); border-radius: 999px;
  background: #fff; color: var(--nebel); cursor: pointer;
  transition: all .18s;
}
.reiter__knopf:hover { border-color: rgba(0,166,149,.45); color: var(--tuerkis-700); }
.reiter__knopf[aria-selected="true"] { background: var(--tuerkis); border-color: var(--tuerkis); color: #fff; }
.reiter__inhalt[hidden] { display: none; }

/* ---------- 11. FAQ ---------- */
.faq { display: grid; gap: .85rem; }
.faq details {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--r-soft);
  overflow: hidden;
  transition: border-color .2s, box-shadow .25s;
}
.faq details[open] { border-color: rgba(0,166,149,.35); box-shadow: var(--schatten); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  font-weight: 600; font-size: 1.01rem; color: var(--tuerkis-900);
  cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none;
  width: 1.4rem; height: 1.4rem; margin-top: .12rem;
  border-radius: 50%; background: var(--tuerkis-050);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300806f' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: .8rem;
  transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq summary:hover { color: var(--tuerkis-700); }
.faq__antwort { padding: 0 1.5rem 1.4rem; color: #3d514d; font-size: .99rem; }
.faq__antwort p:first-child { margin-top: 0; }

/* ---------- 12. Kontakt / Formular ---------- */
.kontaktkarte {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--r-petal);
  padding: clamp(1.7rem, 3vw, 2.6rem);
  box-shadow: var(--schatten);
}
.kontaktzeile { display: flex; gap: 1rem; align-items: flex-start; padding: 1.05rem 0; border-bottom: 1px solid var(--linie); }
.kontaktzeile:last-child { border-bottom: 0; padding-bottom: 0; }
.kontaktzeile:first-child { padding-top: 0; }
.kontaktzeile__icon {
  flex: none; width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--tuerkis-050); color: var(--tuerkis-700);
  display: grid; place-items: center;
}
.kontaktzeile__icon svg { width: 1.15rem; height: 1.15rem; }
.kontaktzeile b { display: block; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--nebel); font-weight: 700; margin-bottom: .15rem; }
.kontaktzeile a { color: var(--tuerkis-900); text-decoration: none; font-weight: 600; }
.kontaktzeile a:hover { text-decoration: underline; }

.feld { display: grid; gap: .4rem; margin-bottom: 1.15rem; }
.feld label { font-size: .86rem; font-weight: 600; color: var(--tuerkis-900); }
.feld input, .feld textarea, .feld select {
  font: inherit; font-size: .97rem;
  padding: .8rem 1rem;
  border: 1px solid var(--linie); border-radius: 12px;
  background: #fff; color: var(--tinte);
  transition: border-color .18s, box-shadow .18s;
}
.feld input:focus, .feld textarea:focus, .feld select:focus {
  outline: none; border-color: var(--tuerkis); box-shadow: 0 0 0 4px rgba(0,166,149,.14);
}
.feld textarea { min-height: 165px; resize: vertical; }
.feld--pflicht label::after { content: " *"; color: var(--bluete); }
.honigtopf { position: absolute; left: -9999px; opacity: 0; }
.formhinweis { font-size: .84rem; color: var(--nebel); line-height: 1.6; }

/* ---------- 13. Fußbereich ---------- */
.footer { background: var(--tuerkis-900); color: rgba(255,255,255,.8); padding-block: clamp(3rem, 5vw, 4.5rem) 0; }
.footer h3 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .17em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 700; }
.footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2.5rem; }
.footer__marke { max-width: 30ch; }
.footer__blume { width: 40px; height: 40px; color: rgba(255,255,255,.75); margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .58rem; font-size: .94rem; }
.footer__unten {
  margin-top: 3rem; padding-block: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between;
  font-size: .84rem;
}
.footer__unten nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* Nach-oben-Knopf */
.nach-oben {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--linie); background: #fff; color: var(--tuerkis-700);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--schatten);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.nach-oben.is-sichtbar { opacity: 1; visibility: visible; transform: none; }
.nach-oben svg { width: 18px; height: 18px; }

/* ---------- 14. Prosa (Impressum, Datenschutz) ---------- */
.prosa { max-width: 78ch; }
.prosa h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem); margin-top: 2.6rem; }
.prosa h3 { font-size: 1.15rem; margin-top: 1.9rem; }
.prosa h2:first-child, .prosa h3:first-child { margin-top: 0; }
.prosa ul { padding-left: 1.2rem; }
.prosa li { margin-bottom: .35rem; }
.prosa a { word-break: break-word; }

.hinweiskasten {
  border-left: 3px solid var(--bluete);
  background: var(--bluete-050);
  border-radius: 0 var(--r-soft) var(--r-soft) 0;
  padding: 1.2rem 1.5rem;
  font-size: .93rem; color: #4a3a41;
  margin-top: 2.2rem;
}
.hinweiskasten p:last-child { margin-bottom: 0; }

/* ---------- 15. Bewegung ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-sichtbar { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal:nth-child(2).is-sichtbar { transition-delay: .07s; }
.reveal:nth-child(3).is-sichtbar { transition-delay: .14s; }
.reveal:nth-child(4).is-sichtbar { transition-delay: .21s; }
.reveal:nth-child(5).is-sichtbar { transition-delay: .28s; }
.reveal:nth-child(6).is-sichtbar { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 16. Druck ---------- */
@media print {
  .topbar, .header, .mobilnav, .nach-oben, .band, .btn-reihe { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .faq details { border: none; }
  .faq__antwort { display: block !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; color: #666; }
}

/* ---------- 17. Feinschliff kleine Bildschirme ---------- */
@media (max-width: 560px) {
  .header .wrap { min-height: 66px; }
  .marke__rolle { display: none; }
  .marke__name { font-size: 1.06rem; }
  .marke__blume { width: 32px; height: 32px; }
  .mobilnav { padding-top: 96px; }
  .topbar .wrap a span { font-size: .76rem; }
}
@media (max-width: 420px) {
  .topbar a:last-child span { display: none; }
  .btn { padding: .8rem 1.3rem; font-size: .92rem; }
  .btn-reihe { gap: .6rem; }
}
