/* =========================================================================
   HYPNOKOSMETIK® Berlin — Stylesheet
   Designsystem: "Warm & natürlich" — Sand, Terrakotta, Salbei
   Autor: Neugestaltung 2026
   ------------------------------------------------------------------------
   HINWEIS ZU SCHRIFTEN (DSGVO):
   Es werden bewusst KEINE Google Fonts per CDN eingebunden, da das
   Übertragen der Besucher-IP an Google in Deutschland abmahnfähig ist
   (LG München I, Az. 3 O 17493/20). Verwendet wird ein hochwertiger
   System-Font-Stack. Wer eigene Schriften möchte, lädt die .woff2-Dateien
   nach /assets/fonts/ und aktiviert die @font-face-Blöcke unten.
   ========================================================================= */

/* --- Optional: eigene Schriften selbst hosten (auskommentiert) ------------
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
-------------------------------------------------------------------------- */

/* =========================================================================
   1. Design-Tokens
   ========================================================================= */
:root {
  /* Farben */
  --c-bg:            #FBF8F4;
  --c-bg-soft:       #F5EFE7;
  --c-bg-deep:       #EFE6DA;
  --c-surface:       #FFFFFF;

  --c-ink:           #262220;
  --c-ink-soft:      #4A423B;
  --c-muted:         #736A60;
  --c-line:          #E4D9CB;
  --c-line-soft:     #EFE7DC;

  --c-clay:          #A66339;   /* Primär-Akzent (Terrakotta) – WCAG-AA-geprüft */
  --c-clay-dark:     #8A5230;
  --c-clay-light:    #C68A5E;
  --c-clay-wash:     #F6EAE0;

  --c-sage:          #6E8168;   /* Sekundär-Akzent (Salbei) */
  --c-sage-dark:     #566650;
  --c-sage-wash:     #ECF0E9;

  --c-gold:          #B99A5F;

  --c-wa:            #25D366;   /* WhatsApp */
  --c-wa-dark:       #1DA851;

  /* Typografie */
  --f-serif: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype',
             Palatino, 'Book Antiqua', Georgia, 'Times New Roman', serif;
  --f-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
             'Helvetica Neue', Arial, 'Noto Sans', sans-serif;

  /* Maße */
  --wrap:      1180px;
  --wrap-slim: 780px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --r-pill: 999px;

  /* Schatten */
  --sh-xs: 0 1px 2px rgba(38,34,32,.05);
  --sh-sm: 0 2px 10px rgba(38,34,32,.06);
  --sh-md: 0 10px 30px -12px rgba(38,34,32,.18);
  --sh-lg: 0 26px 60px -24px rgba(38,34,32,.28);

  --ease: cubic-bezier(.22,.61,.36,1);

  --header-h: 78px;
}

/* =========================================================================
   2. Reset & Basis
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink-soft);
  font-family: var(--f-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--f-serif);
  color: var(--c-ink);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.12rem; font-family: var(--f-sans); font-weight: 600; letter-spacing: 0; }

/* Lange deutsche Komposita sauber umbrechen */
p, li, h1, h2, h3, h4, dd, dt, blockquote, td, th, label, summary {
  overflow-wrap: break-word;
  hyphens: auto;
}

p  { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--c-clay-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--c-clay); }

strong { color: var(--c-ink); font-weight: 600; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

hr { border: 0; border-top: 1px solid var(--c-line); margin: 2.5rem 0; }

::selection { background: var(--c-clay-wash); color: var(--c-clay-dark); }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--c-ink); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--r-sm); transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

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

