/* ==========================================================================
   Silvia Schuldis – Bewusstseinstrainerin & Mastercoach
   Design: "Innere Kraft" – warmes Papier, tiefes Tannengrün, Terracotta
   Schriften: Fraunces (Display), Karla (Text), Caveat (Handschrift)
   ========================================================================== */

:root {
  /* Farben */
  --paper: #FAF5EC;          /* warmes Papier – Grundfläche */
  --paper-deep: #F1E9DA;     /* dunklerer Papierton für Wechselflächen */
  --cream: #FFFDF8;
  --pine: #2F4C41;           /* tiefes Tannengrün – Primärfarbe */
  --pine-deep: #223A31;
  --pine-soft: #E3EAE2;
  --sage: #7E957F;
  --terra: #BC6B44;          /* Terracotta – Akzent & CTA */
  --terra-deep: #A5572F;
  --terra-soft: #F6E3D6;
  --gold: #C3913F;
  --ink: #2A322C;
  --ink-soft: #5C665E;
  --line: #E2D9C8;

  /* Typografie */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;
  --font-hand: "Caveat", cursive;

  /* Sonstiges */
  --radius: 20px;
  --radius-arch: 999px 999px 22px 22px;
  --shadow: 0 20px 50px -18px rgba(42, 50, 44, .22);
  --shadow-soft: 0 10px 30px -12px rgba(42, 50, 44, .14);
  --wrap: 1160px;
}

