/* ============================================================
   LarryFairy — Healing & Mental Balance · Berlin
   Statisches SEO-Scaffold (KAS-Apache). Warm, ruhig, heilsam.
   Palette: Rosé · Gold · Salbeigrün auf warmem Off-White.
   ============================================================ */

:root {
  --ink:      #2b2733;
  --ink-soft: #5a5260;
  --bg:       #fbf7f4;
  --bg-warm:  #f5ece6;
  --card:     #ffffff;

  --rose:     #c98b8b;   /* warm rosé */
  --rose-dk:  #a86a72;
  --gold:     #c9a24b;   /* sonnengold */
  --gold-lt:  #e4c98a;
  --sage:     #8ba888;   /* salbeigrün */
  --sage-dk:  #6f8c6d;

  --line:     rgba(43,39,51,.10);
  --shadow:   0 12px 40px rgba(80,50,60,.10);
  --shadow-sm:0 4px 18px rgba(80,50,60,.08);

  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1120px;
  --radius: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.68;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: .2px; }
h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); margin: 0 0 .4rem; }
h3 { font-size: 1.32rem; margin: 0 0 .5rem; }
p  { margin: 0 0 1rem; }
em { font-style: italic; color: var(--rose-dk); }

a { color: var(--rose-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

/* height:auto ist Pflicht — sonst gewinnt bei `width:100%` das HTML-Attribut height
   und das Bild wird vertikal gestreckt (war der verzerrte Über-Cut-out). */
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}

.sep { width: 54px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold)); margin: .2rem 0 1.4rem; }
.sep--center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.7rem; border-radius: 999px; cursor: pointer;
  background: linear-gradient(120deg, var(--rose), var(--gold));
  color: #fff; border: 0;
  box-shadow: 0 8px 22px rgba(201,139,139,.35);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,139,139,.45); text-decoration: none; filter: saturate(1.05); }
.btn--ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--rose); color: var(--rose-dk); box-shadow: none; }
.btn--ig { background: linear-gradient(120deg, #f9ce34, #ee2a7b 48%, #6228d7); box-shadow: 0 8px 22px rgba(238,42,123,.32); }
.btn--ig:hover { box-shadow: 0 12px 28px rgba(238,42,123,.42); }
.btn svg { width: 1.1em; height: 1.1em; fill: currentColor; }

/* Instagram-Social-Proof (Über-Sektion) */
.ig-proof {
  margin-top: 1.5rem; display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
  background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: 14px; padding: .9rem 1.1rem;
}
.ig-proof__txt { font-size: .9rem; color: var(--ink-soft); }
.ig-proof__txt b { color: var(--ink); }
.ig-proof__handle { color: var(--rose-dk); font-weight: 600; }

/* Footer-Social */
.foot__social { display: flex; justify-content: center; gap: .8rem; margin: 1rem 0 .2rem; }
.foot__social a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #fff;
  transition: transform .18s ease, background .18s ease;
}
.foot__social a:hover { transform: translateY(-2px); background: linear-gradient(120deg, #f9ce34, #ee2a7b 48%, #6228d7); }
.foot__social svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Nav ---------- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,244,.82);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.nav__inner { max-width: var(--wrap); margin: 0 auto; padding: .85rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__logo { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: .4rem; }
.nav__logo span { color: var(--rose-dk); }
.nav__links { list-style: none; display: flex; gap: 1.4rem; margin: 0; padding: 0; }
.nav__links a { color: var(--ink-soft); font-size: .95rem; font-weight: 500; }
.nav__links a:hover { color: var(--rose-dk); text-decoration: none; }
/* Minimalistischer Header-CTA: nur das Kuvert, kein Button.
   Fläche bleibt >=44px (Touch-Target), Beschriftung steckt in aria-label/title. */
.nav__cta {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: 0 0 auto;
  font-size: 1.3rem; line-height: 1;
  border-radius: 50%;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.nav__cta:hover, .nav__cta:focus-visible {
  background: rgba(201,139,139,.14);
  transform: translateY(-1px) scale(1.06);
  text-decoration: none;
}
@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */
#hero {
  position: relative;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(1000px 520px at 78% -8%, rgba(228,201,138,.42), transparent 60%),
    radial-gradient(760px 520px at 8% 12%, rgba(201,139,139,.30), transparent 62%),
    radial-gradient(900px 700px at 60% 108%, rgba(139,168,136,.28), transparent 60%),
    var(--bg);
  overflow: hidden;
}
/* ---- Aurora: zwei weiche, langsam driftende Lichtflecken für ein lebendiges Erst-Bild ---- */
#hero::before, #hero::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none; border-radius: 50%;
  filter: blur(64px);
}
#hero::before {
  width: clamp(280px, 46vw, 560px); height: clamp(280px, 46vw, 560px);
  top: -14%; right: -10%;
  background: radial-gradient(circle, rgba(228,201,138,.55), transparent 70%);
  animation: auroraA 24s ease-in-out infinite alternate;
}
#hero::after {
  width: clamp(240px, 40vw, 480px); height: clamp(240px, 40vw, 480px);
  bottom: -16%; left: -8%;
  background: radial-gradient(circle, rgba(139,168,136,.5), transparent 70%);
  animation: auroraB 28s ease-in-out infinite alternate;
}
@keyframes auroraA { from { transform: translate(0,0) scale(1); } to { transform: translate(-4%,4%) scale(1.14); } }
@keyframes auroraB { from { transform: translate(0,0) scale(1); } to { transform: translate(4%,-3%) scale(1.1); } }