/* =========================================================================
   3. Layout-Helfer
   ========================================================================= */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-slim { width: min(100% - 2.5rem, var(--wrap-slim)); margin-inline: auto; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--soft { background: var(--c-bg-soft); }
.section--deep { background: var(--c-bg-deep); }
.section--white { background: var(--c-surface); }

.grid { display: grid; gap: clamp(1.4rem, 3vw, 2.2rem); }
.grid > *, .split > *, .form-row > *, .stats > *, .footer__grid > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* =========================================================================
   4. Typografische Bausteine
   ========================================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-sans);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--c-clay-dark);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--c-clay-light);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: ""; width: 28px; height: 1px; background: var(--c-clay-light);
}

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.28rem);
  line-height: 1.65;
  color: var(--c-ink-soft);
}

.section-head { max-width: 44rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head.center { margin-inline: auto; }

/* Zierteiler */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: .85rem;
  margin: 0 0 1.4rem;
}
.ornament span { display: block; width: 46px; height: 1px; background: var(--c-line); }
.ornament i {
  width: 7px; height: 7px; border: 1px solid var(--c-clay-light);
  transform: rotate(45deg); display: block;
}

/* =========================================================================
   5. Buttons
   ========================================================================= */
.btn {
  --btn-bg: var(--c-clay);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.75rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--f-sans); font-size: .95rem; font-weight: 600;
  letter-spacing: .01em;
  border: 1px solid transparent; border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
  box-shadow: var(--sh-sm);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
  background: var(--c-clay-dark);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--c-ink);
  border-color: var(--c-line); box-shadow: none;
}
.btn--ghost:hover {
  background: var(--c-surface); color: var(--c-ink);
  border-color: var(--c-clay-light);
}

.btn--light {
  --btn-bg: #fff; --btn-fg: var(--c-clay-dark);
}
.btn--light:hover { background: #fff; color: var(--c-clay-dark); }

.btn--wa { --btn-bg: var(--c-wa); --btn-fg: #06301A; }
.btn--wa:hover { background: var(--c-wa-dark); color: #06301A; }


.btn--lg { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn svg { width: 18px; height: 18px; flex: none; }

/* Textlink mit Pfeil */
.arrow-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  color: var(--c-clay-dark);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* =========================================================================
   6. Header / Navigation
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(251,248,244,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease),
              background-color .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--c-line-soft);
  box-shadow: 0 6px 24px -18px rgba(38,34,32,.5);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.brand {
  display: inline-flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--c-ink); flex: none;
}
.brand__mark {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, #F0DFCE 0%, transparent 55%),
    linear-gradient(140deg, var(--c-clay-light), var(--c-clay-dark) 60%, var(--c-sage-dark));
  display: grid; place-items: center;
  color: #fff; font-family: var(--f-serif); font-size: 1.15rem;
  font-weight: 600; line-height: 1; padding-bottom: 2px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), var(--sh-xs);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--f-serif); font-size: 1.32rem; font-weight: 600;
  letter-spacing: .005em;
}
.brand__sub {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 500;
}

.nav { display: flex; align-items: center; gap: .1rem; }
.nav a {
  position: relative;
  padding: .55rem .85rem;
  font-size: .93rem; font-weight: 500;
  color: var(--c-ink-soft); text-decoration: none;
  border-radius: var(--r-sm);
  transition: color .2s var(--ease), background-color .2s var(--ease);
  white-space: nowrap;
}
.nav a:hover { color: var(--c-ink); background: rgba(166,99,57,.07); }
.nav a[aria-current="page"] { color: var(--c-clay-dark); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .18rem;
  height: 1.5px; background: var(--c-clay-light); border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: .6rem; flex: none; }
