/* ===================================================
   KARLS × KÖPENICK — Design System
   Backstein · Leinen · Warmes Licht
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&family=Caveat:wght@500&display=swap');

:root {
  --ziegel:      #8B5E3C;
  --erde:        #3E2A20;
  --holz:        #A07458;
  --leinen:      #F5EFE3;
  --creme:       #EFE4CC;
  --morgen:      #E8D4B0;
  --glut:        #C44A2F;
  --gold:        #D4A84B;
  --blatt:       #4A5A3C;
  --tinte:       #2A1E15;
  --creme-tinte: #F5EFE3;
  --gedaempft:   #6D5A48;
  --fliess-max:  720px;
  --grid-max:    1200px;
}

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

/* Skip-nav (Barrierefreiheit) */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--erde);
  color: var(--leinen);
  padding: .5rem 1rem;
  border-radius: 0 0 6px 6px;
  font-size: .9rem;
  text-decoration: none;
  z-index: 9999;
  transition: top .2s;
}
.skip-nav:focus { top: 0; }

body {
  background: var(--leinen);
  color: var(--tinte);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--ziegel); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--glut); }
p { max-width: var(--fliess-max); }
p + p { margin-top: 1.2em; }
strong { font-weight: 600; }

/* --- Typography --- */
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.13; color: var(--tinte); }
h1 { font-size: clamp(36px, 6.5vw, 72px); font-weight: 700; }
h2 { font-size: clamp(26px, 4vw, 48px); font-weight: 600; }
h3 { font-size: clamp(18px, 2.5vw, 26px); font-weight: 600; }

.eyebrow {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--holz);
  display: block;
  margin-bottom: 1rem;
}

.pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.45;
  color: var(--ziegel);
  max-width: 680px;
  padding: 2rem 0 2rem 2rem;
  border-left: 3px solid var(--holz);
  margin: 2.5rem 0;
}

.handschrift { font-family: 'Caveat', cursive; font-size: clamp(24px, 3.5vw, 40px); line-height: 1.4; color: var(--ziegel); }
.ornament { display: block; text-align: center; color: var(--holz); letter-spacing: 0.5em; margin: 3rem 0; font-size: 18px; }

/* --- Layout --- */
.container { max-width: var(--grid-max); margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
.container--narrow { max-width: var(--fliess-max); margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }

section { padding: clamp(72px, 10vw, 150px) 0; }

.sep { width: 48px; height: 2px; background: var(--holz); margin: 2rem 0; }
.section-lead { font-size: clamp(17px, 2vw, 20px); color: var(--gedaempft); max-width: var(--fliess-max); margin-top: 1rem; }
.mt-sm { margin-top: 1rem; } .mt-md { margin-top: 2rem; } .mt-lg { margin-top: 3.5rem; }

/* --- Scroll Progress Bar --- */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--ziegel); width: 0%; z-index: 9999;
  transition: width 0.1s linear;
}

/* --- Fade-in --- */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.from-left { transform: translateX(-28px); }
.fade-in.from-left.visible { transform: translateX(0); }
.fade-in.from-right { transform: translateX(28px); }
.fade-in.from-right.visible { transform: translateX(0); }

/* ==========================================
   HERO
   ========================================== */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,16,8,.82) 0%, rgba(28,16,8,.25) 55%, transparent 100%);
}
.hero__content {
  position: relative; z-index: 1;
  padding: clamp(48px, 8vw, 100px) clamp(28px, 7vw, 110px);
  max-width: 940px;
}
.hero__eyebrow {
  font-family: 'Crimson Pro', serif; font-size: 13px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(245,239,227,.65); display: block; margin-bottom: 1.8rem;
  animation: heroFadeUp 1s ease 0.2s both;
}
.hero__h1 {
  color: var(--creme-tinte);
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  animation: heroFadeUp 1s ease 0.5s both;
  margin-bottom: 1.5rem;
}
.hero__subtitle {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(245,239,227,.72); line-height: 1.75; max-width: 600px;
  animation: heroFadeUp 1s ease 0.8s both;
}

/* Stat-Badges in Hero */
.hero__stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: heroFadeUp 1s ease 1.1s both;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-family: 'Fraunces', serif; font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; color: var(--gold); line-height: 1;
  display: block;
}
.hero__stat-label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,239,227,.55); }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1; color: rgba(245,239,227,.45); font-size: 28px;
  text-decoration: none; transition: opacity 0.4s;
  animation: nudge 3s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================
   WARUM JETZT
   ========================================== */