/* ---------- Basis ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* verhindert horizontales Scrollen durch dekorative Elemente */
}
/* height:auto ist entscheidend: Ohne diese Angabe behalten Bilder mit
   width/height-Attributen im HTML ihre Pixel-Höhe, während die Breite mitskaliert
   — auf dem Handy werden sie dadurch gestaucht. */
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terra); }
:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--pine-deep); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; margin-bottom: .5rem; }
h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--terra); }
p + p { margin-top: 1em; }
ul { padding-left: 1.2em; }
strong { font-weight: 700; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.bg-cream { background: var(--cream); }
.bg-deep { background: var(--paper-deep); }
.bg-pine { background: var(--pine-deep); color: #EDEFE9; }
.bg-pine h2, .bg-pine h3 { color: #F6F3EA; }
.center { text-align: center; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }

/* Eyebrow + Handschrift */
.eyebrow {
  display: inline-block; max-width: 100%;
  font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1rem;
}
.eyebrow::before { content: "✦  "; font-size: .75rem; }
.hand { font-family: var(--font-hand); font-size: 1.5rem; color: var(--sage); font-weight: 500; }
.lead { font-size: 1.2rem; color: var(--ink-soft); }

/* Hand-gezeichnete Unterstreichung */
.squiggle { position: relative; white-space: nowrap; }
.squiggle svg { position: absolute; left: 0; bottom: -.18em; width: 100%; height: .32em; overflow: visible; }
.squiggle svg path { stroke: var(--terra); stroke-width: 5; fill: none; stroke-linecap: round; opacity: .75; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: .95rem 1.9rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; line-height: 1.2;
  text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 2px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--terra); color: #fff; box-shadow: 0 10px 24px -10px rgba(188, 107, 68, .55); }
.btn-solid:hover { background: var(--terra-deep); color: #fff; }
.btn-ghost { border-color: var(--pine); color: var(--pine); background: transparent; }
.btn-ghost:hover { background: var(--pine); color: #fff; }
.btn-light { background: var(--paper); color: var(--pine-deep); }
.btn-light:hover { background: #fff; color: var(--pine-deep); }
.btn-light-ghost { border-color: rgba(250, 245, 236, .55); color: #F6F3EA; }
.btn-light-ghost:hover { background: rgba(250, 245, 236, .12); color: #fff; }
.btn-sm { padding: .6rem 1.3rem; font-size: .92rem; }
.btn-block { display: block; text-align: center; }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 245, 236, .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 78px; }
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; }
/* Original-Logo: Bildmarke (Hände + Herz) und Schriftblock als freigestellte Grafiken */
.brand-mark { width: auto; height: 44px; flex: none; }
.brand-type { width: auto; height: 48px; }
.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav > a:not(.btn) {
  text-decoration: none; font-weight: 500; font-size: 1rem; color: var(--ink);
  padding: .3rem 0; border-bottom: 2px solid transparent;
}
.main-nav > a:not(.btn):hover { color: var(--terra); }
.main-nav > a.active { border-bottom-color: var(--terra); color: var(--pine-deep); font-weight: 700; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--pine-deep); margin: 5px auto; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (Start) ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin: .8rem 0 1.2rem; }
.hero-tag { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--pine); margin-bottom: 1rem; }
.hero-quote {
  margin: 1.6rem 0; padding: 1.1rem 1.4rem; border-left: 3px solid var(--terra);
  background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.12rem; color: var(--ink-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2rem; font-size: .95rem; color: var(--ink-soft); }
.hero-trust span::before { content: "✦ "; color: var(--gold); }
.hero-figure { position: relative; }
.hero-figure .arch { position: relative; z-index: 1; }
.hero-figure::before {
  content: ""; position: absolute; inset: -8% -10% auto auto; width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--terra-soft) 0%, transparent 70%);
  z-index: 0;
}
.arch { border-radius: var(--radius-arch); overflow: hidden; box-shadow: var(--shadow); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; z-index: 2; bottom: 8%; left: -9%;
  background: var(--cream); border-radius: var(--radius); box-shadow: var(--shadow-soft);
  padding: .9rem 1.2rem; max-width: 240px;
  font-family: var(--font-hand); font-size: 1.32rem; line-height: 1.3; color: var(--pine-deep);
  transform: rotate(-3deg);
}

/* Marquee-Band */
.band { background: var(--pine-deep); color: var(--paper); padding: .95rem 0; overflow: hidden; }
.band-track { display: flex; gap: 3rem; width: max-content; animation: band-scroll 30s linear infinite; }
.band-track span { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; white-space: nowrap; }
.band-track span::after { content: "✦"; margin-left: 3rem; color: var(--gold); font-style: normal; }
@keyframes band-scroll { to { transform: translateX(-50%); } }

/* ---------- Karten & Raster ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card-icon {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--pine-soft); font-size: 1.5rem; margin-bottom: 1.1rem;
}
.insight {
  max-width: 780px; margin: 3rem auto 0; text-align: center;
  background: var(--pine-soft); border-radius: var(--radius); padding: 1.6rem 2rem;
  font-size: 1.12rem;
}

/* Persönliches Zitat von Silvia — bewusst ohne Kasten, damit es neben den
   Karten und dem Insight-Block nicht als dritte Box wirkt. */
.zitat-silvia {
  max-width: 760px; margin: 2.4rem auto 0; text-align: center; position: relative;
  padding-top: 2.2rem;
}
.zitat-silvia::before {
  content: "„"; position: absolute; top: -.4rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 4.2rem; line-height: 1;
  color: var(--terra); opacity: .35;
}
.zitat-silvia p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.28rem; line-height: 1.55; color: var(--pine-deep);
  text-wrap: balance;
}
.zitat-silvia cite {
  display: block; margin-top: .9rem; font-style: normal;
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
}
@media (max-width: 600px) {
  .zitat-silvia { padding-top: 1.8rem; text-align: left; }
  .zitat-silvia::before { left: 0; transform: none; font-size: 3.4rem; }
  .zitat-silvia p { font-size: 1.12rem; }
}

/* Vorher / Nachher */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ba-col { padding: 2.2rem 2rem; }
.ba-col + .ba-col { border-left: 1px dashed var(--line); background: var(--pine-soft); }
.ba-col h3 { font-size: 1.15rem; margin-bottom: 1.1rem; }
.ba-list { list-style: none; padding: 0; display: grid; gap: .75rem; }
.ba-list li { display: flex; gap: .7rem; align-items: baseline; }
.ba-dot { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .7rem; transform: translateY(3px); }
.ba-dot.no { background: var(--terra-soft); color: var(--terra-deep); }
.ba-dot.yes { background: var(--pine); color: #fff; }

/* Feature-Liste (Methode) */
.feature { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature + .feature { margin-top: 1.5rem; }
.feature-icon { flex: none; width: 50px; height: 50px; border-radius: 50%; background: var(--terra-soft); display: grid; place-items: center; font-size: 1.35rem; }
.feature h4 { margin-bottom: .2rem; color: var(--pine-deep); }
.feature p { color: var(--ink-soft); font-size: 1rem; }

/* Split-Layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.split-img { position: relative; }
.split-img .photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-img .photo img { width: 100%; height: 100%; object-fit: cover; }
.badge-note {
  position: absolute; bottom: -1.4rem; right: -0.6rem; max-width: 250px;
  background: var(--pine-deep); color: #EDEFE9; padding: 1.1rem 1.3rem; border-radius: var(--radius);
  font-family: var(--font-display); font-style: italic; font-size: 1rem; line-height: 1.45;
  box-shadow: var(--shadow); transform: rotate(1.5deg);
}

/* ---------- Angebote ---------- */
.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.offer {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.offer:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.offer-media { position: relative; aspect-ratio: 16 / 8.5; overflow: hidden; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.offer:hover .offer-media img { transform: scale(1.045); }
.offer-tag {
  position: absolute; top: 1rem; left: 1rem; background: rgba(250,245,236,.94); color: var(--pine-deep);
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: 999px;
}
.offer-body { padding: 1.7rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.offer-body p { color: var(--ink-soft); font-size: 1rem; flex: 1; }
/* Auf angebote.html sind die vier Karten Ebene 2 (dort ist "Komm in deine
   Strahlkraft" die H1), auf der Startseite Ebene 3 unter derselben Ueberschrift.
   Beide sollen gleich aussehen — die Semantik aendert sich, die Optik nicht. */
.offer-body h2 { font-size: 1.35rem; margin-bottom: .5rem; }
.offer-link {
  font-weight: 700; text-decoration: none; color: var(--terra);
  /* Als Block mit Innenabstand, damit die Tippfläche auf dem Handy die
     empfohlenen ~44 px erreicht — als reine Textzeile waren es nur 29 px. */
  display: inline-block; padding: .55rem 0;
}
.offer-link:hover { color: var(--terra-deep); }
.offer-link::after { content: " →"; }
/* Innerhalb einer Angebotskarte ist die ganze Karte antippbar. */
.offer { position: relative; }
.offer .offer-link::before { content: ""; position: absolute; inset: 0; z-index: 1; }


/* Detailseiten: Kopf */
.page-hero { position: relative; padding: clamp(3rem, 6vw, 4.5rem) 0; background: var(--paper-deep); overflow: hidden; }
.page-hero.has-img::before { content: ""; position: absolute; inset: 0; background: var(--img) center/cover; opacity: .16; }
.page-hero .wrap { position: relative; }
.breadcrumb { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.breadcrumb a { color: inherit; text-decoration: none; display: inline-block; padding: .35rem 0; }
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb span { margin: 0 .45rem; opacity: .6; }
.page-hero h1 { margin: .6rem 0 1rem; max-width: 850px; }
.page-hero .lead { max-width: 640px; }

/* Detailseiten: Layout mit Seitenleiste */
.detail { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.detail-main > section + section { margin-top: 3rem; }
.detail-main h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.detail-main h3 { font-size: 1.25rem; margin: 1.8rem 0 .6rem; }
.detail-main ul { margin: .8rem 0; display: grid; gap: .45rem; }
.callout {
  margin: 1.6rem 0; padding: 1.4rem 1.6rem; border-radius: var(--radius);
  background: var(--pine-soft); border-left: 4px solid var(--pine);
  font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--pine-deep);
}
.callout.warm { background: var(--terra-soft); border-left-color: var(--terra); color: var(--terra-deep); }
.detail-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); margin: 1.8rem 0; }

/* Häufige Fragen — sichtbar auf der Seite, damit die FAQ-Auszeichnung im
   Seitenkopf gedeckt ist. Google verlangt, dass ausgezeichnete Inhalte auch
   für Besucher sichtbar sind. */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: .3rem 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1rem 2.2rem 1rem 0; position: relative;
  font-family: var(--font-display); font-size: 1.08rem; color: var(--pine-deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .4rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; line-height: 1; color: var(--terra); font-family: var(--font-body);
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--terra-deep); }
.faq details p { padding: 0 0 1.1rem; color: var(--ink-soft); }

/* Faktenband — dreiteilige Übersicht, die auf Detailseiten dort steht, wo sonst
   ein Foto stünde. Enthält ausschließlich Angaben, die im Text der Seite stehen. */
.fakten-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.8rem 0; }
.fakten-band .fakt {
  background: var(--paper-deep); border-radius: var(--radius);
  padding: 1.5rem 1.2rem; text-align: center;
}
.fakten-band .zahl {
  display: block; font-family: var(--font-display); font-size: 1.85rem;
  line-height: 1.1; color: var(--pine-deep);
}
.fakten-band .was { display: block; margin-top: .4rem; font-size: .95rem; color: var(--ink-soft); }
@media (max-width: 620px) {
  .fakten-band { grid-template-columns: 1fr; gap: .7rem; }
  .fakten-band .fakt { display: flex; align-items: baseline; gap: .8rem; text-align: left; padding: 1rem 1.2rem; }
  .fakten-band .zahl { font-size: 1.4rem; flex: none; }
  .fakten-band .was { margin-top: 0; }
}
.method-head {
  background: var(--paper-deep); border-radius: var(--radius); padding: 1.6rem 1.9rem; margin-bottom: 1.4rem;
}
.method-head h2 { margin-bottom: .3rem; }

.sidebar { position: sticky; top: 100px; display: grid; gap: 1.4rem; }
.side-box { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.side-box h4 { margin-bottom: .9rem; color: var(--pine-deep); }
.side-item { display: flex; gap: .65rem; padding: .42rem 0; font-size: .98rem; align-items: baseline; }
.side-item .ico { color: var(--gold); flex: none; }
.side-box.cta { background: var(--pine-deep); color: #EDEFE9; border: 0; }
.side-box.cta h4 { color: #fff; }
.side-box.cta p { font-size: .97rem; margin-bottom: 1.1rem; }
.side-links a { display: block; padding: .4rem 0; text-decoration: none; font-weight: 500; }

/* ---------- Stimmen ---------- */
.quote-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.9rem; display: flex; flex-direction: column; gap: 1rem;
}
.quote-card .stars { color: var(--gold); letter-spacing: .2em; font-size: .95rem; }
.quote-card blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; line-height: 1.5; color: var(--ink); flex: 1; }
.quote-card cite { font-style: normal; font-weight: 700; font-size: .95rem; color: var(--ink-soft); }
.quote-card cite::before { content: "— "; }
.masonry { columns: 3; column-gap: 1.4rem; }
.masonry figure { break-inside: avoid; margin: 0 0 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .7rem; box-shadow: var(--shadow-soft); }
.masonry img { border-radius: 8px; width: 100%; }
.masonry figcaption { font-size: .85rem; color: var(--ink-soft); padding: .55rem .3rem .1rem; }

/* ---------- Galerie / Fotostreifen ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.photo-strip .ph { border-radius: 14px; overflow: hidden; aspect-ratio: 1; }
.photo-strip .ph.tall { grid-row: span 2; aspect-ratio: auto; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo-strip .ph:hover img { transform: scale(1.05); }
.gallery-note { text-align: center; margin-top: 1.2rem; }

/* Timeline (Über mich) */
.timeline { position: relative; padding-left: 2rem; display: grid; gap: 2.2rem; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; }
.tl-item::before {
  content: ""; position: absolute; left: -2rem; top: 8px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--terra); border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--terra);
}
.tl-item h3 { font-size: 1.25rem; margin-bottom: .35rem; }

/* Werte / Quali-Tags */
.tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.tag { background: var(--pine-soft); color: var(--pine-deep); font-size: .88rem; font-weight: 700; padding: .45rem 1rem; border-radius: 999px; }
.qual-list { list-style: none; padding: 0; display: grid; gap: .6rem; }
.qual-list li { padding-left: 1.6rem; position: relative; }
.qual-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ---------- CTA-Schlussblock ---------- */
.cta-final { background: var(--pine-deep); color: #EDEFE9; position: relative; overflow: hidden; }
.cta-final::before {
  content: "✦"; position: absolute; font-size: 26rem; line-height: 1; color: rgba(250,245,236,.045);
  right: -4rem; top: -6rem; pointer-events: none;
}
.cta-final .hand { color: var(--gold); }
.cta-final h2 { color: #F6F3EA; margin: .6rem 0 1rem; }
.cta-final p { max-width: 620px; margin: 0 auto; color: #C9D2C7; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.cta-note { margin-top: 1.4rem; font-size: .9rem; color: #97A796; }

/* ---------- Footer ---------- */
.site-foot { background: var(--pine-deep); color: #B9C4B6; border-top: 1px solid rgba(250,245,236,.12); }
.foot-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding: 3.5rem 0 2.5rem; }
/* Komplett-Logo im Footer auf heller Kachel, damit die Strichzeichnung auf Dunkelgrün lesbar bleibt */
.foot-logo {
  display: block; width: 200px; height: auto;
  background: #F6F3EA; border-radius: 12px; padding: 14px 18px;
}
.foot-brand p { font-size: .95rem; margin-top: .8rem; max-width: 300px; }
.site-foot h4 { color: #F6F3EA; margin-bottom: 1rem; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; }
.site-foot ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.site-foot a { color: #B9C4B6; text-decoration: none; font-size: .97rem; }
.site-foot a:hover { color: #fff; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; border-top: 1px solid rgba(250,245,236,.12); font-size: .88rem; }
.foot-legal { display: flex; gap: 1.4rem; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 800px; margin: 0 auto; padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2.5rem); }
.legal h1 { font-size: clamp(1.7rem, 6vw, 2.3rem); margin-bottom: .4rem; hyphens: auto; overflow-wrap: break-word; }
.legal h2 { hyphens: auto; overflow-wrap: break-word; }
.legal .updated { display: block; color: var(--ink-soft); font-size: .92rem; margin-bottom: 2.2rem; }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 .7rem; }
.legal h3 { font-size: 1.12rem; margin: 1.6rem 0 .5rem; }
.legal ul { margin: .7rem 0 .7rem 1.2rem; display: grid; gap: .35rem; }
.legal-box { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; margin: 1rem 0; }
.placeholder { background: #FBEFD9; color: #8a6210; padding: .05em .4em; border-radius: 4px; font-style: italic; }
.legal-backlinks { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .ba, .grid-3, .grid-2, .offers { grid-template-columns: 1fr; }
  .hero-figure { max-width: 460px; margin: 0 auto; }
  .hero-badge { left: 0; }
  .ba-col + .ba-col { border-left: 0; border-top: 1px dashed var(--line); }
  .detail { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .masonry { columns: 2; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .foot-main { grid-template-columns: 1fr 1fr; }
  .badge-note { position: static; transform: none; margin-top: 1rem; max-width: none; }
  .split-img { order: -1; }
}
@media (max-width: 1080px) {
  .main-nav {
    position: fixed; inset: 78px 0 auto 0; z-index: 50;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: .6rem 1.4rem 1.4rem;
    display: none; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.btn) { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .main-nav > a.active { border-bottom-color: var(--line); color: var(--terra); }
  .main-nav .nav-cta { margin-top: 1rem; text-align: center; }
  .nav-toggle { display: block; }
}
@media (max-width: 760px) {
  .masonry { columns: 1; }
  /* Gesperrte Versalien sind klein schwer zu lesen — auf dem Handy etwas größer. */
  .eyebrow { font-size: .9rem; }
}
@media (max-width: 400px) {
  .brand-mark { height: 38px; }
  .brand-type { height: 42px; }
}

/* ---------- Kontaktseite: Formular, Karten, Terminbuchung ---------- */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; align-items: start; }
.contact-form-wrap h2 { font-size: 1.8rem; }
.contact-intro { color: var(--ink-soft); margin: .5rem 0 1.6rem; }

.contact-form { display: grid; gap: 1.15rem; }
.contact-form .field { display: grid; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.contact-form label { font-weight: 600; font-size: .95rem; color: var(--ink); }
.contact-form label .opt { font-weight: 400; color: var(--ink-soft); }
.contact-form label span[aria-hidden] { color: var(--terra); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  padding: .8rem .95rem; transition: border-color .18s, box-shadow .18s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--terra);
  box-shadow: 0 0 0 3px var(--terra-soft);
}
.contact-form textarea { resize: vertical; min-height: 130px; }

.field-check { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; }
.field-check input { width: 1.15rem; height: 1.15rem; margin-top: .15rem; accent-color: var(--terra); flex: none; }
.field-check label { font-weight: 400; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.field-check a { color: var(--terra-deep); }

.btn-full-mob { justify-self: start; }
.form-hint { font-size: .92rem; margin-top: .2rem; min-height: 1.2em; }
.form-hint.success { color: var(--pine); }
.form-hint.error { color: var(--terra-deep); }
.form-fineprint { font-size: .875rem; color: var(--ink-soft); margin-top: -.3rem; }
.form-hint a { color: var(--terra-deep); }

/* Bestätigung nach dem Versand — ersetzt das Formular an Ort und Stelle. */
.dank-karte {
  background: var(--cream); border: 2px solid var(--pine-soft); border-radius: var(--radius);
  padding: 2.2rem 1.9rem; text-align: center;
}
.dank-karte:focus { outline: none; }
.dank-icon {
  display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 1rem;
  border-radius: 50%; background: var(--pine); color: var(--paper); font-size: 1.6rem;
}
.dank-karte h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.dank-karte p { color: var(--ink-soft); }
.dank-alt { margin-top: 1rem; font-size: .95rem; }
.dank-alt a { color: var(--pine); font-weight: 600; }

.contact-side { display: grid; gap: 1.2rem; }
.contact-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.7rem; box-shadow: var(--shadow-soft); }
.contact-card.soft { background: var(--pine-soft); border-color: transparent; box-shadow: none; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.contact-card.soft p { color: var(--ink-soft); }
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.contact-list .ci { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--terra-soft); color: var(--terra-deep); font-size: 1.15rem; }
.contact-list .ci-label { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .1rem; }
/* Anrufen und Mailen sind auf dem Handy die wichtigsten Wege — entsprechend
   großzügige Tippflächen statt nackter Textzeilen. */
.contact-list a {
  color: var(--pine); text-decoration: none; font-weight: 600; word-break: break-word;
  display: inline-block; padding: .5rem 0; min-height: 24px;
}
.contact-list a:hover { color: var(--terra-deep); }

.booking-head { max-width: 640px; margin: 0 auto 2.4rem; }
.center-actions { justify-content: center; }
.booking-embed { max-width: 820px; margin: 0 auto; }
.booking-embed iframe { width: 100%; min-height: 620px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.booking-placeholder { border: 2px dashed var(--line); border-radius: var(--radius); background: var(--cream); padding: 3rem 1.5rem; text-align: center; }
.booking-placeholder .bp-inner { max-width: 480px; margin: 0 auto; }
.booking-placeholder .bp-icon { font-size: 2.6rem; display: block; margin-bottom: .6rem; }
.booking-placeholder h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.booking-placeholder p { color: var(--ink-soft); margin-bottom: 1.4rem; }
/* Calendly-Einbettung: Höhe kommt vom iframe-Attribut, Rahmen vom bestehenden
   .booking-embed iframe. Der Fallback darunter greift, wenn das Widget
   blockiert wird (Browser-Schutz, Adblocker, Cookie-Einstellungen). */
.booking-fallback { margin-top: 1rem; font-size: .95rem; color: var(--ink-soft); text-align: center; }
.booking-fallback a { color: var(--terra-deep); text-decoration: underline; }

/* Einwilligungskarte vor dem Calendly-Kalender.
   Bewusst KEIN Banner-Look: Sie sitzt an der Stelle, an der der Kalender
   erscheint, und gehört optisch zur Seite. */
.consent-card { max-width: 620px; margin: 0 auto; padding: 2.4rem 2rem; text-align: center;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); }
.consent-card .cc-icon { font-size: 2.4rem; display: block; margin-bottom: .5rem; }
.consent-card h3 { font-size: 1.35rem; margin-bottom: .8rem; }
.consent-card p { font-size: .95rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: .9rem; text-align: left; }
.consent-card p strong { color: var(--ink); }
.consent-card .cc-code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .85em;
  background: var(--paper-deep); border-radius: 3px; padding: .1em .35em; }
.cc-check { display: flex; align-items: flex-start; gap: .7rem; text-align: left;
  margin: 1.3rem 0; padding: .9rem 1rem; background: var(--paper); border-radius: 8px; }
.cc-check input { width: 1.15rem; height: 1.15rem; margin-top: .15rem; accent-color: var(--terra); flex: none; }
.cc-check label { font-size: .95rem; line-height: 1.55; color: var(--ink); cursor: pointer; }
.cc-hint { color: var(--terra-deep); font-size: .9rem; margin-top: .8rem; text-align: center; }
.cc-fine { font-size: .85rem; color: var(--ink-soft); margin-top: 1.2rem; margin-bottom: 0; text-align: center; }
.consent-card a { color: var(--terra-deep); text-decoration: underline; }
#terminRahmen iframe { width: 100%; min-height: 620px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--cream); }

@media (max-width: 600px) {
  .consent-card { padding: 1.8rem 1.2rem; }
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .btn-full-mob { width: 100%; justify-self: stretch; text-align: center; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .band-track { animation: none; flex-wrap: wrap; width: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .offer, .offer-media img, .photo-strip img { transition: none; }
}

/* ---------- Druck ---------- */
@media print {
  .site-head, .site-foot, .cta-final, .nav-toggle { display: none; }
}