.header-cta .btn { padding: .7rem 1.3rem; font-size: .88rem; white-space: nowrap; }
.lbl-short { display: none; }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px; flex: none;
  border: 1px solid var(--c-line); border-radius: var(--r-sm);
  background: var(--c-surface); cursor: pointer;
  padding: 0; place-items: center;
}
.burger span {
  display: block; width: 19px; height: 1.6px; background: var(--c-ink);
  border-radius: 2px; position: relative;
  transition: transform .3s var(--ease), background-color .2s var(--ease);
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 1.6px;
  background: var(--c-ink); border-radius: 2px;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Mobil-Menü */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0; z-index: 89;
  background: var(--c-bg);
  padding: 2rem 0 3rem;
  overflow-y: auto;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.mobile-nav.is-open { opacity: 1; transform: none; visibility: visible; }
.mobile-nav a:not(.btn) {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem .25rem; font-family: var(--f-serif); font-size: 1.5rem;
  color: var(--c-ink); text-decoration: none;
  border-bottom: 1px solid var(--c-line-soft);
}
.mobile-nav a:not(.btn)[aria-current="page"] { color: var(--c-clay-dark); }
.mobile-nav a:not(.btn) > span[aria-hidden] {
  display: inline-flex; align-items: center; flex: none;
  width: 18px; height: 18px; color: var(--c-clay-light);
}
.mobile-nav a:not(.btn) > span[aria-hidden] svg { width: 18px; height: 18px; }
.mobile-nav .btn { margin-top: 1.8rem; }
body.nav-open { overflow: hidden; }

/* =========================================================================
   7. Hero
   ========================================================================= */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
  background:
    radial-gradient(90rem 40rem at 78% -10%, #F7EADC 0%, transparent 62%),
    radial-gradient(60rem 34rem at 8% 105%, var(--c-sage-wash) 0%, transparent 60%),
    var(--c-bg);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-line), transparent);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.hero h1 { margin-bottom: .35em; }
.hero h1 em {
  font-style: italic; color: var(--c-clay-dark);
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem;
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  margin-top: 2.6rem; padding-top: 1.8rem;
  border-top: 1px solid var(--c-line);
  font-size: .9rem; color: var(--c-muted);
}
.hero__meta div { display: flex; align-items: center; gap: .5rem; }
.hero__meta svg { width: 17px; height: 17px; color: var(--c-sage); flex: none; }

/* Hero-Visual (reines CSS/SVG, kein Foto nötig) */
.hero__visual { position: relative; }
.hero__figure {
  position: relative; aspect-ratio: 4/5;
  border-radius: 260px 260px var(--r-lg) var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 30% 12%, #FDF6EE 0%, transparent 60%),
    linear-gradient(155deg, #E9D9C6 0%, #D9C3AB 42%, #B99677 100%);
  box-shadow: var(--sh-lg);
  isolation: isolate;
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }
.hero__figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(38,34,32,.14));
}
.hero__badge {
  position: absolute; left: -1.6rem; bottom: 2.2rem; z-index: 2;
  background: var(--c-surface); border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg); padding: 1rem 1.3rem;
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: .85rem; max-width: 15rem;
}
.hero__badge strong { display: block; font-size: .95rem; line-height: 1.3; }
.hero__badge span { font-size: .8rem; color: var(--c-muted); }
.hero__badge .dot {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--c-sage-wash); color: var(--c-sage-dark);
  display: grid; place-items: center;
}
.hero__badge .dot svg { width: 18px; height: 18px; }

/* Seiten-Hero (Unterseiten) */
.page-hero {
  padding: clamp(3.2rem, 7vw, 5.4rem) 0 clamp(2.6rem, 5vw, 4rem);
  background:
    radial-gradient(70rem 30rem at 85% -30%, #F7EADC 0%, transparent 60%),
    var(--c-bg-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.page-hero .lead { max-width: 46rem; }

.breadcrumb {
  font-size: .82rem; color: var(--c-muted); margin-bottom: 1.4rem;
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-clay-dark); }
.breadcrumb span { opacity: .5; }

/* =========================================================================
   8. Karten & Inhalte
   ========================================================================= */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 2.6vw, 2.1rem);
  box-shadow: var(--sh-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
  position: relative;
  height: 100%;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: var(--c-line);
}
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; color: var(--c-muted); }

