/* ============================================================
   Selbstbestimmt – von innen nach außen
   Design: edel & hochwertig — Dunkles Waldgrün, Creme, Gold/Beige
   (Variablennamen historisch: sage/pine — enthalten jetzt Grüntöne;
    Buttons .btn-primary = Gold)
   ============================================================ */

:root {
  --cream: #FBFAF4;
  --cream-2: #F2F0E6;
  --beige: #E9E3D0;
  --sage-100: #E9EFE2;
  --sage-200: #CFDDC1;
  --sage: #3F5E38;
  --sage-deep: #2A4A23;
  --pine: #16301A;
  --pine-deep: #0D1E10;
  --gold: #B08D4F;
  --gold-2: #C7A96C;
  --gold-soft: #E4D3AE;
  --ink: #253021;
  --muted: #5E6B50;
  --white: #FFFFFF;
  --shadow: 0 14px 40px rgba(22, 45, 20, .12);
  --shadow-soft: 0 6px 22px rgba(22, 45, 20, .08);
  --radius: 18px;
  --font-script: "Great Vibes", cursive;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--sage-deep); text-decoration: none; }
a:hover { color: var(--gold); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; color: var(--pine); line-height: 1.25; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.35rem; }

.script { font-family: var(--font-script); color: var(--gold); font-weight: 400; }
h1 .script, h2 .script { font-size: 1.25em; line-height: 1; }

.kicker {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--gold);
  display: block;
  margin-bottom: .35rem;
}

.upper {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .82rem;
  font-weight: 500;
  color: var(--sage-deep);
}

.lead { font-size: 1.15rem; color: var(--muted); }

.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .25s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-2); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-2); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline { border-color: var(--sage-deep); color: var(--sage-deep); background: transparent; }
.btn-outline:hover { background: var(--sage-deep); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--pine); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 244, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176, 141, 79, .18);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo { display: flex; flex-direction: row; align-items: center; gap: 11px; line-height: 1; }
.logo-mark { width: 42px; height: 42px; flex: 0 0 auto; filter: drop-shadow(0 2px 6px rgba(176,141,79,.35)); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo .logo-script { font-family: var(--font-script); font-size: 1.9rem; color: var(--gold); }
.logo .logo-sub {
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .04em;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav .btn { padding: 10px 22px; font-size: .75rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px; height: 42px;
  border-radius: 10px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--pine); margin: 5px auto;
  transition: .25s;
}

/* ---------- Vollbild-Hero ---------- */
.hero-full {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-full .hero-bg {
  position: absolute;
  inset: 0;
}
.hero-full .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform-origin: center;
  animation: hero-zoom 26s ease-in-out infinite alternate;
  will-change: transform;
}
/* Sanftes „Atmen" – langsamer Zoom rein/raus. Startet bei 1.0 (bildfüllend), daher keine Ränder. */
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-full .hero-bg img { animation: none; }
}
.hero-full .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,26,14,.5) 0%, rgba(11,26,14,.2) 30%, rgba(11,26,14,.28) 60%, rgba(11,26,14,.6) 100%),
    radial-gradient(120% 90% at 50% 45%, rgba(11,26,14,.28) 0%, rgba(11,26,14,.5) 100%);
}
.hero-full .hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 150px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-full .hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 56px -6% 84px -6%;
  border-radius: 46px;
  background: radial-gradient(closest-side, rgba(11, 26, 14, .58), rgba(11, 26, 14, .34) 68%, transparent 100%);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.hero-diamant {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 4px;
  filter: drop-shadow(0 6px 26px rgba(240, 190, 90, .45));
  animation: diamant-schweben 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes diamant-schweben {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-diamant { animation: none; }
}
.hero-full h1 { color: #fff; }
.hero-full h1 .script { color: var(--gold-2); }
.hero-full .kicker { color: var(--gold-2); }
.hero-full .upper { color: var(--gold-2); margin: 14px 0 18px; }
.hero-full p.intro { color: rgba(255,255,255,.9); max-width: 34rem; margin: 0 auto 32px; font-size: 1.1rem; }
.hero-full .btn-group { justify-content: center; }
.hero-social { display: flex; gap: 12px; margin-top: 26px; justify-content: center; }
.hero-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
  transition: all .25s ease;
}
.hero-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }
.hero-social .ico { width: 20px; height: 20px; }
.hero-full .wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 76px;
  z-index: 3;
  display: block;
}