#warum-jetzt { background: var(--leinen); }
.breathing-quote {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: clamp(22px, 3vw, 34px); line-height: 1.45;
  color: var(--ziegel); margin: 3.5rem 0; display: block;
}

/* ==========================================
   HERZVERSPRECHEN (new)
   ========================================== */
#herzversprechen {
  background: var(--erde); color: var(--creme-tinte);
  text-align: center;
}
#herzversprechen h2 { color: var(--morgen); max-width: 800px; margin: 0 auto 2rem; }
.versprechen-grid {
  display: grid; gap: 1px; background: rgba(245,239,227,.1);
  grid-template-columns: 1fr;
  margin-top: 4rem;
}
@media (min-width: 640px) { .versprechen-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .versprechen-grid { grid-template-columns: repeat(4, 1fr); } }

.versprechen-card {
  background: rgba(62,42,32,.8); padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.versprechen-card:hover { background: rgba(139,94,60,.25); }
.versprechen-card__icon { font-size: 28px; margin-bottom: 1rem; display: block; }
.versprechen-card__title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--morgen); margin-bottom: 0.7rem; }
.versprechen-card__text { font-size: 15px; color: rgba(245,239,227,.6); line-height: 1.6; max-width: none; }

/* ==========================================
   GELÄNDE
   ========================================== */
#gelaende { background: var(--creme); }
.split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .split--reverse > *:first-child { order: 2; }
  .split--reverse > *:last-child  { order: 1; }
}
.split__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ==========================================
   INTIMATE
   ========================================== */
#intimate { background: var(--leinen); }
.intimate__quote {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: clamp(22px, 3.5vw, 40px); line-height: 1.35;
  color: var(--tinte); max-width: 760px; margin-bottom: 3rem;
}

/* ==========================================
   GARAGEN — Flip Cards
   ========================================== */
#garagen { background: var(--creme); }
.garagen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin: 3rem 0;
}
@media (min-width: 640px)  { .garagen-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .garagen-grid { grid-template-columns: repeat(4, 1fr); } }

.garage-flip { perspective: 800px; height: 160px; }
.garage-flip__inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
}
.garage-flip:hover .garage-flip__inner,
.garage-flip:focus-within .garage-flip__inner { transform: rotateY(180deg); }

.garage-flip__front,
.garage-flip__back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 1.2rem;
  border: 1px solid var(--holz);
}
.garage-flip__front { background: var(--leinen); }
.garage-flip__back  { background: var(--ziegel); transform: rotateY(180deg); }

.garage-flip__icon { font-size: 22px; margin-bottom: 0.6rem; color: var(--ziegel); }
.garage-flip__name { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600; color: var(--tinte); }
.garage-flip__back .garage-flip__name { color: var(--leinen); font-size: 14px; margin-bottom: 0.4rem; }
.garage-flip__desc { font-size: 13px; color: rgba(245,239,227,.82); line-height: 1.4; }

.garagen-photo { width: 100%; margin-top: 2.5rem; max-height: 460px; object-fit: cover; }
.garagen-outro {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2.2vw, 26px); color: var(--tinte);
  margin-top: 2.5rem; max-width: 640px;
}

/* ==========================================
   LEBEN
   ========================================== */
#leben { background: #EEF0E8; }
.liste-hof { list-style: none; margin: 2rem 0; display: grid; gap: 0.85rem; }
.liste-hof li { padding-left: 1.8rem; position: relative; max-width: var(--fliess-max); font-size: 17px; }
.liste-hof li::before { content: '·'; position: absolute; left: 0; color: var(--ziegel); font-size: 24px; line-height: 1.2; }

/* ==========================================
   FAMILIEN-DEAL
   ========================================== */
#familien-deal { background: var(--leinen); }
.deal-lead { font-family: 'Fraunces', serif; font-size: clamp(20px, 2.5vw, 28px); line-height: 1.4; color: var(--tinte); max-width: 640px; margin-bottom: 2.5rem; }