.card__icon {
  width: 50px; height: 50px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: 1.2rem;
  background: var(--c-clay-wash); color: var(--c-clay-dark);
}
.card__icon svg { width: 24px; height: 24px; }
.card__icon--sage { background: var(--c-sage-wash); color: var(--c-sage-dark); }

.card--link { display: flex; flex-direction: column; text-decoration: none; }
.card--link .arrow-link { margin-top: auto; padding-top: 1.3rem; }

/* Feature-Karte mit Zahl */
.step {
  position: relative; padding-left: 4.2rem;
}
.step__num {
  position: absolute; left: 0; top: -.25rem;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-serif); font-size: 1.35rem; font-weight: 600;
  color: var(--c-clay-dark);
  background: var(--c-surface); border: 1px solid var(--c-line);
  box-shadow: var(--sh-xs);
}
.step h3 { font-size: 1.22rem; }
.step p { color: var(--c-muted); font-size: .98rem; }

/* Check-Liste */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.checklist li {
  position: relative; padding-left: 2rem; margin: 0; font-size: 1rem;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--c-sage-wash);
}
.checklist li::after {
  content: ""; position: absolute; left: 5px; top: .72em;
  width: 8px; height: 4.5px;
  border-left: 1.8px solid var(--c-sage-dark);
  border-bottom: 1.8px solid var(--c-sage-dark);
  transform: rotate(-45deg);
}
.checklist--2 { grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 2rem; }

/* Split-Layout Text + Visual */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.2rem, 5.5vw, 4.5rem); align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 5/4;
  background: linear-gradient(150deg, #EFE2D2, #D7C3AC 55%, #A9887099);
  box-shadow: var(--sh-md);
  position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--sage { background: linear-gradient(150deg, #E7EDE3, #C6D2C0 55%, #8CA085); }

/* Zitat */
.quote {
  border-left: 2px solid var(--c-clay-light);
  padding: .3rem 0 .3rem 1.6rem;
  font-family: var(--f-serif); font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.42; color: var(--c-ink); font-style: italic;
}
.quote cite {
  display: block; margin-top: .9rem;
  font-family: var(--f-sans); font-size: .85rem; font-style: normal;
  letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted);
}

/* Prose-Bereich für Textseiten */
.prose h2 { margin-top: 2.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2em; }
.prose ul li { margin-bottom: .5em; }

/* Info-Box */
.note {
  background: var(--c-clay-wash);
  border: 1px solid #EBD9C8;
  border-radius: var(--r-md);
  padding: 1.3rem 1.5rem;
  font-size: .96rem;
}
.note strong { color: var(--c-clay-dark); }
.note--sage { background: var(--c-sage-wash); border-color: #DCE4D7; }
.note--sage strong { color: var(--c-sage-dark); }

/* Timeline */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: .6rem; bottom: .6rem;
  width: 1px; background: var(--c-line);
}
.timeline li {
  position: relative; padding-left: 2.2rem; margin-bottom: 1.5rem;
}
.timeline li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--c-bg); border: 2px solid var(--c-clay-light);
}
.timeline b {
  display: block; font-family: var(--f-serif); font-size: 1.15rem;
  color: var(--c-ink); font-weight: 600;
}
.timeline span { font-size: .96rem; color: var(--c-muted); }

/* Statistik / Zahlen */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--f-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.1rem); color: var(--c-clay-dark);
  line-height: 1; font-weight: 600;
}
.stat span { font-size: .88rem; color: var(--c-muted); letter-spacing: .04em; }

