/* ============================================================
   Breathwork Coach Ausbildung — Redesign 2027
   Design system: warm beige / erdton, Cormorant Garamond + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* -- palette (per briefing) -- */
  --bg: #F5F0EA;
  --bg-alt: #EDE5DC;
  --white: #FFFDF9;
  --ink: #3D2E2A;
  --ink-soft: #4A3B36;
  --ink-muted: #7A6A62;
  --label: #9B7070;
  --divider: #C4A99A;

  /* CTA — two candidates, swap via data-cta on <html> */
  --cta-yellow: #F0C94A;      /* warm honey yellow */
  --cta-yellowgreen: #E8F26D; /* chartreuse, closer to old waitlist button */
  --cta: var(--cta-yellow);
  --cta-hover: #E8BE33;
  --cta-ink: #3D2E2A;

  --dark-bg: #1C1510;
  --dark-head: #F0E8DC;
  --dark-accent: #D4B896;
  --dark-body: #CBB9AC;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --shadow-soft: 0 12px 40px -12px rgba(61, 46, 42, 0.18);
  --shadow-card: 0 4px 24px -8px rgba(61, 46, 42, 0.12);
}

html[data-cta="yellowgreen"] {
  --cta: var(--cta-yellowgreen);
  --cta-hover: #DCE85C;
}

/* ---------------- base ---------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; filter: sepia(0.06) saturate(1.06) contrast(1.02) brightness(1.01); }

a { color: inherit; }

/* subtle film-grain texture, ties the whole page together */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 900px) {
  .container { padding: 0 3rem; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.5rem, 5.5vw + 1rem, 4.75rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.4vw + 1rem, 3.1rem); line-height: 1.15; }
h3 { font-size: clamp(1.35rem, 1.4vw + 1rem, 1.7rem); line-height: 1.3; }

em, i { font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex: none;
}
.section-head.left .eyebrow::after { display: none; }

.section-head {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head.left { margin: 0 0 3rem; text-align: left; }

section { position: relative; }
.pad { padding: 5.5rem 0; }
@media (min-width: 900px) { .pad { padding: 8rem 0; } }

/* Sparser now that the redundant sub-heading/note are gone below the 2025 carousel */
#video-stimmen-2025 { padding-bottom: 3rem; }
#instagram { padding-top: 3rem; }

.bg-alt { background: var(--bg-alt); }
.bg-dark {
  background: var(--dark-bg);
  color: var(--dark-body);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--dark-head); }
.bg-dark .eyebrow { color: var(--dark-accent); }
.bg-dark em { color: var(--dark-accent); }

.has-bg-photo {
  position: relative;
  background-size: cover;
  background-position: center;
}
.has-bg-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28,21,16,0.78) 0%, rgba(28,21,16,0.66) 55%, rgba(28,21,16,0.84) 100%);
}
#geeignet { background-position: center 20%; }
.has-bg-photo > .container { position: relative; z-index: 1; }

.breath-wave {
  display: block;
  color: var(--divider);
  margin: 1.85rem auto 0;
  animation: breathe-wave 7s ease-in-out infinite;
  transform-origin: center;
}
.section-head.left .breath-wave { margin-left: 0; }
.bg-dark .breath-wave { color: var(--dark-accent); opacity: 0.6; }

@keyframes breathe-wave {
  0%, 100% { transform: scaleX(1); opacity: 0.7; }
  50% { transform: scaleX(1.12); opacity: 1; }
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-cta {
  background: var(--cta);
  color: var(--cta-ink);
  box-shadow: var(--shadow-card);
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -12px rgba(240,201,74,0.5), var(--shadow-soft); background: var(--cta-hover); }
.btn-cta:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  opacity: 0.85;
}
.btn-ghost:hover { opacity: 1; transform: translateY(-2px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.cta-center { justify-content: center; }

.section-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ---------------- signature: breathing ring ---------------- */
.breath-marker {
  position: relative;
  width: 54px;
  height: 54px;
  flex: none;
  display: grid;
  place-items: center;
}
.breath-marker .ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--label);
  border-radius: 50%;
  animation: breathe 4.8s ease-in-out infinite;
}
.bg-dark .breath-marker .ring { border-color: var(--dark-accent); }
.breath-marker .num {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--label);
}
.bg-dark .breath-marker .num { color: var(--dark-accent); }

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.14); opacity: 1; }
}