/* Fit With Your Kid Callout im Familien-Deal */
.fwyk-callout {
  margin-top: 2rem;
  background: linear-gradient(135deg, #f0f7e8 0%, #e8f2d8 100%);
  border-left: 3px solid var(--blatt);
  border-radius: 0 6px 6px 0;
  padding: 1.1rem 1.4rem;
  max-width: var(--fliess-max);
}
.fwyk-callout__label {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blatt);
  font-family: 'Fraunces', serif;
  margin-bottom: .45rem;
}
.fwyk-callout p {
  font-family: 'Crimson Pro', serif;
  font-size: 1.02rem;
  color: var(--tinte);
  line-height: 1.75;
}
.fwyk-callout a {
  color: var(--blatt);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(74,90,60,.35);
}
.fwyk-callout a:hover { border-color: var(--blatt); }
.deal-outro p:last-child { font-family: 'Fraunces', serif; font-size: clamp(22px, 2.5vw, 32px); font-weight: 600; color: var(--ziegel); margin-top: 0.5rem; }

/* ==========================================
   ABENDRITUALE — Campfire
   ========================================== */
#abende { background: var(--erde); color: var(--creme-tinte); }
#abende h2 { color: var(--creme); }
#abende .eyebrow { color: rgba(245,239,227,.45); }

.campfire-wrap { display: flex; justify-content: center; margin: 3rem 0 2rem; }
.campfire { position: relative; width: 80px; height: 90px; }

