/* =========================================================================
   YourMindBridge – Haupt-Stylesheet
   ========================================================================= */

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: var(--lh-head);
  letter-spacing: var(--ls-head);
  color: var(--ink);
}
h1 { font-size: var(--fs-h1); font-weight: 400; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { max-width: 68ch; }
strong { font-weight: 600; color: var(--ink); }

.eyebrow {
  font-family: var(--font-label);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.1rem;
}
.eyebrow-text {
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}
.color-highlight {
  color: var(--apricot);
  font-weight: 500;
}
.lead { font-size: var(--fs-lead); color: var(--muted); line-height: 1.65; }

/* Portal-Satz: Script-Akzent – NUR für 1–2 emotionale Schlüsselsätze */
.portal {
  font-family: var(--font-script);
  font-size: var(--fs-script);
  font-weight: 400;
  line-height: 1.3;
  color: var(--apricot);
  max-width: 22ch;
  margin-inline: auto;
}
.portal--wide { max-width: 30ch; }
.h2-smaller {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem);
  color: var(--apricot);
  line-height: 1.4;
}
.script-accent {
  font-family: "Amalfi Coast", var(--font-script);
  font-size: 1.45em;
  color: var(--apricot);
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: 0.05em;
  padding-inline: 0.16em;
  margin-top: 0.4rem;
  margin-bottom: 0.2rem;
}
/* Amalfi-Akzent für den hervorgehobenen ersten Teil eines Zitats (Rest bleibt normal) */
.quote-accent {
  display: block;
  font-family: "Amalfi Coast", var(--font-script);
  font-size: 1.28em;
  line-height: 1.45;
  color: var(--lila-light);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

/* ---------- Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.narrow { max-width: var(--container-narrow); margin-inline: auto; }
.section { padding-block: var(--space-section); }
.section--alt { background: var(--cream-deep); }
.section--espresso { background: var(--espresso); color: #e9e0d2; }
.section--espresso h1, .section--espresso h2, .section--espresso h3 { color: #f4ecdd; }
/* Sektion mit stark verblasstem Hintergrundfoto */
.section--photo { position: relative; isolation: isolate; }
.section--photo > .container { position: relative; z-index: 1; }
.section--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(250,246,239,0.76), rgba(250,246,239,0.76)),
    url('../assets/images/rtt-bewirkt-bg.webp');
  background-size: cover; background-position: center;
}
.center { text-align: center; }
.stack > * + * { margin-top: 1.2rem; }
.divider-arc { display: block; margin: 0 auto; width: clamp(120px, 18vw, 220px); opacity: 0.9; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.btn:hover { background: #a16e07; border-color: #a16e07; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: #fff; }
.btn--light { background: transparent; color: #f4ecdd; border-color: rgba(244,236,221,0.5); }
.btn--light:hover { background: #f4ecdd; color: var(--espresso); border-color: #f4ecdd; }

/* =========================================================================
   Header / Navigation
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  color: #f4ecdd;
  background: var(--taupe);            /* Default (Seiten ohne Bild-Hero) – Original-Taupe */
  transition: background var(--transition), box-shadow var(--transition);
}
/* Über dem Bild-Hero: transparent, wie im Original */
.site-header--overlay { background: transparent; }
.site-header--overlay.is-scrolled { background: var(--taupe); box-shadow: 0 6px 24px rgba(56,49,42,0.22); }
.site-header:not(.site-header--overlay) { box-shadow: 0 6px 24px rgba(56,49,42,0.14); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.6rem;
}
.brand { display: flex; align-items: center; }
.brand img { width: auto; height: 78px; transition: height var(--transition); filter: drop-shadow(0 2px 12px rgba(0,0,0,0.25)); }
/* kompakteres Logo, sobald Leiste solide ist */
.site-header.is-scrolled .brand img,
.site-header:not(.site-header--overlay) .brand img { height: 48px; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #f1e8da;
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.is-active { color: #fff; border-color: var(--champagne); }

.nav-toggle, .nav-toggle-label { display: none; }

/* =========================================================================
   Opener (vollflächiges Hintergrundbild mit Text-Overlay – wie im Original)
   ========================================================================= */
.opener {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: center;
  color: #f7f1e8;
  background-size: cover;
  background-position: 50% 0%;   /* Centered top to align with Claudia */
  overflow: hidden;
}
/* Original-Schleier: warmes Taupe links → transparent nach rechts */
.opener::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgb(139,123,107) 8%, rgba(139,123,107,0.55) 38%, rgba(139,123,107,0) 62%);
  z-index: 0;
}
.opener .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
}
.opener-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 580px; /* linke Spalte, breit genug für ~3-zeilige Headline */
  padding-top: var(--header-h);
  padding-bottom: clamp(4rem, 12vh, 9rem); /* Block sitzt im unteren Bereich – wie im Original */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.opener-decorator {
  width: 62px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}
.opener .eyebrow {
  color: #f3e7d2;
  letter-spacing: 0.28em;
  margin-bottom: 1.1rem;
}
.opener-title {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-size: clamp(1.65rem, 1.1rem + 1.7vw, 2.45rem);
  line-height: 1.25;
  letter-spacing: 0.012em;
  color: #e0cbef;
  text-shadow: 0 2px 16px rgba(40,30,45,0.65), 0 1px 3px rgba(0,0,0,0.45);
  max-width: 25ch;
  margin: 0 auto;
}
.opener-lead {
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.6;
  color: #f3ece0;
  max-width: 36ch;
  margin: 1.5rem auto 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.opener-scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  color: #f3e7d2;
  opacity: 0.85;
  transition: var(--transition);
  z-index: 10;
}
.opener-scroll:hover { opacity: 1; transform: translate(-50%, 3px); }
.opener-scroll svg { width: 28px; height: 28px; }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero { background: var(--cream-deep); padding-block: clamp(3rem, 6vw, 5rem); text-align: center; }
.page-hero .eyebrow { color: var(--taupe); }
.page-hero h1 { margin-bottom: 0.6rem; }
/* fixierter Header: Platz schaffen, wenn kein Bild-Hero darunterliegt */
.page-hero:not(.page-hero--img) { padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem)); }
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* Bild-Variante des Page-Hero – Titel unten links in zarter Amalfi-Goldschrift */
.page-hero--img {
  position: relative; color: #fff; background-size: cover; background-position: 50% 30%;
  min-height: min(82vh, 760px); display: flex; align-items: flex-end; text-align: left;
}
.page-hero--img::before {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(56,49,42,0.42) 0%, rgba(56,49,42,0.12) 42%, rgba(56,49,42,0) 70%),
    linear-gradient(0deg,  rgba(56,49,42,0.36) 0%, rgba(56,49,42,0) 46%),
    rgba(250,246,239,0.24);
}
.page-hero--img .container {
  position: relative; z-index: 1; width: 100%;
  padding-top: var(--header-h);
  padding-bottom: clamp(2.5rem, 7vh, 5.5rem);
}
.page-hero--img h1 {
  font-family: "Amalfi Coast", var(--font-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: clamp(2.3rem, 1.6rem + 3vw, 4rem);
  line-height: 1.25;
  color: #f1e6cf;
  text-shadow: 0 2px 26px rgba(40,34,28,0.5), 0 1px 4px rgba(0,0,0,0.3);
  margin: 0;
}

/* ---------- Vollflächige Bild-Bänder (wie Original-Hintergrundsektionen) ---------- */
.image-band {
  position: relative; color: #fff; background-size: cover; background-position: 50% 30%;
  display: grid; place-items: center; text-align: center; padding-block: clamp(4rem,10vw,8rem);
}
.image-band::before { content:""; position:absolute; inset:0; background: rgba(40,34,28,0.50); }
.image-band .container { position: relative; z-index: 1; }
.image-band h2 { color: #fff; }
.image-band .portal { color: #f0d9b8; }

/* =========================================================================
   Inhaltskomponenten
   ========================================================================= */
.section-head { max-width: 60ch; margin-inline: auto; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin-bottom: 1rem; }

/* "genug von" & "Klingt das nach dir" – Listen */
.pain-list,
.feel-list { list-style: none; display: grid; gap: 0.9rem; max-width: 640px; margin: 2rem auto 0; }
.pain-list li,
.feel-list li {
  display: flex; gap: 0.8rem; align-items: flex-start;
  font-size: 1.15rem; color: var(--body);
}
.pain-list li::before,
.feel-list li::before { content: "✦"; color: var(--gold); flex: none; margin-top: 0.12rem; }

/* 3-Schritte-Kacheln */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 1rem; }
.step { text-align: center; padding: 1rem; }
.step-num {
  font-family: var(--font-display); font-size: 3rem; color: var(--champagne);
  line-height: 1; display: block; margin-bottom: 0.8rem;
}
.step h3 { color: var(--apricot); margin-bottom: 0.8rem; }

/* Transformations-Zeilen */
.transform { display: grid; gap: 0.8rem; max-width: 620px; margin: 0 auto; }
.transform p { font-family: var(--font-display); font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem); color: var(--espresso); text-align: center; max-width: none; }
.transform .from { color: var(--taupe); font-weight: 300; }
/* kompakter, eigenständiger Transformations-Abschnitt */
.transform-section {
  background-color: var(--sand);
  border-block: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

/* Vorteils-Kacheln (RTT bewirkt) */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.6rem; margin-top: 1rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.2rem; box-shadow: var(--shadow-soft);
}
.card h3 { color: var(--apricot); margin-bottom: 0.9rem; font-size: 1.4rem; }
.card p { font-size: 1rem; }

/* Vision-Liste mit Häkchen */
.vision-list { list-style: none; display: grid; gap: 1rem; max-width: 720px; margin: 2rem auto 0; }
.vision-list li { display: flex; gap: 0.9rem; align-items: flex-start; font-size: 1.12rem; }
.vision-list li::before { content: "✦"; color: var(--gold); flex: none; margin-top: 0.15rem; }

/* Split (Bild + Text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split-media { order: 2; }
/* Bild als sauberer, kompakter Ausschnitt (zeigt Claudia – kein überlanges Hochformat) */
.split--equal .split-media img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 20%; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.split-media.cutout img { border-radius: 0; box-shadow: none; }

/* =========================================================================
   Story (Meine Geschichte)
   ========================================================================= */
.story { max-width: 720px; margin-inline: auto; }
.story p { max-width: none; margin-inline: auto; font-size: 1.16rem; }
.story .portal { margin-block: clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.story .single { text-align: center; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-block: 0.4rem; max-width: none; }
.story-section + .story-section { margin-top: clamp(2.5rem, 5vw, 4rem); }
.story h2 { text-align: center; margin-bottom: 1.6rem; }
.story-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); margin: clamp(2rem,5vw,3.5rem) auto; width: 100%; }