/* Dreieck-Layout: Spitze (Text) oben zentriert, Basis (2 Mini-Tore) darunter */
.hero__inner {
  position: relative; z-index: 1;
  max-width: 960px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(2.2rem, 6vw, 3.4rem);
}
.hero__text { max-width: 640px; }

/* ---- Badge über der H1: gläsern, mit atmendem Gold-Punkt ---- */
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem 1.15rem .5rem 1rem; border-radius: 999px; margin-bottom: 1.3rem;
  background: rgba(255,255,255,.55); border: 1px solid rgba(201,139,139,.28);
  box-shadow: 0 4px 18px rgba(80,50,60,.08);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero__badge .eyebrow { margin-bottom: 0; }
.hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: radial-gradient(circle, var(--gold-lt), var(--gold));
  box-shadow: 0 0 0 4px rgba(201,162,75,.18);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.35); opacity: .7; } }

.hero__h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); margin: 0 0 1.1rem; text-shadow: 0 2px 26px rgba(80,50,60,.08); }
.hero__h1 em {
  font-style: italic;
  background: linear-gradient(100deg, var(--rose-dk) 0%, var(--gold) 45%, var(--rose-dk) 100%);
  background-size: 220% auto;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .hero__h1 em {
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: shimmerText 7s ease-in-out infinite;
  }
}
@keyframes shimmerText { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--ink-soft); max-width: 46ch; margin: 0 auto; }

