/* ------------------------------------------------------------------
   Petra Ellwanger · Aufstellungsarbeit im Fünfseenland
   Palette: Emerald #004F2E · Jade #006850 · Gold #D4AF37 · Ivory
------------------------------------------------------------------- */

:root {
  --ivory: #F7F3E2;
  --ivory-2: #EFE9D3;
  --paper: #FBF8D2;
  --emerald: #004F2E;
  --emerald-deep: #003A22;
  --jade: #006850;
  --jade-soft: #0F6A57;
  --gold: #D4AF37;
  --gold-text: #8F6F17;
  --ink: #15261C;
  --ink-soft: #4E5C53;
  --line: rgba(0, 79, 46, 0.14);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Figtree", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 10vw, 8.5rem);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 400; color: var(--emerald); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.12; font-variation-settings: "opsz" 120, "SOFT" 60; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; line-height: 1.25; font-variation-settings: "opsz" 40; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section); position: relative; }
.section--tint { background: var(--ivory-2); }
.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head h2 { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.eyebrow::before { content: ""; width: 1.75rem; height: 1px; background: var(--gold); flex: none; }

.lead { font-size: 1.2rem; line-height: 1.6; color: var(--ink); }
.note { font-size: 0.92rem; color: var(--ink-soft); border-left: 2px solid var(--gold); padding-left: 1rem; margin-top: 1.75rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--emerald); color: var(--paper);
  font-family: var(--font-body); font-weight: 500; font-size: 1rem;
  padding: 0.95rem 1.6rem; border-radius: 999px; text-decoration: none;
  border: 1px solid var(--emerald); cursor: pointer;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 8px 24px -14px rgba(0, 58, 34, 0.55);
}
.btn:hover { background: var(--jade); border-color: var(--jade); transform: translateY(-1px); box-shadow: 0 14px 30px -14px rgba(0, 58, 34, 0.6); }
.btn--ghost { background: transparent; color: var(--emerald); box-shadow: none; border-color: rgba(0, 79, 46, 0.35); }
.btn--ghost:hover { background: rgba(0, 79, 46, 0.06); color: var(--emerald); transform: none; box-shadow: none; }
.btn--small { padding: 0.65rem 1.15rem; font-size: 0.92rem; }

.textlink {
  color: var(--emerald); font-weight: 500; text-decoration: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat; background-size: 100% 1px; background-position: 0 100%;
  padding-bottom: 2px; transition: background-size 0.3s var(--ease);
}
.textlink:hover { background-size: 100% 2px; }
.textlink::after { content: " →"; }

/* Draft badge */
.draft-badge {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 60;
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--gold); color: var(--emerald-deep); padding: 0.35rem 0.7rem; border-radius: 3px;
  opacity: 0.85; pointer-events: none;
}