/* Freisteller-Figur auf Sand-Band (editoriale Platzierung) */
.figure-band { position: relative; }
.figure-band::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 62%;
  background: var(--sand); border-radius: var(--radius-lg); z-index: 0;
}
.figure-band__img { position: relative; z-index: 1; display: block; width: min(420px, 58%); margin-left: clamp(1rem, 7%, 6rem); }
@media (max-width: 560px) {
  .figure-band::before { height: 56%; }
  .figure-band__img { width: min(300px, 86%); margin-inline: auto; }
}

.figure-band--split .figure-band__img {
  width: min(420px, 90%);
  margin-inline: auto;
}

/* =========================================================================
   Pakete / Preise (Deine Reise)
   ========================================================================= */
.packages { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; align-items: start; }
.package {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.6rem 2.2rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
}
.package--featured { background: rgba(168, 97, 196, 0.1); border-color: var(--champagne); box-shadow: 0 24px 60px -30px rgba(193,132,9,0.5); }
.package h3 { font-size: 1.7rem; line-height: 1.3; margin-bottom: 0.5rem; }
.pkg-script { font-family: "Amalfi Coast", var(--font-script); font-weight: 400; font-size: 1.4em; line-height: 1; letter-spacing: 0.02em; }
.package .package-sub { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.package .package-incl { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.7rem; }
.package ul { list-style: none; display: grid; gap: 0.7rem; margin: 0 0 1.6rem; }
.package li { display: flex; gap: 0.7rem; font-size: 0.98rem; }
.package li::before { content: "✓"; color: var(--gold); flex: none; font-weight: 700; }
.package .price { font-family: var(--font-display); font-size: 2.6rem; color: var(--ink); margin-top: auto; }
.package .price small { display: block; font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }
.package .btn { margin-top: 1.6rem; justify-content: center; }

/* RTT Themen-Wolke */
.topics { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; max-width: 900px; margin: 2rem auto 0; }
.topics span { background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 0.5rem 1.15rem; font-size: 0.9rem; color: var(--taupe); }

/* Themen-Akkordeon-artige Liste (Was Claudia begleitet) */
.themes { display: grid; gap: 1.4rem; max-width: 820px; margin-inline: auto; }
.theme { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--champagne); border-radius: var(--radius-lg); padding: 1.8rem 2rem; }
.theme h3 { font-size: 1.3rem; color: var(--apricot); margin-bottom: 0.6rem; }
.theme p { font-size: 1rem; }