/* ---- Basis des Dreiecks: zwei kleine, unverzerrte Collagen-Tore ---- */
.hero__base {
  position: relative; width: 100%;
  display: flex; justify-content: center; align-items: flex-start;
  gap: clamp(1.2rem, 14vw, 7rem);
}
.hero__pillar {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  --mini-w: clamp(116px, 34vw, 188px);
  width: var(--mini-w); text-decoration: none;
  transition: transform .3s ease;
}
.hero__pillar:hover { transform: translateY(-6px); text-decoration: none; }
.hero__pillar:focus-visible {
  outline: 2px solid var(--rose-dk); outline-offset: 8px; border-radius: 18px; transform: translateY(-6px);
}
.hero__pillar:focus-visible .pillar__go { opacity: 1; }
/* Feste Höhen-Box → beide Tore enden auf derselben Linie, Bilder bleiben unverzerrt */
.art-mini {
  position: relative; width: 100%; height: calc(var(--mini-w) * 1.34);
  display: flex; align-items: flex-end; justify-content: center;
}
.art-mini picture { display: contents; }   /* <picture> darf kein Zwischen-Layout aufmachen */
.art-mini::before {
  content: ""; position: absolute; inset: -14% -18% 2%;
  border-radius: 50%; filter: blur(10px); z-index: 0;
  animation: haloPulse 5s ease-in-out infinite;
}
.art-mini--sun::before { background: radial-gradient(circle at 50% 42%, rgba(228,201,138,.7), rgba(201,139,139,.25) 55%, transparent 72%); }
.art-mini--wandlung::before { background: radial-gradient(circle at 50% 45%, rgba(139,168,136,.55), rgba(201,139,139,.18) 55%, transparent 72%); animation-delay: -2.4s; }
@keyframes haloPulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.08); opacity: 1; } }
.art-mini img {
  position: relative; z-index: 1;
  display: block; width: auto; height: auto;
  max-width: 100%; max-height: 100%; min-height: 0; min-width: 0;  /* unverzerrt, nie größer als die Box */
  filter: drop-shadow(0 12px 20px rgba(80,50,60,.24));
  animation: floaty 7s ease-in-out infinite;
  transition: filter .3s ease;
}
.hero__pillar--right .art-mini img { animation-duration: 8.6s; animation-delay: -2.2s; }
.hero__pillar:hover .art-mini img { filter: drop-shadow(0 20px 32px rgba(80,50,60,.34)); }
.pillar__cat { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold); }
.pillar__label {
  font-family: var(--serif); font-size: clamp(1.05rem, 3.6vw, 1.3rem); font-weight: 600;
  color: var(--ink); line-height: 1.15;
  min-height: 2.3em; display: flex; align-items: center;   /* beide Tore: Untertitel auf gleicher Höhe */
}
.pillar__sub { font-size: .78rem; color: var(--ink-soft); }
.pillar__go { font-size: .74rem; font-weight: 600; color: var(--rose-dk); opacity: 0; transition: opacity .25s; }
.hero__pillar:hover .pillar__go { opacity: 1; }

/* ---- Sakral-Dreieck (magic, dezent) hinter der Basis ---- */
.hero__triangle {
  position: absolute; left: 50%; top: 8%; transform: translateX(-50%);
  width: min(760px, 92%); height: auto; z-index: 0; pointer-events: none;
  animation: triangleBreathe 6s ease-in-out infinite;
}
.hero__triangle polygon { fill: none; stroke: url(#triGrad); stroke-width: 1.4; stroke-dasharray: 5 7; }
@keyframes triangleBreathe { 0%,100% { opacity: .38; } 50% { opacity: .62; } }

/* ---- Funkeln ✨ ---- */
.sparkle { position: absolute; z-index: 0; pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(228,201,138,.9) 40%, transparent 70%);
  box-shadow: 0 0 12px 2px rgba(228,201,138,.45);
  animation: twinkle 3.5s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: .2; transform: scale(.6); } 50% { opacity: 1; transform: scale(1.3); } }

/* ---- Scroll-Hinweis: dezenter Wink nach unten, verstärkt den ersten Eindruck ---- */
.hero__scrollcue {
  position: relative; z-index: 1;
  display: inline-flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-soft); opacity: .65; transition: opacity .25s, color .25s;
}
.hero__scrollcue:hover { opacity: 1; color: var(--rose-dk); text-decoration: none; }
.hero__scrollcue-line { position: relative; width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--rose-dk), transparent); }
.hero__scrollcue-line::after {
  content: ""; position: absolute; left: 50%; top: 0; width: 5px; height: 5px; margin-left: -2.5px;
  border-radius: 50%; background: var(--gold);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { transform: translateY(0); opacity: 1; } 70% { opacity: 0; } 100% { transform: translateY(30px); opacity: 0; } }