/* Bagua-Raster (Feng Shui) */
.bagua {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem;
  max-width: 30rem;
}
.bagua > div { min-width: 0; }
.bagua div {
  aspect-ratio: 1; border-radius: var(--r-md);
  display: grid; place-content: center; text-align: center;
  padding: .6rem; gap: .2rem;
  background: var(--c-surface); border: 1px solid var(--c-line-soft);
  font-size: .78rem; color: var(--c-muted); line-height: 1.3;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.bagua div:hover { transform: scale(1.04); background: var(--c-clay-wash); }
.bagua b {
  display: block; font-family: var(--f-serif); font-size: 1.02rem;
  color: var(--c-ink); font-weight: 600;
}
.bagua div:nth-child(5) { background: var(--c-clay-wash); border-color: #E8D5C3; }

/* =========================================================================
   9. Akkordeon (FAQ)
   ========================================================================= */
.faq { border-top: 1px solid var(--c-line); }
.faq details {
  border-bottom: 1px solid var(--c-line);
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.4rem 3rem 1.4rem 0;
  position: relative;
  font-family: var(--f-serif); font-size: clamp(1.12rem, 2vw, 1.32rem);
  color: var(--c-ink); font-weight: 600;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--c-clay-dark); }
.faq summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%;
  width: 12px; height: 12px; margin-top: -8px;
  border-right: 1.8px solid var(--c-clay); border-bottom: 1.8px solid var(--c-clay);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq .faq__body { padding: 0 2.5rem 1.6rem 0; color: var(--c-muted); }
.faq .faq__body p { font-size: .99rem; }

/* =========================================================================
   10. CTA-Band
   ========================================================================= */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60rem 30rem at 15% 0%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(135deg, var(--c-clay-dark) 0%, #8E5836 45%, var(--c-sage-dark) 130%);
  color: #F8EFE6;
  border-radius: var(--r-xl);
  padding: clamp(2.6rem, 6vw, 4.2rem);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 38rem; margin-inline: auto; }
.cta-band .eyebrow { color: rgba(255,255,255,.75); }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: rgba(255,255,255,.4); }
.cta-band__actions {
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem;
}

/* =========================================================================
   11. Formular
   ========================================================================= */
.form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-xl);
  padding: clamp(1.7rem, 4vw, 3rem);
  box-shadow: var(--sh-md);
}

.field { margin-bottom: 1.35rem; }
.field label {
  display: block; margin-bottom: .45rem;
  font-size: .88rem; font-weight: 600; color: var(--c-ink);
}
.field .req { color: var(--c-clay); }
.field .hint { font-weight: 400; color: var(--c-muted); font-size: .82rem; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  font: inherit; font-size: 1rem;
  color: var(--c-ink);
  padding: .85rem 1rem;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease);
  appearance: none;
}
.field textarea { min-height: 160px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23736A60' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  background-size: 18px; padding-right: 2.8rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--c-surface);
  border-color: var(--c-clay-light);
  box-shadow: 0 0 0 3px rgba(166,99,57,.13);
}
.field input::placeholder, .field textarea::placeholder { color: #857A6F; }

.field.has-error input,
.field.has-error textarea,
.field.has-error select { border-color: #C0563F; box-shadow: 0 0 0 3px rgba(192,86,63,.11); }
.field .error {
  display: none; margin-top: .4rem; font-size: .82rem; color: #A8452F;
}
.field.has-error .error { display: block; }

.field--check {
  display: flex; gap: .8rem; align-items: flex-start;
}
.field--check input[type="checkbox"] {
  width: 20px; height: 20px; margin: .18rem 0 0; flex: none;
  accent-color: var(--c-clay); cursor: pointer;
}
.field--check label { font-weight: 400; font-size: .89rem; color: var(--c-muted); margin: 0; }
.field--check.has-error label { color: #A8452F; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }

/* Honeypot – für Menschen unsichtbar */
.hp-field {
  position: absolute !important; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}

.form-status {
  display: none; margin-bottom: 1.5rem;
  padding: 1rem 1.2rem; border-radius: var(--r-md); font-size: .95rem;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: var(--c-sage-wash); border: 1px solid #D3DECE; color: var(--c-sage-dark);
}
.form-status.is-error {
  background: #FBEDE9; border: 1px solid #F0D4CB; color: #A8452F;
}

/* Kontakt-Infoliste */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; margin: 0; }
.contact-list .ico {
  width: 44px; height: 44px; border-radius: var(--r-md); flex: none;
  display: grid; place-items: center;
  background: var(--c-clay-wash); color: var(--c-clay-dark);
}
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-muted); font-weight: 600; margin-bottom: .15rem; }
.contact-list a { color: var(--c-ink); text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--c-clay-dark); }