/* Ablauf-Schritte (nummeriert) */
.flow { display: grid; gap: 1.5rem; max-width: 760px; margin-inline: auto; counter-reset: flow; }
.flow-step { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start; }
.flow-step::before {
  counter-increment: flow; content: counter(flow);
  font-family: var(--font-display); font-size: 1.5rem; color: #fff;
  background: var(--gold); width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
}
.flow-step h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.flow-step p { font-size: 0.98rem; color: var(--muted); }

/* =========================================================================
   Referenzen / Testimonials
   ========================================================================= */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; align-items: start; }
.testimonial {
  break-inside: avoid; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-soft);
}
.testimonial .quote { font-size: 1.02rem; color: var(--body); font-style: italic; }
.testimonial .quote::before { content: "“"; font-family: var(--font-display); font-size: 2.6rem; color: var(--champagne); display: block; line-height: 0.5; margin-bottom: 0.6rem; }
.testimonial .who {
  margin-top: 1.2rem;
  font-family: "Amalfi Coast", var(--font-script);
  font-size: 1.9rem; line-height: 1.25;
  letter-spacing: 0.01em; text-transform: none;
  color: var(--gold);
}
.testimonial .who span {
  display: block; font-family: var(--font-label); color: var(--muted);
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 0.45rem;
}