@media (max-width: 640px) { .hero__scrollcue { display: none; } }

/* ---------- Freigestellte Kunst-Collagen von Dr. SonnenGrün (transparente Cut-outs) ---------- */
.art { position: relative; max-width: 400px; margin: 0 auto; }
.art--about { max-width: min(300px, 72vw); }   /* Über-Collage bewusst zurückhaltend */
.art--about::before {
  content: ""; position: absolute; inset: 2% -8% 14%;
  background: radial-gradient(circle at 50% 45%, rgba(139,168,136,.42), rgba(201,139,139,.18) 55%, transparent 72%);
  filter: blur(10px); z-index: 0; border-radius: 50%;
}
.artcut { position: relative; z-index: 1; margin: 0; }
.artcut img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 16px 26px rgba(80,50,60,.28));
  animation: floaty 7s ease-in-out infinite;
}
.art--about .artcut img { animation-duration: 8.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.art-caption {
  position: relative; z-index: 2;
  margin-top: 1.6rem; font-size: .84rem; line-height: 1.6; color: var(--ink-soft);
  background: rgba(255,255,255,.66); border: 1px solid var(--line);
  border-radius: 14px; padding: .9rem 1.1rem;
}
.art-caption b { color: var(--rose-dk); font-weight: 600; }

/* ---------- Über ---------- */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
.split--rev { grid-template-columns: 1.1fr .9fr; }
.portrait-ph {
  aspect-ratio: 4/5; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-warm), #efe0d6);
  border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.portrait-ph span { font-size: 2.6rem; display: block; margin-bottom: .4rem; }
.portrait-ph small { font-size: .78rem; opacity: .7; padding: 0 1rem; }

.about__cred {
  margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .55rem;
}
.cred-chip {
  font-size: .84rem; font-weight: 600; color: var(--sage-dk);
  background: rgba(139,168,136,.14); border: 1px solid rgba(139,168,136,.3);
  padding: .45rem .9rem; border-radius: 10px;
}

/* ---------- Angebote ---------- */
#angebote { background: linear-gradient(180deg, var(--bg), var(--bg-warm)); }
.angebote__head { max-width: 640px; margin-bottom: 2.6rem; }
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem;
}
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(201,139,139,.16), rgba(201,162,75,.16));
}
.card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ---------- Pakete ---------- */
#pakete { background: var(--bg); }
.pakete { align-items: stretch; }
.paket { display: flex; flex-direction: column; text-align: center; }
.paket__badge {
  align-self: center; font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  background: linear-gradient(135deg, rgba(201,139,139,.16), rgba(201,162,75,.16));
  padding: .4rem 1rem; border-radius: 999px; margin-bottom: .8rem;
}
.paket h3 { margin-bottom: .1rem; }
.paket__for { color: var(--gold); font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.paket ul { list-style: none; padding: 0; margin: 0 0 1.3rem; text-align: left; display: grid; gap: .5rem; }
.paket li { font-size: .93rem; color: var(--ink-soft); padding-left: 1.5rem; position: relative; }
.paket li::before { content: "✦"; position: absolute; left: 0; color: var(--rose); }
.paket__price { margin: auto 0 0; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.paket--featured { border-color: var(--rose); box-shadow: var(--shadow); position: relative; }
.paket--featured::after {
  content: "beliebt"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--rose), var(--gold)); color: #fff;
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .8rem; border-radius: 999px;
}

/* ---------- Kategorie-Gruppen (Herz & Körper / Geist & Wandlung) ---------- */
.cat-group { scroll-margin-top: 84px; }
.cat-group + .cat-group { margin-top: 3rem; }
.cat-head { text-align: center; max-width: 640px; margin: 0 auto 1.8rem; padding-top: .6rem; }
.cat-head__badge {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 999px; margin-bottom: .7rem;
}
.cat-head--sun .cat-head__badge { color: var(--gold); background: linear-gradient(135deg, rgba(228,201,138,.28), rgba(201,139,139,.16)); }
.cat-head--wandlung .cat-head__badge { color: var(--sage-dk); background: linear-gradient(135deg, rgba(139,168,136,.28), rgba(201,139,139,.14)); }
.cat-head__title { font-size: clamp(1.5rem, 4vw, 2rem); margin: 0 0 .4rem; }
.cat-head p { color: var(--ink-soft); margin: 0; }