/* ---------- Dunkles Band (Herz + Kacheln) ---------- */
.dark-band {
  background: linear-gradient(175deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: #EDE7DA;
  padding: 90px 0 96px;
}
.dark-band .section-head h2 { color: #fff; }
.brand-diamond {
  width: 128px;
  height: auto;
  margin: 0 auto 10px;
  mix-blend-mode: screen;
  filter: saturate(.9) brightness(1.05);
  -webkit-mask: radial-gradient(circle at 50% 46%, #000 42%, transparent 66%);
  mask: radial-gradient(circle at 50% 46%, #000 42%, transparent 66%);
}
.dark-band .heart-item .heart-icon {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(199,169,108,.5);
  box-shadow: none;
}
.dark-band .heart-item span { color: rgba(237,231,218,.92); }
.dark-band .script-line {
  display: block;
  text-align: center;
  font-family: var(--font-script);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--gold-2);
  margin-top: 70px;
}
.dark-band .band-sub {
  text-align: center;
  color: rgba(237,231,218,.75);
  max-width: 560px;
  margin: 10px auto 0;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}
.tile {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: block;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.tile:hover img { transform: scale(1.06); }
.tile .tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(10,24,13,.55) 18%, rgba(10,24,13,.92));
  padding: 26px 18px 14px;
  text-align: center;
}
.tile .tile-label strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.2;
}
.tile .tile-label span {
  display: block;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: 4px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(199, 169, 108, .28), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(90, 130, 75, .15), transparent 55%),
    radial-gradient(700px 500px at 50% 115%, rgba(228, 211, 174, .45), transparent 60%),
    linear-gradient(180deg, #FDFCF8 0%, var(--cream) 60%, var(--cream-2) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  padding: 84px 0 96px;
  position: relative;
  z-index: 2;
}
.hero h1 { margin: 14px 0 18px; }
.hero .upper { margin: 6px 0 18px; }
.hero p.intro { max-width: 34rem; margin-bottom: 30px; color: var(--muted); font-size: 1.08rem; }

.hero-figure { position: relative; display: flex; justify-content: center; }
.hero-photo {
  width: min(380px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.75), transparent 55%),
    linear-gradient(150deg, var(--gold-soft) 0%, var(--sage-200) 55%, var(--sage) 130%);
  border: 10px solid rgba(255, 255, 255, .85);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 30px;
}
.hero-photo .script { font-size: 2rem; }
.hero-photo small { color: var(--sage-deep); letter-spacing: .12em; text-transform: uppercase; font-size: .62rem; }
.hero-photo.has-img { padding: 0; overflow: hidden; }
.hero-photo.has-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hero-badge {
  position: absolute;
  bottom: 6%;
  right: 2%;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  width: 152px; height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.06rem;
  line-height: 1.35;
  padding: 18px;
  box-shadow: var(--shadow);
  transform: rotate(6deg);
}

/* Botanik-Deko */
.botanic {
  position: absolute;
  z-index: 1;
  opacity: .5;
  pointer-events: none;
}

/* ---------- Sektionen ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--cream-2); }
.section-sage { background: var(--sage-100); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p { color: var(--muted); margin-top: 12px; }

/* ---------- SVG-Icons ---------- */
.ico { width: 1em; height: 1em; display: inline-block; color: var(--gold); flex-shrink: 0; }
h2 .ico { width: .8em; height: .8em; vertical-align: -.08em; }

/* ---------- Zier-Ornament ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  color: var(--gold);
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  width: 74px;
  background: linear-gradient(90deg, transparent, var(--gold-2));
}
.ornament::after { background: linear-gradient(90deg, var(--gold-2), transparent); }
.ornament .ico { width: 17px; height: 17px; }

/* ---------- Bild-Text-Split ---------- */
.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.split-photo {
  border-radius: 47% 53% 50% 50% / 56% 47% 53% 44%;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, .95);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.7;
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; }

.point-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(176, 141, 79, .16);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 14px;
  transition: transform .25s ease;
}
.point-item:hover { transform: translateX(6px); }
.point-item .p-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.point-item .p-icon .ico { width: 22px; height: 22px; }
.point-item h3 { font-size: 1.12rem; margin-bottom: 2px; }
.point-item p { color: var(--muted); font-size: .93rem; line-height: 1.55; }

/* ---------- Schritte mit Foto-Medaillons ---------- */
.steps-visual .step { text-align: center; border-top: none; padding-top: 30px; }
.steps-visual .step::before { content: none; }
.step-img {
  position: relative;
  width: 104px; height: 104px;
  margin: 0 auto 18px;
}
.step-img img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold-soft);
  box-shadow: var(--shadow-soft);
}
.step-num {
  position: absolute;
  bottom: -2px; right: -6px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid #fff;
}

/* ---------- Herz-Grid ---------- */
.heart-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 14px;
  text-align: center;
}
.heart-item { flex: 0 1 128px; }
.heart-item .heart-icon {
  width: 74px; height: 74px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
}
.heart-icon .ico { width: 32px; height: 32px; }
.heart-item:hover .heart-icon { transform: translateY(-4px) scale(1.05); }
.heart-item span { font-size: .82rem; font-weight: 500; color: var(--ink); display: block; line-height: 1.35; }