/* ---------- Testimonial-Slider (Startseite, Auto-Wechsel) ---------- */
.testi-slider { overflow: hidden; max-width: 760px; margin-inline: auto; }
.testi-track { display: flex; transition: transform 0.6s ease; }
.testi-track > .testimonial { flex: 0 0 100%; margin: 0; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 1.3rem; margin-top: 1.6rem; }
.testi-dots { display: flex; gap: 0.55rem; justify-content: center; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; background: var(--line); cursor: pointer; transition: var(--transition); }
.testi-dot.is-active { background: var(--gold); transform: scale(1.25); }
.testi-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white); color: var(--gold);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: var(--transition);
}
.testi-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px); }

/* =========================================================================
   Shop (Platzhalter)
   ========================================================================= */
.shop-note { background: var(--sand); border-radius: var(--radius-lg); padding: 1.2rem 1.6rem; text-align: center; font-size: 0.95rem; color: var(--taupe); max-width: 640px; margin: 0 auto 3rem; }
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.product {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
}
.product-thumb { aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--sand), var(--cream-deep)); display: grid; place-items: center; }
.product-thumb img { width: 96px; opacity: 0.8; }
.product-body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.product-tag { font-family: var(--font-label); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.product h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.product p { font-size: 0.95rem; color: var(--muted); }
.product-foot { margin-top: auto; padding-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; }
.product .price { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.btn--soon { background: var(--sand); border-color: var(--sand); color: var(--taupe); cursor: not-allowed; pointer-events: none; }

/* =========================================================================
   Kontakt
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info { background: var(--espresso); color: #e9e0d2; border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem); }
.contact-info h2 { color: #f4ecdd; }
.contact-info .eyebrow { color: var(--champagne); }
.contact-channel { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.8rem; }
.contact-channel .ic { width: 42px; height: 42px; border-radius: 50%; background: rgba(244,236,221,0.12); display: grid; place-items: center; flex: none; color: var(--champagne); font-size: 1.1rem; }
.contact-channel .label { font-family: var(--font-label); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); }
.contact-channel a, .contact-channel span { color: #f4ecdd; font-size: 1.05rem; }
.contact-badges { display: flex; gap: 1rem; align-items: center; margin-top: 2.5rem; flex-wrap: wrap; }
.contact-badges img { height: 56px; width: auto; background: #fff; border-radius: 8px; padding: 6px; }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow-soft); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--body);
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.85rem 1rem; transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.field textarea { min-height: 150px; resize: vertical; }
.field-check { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.85rem; color: var(--muted); }
.field-check input { width: auto; margin-top: 0.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }

/* =========================================================================
   Rechtstexte / Prose
   ========================================================================= */
.prose { max-width: var(--container-narrow); margin-inline: auto; }
.prose h2 { font-size: 1.7rem; margin-top: 2.8rem; margin-bottom: 0.8rem; }
.prose h3 { font-size: 1.25rem; margin-top: 1.8rem; margin-bottom: 0.5rem; color: var(--apricot); }
.prose p { font-size: 1.02rem; margin-bottom: 1rem; max-width: none; color: var(--body); }
.prose a { color: var(--gold); text-decoration: underline; word-break: break-word; }
.prose address { font-style: normal; font-size: 1.1rem; line-height: 1.9; margin-bottom: 1.5rem; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--taupe); color: #ece4d7; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-brand img { width: 200px; margin-bottom: 1.1rem; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.18)); }
.footer-brand p { font-size: 0.95rem; color: #ded3c2; max-width: 38ch; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; margin-top: 1.5rem; }
.footer-badges img { height: 64px; width: auto; background: #fff; border-radius: 8px; padding: 6px; }
.footer-col { text-align: left; }
.footer-col h4 { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: grid; gap: 0.7rem; justify-items: start; }
.footer-col a { font-size: 0.95rem; color: #ece4d7; transition: var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(244,236,221,0.18); margin-top: 3rem; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: #d3c8b6; }
.footer-bottom a { color: #d3c8b6; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Video Wrapper (Responsive 16:9) ---------- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-top: 1.5rem;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: var(--container-narrow);
  margin: 3rem auto 0;
  display: grid;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.faq-item summary {
  padding: 1.25rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  outline: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-content {
  padding: 0 1.75rem 1.5rem;
  font-size: 1rem;
  color: var(--body);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.faq-content p {
  margin-bottom: 0.8rem;
  max-width: none;
}
.faq-content p:last-child {
  margin-bottom: 0;
}

/* ---------- Calendly Booking / Iframe ---------- */
.booking-container {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 600px;
}
.booking-container iframe {
  width: 100%;
  height: 650px;
  border: 0;
}

/* ---------- Brand statement section ---------- */
.brand-tagline-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: var(--space-section);
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
}
.brand-tagline-section .logo-icon {
  width: 72px;
  height: auto;
  margin-bottom: 2rem;
  opacity: 0.85;
}
.brand-tagline-section p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1.2vw, 1.8rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.2rem;
  max-width: 48ch;
}
.brand-tagline-section p strong {
  color: var(--gold);
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-media { order: -1; }
  .hero-media img { width: min(320px, 80%); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: -1; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Mobile-Navigation */
  .nav-toggle-label {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 150;
  }
  .nav-toggle-label span {
    width: 26px;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
  }

  /* Burger icon to 'X' animation */
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    background: var(--taupe);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.4rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -20px 0 60px rgba(56,49,42,0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav-toggle:checked ~ .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 0.95rem; }

  /* Opener auf Mobil: Text unten über Taupe-Schleier, Claudia oben im Bild */
  .opener { display: flex; align-items: flex-end; justify-content: center; background-position: 50% 14%; min-height: 100vh; }
  .opener::before { background: linear-gradient(0deg, rgba(139,123,107,0.85) 0%, rgba(139,123,107,0.5) 50%, rgba(139,123,107,0.1) 100%); }
  .opener-inner { width: 100%; max-width: 100%; padding-top: 0; padding-bottom: clamp(4.5rem, 12vw, 6rem); }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .brand-name { font-size: 1.15rem; }
}

/* =========================================================================
   Animationen – Scroll-Reveal & dezente Hover-Effekte
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  html.js-anim :is(
    .section-head, .card, .step, .theme, .package, .flow-step,
    .split-media, .split .stack, .testi-slider, .image-band .portal, .product,
    .vision-list > li, .pain-list > li, .feel-list > li, .transform > p, .faq-item
  ) {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
  }
  html.js-anim :is(
    .section-head, .card, .step, .theme, .package, .flow-step,
    .split-media, .split .stack, .testi-slider, .image-band .portal, .product,
    .vision-list > li, .pain-list > li, .feel-list > li, .transform > p, .faq-item
  ).is-visible {
    opacity: 1;
    transform: none;
  }
}

/* sanfter Bild-Zoom in Splits beim Hover */
.split-media { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.split-media img { transition: transform 0.7s ease; }
.split-media:hover img { transform: scale(1.04); }

/* Karten heben sich beim Hover leicht an */
.card, .package, .product, .theme { transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.7s ease; }
.card:hover, .package:hover, .product:hover, .theme:hover { box-shadow: 0 28px 60px -30px rgba(56,49,42,0.5); }

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