/* ---------- Praktiken / SEO-Wissen ---------- */
.practice-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.6rem; margin-top: 2.2rem; }
.practice { border-left: 3px solid transparent; border-image: linear-gradient(var(--rose), var(--gold)) 1; padding-left: 1.2rem; }
.practice h3 { margin-bottom: .3rem; }
.practice p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- Galerie ---------- */
#galerie { background: linear-gradient(180deg, var(--bg-warm), var(--bg)); }
.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; margin-top: 2.4rem;
}
.gallery__item {
  position: relative; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
  background: linear-gradient(150deg, var(--gold-lt), var(--rose) 70%, var(--sage));
  display: grid; place-items: center; color: #fff; text-align: center;
  box-shadow: var(--shadow-sm);
}
.gallery__item:nth-child(2n)  { background: linear-gradient(150deg, var(--rose), var(--sage) 80%); }
.gallery__item:nth-child(3n)  { background: linear-gradient(150deg, var(--sage), var(--gold-lt) 85%); aspect-ratio: 1; }
.gallery__item:nth-child(5n)  { aspect-ratio: 1; }
/* Echte Foto-Kacheln: das Bild füllt die Kachel formatfüllend (cover), damit sie im
   Raster nicht aus der Reihe tanzen. `margin:0` weil <figure> per Default welche hat. */
.gallery__item--foto { margin: 0; }
/* Ausgeprägtes Hochformat (z. B. ein Handstand über die volle Bildhöhe) verliert in
   einer 3:4-Kachel Kopf UND Hände — jeder Zuschnitt schneidet oben oder unten ab.
   Deshalb bekommt es eine eigene, schlanke Kachel, in der die Figur ganz bleibt. */
.gallery__item--hoch { aspect-ratio: 9/16; }
.gallery__item--foto picture,
.gallery__item--foto img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery__label { font-size: .82rem; font-weight: 600; padding: .5rem 1rem;
  background: rgba(0,0,0,.16); border-radius: 999px; }
/* Auf dem Foto braucht das Label mehr Halt als auf dem Farbverlauf */
.gallery__label--foto {
  position: absolute; left: 50%; bottom: .9rem; transform: translateX(-50%);
  z-index: 1; white-space: nowrap;
  background: rgba(30,24,32,.46); color: #fff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.gallery__emoji { font-size: 2.4rem; margin-bottom: .5rem; filter: drop-shadow(0 3px 8px rgba(0,0,0,.2)); }
.gallery__note { text-align: center; margin-top: 1.6rem; font-size: .88rem; color: var(--ink-soft); }

/* ---------- Namens-Diagnose (Poll) ---------- */
#namenspoll { background: linear-gradient(180deg, var(--bg), var(--bg-warm)); }
.poll { max-width: 900px; margin: 0 auto; }
.poll__options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: stretch; }
.poll-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.poll-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.poll-card__tag { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.poll-card h3 { font-size: 1.9rem; margin: .25rem 0 .9rem; }
.poll-card h3 span { color: var(--rose-dk); }
.poll-card ul { list-style: none; padding: 0; margin: 0 0 1.3rem; display: grid; gap: .6rem; }
.poll-card li { font-size: .9rem; color: var(--ink-soft); line-height: 1.5; }
.poll-card li b { color: var(--ink); font-weight: 600; }
.poll-bar-wrap { height: 10px; border-radius: 999px; background: var(--bg-warm); overflow: hidden; margin: auto 0 .4rem; }
.poll-bar { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--rose), var(--gold)); transition: width .8s cubic-bezier(.2,.8,.2,1); }
.poll-count { font-size: .82rem; color: var(--ink-soft); margin-bottom: 1rem; }
.poll-count b { color: var(--ink); }
.poll-vote { align-self: flex-start; }
/* Ergebnisse erst nach Abstimmung */
.poll-bar-wrap, .poll-count { visibility: hidden; }
.poll--done .poll-bar-wrap, .poll--done .poll-count { visibility: visible; }
.poll-card--mine { border-color: var(--rose); box-shadow: var(--shadow); }
.poll-card--mine .poll-card__tag::after { content: " · deine Wahl ✓"; color: var(--rose-dk); }
.poll-card--voted .poll-vote { opacity: .45; cursor: default; }
.poll__foot { text-align: center; margin-top: 1.8rem; font-size: .9rem; color: var(--ink-soft); }
.poll__foot b { color: var(--ink); }
.poll-reset { color: var(--rose-dk); }
@media (max-width: 720px) { .poll__options { grid-template-columns: 1fr; } }