/* ---------------- nav ---------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.1rem 0;
  background: rgba(245, 240, 234, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 169, 154, 0.35);
  transition: background 0.3s ease;
}
.nav-progress {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 0%;
  background: var(--cta);
  transition: width 0.1s linear;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.nav-word {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-word strong { font-weight: 500; }
.nav .btn { padding: 0.75rem 1.5rem; font-size: 0.72rem; white-space: nowrap; }

.btn-short { display: none; }
@media (max-width: 560px) {
  .btn-full { display: none; }
  .btn-short { display: inline; }
}

@media (max-width: 480px) {
  .nav-word { font-size: 0.85rem; }
  .nav .btn { padding: 0.65rem 1.1rem; font-size: 0.62rem; }
}

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 4rem;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 0.92fr; gap: 4.5rem; }
}
.hero-content { max-width: 560px; }

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 900px) {
  .hero-media { aspect-ratio: 3/4; }
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: sepia(0.03) saturate(1.05) contrast(1.03);
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(245,240,234,0.06) 0%, rgba(212,169,138,0.03) 45%, rgba(61,46,42,0.05) 100%);
  mix-blend-mode: normal;
}

.hero .badge-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-card);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 strong { font-weight: 500; }
.hero .sub {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2.25rem;
}
.hero .sub strong { font-weight: 600; color: var(--ink); }
.hero .facts {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
}
.hero .facts .sep { color: var(--divider); margin: 0 0.7rem; font-style: normal; }


@media (max-width: 699px) {
  .hero { min-height: unset; padding-top: 6.5rem; }
  .hero-content { max-width: 100%; }
}

/* ---------------- video / einblicke strip ---------------- */
.einblicke {
  background: var(--dark-bg);
  color: var(--dark-body);
  padding: 5rem 0;
  text-align: center;
}
.einblicke h2 { max-width: 560px; margin: 0 auto 2.5rem; color: var(--dark-head); }
.einblicke h2 em { color: var(--dark-accent); }
.video-frame {
  position: relative;
  max-width: 880px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------------- warum mehr als technik ---------------- */
.technik-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .technik-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; }
}
.technik-poetic p { margin: 0 0 0.15rem; font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--ink); line-height: 1.4; }
.technik-list { padding: 0; margin: 1.25rem 0 2rem; list-style: none; }
.technik-list li {
  padding: 1.1rem 0;
  border-top: 1px solid var(--divider);
  display: flex;
  gap: 1rem;
}
.technik-list li:last-child { border-bottom: 1px solid var(--divider); }
.technik-list .mark { color: var(--label); flex: none; font-family: var(--font-display); font-style: italic; }
.technik-result {
  position: relative;
  margin-top: 2.75rem;
  padding: 2.75rem 2.5rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.technik-result-mark {
  position: absolute;
  top: -0.4rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-style: italic;
  color: var(--bg-alt);
  line-height: 1;
  user-select: none;
}
.technik-result-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--label);
  margin: 0 0 0.5rem !important;
}
.technik-result p:last-child {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.technik-result em { color: var(--label); font-style: italic; }
.technik-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.technik-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.technik-image:hover img { transform: scale(1.045); }

/* ---------------- drei gründe ---------------- */
.gruende-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (min-width: 900px) {
  .gruende-grid { grid-template-columns: repeat(3, 1fr); gap: 2.75rem; }
}
.gruende-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-height: 460px;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gruende-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.gruende-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(28,21,16,0.18) 0%, rgba(28,21,16,0.76) 62%, rgba(28,21,16,0.95) 100%);
}
.gruende-item > * { position: relative; z-index: 1; }
.gruende-item .breath-marker { flex: none; }
.gruende-item .breath-marker .ring { border-color: rgba(240,232,220,0.55); }
.gruende-item .breath-marker .num { color: var(--dark-head); }
.gruende-text { display: flex; flex-direction: column; gap: 1.1rem; }
.gruende-item h3 { font-weight: 500; color: var(--dark-head); }
.gruende-item p { margin: 0; color: var(--dark-body); }

/* ---------------- geeignet wenn (dark) ---------------- */
.check-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 700px) {
  .check-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem 3rem; }
}
.check-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 184, 150, 0.25);
}
.check-item .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--dark-accent);
  color: var(--dark-accent);
  display: grid; place-items: center;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ---------------- was du lernst ---------------- */
.lernst-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .lernst-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.lernst-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.lernst-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.lernst-card img { aspect-ratio: 5/4; object-fit: cover; transition: transform 0.6s ease; }
.lernst-card:hover img { transform: scale(1.045); }
.lernst-card .body { padding: 2rem 2.25rem 2.25rem; }
.lernst-card .tag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--label); font-weight: 600; margin-bottom: 0.6rem; display: block; }

.erwartet-wrap { margin-top: 5rem; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .erwartet-wrap { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; } }

.erwartet-visual { position: relative; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.erwartet-visual::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,112,112,0.16) 0%, rgba(155,112,112,0) 70%);
}
.device-mockup {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
}
.device-tablet {
  position: absolute;
  top: 0; right: 0;
  width: 80%;
  height: 86%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: rotate(3deg);
  border: 6px solid var(--white);
  background: var(--white);
}
.device-tablet img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.device-phone {
  position: absolute;
  left: 0; bottom: 0;
  width: 46%;
  aspect-ratio: 1206/1752;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: rotate(-4deg);
  border: 7px solid var(--white);
  background: var(--white);
  z-index: 1;
}
.device-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.erwartet-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.1rem; }
.erwartet-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.erwartet-list li::before {
  content: '';
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--label);
  margin-top: 0.65rem;
}