/* ---------------- Nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.85rem var(--gutter);
  background: rgba(247, 243, 226, 0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; margin-right: auto; }
.nav__brand img { width: 44px; height: 44px; }
.nav__name { font-family: var(--font-display); font-size: 1.2rem; color: var(--emerald); line-height: 1.1; display: flex; flex-direction: column; }
.nav__name small { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.2rem; }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a { text-decoration: none; font-size: 0.95rem; color: var(--ink); position: relative; padding-block: 0.25rem; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold); transition: width 0.3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; }
.nav__toggle span { display: block; height: 2px; background: var(--emerald); margin: 6px 0; transition: transform 0.3s, opacity 0.3s; }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobilemenu {
  position: fixed; inset: 0; z-index: 45; background: var(--ivory);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 1.5rem; padding: 6rem var(--gutter) 3rem;
}
.mobilemenu[hidden] { display: none; }
.mobilemenu a { font-family: var(--font-display); font-size: 2rem; color: var(--emerald); text-decoration: none; }
.mobilemenu a.btn { font-family: var(--font-body); font-size: 1rem; margin-top: 1rem; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: calc(100svh - 76px);
  display: grid; align-items: center; overflow: hidden;
  background:
    radial-gradient(60% 50% at 78% 45%, rgba(212, 175, 55, 0.12), transparent 70%),
    var(--ivory);
}
.hero__inner {
  position: relative; z-index: 1;
  width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto;
  padding-block: clamp(3rem, 8vh, 6rem);
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: clamp(2rem, 5vw, 5rem);
}
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title {
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  line-height: 1.02; font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  max-width: 17ch;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { font-style: italic; font-weight: 400; color: var(--jade); position: relative; }
.hero__title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.02em; height: 0.28em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M2 14 C 40 6, 80 18, 120 10 S 180 6, 198 12' fill='none' stroke='%23D4AF37' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  z-index: -1; opacity: 0.9;
}
.hero__lead { max-width: 34rem; font-size: 1.2rem; margin: 1.75rem 0 2.25rem; color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__logo { position: relative; display: grid; place-items: center; }
.hero__logo img, .hero__svg { position: relative; z-index: 1; width: min(100%, 520px); height: auto; filter: drop-shadow(0 30px 40px rgba(0, 58, 34, 0.14)); }
.hero__wash {
  position: absolute; inset: -6% -10%; border-radius: 50%;
  background:
    radial-gradient(closest-side at 50% 55%, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0) 72%),
    radial-gradient(closest-side at 40% 40%, rgba(0, 104, 80, 0.10), rgba(0, 104, 80, 0) 70%);
  filter: blur(6px);
}
.hero__scroll { position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); color: var(--emerald); opacity: 0.6; z-index: 1; }
.hero__dot { animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(12px); opacity: 0.2; } }

/* ---------------- Grids ---------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.grid-2--portrait { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
.grid-2--contact { grid-template-columns: 1fr 1.05fr; align-items: start; }

/* Watercolor "paper" images blend into the page */
.paper { margin: 0; }
.paper img, .pillar__spot, .card__art img, .signature-branch { mix-blend-mode: multiply; }
.paper img { border-radius: var(--radius); -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, #000 55%, transparent 100%); mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, #000 55%, transparent 100%); }

/* ---------------- Pillars ---------------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 4rem); margin-top: clamp(4rem, 8vw, 7rem); }
.pillar { text-align: left; }
.pillar__spot { width: 150px; height: 150px; object-fit: cover; margin-bottom: 1.25rem; border-radius: 50%; }
.pillar h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.pillar p { color: var(--ink-soft); font-size: 1rem; }

/* ---------------- Cards ---------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -36px rgba(0, 58, 34, 0.5); }
.card__art { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ivory); }
.card__art img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform 1.2s var(--ease); }
.card:hover .card__art img { transform: scale(1.04); }
.card__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.card__body h3 { font-size: 1.45rem; }
.card__body p { color: var(--ink-soft); font-size: 0.98rem; }
.facts { margin: 0.25rem 0 0.5rem; padding: 0; display: grid; gap: 0.35rem; border-top: 1px solid var(--line); padding-top: 0.9rem; }
.facts div { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; }
.facts dt { color: var(--ink-soft); }
.facts dd { margin: 0; text-align: right; color: var(--ink); }
.card .textlink { margin-top: auto; align-self: flex-start; }

/* ---------------- Ablauf / Steps ---------------- */
.section--ablauf { overflow: hidden; }
.section--ablauf .wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.section--ablauf .section__head { position: sticky; top: 7rem; margin-bottom: 0; }
.steps { position: relative; padding-left: 4rem; }
.steps__line {
  position: absolute; left: 0; top: 0; width: 40px; height: 100%; color: var(--gold);
  overflow: visible;
}
.steps__list { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
.step__marker {
  position: absolute; left: -4rem; top: 0.35rem; width: 40px; display: flex; justify-content: center;
}
.step__marker::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: var(--ivory); border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px var(--ivory);
  transition: background 0.4s;
}
.step.is-active .step__marker::before { background: var(--gold); }
.step h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); max-width: 46ch; }
.step > div { grid-column: 1 / -1; }