/* ---------- Priming des Tages ----------
   Ruhiges Band direkt unter dem Hero: eine Karte auf warmem Verlauf, die den
   Satz wie auf Papier trägt. Bewusst schmal (24ch) — ein Priming-Satz wirkt
   nur, wenn das Auge ihn in einem Zug fasst. */
#priming {
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
  background: linear-gradient(180deg, var(--bg-warm), var(--bg));
}
.priming {
  position: relative;
  max-width: 660px; margin: 0 auto; text-align: center;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.4rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
}
/* Feiner Goldstrich als „Lichtkante" oben — dieselbe Geste wie .sep, nur ruhiger */
.priming::before {
  content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 3px; border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
}
.priming .eyebrow { margin-bottom: 1.1rem; }
.priming__satz {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.35rem, 3.1vw, 1.95rem); line-height: 1.34;
  color: var(--ink); max-width: 24ch; margin: 0 auto 1.3rem;
  /* verhindert Layout-Sprung, wenn script.js den Fallback-Satz ersetzt */
  min-height: 2.68em;
  display: flex; align-items: center; justify-content: center;
}
.priming__meta {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .3rem .9rem; margin: 0;
  font-size: .82rem; color: var(--ink-soft);
}
.priming__datum { font-weight: 600; color: var(--rose-dk); text-transform: capitalize; }
.priming__hint { opacity: .7; }
.priming__hint::before { content: "·"; margin-right: .9rem; opacity: .5; }
@media (max-width: 480px) {
  /* Auf schmalen Screens bricht die Meta-Zeile um → der Trenn-Punkt stört dann */
  .priming__hint::before { content: none; margin: 0; }
}

/* ---------- Zitat ---------- */
#zitat { background:
  radial-gradient(700px 400px at 50% 0%, rgba(228,201,138,.25), transparent 60%), var(--bg); text-align: center; }
.zitat__text { font-family: var(--serif); font-size: clamp(1.5rem, 3.6vw, 2.3rem); font-style: italic;
  max-width: 26ch; margin: 0 auto; color: var(--ink); line-height: 1.3; }
.zitat__attr { color: var(--gold); font-weight: 600; font-size: .95rem; }

/* ---------- Kontakt ---------- */
#kontakt { background: linear-gradient(160deg, #fff, var(--bg-warm)); }
.kontakt__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.kontakt__direct { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .7rem; }
.kontakt__line { display: inline-flex; align-items: center; gap: .6rem; font-size: 1.02rem; }
.kontakt__line .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(201,139,139,.14); font-size: 1.1rem; }

form { display: grid; gap: 1rem; background: var(--card); padding: 1.8rem; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.form-group { display: grid; gap: .35rem; }
label { font-size: .86rem; font-weight: 600; color: var(--ink-soft); }
input, select, textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg); width: 100%; transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,139,139,.18);
}
textarea { min-height: 120px; resize: vertical; }
.form__consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .8rem; color: var(--ink-soft); }
.form__consent input { width: auto; margin-top: .25rem; }
.form__consent a { color: var(--rose-dk); }
.form__submit { justify-self: start; }
.form__danke { display: none; margin-top: 1rem; padding: 1rem 1.2rem; border-radius: 12px;
  background: rgba(139,168,136,.16); color: var(--sage-dk); font-weight: 600; }