.flame {
  position: absolute; bottom: 20px; border-radius: 50% 50% 30% 30%;
  transform-origin: bottom center;
}
.flame--outer {
  width: 50px; height: 70px; left: 15px;
  background: radial-gradient(ellipse at 50% 90%, #c44a2f 0%, #d4a84b 45%, rgba(212,168,75,.1) 100%);
  animation: burn 2.4s ease-in-out infinite;
}
.flame--mid {
  width: 32px; height: 50px; left: 24px;
  background: radial-gradient(ellipse at 50% 90%, #d4a84b 0%, #ffe080 60%, rgba(255,224,128,.05) 100%);
  animation: burn 1.9s ease-in-out infinite 0.3s;
}
.flame--inner {
  width: 16px; height: 28px; left: 32px;
  background: radial-gradient(ellipse at 50% 90%, #fff5cc 0%, rgba(255,245,204,.4) 100%);
  animation: burn 1.5s ease-in-out infinite 0.6s;
}
.campfire__log1, .campfire__log2 {
  position: absolute; bottom: 8px; height: 10px; border-radius: 4px;
  background: var(--ziegel);
}
.campfire__log1 { width: 52px; left: 14px; transform: rotate(-15deg); }
.campfire__log2 { width: 52px; left: 14px; transform: rotate(15deg); }
.campfire__ember { position: absolute; bottom: 14px; left: 27px; width: 26px; height: 8px; border-radius: 50%; background: rgba(196,74,47,.6); animation: ember 2s ease-in-out infinite; }

@keyframes burn {
  0%,100% { transform: scaleX(1)   scaleY(1)    rotate(-2deg); }
  33%      { transform: scaleX(.94) scaleY(1.06) rotate(2deg); }
  66%      { transform: scaleX(1.05) scaleY(.97) rotate(-1deg); }
}
@keyframes ember { 0%,100% { opacity:.6; } 50% { opacity:1; transform: scaleX(1.15); } }

.abend-lead { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(20px, 2.5vw, 26px); color: var(--morgen); margin-bottom: 2.5rem; }
.abend-liste { list-style: none; display: grid; gap: 1.2rem; margin: 2rem 0; }
.abend-liste li { display: grid; grid-template-columns: 1rem 1fr; gap: 1.2rem; font-size: 17px; color: rgba(245,239,227,.88); line-height: 1.5; }
.abend-liste li::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin-top: .58em; flex-shrink: 0; }
.abend-outro { margin-top: 3rem; font-style: italic; color: rgba(245,239,227,.55); font-size: 16px; max-width: 520px; }

/* Künstler-Duo Karten in Abendrituale */
.abend-kuenstler {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 640px) { .abend-kuenstler { grid-template-columns: 1fr; } }

.kuenstler-card {
  background: rgba(245,239,227,.06);
  border: 1px solid rgba(212,168,75,.25);
  border-radius: 6px;
  padding: 1.5rem;
  transition: border-color .25s, background .25s;
}
.kuenstler-card:hover {
  border-color: rgba(212,168,75,.55);
  background: rgba(245,239,227,.09);
}
.kuenstler-card__role {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
  font-family: 'Fraunces', serif;
}
.kuenstler-card__name {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--leinen);
  margin-bottom: .75rem;
  line-height: 1.15;
}
.kuenstler-card__bio {
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  color: rgba(245,239,227,.72);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.kuenstler-card__link {
  display: inline-block;
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,168,75,.35);
  padding-bottom: 1px;
  transition: border-color .2s, color .2s;
}
.kuenstler-card__link:hover { color: #f0c85a; border-color: #f0c85a; }

/* Fit With Your Kid — dritte Karte volle Breite */
.kuenstler-card--wide {
  grid-column: 1 / -1;
  border-color: rgba(212,168,75,.4);
  background: rgba(212,168,75,.06);
}
.kuenstler-card--wide .kuenstler-card__name { color: var(--gold); }

.abend-familie-motto {
  margin-top: 2.5rem;
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(245,239,227,.45);
  line-height: 1.8;
  text-align: center;
  font-style: normal;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.abend-familie-motto em {
  color: rgba(212,168,75,.7);
  font-style: italic;
}

/* ==========================================
   HELDENREISE — Animated SVG Path
   ========================================== */
#heldenreise { background: var(--blatt); color: var(--creme-tinte); }
#heldenreise h2 { color: var(--leinen); }
#heldenreise .eyebrow { color: rgba(245,239,227,.45); }
#heldenreise p { color: rgba(245,239,227,.8); }

.helden-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; align-items: start; margin-top: 3rem;
}
@media (min-width: 900px) { .helden-layout { grid-template-columns: 1fr 1.2fr; } }

#heldenreise-visual { position: relative; }

.helden-svg { width: 100%; max-width: 420px; margin: 0 auto; display: block; }

#helden-svg-path {
  fill: none; stroke: rgba(212,168,75,.5); stroke-width: 3.5;
  stroke-linecap: round; stroke-dasharray: 2200; stroke-dashoffset: 2200;
}

.helden-station {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.helden-station.visible { opacity: 1; }

.station-circle {
  fill: rgba(42,30,21,.85); stroke: var(--gold); stroke-width: 2;
}
.station-circle--final {
  filter: drop-shadow(0 0 6px rgba(212,168,75,.5));
}

/* emoji icon inside circle */
.station-icon {
  font-size: 13px;
  text-anchor: middle;
  dominant-baseline: central;
}

/* tiny number above circle */
.station-seq {
  fill: var(--gold); font-family: 'Fraunces', serif;
  font-size: 9px; font-weight: 700;
  text-anchor: middle; dominant-baseline: central;
  opacity: .75;
}

/* station name */
.station-label {
  fill: var(--leinen); font-family: 'Fraunces', serif;
  font-size: 10.5px; font-weight: 600;
  dominant-baseline: central;
}

/* short descriptor below station name */
.station-sublabel {
  fill: rgba(245,239,227,.5); font-family: 'Crimson Pro', serif;
  font-size: 9px; dominant-baseline: central;
}

.helden-liste-detail { list-style: none; display: grid; gap: 1rem; }
.helden-liste-detail li {
  display: grid; grid-template-columns: 2rem 1fr; gap: 0.8rem;
  font-size: 16px; color: rgba(245,239,227,.82); align-items: start;
}
.helden-num {
  font-family: 'Fraunces', serif; font-size: 12px;
  color: var(--gold); font-weight: 700; padding-top: 0.15em;
}
.helden-item-title { font-weight: 600; color: var(--leinen); display: block; margin-bottom: 0.1rem; }
.helden-item-desc { font-size: 14px; color: rgba(245,239,227,.55); }

.helden-outro {
  margin-top: 3.5rem; font-style: italic;
  color: rgba(245,239,227,.45); font-size: 16px; max-width: 520px;
}

/* ==========================================
   111 GALAXIE
   ========================================== */
#galaxy { background: var(--leinen); }

/* Heinz von Foerster origin block */
.galaxy-lead {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--gedaempft);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: .5rem;
}
.galaxy-lead em {
  font-style: italic;
  color: var(--ziegel);
  font-weight: 600;
}
.galaxy-origin {
  background: linear-gradient(135deg, var(--creme) 0%, var(--morgen) 100%);
  border-left: 3px solid var(--ziegel);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0 2rem;
  max-width: 720px;
}
.galaxy-origin p {
  font-family: 'Crimson Pro', serif;
  font-size: 1.05rem;
  color: var(--tinte);
  line-height: 1.8;
  margin-bottom: .5rem;
}
.galaxy-origin p:last-child { margin-bottom: 0; }
.galaxy-origin__link {
  display: inline-block;
  margin-top: .4rem;
  color: var(--ziegel);
  font-weight: 600;
  text-decoration: none;
  font-size: .95rem;
}
.galaxy-origin__link:hover { text-decoration: underline; }
.galaxy-origin__sub {
  font-style: italic;
  color: var(--gedaempft);
  font-size: .95rem !important;
}

.galaxy-controls { display: flex; gap: 1rem; margin: 2rem 0 3rem; flex-wrap: wrap; }
.btn-ghost {
  background: none; border: 1px solid var(--holz); color: var(--ziegel);
  font-family: 'Crimson Pro', serif; font-size: 16px;
  padding: 0.5rem 1.4rem; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--ziegel); color: var(--leinen); }