/* ---------- Karten ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(176, 141, 79, .12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .card-icon { margin-bottom: 14px; }
.card .card-icon .ico { width: 38px; height: 38px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .97rem; flex: 1; }
.card .card-link {
  margin-top: 18px;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}
.card .card-img {
  margin: -34px -30px 22px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card .tag {
  align-self: flex-start;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--sage-100);
  color: var(--sage-deep);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  border-top: 3px solid var(--gold-soft);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .97rem; }

/* ---------- Zitat-Band ---------- */
.quote-band {
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(199, 169, 108, .16), transparent 60%),
    linear-gradient(160deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: #EDE7DA;
  text-align: center;
  padding: 88px 24px;
}
.quote-band .script { font-size: clamp(2rem, 5vw, 3rem); color: var(--gold-2); display: block; margin-bottom: 14px; }
.quote-band p { max-width: 620px; margin: 0 auto; color: rgba(237, 231, 218, .85); }

/* ---------- Bild-Elemente ---------- */
.about-photo {
  width: min(300px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  margin: 0 auto 28px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.prose-img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 2.2rem 0; overflow: hidden; }
.prose-img img { width: 100%; }

/* ---------- Werte ---------- */
.value-chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.value-chip {
  background: var(--white);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 500;
  font-size: .95rem;
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.value-chip .ico { width: 19px; height: 19px; }

/* ---------- Über-mich-Inhaltsseiten ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { margin-bottom: 1.15rem; }
.prose h2 { margin: 3rem 0 1.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 0 0 1.15rem 1.2rem; }
.prose li { margin-bottom: .4rem; }
.prose .kicker { margin-top: 0; }
.divider {
  width: 70px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2.6rem auto;
  border: 0;
}

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  background:
    radial-gradient(900px 420px at 85% -30%, rgba(199, 169, 108, .28), transparent 60%),
    linear-gradient(150deg, var(--pine) 0%, var(--pine-deep) 70%, #0A1E0D 100%);
  text-align: center;
  padding: 80px 24px 70px;
  color: #fff;
}
.page-hero h1 { margin-top: 8px; color: #fff; }
.page-hero h1 .script { color: var(--gold-2); }
.page-hero .kicker { color: var(--gold-2); }
.page-hero p { max-width: 640px; margin: 16px auto 0; color: rgba(237, 231, 218, .8); }

/* ---------- CTA-Block (jede Seite) ---------- */
.page-cta {
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% -40%, rgba(199, 169, 108, .22), transparent 65%),
    var(--cream-2);
  padding: 80px 24px;
}
.page-cta .script { font-size: clamp(1.9rem, 4vw, 2.6rem); display: block; margin-bottom: 22px; }
.page-cta .btn-group { justify-content: center; margin-top: 10px; }

/* ---------- Newsletter ---------- */
.newsletter-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 141, 79, .15);
  padding: 46px 42px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--sage-200);
  font-family: var(--font-sans);
  font-size: .95rem;
  background: var(--cream);
  outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 10px; }