.disclaimer {
  margin-top: 1.4rem; font-size: .78rem; color: var(--ink-soft); line-height: 1.55;
  background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: 12px; padding: .9rem 1.1rem;
}

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #e9e2df; padding: 3rem 0 2.4rem; text-align: center; }
footer a { color: #e9c9c9; }
footer .foot__brand { font-family: var(--serif); font-size: 1.3rem; margin-bottom: .3rem; }
/* Dezente CTA-Zeile im Footer — leise Text-Links, bewusst keine Buttons */
footer .foot__cta {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .4rem 1.4rem; margin: 1.1rem 0 .2rem;
}
footer .foot__cta a {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .92rem; color: #e9c9c9; opacity: .85;
  border-bottom: 1px solid rgba(233,201,201,.28); padding-bottom: .12rem;
  transition: opacity .2s ease, border-color .2s ease;
}
footer .foot__cta a:hover, footer .foot__cta a:focus-visible {
  opacity: 1; border-color: rgba(233,201,201,.7); text-decoration: none;
}
footer .foot__links { font-size: .9rem; margin: .8rem 0; opacity: .9; }
footer .foot__links a { margin: 0 .5rem; }
footer .foot__fine { font-size: .76rem; opacity: .55; margin-top: 1rem; }

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

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .split, .split--rev, .kontakt__grid { grid-template-columns: 1fr; }
  .split .portrait-ph { max-width: 420px; margin: 0 auto; }
}

/* Desktop: kompaktere Komposition, größere Tore, Dreiecks-Basis auf Torhöhe */
@media (min-width: 900px) {
  #hero { padding-top: clamp(2.6rem, 4vw, 3.6rem); }
  .hero__inner { gap: 2rem; }
  .hero__h1 { margin-bottom: .8rem; }
  .hero__pillar { --mini-w: 208px; }
  .hero__triangle { top: 13%; width: min(880px, 96%); }
}

/* Hero-Dreieck auf schmalen Screens: Basis enger, Dreieck flacher, Texte lesbar */
@media (max-width: 560px) {
  .hero__base { gap: clamp(.6rem, 5vw, 1.4rem); }
  .hero__pillar { --mini-w: clamp(126px, 42vw, 170px); }   /* Breite UND Box-Höhe hängen an --mini-w */
  .hero__triangle { top: 12%; width: 100%; opacity: .38; }

  /* Nav: Logo und CTA dürfen nicht umbrechen/kollidieren */
  .nav__inner { padding: .7rem 1rem; gap: .6rem; }
  .nav__logo { font-size: 1.15rem; white-space: nowrap; }
  .nav__cta { width: 40px; height: 40px; font-size: 1.2rem; }
  .pillar__go { opacity: 1; }              /* kein Hover auf Touch → Affordanz immer sichtbar */
}
@media (hover: none) {
  .hero__pillar:hover { transform: none; }
  .pillar__go { opacity: 1; }
}

/* ---------- Legal-Seiten (impressum/datenschutz) ---------- */
.legal-wrap { max-width: 720px; margin: 5rem auto 4rem; padding: 0 1.5rem; }
.legal-wrap h1 { font-size: 2rem; margin-bottom: 1.2rem; }
.legal-wrap h2 { font-size: 1.2rem; color: var(--rose-dk); margin: 2rem 0 .5rem; }
.legal-wrap p, .legal-wrap li { font-size: .95rem; color: var(--ink-soft); }
.legal-wrap ul { padding-left: 1.2rem; }
.legal-back { display: inline-block; margin-bottom: 1rem; font-size: .9rem; }