/* ---------------- Quote band ---------------- */
.quoteband { position: relative; overflow: hidden; min-height: 52vh; display: grid; place-items: center; }
.quoteband__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.quoteband::before, .quoteband::after {
  content: ""; position: absolute; left: 0; right: 0; height: 18%; z-index: 1; pointer-events: none;
}
.quoteband::before { top: 0; background: linear-gradient(var(--ivory), transparent); }
.quoteband::after { bottom: 0; background: linear-gradient(transparent, var(--ivory)); }
.quoteband__quote {
  position: relative; z-index: 2; margin: clamp(4rem, 9vw, 7rem) var(--gutter);
  max-width: 660px; text-align: center;
  background: rgba(247, 243, 226, 0.88);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 30px 60px -40px rgba(0, 58, 34, 0.5);
}
.quoteband__quote p {
  font-family: var(--font-display); font-size: clamp(1.45rem, 2.6vw, 2.1rem); line-height: 1.3;
  font-style: italic; font-weight: 300; color: var(--emerald-deep);
  font-variation-settings: "opsz" 120, "SOFT" 100;
}
.quoteband__quote cite { display: block; margin-top: 1.25rem; font-style: normal; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-text); }

/* ---------------- Portrait ---------------- */
.portrait { margin: 0; position: sticky; top: 6.5rem; }
.portrait img { border-radius: var(--radius); }
.portrait figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(247, 243, 226, 0.9); color: var(--ink-soft);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 3px;
}
.creds { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.6rem; }
.creds li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); font-size: 0.98rem; }
.creds li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 0.7rem; height: 1px; background: var(--gold); }
.signature-branch { width: 150px; margin-top: 2rem; opacity: 0.9; -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 32%, transparent 62%); mask-image: radial-gradient(circle at 50% 50%, #000 32%, transparent 62%); }

/* ---------------- Dates ---------------- */
.dates { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.date {
  display: grid; grid-template-columns: 5.5rem 1fr auto; gap: 1.5rem; align-items: center;
  padding: 1.5rem 0; border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.date time { display: flex; flex-direction: column; font-family: var(--font-display); color: var(--emerald); line-height: 1; }
.date time b { font-size: 2.4rem; font-weight: 300; }
.date time span { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-body); color: var(--gold-text); margin-top: 0.3rem; }
.date h3 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.date p { color: var(--ink-soft); font-size: 0.95rem; }
.dates__note { margin-top: 1.5rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------------- Contact ---------------- */
.contact__details { font-style: normal; margin-top: 2rem; display: grid; gap: 1rem; }
.contact__details p { display: grid; grid-template-columns: 5rem 1fr; gap: 1rem; margin: 0; }
.contact__details span { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-text); padding-top: 0.35em; }
.contact__details a { color: var(--emerald); text-decoration: none; }
.contact__details a:hover { text-decoration: underline; text-decoration-color: var(--gold); }

.form { background: var(--ivory-2); border: 1px solid var(--line); border-radius: 6px; padding: clamp(1.5rem, 3vw, 2.25rem); display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 0.4rem; }
.form label { font-size: 0.85rem; font-weight: 500; color: var(--emerald); }
.form label small { font-weight: 400; color: var(--ink-soft); }
.form input, .form select, .form textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--ivory); border: 1px solid rgba(0, 79, 46, 0.25); border-radius: 4px;
  padding: 0.75rem 0.9rem; transition: border-color 0.25s, box-shadow 0.25s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--jade); box-shadow: 0 0 0 3px rgba(0, 104, 80, 0.15); }
.form textarea { resize: vertical; }
.form__consent { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.85rem; color: var(--ink-soft) !important; font-weight: 400 !important; }
.form__consent input { width: auto; margin-top: 0.3rem; accent-color: var(--emerald); }
.form__consent a { color: var(--emerald); }
.form .btn { justify-self: start; }
.hidden-field { display: none; }

/* ---------------- Footer ---------------- */
.footer { position: relative; background: var(--emerald-deep); color: rgba(251, 248, 210, 0.85); overflow: hidden; }
.footer__art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0.6; }
.footer::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 58, 34, 0.1) 0%, rgba(0, 58, 34, 0.55) 45%, rgba(0, 58, 34, 0.96) 75%); }
.footer__inner { position: relative; z-index: 1; padding: clamp(9rem, 20vw, 15rem) 0 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 4rem; align-items: end; }
.footer__brand { display: flex; gap: 1.25rem; align-items: center; }
.footer__brand p { margin: 0; font-size: 0.95rem; line-height: 1.5; }
.footer__brand strong { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; color: var(--paper); }
.footer__note { font-size: 0.82rem; line-height: 1.6; max-width: 46ch; color: rgba(251, 248, 210, 0.7); }
.footer__links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(251, 248, 210, 0.15); font-size: 0.85rem; }
.footer__links a { text-decoration: none; color: rgba(251, 248, 210, 0.85); }
.footer__links a:hover { color: var(--gold); }
.footer__links span { margin-left: auto; color: rgba(251, 248, 210, 0.5); }