.cluster-list { display: grid; gap: 1rem; margin-bottom: 4rem; }

details.cluster { border: 1px solid var(--holz); }
details.cluster[open] { border-color: var(--ziegel); }
details.cluster > summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; cursor: pointer; list-style: none;
  user-select: none; transition: background 0.2s;
}
details.cluster > summary::-webkit-details-marker,
details.cluster > summary::marker { display: none; }
details.cluster > summary:hover { background: var(--morgen); }
details.cluster[open] > summary { background: var(--creme); }

.cluster__header { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.cluster__num { font-family: 'Fraunces', serif; font-size: 13px; color: var(--holz); letter-spacing: 0.1em; }
.cluster__title { font-family: 'Fraunces', serif; font-size: clamp(16px, 2vw, 20px); font-weight: 600; color: var(--tinte); }
.cluster__subtitle { font-size: 14px; color: var(--gedaempft); font-style: italic; }
.cluster__toggle { font-size: 13px; color: var(--holz); white-space: nowrap; margin-left: auto; padding-left: 1rem; transition: transform 0.2s; }
details.cluster[open] .cluster__toggle { transform: rotate(180deg); }

.cluster__ideas { padding: 1rem 1.5rem 1.5rem; }
.ideas-grid { display: grid; grid-template-columns: 1fr; gap: 0.7rem; }
@media (min-width: 640px)  { .ideas-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ideas-grid { grid-template-columns: 1fr 1fr 1fr; } }

.idea { padding: 0.8rem 1rem; background: var(--leinen); border-left: 2px solid transparent; transition: border-color 0.2s, background 0.2s; }
.idea:hover { background: var(--morgen); border-left-color: var(--holz); }
.idea__num { font-size: 11px; color: var(--holz); letter-spacing: .05em; }
.idea__title { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600; color: var(--tinte); margin: .15rem 0; }
.idea__desc { font-size: 13px; color: var(--gedaempft); line-height: 1.4; }

.cluster--1 details, .cluster--1 .cluster__ideas { background: #F5EFE3; }
.cluster--2 .cluster__ideas { background: #EFE4CC; }
.cluster--3 .cluster__ideas { background: #EEF0E8; }
.cluster--4 .cluster__ideas { background: #F2EAD8; }
.cluster--5 .cluster__ideas { background: #EDE0C4; }
.cluster--6 .cluster__ideas { background: #F0EDE5; }
.cluster--7 .cluster__ideas { background: #EAE8DF; }
.cluster--8 .cluster__ideas { background: #EDF2E8; }
.cluster--9 .cluster__ideas { background: #F4EBD9; }
.cluster--10 .cluster__ideas { background: #EDE5D8; }
.cluster--11 .cluster__ideas { background: #EAE6E0; }

.galaxy-footer-quote {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px); line-height: 1.6;
  color: var(--gedaempft); max-width: 680px; margin: 0 auto;
  text-align: center; padding-top: 1rem;
}

/* ==========================================
   PHASENPLAN — Animated Timeline
   ========================================== */
#phasenplan { background: var(--creme); }

.timeline { position: relative; margin: 3rem 0; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: .6rem; top: .6rem; bottom: .6rem;
  width: 2px; background: var(--holz);
}

.phase {
  position: relative; margin-bottom: 2.5rem;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.phase--revealed { opacity: 1; transform: translateX(0); }
.phase:last-child { margin-bottom: 0; }

.phase::before {
  content: ''; position: absolute; left: -2.5rem; top: .5rem;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--holz); background: var(--creme); z-index: 1;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.phase--active::before { background: var(--ziegel); border-color: var(--ziegel); box-shadow: 0 0 0 5px rgba(139,94,60,.2); }

.phase__label { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--holz); margin-bottom: .3rem; }
.phase--active .phase__label { color: var(--ziegel); font-weight: 600; }
.phase__title { font-family: 'Fraunces', serif; font-size: clamp(17px, 2vw, 22px); font-weight: 600; color: var(--tinte); margin-bottom: .4rem; }
.phase--active .phase__title { color: var(--ziegel); }
.phase__desc { font-size: 16px; color: var(--gedaempft); max-width: 520px; }

.phasen-outro { margin-top: 3rem; font-size: 17px; color: var(--gedaempft); max-width: var(--fliess-max); font-style: italic; }

/* ==========================================
   KONTAKT
   ========================================== */
#kontakt { background: var(--morgen); }
.kontakt-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 768px) { .kontakt-grid { grid-template-columns: 1fr 1fr; } }
.kontakt__quote { font-family: 'Caveat', cursive; font-size: clamp(28px, 4.5vw, 46px); line-height: 1.3; color: var(--erde); margin-bottom: 3rem; }
.kontakt__name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; color: var(--tinte); margin-bottom: .3rem; }
.kontakt__credentials {
  font-size: 13px;
  color: var(--gedaempft);
  letter-spacing: .04em;
  margin-bottom: 1.1rem;
  line-height: 1.6;
}
.kontakt__credentials a {
  color: var(--ziegel);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(139,94,60,.3);
}
.kontakt__credentials a:hover { border-color: var(--ziegel); }
.kontakt__details { font-size: 16px; color: var(--gedaempft); line-height: 2.1; list-style: none; }
.kontakt__details a { color: var(--ziegel); font-weight: 600; }
.kontakt__jim { font-size: 14px; margin-top: .25rem; }
.kontakt__jim a { color: var(--ziegel); font-weight: 600; text-decoration: none; }
.kontakt__jim a:hover { text-decoration: underline; }
.kontakt__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; opacity: .85; }

/* ==========================================
   ATELIER SPLIT (Garagen-Sektion Foto-Duo)
   ========================================== */
.atelier-split {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
.atelier-split__visual img {
  width: 100%;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  max-height: 560px;
  box-shadow: 0 8px 32px rgba(62,42,32,.18);
}
.atelier-split__captions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.atelier-caption__label {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ziegel);
  margin-bottom: .35rem;
}
.atelier-caption p {
  font-size: .92rem;
  color: var(--gedaempft);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .atelier-split__captions { grid-template-columns: 1fr; }
}

/* ==========================================
   NEWSLETTER — HELDENREISE FÖRSTER GARTEN
   ========================================== */
#newsletter {
  background: var(--erde);
  padding: clamp(60px,8vw,120px) clamp(20px,5vw,80px);
}
.newsletter-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-card__deco {
  font-size: 3rem;
  margin-bottom: .75rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(212,168,75,.4));
}
.newsletter-card__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--leinen);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.newsletter-card .eyebrow { color: var(--gold); }
.newsletter-card__sub {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(245,239,227,.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.newsletter-form { text-align: left; }
.newsletter-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .newsletter-form__row { grid-template-columns: 1fr; } }
.newsletter-form__field { display: flex; flex-direction: column; gap: .4rem; }
.newsletter-form__field label {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,239,227,.55);
  font-family: 'Fraunces', serif;
}
.newsletter-form__field input,
.newsletter-form__field select {
  background: rgba(245,239,227,.07);
  border: 1px solid rgba(245,239,227,.2);
  color: var(--leinen);
  padding: .75rem 1rem;
  border-radius: 4px;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.newsletter-form__field input::placeholder { color: rgba(245,239,227,.3); }
.newsletter-form__field input:focus,
.newsletter-form__field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245,239,227,.11);
}
.newsletter-form__field select option { background: var(--erde); color: var(--leinen); }
.newsletter-form__btn {
  margin-top: 1.5rem;
  width: 100%;
  background: var(--gold);
  color: var(--erde);
  border: none;
  padding: 1rem 2rem;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .02em;
}
.newsletter-form__btn:hover { background: #e8b84e; transform: translateY(-2px); }
.newsletter-form__btn:focus { outline: 2px solid var(--leinen); outline-offset: 3px; }
.newsletter-form__legal {
  margin-top: 1rem;
  font-size: .78rem;
  color: rgba(245,239,227,.35);
  text-align: center;
  line-height: 1.6;
}
.newsletter-form__legal a { color: rgba(245,239,227,.45); }
.newsletter-danke {
  text-align: center;
  padding: 2rem;
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-style: italic;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: var(--erde); color: rgba(245,239,227,.45);
  text-align: center; padding: 2.5rem clamp(24px, 5vw, 80px);
  font-size: 14px; line-height: 1.9;
}
footer a { color: rgba(245,239,227,.55); }