/* =========================================================================
   12. WhatsApp Floating Button
   ========================================================================= */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 80;
  display: inline-flex; align-items: center; gap: .65rem;
  height: 58px; padding: 0 20px 0 17px;
  background: var(--c-wa); color: #06301A;
  border-radius: var(--r-pill); text-decoration: none;
  font-size: .93rem; font-weight: 600;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.55), var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background-color .25s var(--ease);
}
.wa-float:hover {
  transform: translateY(-2px); color: #06301A; background: var(--c-wa-dark);
  box-shadow: 0 18px 38px -10px rgba(37,211,102,.65);
}
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float__label { white-space: nowrap; }
/* Der WhatsApp-Button pulsiert bewusst nicht – er soll nicht vom Text ablenken. */

/* =========================================================================
   13. Footer
   ========================================================================= */
.site-footer {
  background: #221E1B; color: #B8ADA2;
  /* Unten mehr Luft, damit der mitschwebende WhatsApp-Button die letzte
     Zeile mit Impressum und Datenschutz nicht verdeckt. */
  padding: clamp(3.4rem, 6vw, 5rem) 0 6rem;
  font-size: .93rem;
}
.site-footer h4 {
  color: #F3EAE0; font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600;
}
.site-footer a { color: #B8ADA2; text-decoration: none; overflow-wrap: anywhere; }
.site-footer a:hover { color: #E8C9A9; }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.8rem, 4vw, 3rem);
}
.footer__grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer__grid li { margin: 0; }
.site-footer .brand__name { color: #F5EDE3; }
.site-footer .brand__sub { color: #857A70; }
.site-footer .brand { margin-bottom: 1.1rem; }
.footer__about { max-width: 24rem; color: #988D83; font-size: .9rem; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .85rem; color: #857A70;
}
.footer__bottom nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* =========================================================================
   14. Bewegung
   -------------------------------------------------------------------------
   Bewusste Entscheidung: KEINE Animationen beim Scrollen. Inhalte sind immer
   sofort sichtbar und lesbar – nichts blendet sich erst ein, nichts verschiebt
   sich. Die Klasse .reveal steht noch im HTML, hat aber keine Wirkung mehr;
   so lässt sie sich bei Bedarf wieder aktivieren, ohne das HTML zu ändern.

   Einziges Zugeständnis: die Seite selbst blendet beim Laden einmal ganz
   kurz auf. Das ist eine reine CSS-Animation ohne JavaScript – sie endet
   garantiert bei voller Sichtbarkeit und kann nichts verdecken.
   ========================================================================= */
.reveal { opacity: 1; }

@keyframes seite-auf { from { opacity: 0; } to { opacity: 1; } }
body { animation: seite-auf .4s ease-out both; }

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

/* =========================================================================
   15. Responsive
   ========================================================================= */
/* Kopfzeile: 7 Navigationspunkte, Sprachumschalter und zwei Buttons brauchen
   Platz. Ab 1500 px wird der Telefon-Button zum Icon, darunter entfällt er –
   die Nummer steht weiterhin im Menü, im Fußbereich und auf der Kontaktseite. */
@media (max-width: 1560px) {
  .header-cta .btn--ghost span { display: none; }
  .header-cta .btn--ghost { padding: .7rem .85rem; }
}

@media (max-width: 1500px) {
  .header-cta .btn--ghost { display: none; }
  .nav a { padding: .55rem .52rem; font-size: .86rem; }
  .site-header .wrap { gap: 1rem; }
}

@media (max-width: 1180px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Ab hier passt die 6-teilige Navigation nicht mehr in eine Zeile
   -> Burger-Menü übernimmt */
@media (max-width: 1150px) {
  .nav { display: none; }
  .burger { display: grid; }
}

@media (max-width: 960px) {
  .nav, .header-cta .btn--ghost { display: none; }
  .burger { display: grid; }
  .hero__grid { grid-template-columns: 1fr; }
  /* Wichtig: eine feste Breite statt nur max-width. Das Bild und das kleine
     Kästchen darin sind absolut positioniert, ohne eigene Breite hätte der
     Bereich sonst keinen Inhalt im Textfluss und fiele auf null zusammen. */
  .hero__visual {
    width: min(100%, 21rem);
    max-width: none;
    justify-self: center;
    margin: 0 auto 2.4rem;
    order: -1;
  }
  /* Das Porträt bleibt auch auf dem Handy hochformatig, sonst würde der
     5:4-Ausschnitt den Kopf anschneiden. */
  .hero__figure { aspect-ratio: 4/5; border-radius: 190px 190px var(--r-xl) var(--r-xl); }
  .hero__badge {
    left: auto; right: .6rem; bottom: .6rem;
    max-width: 12rem; padding: .7rem .85rem; gap: .6rem;
  }
  .hero__badge .dot { width: 28px; height: 28px; }
  .hero__badge .dot svg { width: 15px; height: 15px; }
  .hero__badge strong { font-size: .86rem; }
  .hero__badge span { font-size: .74rem; line-height: 1.35; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  body { font-size: 1.02rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checklist--2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 2rem; }
  .brand__name { font-size: 1.15rem; }
  .brand__sub { font-size: .56rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .8rem; }
  .hero__meta { gap: .9rem 1.4rem; }
  .wa-float__label { display: none; }
  .wa-float { padding: 0; width: 56px; height: 56px; justify-content: center; }
  .bagua div { font-size: .68rem; padding: .35rem; }
  .step { padding-left: 0; padding-top: 3.6rem; }
  .step__num { top: 0; }
}

@media (max-width: 600px) {
  .site-header .wrap { gap: .75rem; }
  .lbl-long  { display: none; }
  .lbl-short { display: inline; }
  .header-cta .btn { padding: .62rem 1.05rem; font-size: .85rem; }
  .brand__sub { display: none; }
  .brand__name { font-size: 1.08rem; }
  .brand__mark { width: 34px; height: 34px; font-size: 1rem; }
}

@media (max-width: 360px) {
  .header-cta .btn { display: none; }
}

/* =========================================================================
   16. Druck
   ========================================================================= */
@media print {
  .site-header, .wa-float, .mobile-nav, .cta-band, .site-footer { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================================
   17. Publikationen / Bücher
   ========================================================================= */
.books { display: grid; gap: clamp(1.6rem, 3vw, 2.4rem); }

.book {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--sh-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.book:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

/* Buchcover – zeigt das echte Cover, sonst eine gesetzte Ersatzgrafik */
.book__cover {
  position: relative;
  aspect-ratio: 135 / 200;
  border-radius: 4px 10px 10px 4px;
  overflow: hidden;
  background: linear-gradient(145deg, #E7D7C4 0%, #C9A985 55%, #9E7A57 100%);
  box-shadow: var(--sh-md), inset 0 0 0 1px rgba(255,255,255,.25);
  display: grid;
  align-content: center;
  gap: .5rem;
  padding: 1.4rem 1rem;
  text-align: center;
}
.book__cover::before {   /* Buchrücken */
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 9px;
  background: linear-gradient(90deg, rgba(0,0,0,.22), rgba(0,0,0,0));
}
.book__cover img {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; object-fit: cover;
}
.book__cover em {
  font-family: var(--f-serif); font-style: normal; font-weight: 600;
  font-size: 1.12rem; line-height: 1.22; color: #40301F;
  hyphens: none;
}
.book__cover span {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(64,48,31,.72);
}
.book__cover i {
  display: block; width: 26px; height: 1px; margin: .1rem auto;
  background: rgba(64,48,31,.4);
}

.book__body h3 { margin-bottom: .3rem; }
.book__meta {
  display: flex; flex-wrap: wrap; gap: .5rem .9rem;
  font-size: .82rem; color: var(--c-muted);
  margin-bottom: 1rem;
}
.book__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.book__meta span + span::before {
  content: ""; width: 3px; height: 3px; border-radius: 50%;
  background: var(--c-line); margin-right: .55rem;
}
.book__body p { font-size: .98rem; color: var(--c-muted); }
.book__body blockquote {
  margin: 0 0 1.1rem; padding: 0 0 0 1.1rem;
  border-left: 2px solid var(--c-clay-light);
  font-family: var(--f-serif); font-size: 1.15rem; line-height: 1.45;
  font-style: italic; color: var(--c-ink);
}
.book__actions {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.3rem;
}
.book__actions .btn { padding: .72rem 1.25rem; font-size: .88rem; }

/* Frühere Werke */
.works { list-style: none; padding: 0; margin: 0; display: grid; gap: .2rem; }
.works li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .2rem .9rem;
  padding: .85rem 0; margin: 0;
  border-bottom: 1px solid var(--c-line-soft);
}
.works b { font-family: var(--f-serif); font-size: 1.18rem; color: var(--c-ink); font-weight: 600; }
.works em { font-style: normal; color: var(--c-muted); font-size: .92rem; }
.works time {
  margin-left: auto; font-size: .82rem; letter-spacing: .1em;
  color: var(--c-clay-dark); font-weight: 600;
}

/* Portraitfoto-Slots */
.portrait { position: relative; }
.portrait img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 720px) {
  .book { grid-template-columns: 1fr; }
  .book__cover { max-width: 175px; }
  .works time { margin-left: 0; width: 100%; }
}

/* Hochformat-Variante für Foto-Slots (z. B. Publikationen) */
.split__media--tall {
  aspect-ratio: 9 / 11;
  max-width: 27rem;
  margin-inline: auto;
}

/* =========================================================================
   18. Motto / Leitspruch
   ========================================================================= */
.motto {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.24;
  color: var(--c-ink);
  font-style: italic;
  margin: 0;
  hyphens: none;
}
.motto span { color: var(--c-clay-dark); font-style: normal; }
.motto::before, .motto::after {
  content: ""; display: block; width: 46px; height: 1px;
  background: var(--c-clay-light); margin: 0 auto 1.6rem;
}
.motto::after { margin: 1.6rem auto 0; }

/* Sternkarte / Astrologie-Bausteine */
.wheel { display: grid; place-items: center; }

/* =========================================================================
   19. Sprachumschalter
   ========================================================================= */
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 .85rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: var(--c-muted); text-decoration: none;
  border: 1px solid var(--c-line); border-radius: var(--r-pill);
  background: transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease),
              background-color .2s var(--ease);
  white-space: nowrap; flex: none;
}
.lang-switch:hover {
  color: var(--c-clay-dark);
  border-color: var(--c-clay-light);
  background: var(--c-surface);
}
.lang-switch::before {
  content: ""; width: 13px; height: 13px; margin-right: .45rem; flex: none;
  background: currentColor;
  -webkit-mask: var(--globe) center/contain no-repeat;
  mask: var(--globe) center/contain no-repeat;
}
:root {
  --globe: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a15 15 0 0 1 0 18 15 15 0 0 1 0-18z'/%3E%3C/svg%3E");
}

@media (max-width: 960px) {
  .site-header .lang-switch { display: none; }
}

/* Urhebervermerk im Fußbereich */
.footer__credit { color: #C9BCAF; text-decoration: underline; text-underline-offset: 3px; }
.footer__credit:hover { color: #E8C9A9; }