/* ---------------- Reveal (GSAP sets final state; CSS keeps content visible without JS) ---------------- */
.js .reveal { opacity: 0; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav .btn--small { display: none; }
  .nav__toggle { display: block; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .card:last-child { grid-column: 1 / -1; }
  .card:last-child .card__art { aspect-ratio: 21 / 9; }
  .footer__inner { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 760px) {
  body { font-size: 1rem; }
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; padding-block: 2rem 4rem; gap: 1.5rem; }
  .hero__logo { order: -1; }
  .hero__logo img { width: min(60vw, 240px); }
  .hero__title { font-size: clamp(2.5rem, 11vw, 3.4rem); max-width: none; }
  .hero__scroll { display: none; }
  .grid-2, .grid-2--portrait, .grid-2--contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards { grid-template-columns: 1fr; }
  .card:last-child .card__art { aspect-ratio: 4 / 3; }
  .section--ablauf .wrap { grid-template-columns: 1fr; }
  .section--ablauf .section__head { position: static; margin-bottom: 2.5rem; }
  .steps { padding-left: 3rem; }
  .step__marker { left: -3rem; }
  .date { grid-template-columns: 4.5rem 1fr; }
  .date .textlink { grid-column: 2; }
  .contact__details p { grid-template-columns: 1fr; gap: 0.2rem; }
  .portrait { max-width: 420px; position: static; }
  .draft-badge { display: none; }
}

/* screenshot helper */
.static .hero { min-height: 760px; }
.static .quoteband { min-height: 560px; }

/* ---------------- v2: Petras Texte ---------------- */
.subhead { font-size: 1.3rem; margin: 1.75rem 0 0.5rem; }
.grid-2--top { align-items: start; }

.wirkung { margin-top: clamp(4rem, 8vw, 7rem); }
.wirkung__head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.wirkung__head h2 { margin-bottom: 0; }
.wirkung__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.wirkung__list li { display: grid; gap: 1rem; align-content: start; }
.wirkung__list img { width: 120px; height: 120px; object-fit: cover; border-radius: 50%; mix-blend-mode: multiply; }
.wirkung__list p { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.35; color: var(--emerald); font-variation-settings: "opsz" 40; }

.checklist { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.checklist li { position: relative; padding-left: 2rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.4em; width: 1.1rem; height: 1.1rem; border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5 7 11l5-6' fill='none' stroke='%23004F2E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 70% no-repeat;
}

.hilft { background: var(--ivory); border-left: 3px solid var(--gold); padding: 1.5rem 1.75rem; border-radius: 0 6px 6px 0; margin-bottom: 2rem; }
.hilft h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.hilft p { color: var(--ink); }
.themen h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.themen > p { color: var(--ink-soft); font-size: 0.98rem; }
.tags { list-style: none; margin: 1.1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags li { font-size: 0.88rem; padding: 0.4rem 0.85rem; border-radius: 999px; border: 1px solid rgba(0, 79, 46, 0.25); color: var(--emerald); background: rgba(247, 243, 226, 0.6); }
.themen .note { margin-top: 1.5rem; }

.cards--2 { grid-template-columns: 1fr 1fr; }
.cards--2 .card__art { aspect-ratio: 16 / 9; }
.dauer-note { margin-top: 2rem; font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--emerald); max-width: 60ch; }

.section--ablauf .section__head p { color: var(--ink-soft); }
.section--ablauf .section__head h2 { margin-bottom: 1rem; }

.haltung { margin-top: clamp(4rem, 8vw, 7rem); }
.haltung__inner { max-width: 760px; margin-inline: auto; padding: clamp(2rem, 4vw, 3.5rem); border: 1px solid var(--line); border-radius: 6px; background: var(--ivory-2); position: relative; }
.haltung__inner::before {
  content: ""; position: absolute; top: -34px; left: 50%; transform: translateX(-50%);
  width: 68px; height: 68px; border-radius: 50%; background: var(--ivory-2) url("assets/logo/gruen.svg") center / 46px no-repeat; border: 1px solid var(--line);
}
.haltung__text { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.5; color: var(--ink); font-variation-settings: "opsz" 40; }
.dank { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.dank h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.dank p { color: var(--ink-soft); font-size: 0.98rem; }

.section--termin { position: relative; overflow: hidden; background: var(--emerald-deep); color: var(--paper); }
.termin__art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: 0.16; filter: saturate(0.6); }
.section--termin::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 58, 34, 0.9), rgba(0, 58, 34, 0.55)); }
.termin__inner { position: relative; z-index: 1; }
.termin__inner > * { max-width: 760px; }
.section--termin .eyebrow { color: var(--gold); }
.section--termin h2 { color: var(--paper); }
.section--termin .lead { color: rgba(251, 248, 210, 0.85); }
.termin__options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0 1.25rem; }
.termin__opt {
  display: grid; gap: 0.35rem; text-align: left; font: inherit; color: var(--paper); cursor: pointer;
  background: rgba(251, 248, 210, 0.06); border: 1px solid rgba(212, 175, 55, 0.5); border-radius: 6px; padding: 1.4rem 1.5rem;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.termin__opt:hover { background: rgba(251, 248, 210, 0.12); border-color: var(--gold); transform: translateY(-2px); }
.termin__opt-title { font-family: var(--font-display); font-size: 1.4rem; }
.termin__opt-meta { font-size: 0.9rem; color: rgba(251, 248, 210, 0.7); }
.termin__opt-cta { margin-top: 0.6rem; font-weight: 500; color: var(--gold); }
.termin__hint { background: rgba(212, 175, 55, 0.15); border: 1px solid rgba(212, 175, 55, 0.5); padding: 0.85rem 1.1rem; border-radius: 4px; font-size: 0.95rem; }
.termin__small { font-size: 0.85rem; color: rgba(251, 248, 210, 0.6); }

@media (max-width: 1024px) {
  .wirkung__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .wirkung__list { grid-template-columns: 1fr; }
  .cards--2 { grid-template-columns: 1fr; }
  .termin__options { grid-template-columns: 1fr; }
  .haltung__inner { padding-top: 3rem; }
}

/* ---------------- v3: Feedback Petra ---------------- */
.termin__opt { cursor: default; }
.termin__opt:hover { transform: none; background: rgba(251, 248, 210, 0.06); border-color: rgba(212, 175, 55, 0.5); }
.termin__opt-price { margin-top: 0.5rem; font-family: var(--font-display); font-size: 1.9rem; color: var(--gold); line-height: 1; }
.termin__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem; margin: 0.5rem 0 1.5rem; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--emerald-deep); }
.btn--gold:hover { background: #e2c04f; border-color: #e2c04f; color: var(--emerald-deep); }
.btn--light { background: transparent; color: var(--paper); border-color: rgba(251, 248, 210, 0.5); box-shadow: none; }
.btn--light:hover { background: rgba(251, 248, 210, 0.1); border-color: var(--paper); color: var(--paper); }
.textlink--light { color: var(--paper); }

/* ---------------- v4: eingefärbtes Logo, Portrait, weitere Paletten ---------------- */
:root { --logo-frame: var(--gold); --logo-leaf: #1F7A55; --logo-trunk: #0C4A30; --logo-figure: var(--emerald); }
.hero__svg .lg-rahmen circle { fill: none; stroke: var(--logo-frame); stroke-width: 9; stroke-miterlimit: 10; }
.hero__svg .lg-personen circle, .hero__svg .lg-personen path { fill: none; stroke: var(--logo-figure); stroke-width: 9; stroke-miterlimit: 10; }
.hero__svg .lg-stamm path { fill: var(--logo-trunk); }
.hero__svg .lg-blaetter path { fill: var(--logo-leaf); }
.role { margin: -0.5rem 0 1.25rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-text); }
.portrait img { object-fit: cover; aspect-ratio: 4 / 5; }


.form__error {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(176, 58, 46, 0.08);
  border-left: 3px solid #B03A2E;
  border-radius: 0 3px 3px 0;
  color: #8C2E24;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form__hint { margin: 0.4rem 0 0; font-size: 0.85rem; line-height: 1.5; color: var(--ink-soft); }