/* ---------------- modulübersicht ---------------- */
.modul-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 700px) {
  .modul-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1050px) {
  .modul-grid { grid-template-columns: repeat(3, 1fr); }
}
.modul-card {
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.modul-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--label); }
.modul-img { aspect-ratio: 16/10; overflow: hidden; }
.modul-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; transition: transform 0.6s ease; }
.modul-card:hover .modul-img img { transform: scale(1.045); }
.modul-body { padding: 2rem; }
.modul-card .breath-marker { margin-bottom: 1.25rem; }
.modul-card .modul-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--label); font-weight: 600; }
.modul-card h3 { margin: 0.35rem 0 0.9rem; }
.modul-card p { margin: 0; font-size: 0.98rem; }

/* ---------------- vision (dark, image bg) ---------------- */
.vision {
  background-size: cover;
  background-position: center;
  position: relative;
}
.vision::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,21,16,0.68), rgba(28,21,16,0.52));
}
.vision .container { position: relative; z-index: 1; max-width: 760px; text-align: center; }
.vision h2 { color: var(--dark-head); }
.vision p { font-size: 1.2rem; line-height: 1.75; color: var(--dark-body); }

/* ---------------- das sind wir ---------------- */
.people-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 800px) {
  .people-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.person-card { display: flex; flex-direction: column; }
.person-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-card);
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; transition: transform 0.6s ease; }
.person-photo:hover img { transform: scale(1.045); }
.person-card h3 { font-size: 1.9rem; margin-bottom: 0.2rem; }
.person-role { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--label); font-weight: 500; margin-bottom: 1.25rem; }
.person-card p { margin: 0 0 1rem; }
/* ---------------- testimonials ---------------- */
.testi-carousel { margin-top: 3rem; }
.testi-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 0.5rem;
  scrollbar-width: none;
}
.testi-scroller::-webkit-scrollbar { display: none; }
@media (min-width: 700px) {
  .testi-scroller { grid-auto-columns: min(460px, 46%); }
  .video-scroller { grid-auto-columns: min(300px, 32%); }
}
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.testi-arrow:hover { background: var(--bg); border-color: var(--label); transform: translateY(-2px); }
.testi-arrow:disabled { opacity: 0.35; cursor: default; transform: none; }
.testi-counter { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--ink-muted); min-width: 56px; text-align: center; }
.testi-card {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--label); }
.testi-card.video-card { padding: 0; overflow: hidden; }
.testi-card.video-card video { display: block; width: 100%; aspect-ratio: 9/16; object-fit: cover; background: #000; }
.testi-card.video-card .who { padding: 1.25rem 1.5rem 1.5rem; }
.testi-card p.quote { flex: 1; font-size: 0.98rem; margin: 0 0 1.5rem; }
.testi-card .who { font-size: 0.85rem; }
.testi-card .who strong { display: block; color: var(--ink); font-weight: 600; }
.testi-card .who span { color: var(--ink-muted); }
.testi-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-muted);
}

.video-segment { margin-top: 3.5rem; }
.video-segment:first-of-type { margin-top: 3rem; }
.video-segment-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--label);
  margin: 0 0 0.5rem;
}
.video-placeholder {
  margin-top: 1.5rem;
  padding: 3rem 2rem;
  border: 1px dashed var(--divider);
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* ---------------- weitere stimmen (instagram) ---------------- */
.ig-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 3rem;
}
@media (min-width: 800px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
.ig-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.ig-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--label); }
.ig-card p.quote { flex: 1; font-size: 0.95rem; margin: 0.5rem 0 1.5rem; }
.ig-who { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.ig-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
}
.ig-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.ig-name { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.ig-handle {
  display: inline-block;
  font-weight: 400;
  color: var(--label);
  text-decoration: none;
  font-size: 0.82rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.ig-handle:hover { border-color: var(--label); }

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 780px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
}
.faq-q .icon {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  display: grid; place-items: center;
  font-size: 0.9rem;
  color: var(--label);
  transition: transform 0.3s ease;
}
.faq-item[data-open="true"] .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p { padding: 0 0 1.5rem; margin: 0; max-width: 680px; }
.faq-a p + p { margin-top: 0.9rem; }

/* ---------------- final CTA / form ---------------- */
.final-cta {
  background-size: cover;
  background-position: center 12%;
  position: relative;
  padding: 5rem 0 6rem;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,46,42,0.55), rgba(61,46,42,0.72));
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta .section-head h2, .final-cta .section-head p, .final-cta .eyebrow { color: var(--white); }
.final-cta .eyebrow { color: var(--dark-accent); }

.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 700px) { .form-card { padding: 3rem 3.5rem; } }

.ghl-form-card {
  padding: 1rem;
}
.ghl-form-card iframe {
  display: block;
  width: 100%;
  height: 598px;
}
.form-footnote { text-align: center; margin-top: 1.25rem; font-size: 0.78rem; color: rgba(255,253,249,0.75); }
.form-footnote a { text-decoration: underline; }

/* ---------------- footer ---------------- */
footer {
  background: var(--dark-bg);
  color: var(--dark-body);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.85rem;
}
footer .mail-btn { margin-bottom: 1.5rem; }
footer .legal { opacity: 0.7; }
footer .legal a { text-decoration: underline; }

/* utility */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