/* ---------- Formulare ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 141, 79, .15);
  padding: 42px;
}
.form-grid { display: grid; gap: 18px; }
.form-grid label { font-size: .85rem; font-weight: 500; letter-spacing: .04em; display: block; margin-bottom: 6px; color: var(--pine); }
.form-grid input, .form-grid textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--sage-200);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: .97rem;
  outline: none;
  resize: vertical;
}
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--gold); }
.form-status { font-size: .92rem; margin-top: 12px; display: none; }
.form-status.ok { display: block; color: var(--sage-deep); }
.form-status.err { display: block; color: #A3552F; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(176, 141, 79, .15);
  box-shadow: var(--shadow-soft);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pine);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--gold); transition: transform .25s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Bewertungen ---------- */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(176, 141, 79, .12);
}
.review-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.review-card .who { margin-top: 16px; font-weight: 500; font-size: .9rem; color: var(--sage-deep); }
/* Bewertungs-Karten immer mittig – auch wenn es nur 1–2 gibt (sonst linksbündig im 3er-Raster). */
#home-reviews .card-grid,
#home-reviews-fallback .card-grid,
#reviews-dynamic .card-grid,
#reviews-fallback .card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}
#home-reviews .card-grid > .review-card,
#home-reviews-fallback .card-grid > .review-card,
#reviews-dynamic .card-grid > .review-card,
#reviews-fallback .card-grid > .review-card {
  flex: 1 1 320px;
  max-width: 440px;
}
.social-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: .88rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(170deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: rgba(237, 231, 218, .82);
  padding: 64px 0 30px;
  font-size: .93rem;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .logo-script { font-family: var(--font-script); font-size: 1.8rem; color: var(--gold-2); }
.footer .logo-sub { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(237, 231, 218, .6); display: block; margin: 4px 0 14px; }
.footer h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  color: var(--gold-2);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer a { color: rgba(237, 231, 218, .82); display: block; margin-bottom: 8px; }
.footer a:hover { color: var(--gold-2); }
.footer-bottom {
  border-top: 1px solid rgba(237, 231, 218, .15);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(237, 231, 218, .55);
}
.footer-bottom .legal { display: flex; gap: 18px; }
.footer-bottom a { display: inline; margin: 0; color: rgba(237, 231, 218, .7); }
.footer-credit {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(237, 231, 218, .12);
}
.footer a.made-by {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0;
  font-size: .78rem;
  opacity: .85;
  color: rgba(237, 231, 218, .8);
  text-decoration: none;
}
.made-by:hover { opacity: 1; color: var(--gold-2); }
.made-by img { height: 22px; width: auto; }
.made-by .brand { font-weight: 600; letter-spacing: .02em; }
.made-by .go { font-size: .65rem; opacity: .7; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(199, 169, 108, .4);
  color: var(--gold-2);
  transition: all .25s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-social .ico { width: 19px; height: 19px; }

/* ---------- Shop (öffentlich) ---------- */
.shop-cat { margin-bottom: 54px; }
.shop-cat-title {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 30px;
  position: relative;
}
.shop-cat-title::after {
  content: "";
  display: block;
  width: 54px; height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.shop-price { color: var(--gold); font-weight: 600; font-size: 1.15rem; margin-bottom: 4px; }
.shop-donation-note { color: var(--muted); font-size: .82rem; font-style: italic; margin-bottom: 8px; }
.shop-buy { width: 100%; margin-top: 18px; }
.shop-buy-link { display: block; width: 100%; margin-top: 18px; text-align: center; }

/* Bestell-Dialog */
.shop-modal {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(13, 30, 16, .55);
  backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.shop-modal.open { display: flex; }
.shop-modal-box {
  background: var(--white); border-radius: var(--radius);
  max-width: 460px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 34px 32px; position: relative; box-shadow: var(--shadow);
}
.shop-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.8rem; line-height: 1;
  color: var(--muted); cursor: pointer;
}
.shop-modal-close:hover { color: var(--gold); }
.bank-box {
  background: var(--sage-100); border: 1px solid var(--gold-soft);
  border-radius: 14px; padding: 18px 20px;
}
.bank-row { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; border-bottom: 1px solid rgba(176,141,79,.16); }
.bank-row:last-child { border-bottom: none; }
.bank-row span { color: var(--muted); font-size: .85rem; }
.bank-row strong { color: var(--pine); text-align: right; }

/* ---------- Google-Bewertungen ---------- */
.google-stars { color: var(--gold); font-size: 1.7rem; letter-spacing: 5px; margin: 10px 0 4px; }
.google-rating-band {
  text-align: center;
  background: var(--sage-100);
  border: 1px solid var(--gold-soft);
  border-radius: 16px;
  padding: 22px;
}
.google-rating-band p { color: var(--muted); margin-top: 2px; }
.google-rating-band strong { color: var(--pine); font-size: 1.2rem; }

/* ---------- Blog ---------- */
.blog-date {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 6px;
}
.article-body p { margin-bottom: 1.2rem; }
.article-body { font-size: 1.06rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split-photo { max-width: 320px; margin: 0 auto; }
  .hero-full { min-height: 74vh; }
  .hero-diamant { width: 118px; }
  .hero-full .hero-content { padding: 80px 0 130px; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 56px 0 64px; }
  .hero p.intro { margin-left: auto; margin-right: auto; }
  .btn-group { justify-content: center; }
  .hero-figure { order: -1; }
  .hero-photo { width: min(280px, 70vw); }
  .hero-badge { width: 120px; height: 120px; font-size: .9rem; right: 8%; }
  .heart-item { flex-basis: 100px; }
  .card-grid, .steps { grid-template-columns: 1fr 1fr; }
  .newsletter-box { grid-template-columns: 1fr; padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .hero-full .wave { height: 44px; }
  .tile-grid { gap: 14px; }
  .tile .tile-label { padding: 18px 10px 10px; }
  .tile .tile-label strong { font-size: 1rem; }
  .tile .tile-label span { font-size: .58rem; }
  .nav {
    position: fixed;
    inset: 66px 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    padding: 26px 24px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--gold-soft);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .heart-item { flex-basis: 84px; }
  .heart-grid { gap: 22px 10px; }
  .card-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .section { padding: 60px 0; }
  .form-card { padding: 30px 22px; }
}
