/* =========================================================
   ROOT RETREAT — Styles
   Farben: warme Pastelltöne, pudrig, sanft, kraftvoll
   ========================================================= */

:root {
  /* Farben */
  --cream:        #F6EFE4;
  --sand:         #EBDFCB;
  --rose-soft:    #E6C8BD;
  --rose:         #D4A59A;
  --terracotta:   #B5685A;
  --burgundy:     #7A3B3B;
  --mustard:      #C49B5E;
  --ochre:        #A88142;
  --brown-deep:   #2E1F18;
  --brown-soft:   #6B5D52;
  --line:         #D9CBB7;

  /* Typografie */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-script:  "Italianno", "Cormorant Garamond", cursive;
  --font-body:    "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --container: 1180px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Schatten */
  --shadow-soft: 0 12px 40px rgba(46, 31, 24, 0.08);
  --shadow-card: 0 6px 24px rgba(46, 31, 24, 0.06);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown-deep);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--brown-deep);
  letter-spacing: 0.01em;
  line-height: 1.18;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  color: var(--terracotta);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
}

p { margin: 0 0 1.1em; color: var(--brown-soft); }
p strong { color: var(--brown-deep); font-weight: 500; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}
.section-narrow {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* Sektion mit anderer Hintergrundfarbe */
.bg-sand    { background: var(--sand); }
.bg-cream   { background: var(--cream); }
.bg-rose    { background: var(--rose-soft); }
.bg-burgundy { background: var(--burgundy); color: var(--cream); }
.bg-burgundy h1, .bg-burgundy h2, .bg-burgundy h3 { color: var(--cream); }
.bg-burgundy h1 em, .bg-burgundy h2 em, .bg-burgundy h3 em { color: var(--mustard); }
.bg-burgundy p { color: rgba(246, 239, 228, 0.85); }
.bg-burgundy .eyebrow { color: var(--mustard); }
.bg-burgundy .script { color: var(--mustard); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 228, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-deep);
}
.nav-brand em { font-style: italic; color: var(--terracotta); font-weight: 400; }

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-deep);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--terracotta); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  color: var(--brown-deep);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(80px, 11vw, 160px) 0 clamp(90px, 12vw, 170px);
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(196, 155, 94, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(181, 104, 90, 0.18), transparent 55%),
    var(--cream);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-brand {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brown-deep);
  margin-bottom: 32px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
}
.hero-brand em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.hero h1 {
  max-width: 1100px;
  margin: 0 auto 24px;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.2;
}
.hero-tagline {
  max-width: 620px;
  margin: 0 auto 42px;
  font-size: 1.1rem;
  color: var(--brown-soft);
}

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 36px;
  margin-top: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-soft);
}
.hero-meta span::before {
  content: "✦";
  margin-right: 14px;
  color: var(--mustard);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 18px 42px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-outline {
  background: transparent;
  color: var(--brown-deep);
  border-color: var(--brown-deep);
}
.btn-outline:hover {
  background: var(--brown-deep);
  color: var(--cream);
}
.btn-light {
  background: var(--cream);
  color: var(--brown-deep);
}
.btn-light:hover {
  background: var(--mustard);
  color: var(--brown-deep);
}

/* ---------- Pain Section ---------- */
.pain-list {
  max-width: 780px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.pain-list li {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--brown-deep);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
.pain-list li:last-child { border-bottom: 0; }
.pain-closing {
  text-align: center;
  margin-top: 50px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--terracotta);
  line-height: 1.5;
}
.pain-closing strong {
  font-weight: 600;
  color: var(--terracotta);
}

/* ---------- Transformation (Manifesto-Liste) ---------- */
.transformation-list {
  max-width: 780px;
  margin: 50px auto 0;
}
.transformation-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(14px, 2.5vw, 30px);
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.4;
}
.transformation-row:last-of-type { border-bottom: 0; }
.transformation-row .from {
  text-align: right;
  color: var(--brown-soft);
  font-weight: 400;
}
.transformation-row .arrow {
  color: var(--mustard);
  font-style: normal;
  font-weight: 400;
  font-size: 1.05em;
}
.transformation-row .to {
  text-align: left;
  color: var(--terracotta);
  font-weight: 500;
}

.transformation-closing {
  text-align: center;
  margin-top: 50px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--burgundy);
  font-weight: 500;
  line-height: 1.5;
}
.transformation-closing em { font-style: italic; }

/* ---------- About Retreat Section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.placeholder-image {
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--mustard) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-script);
  font-size: 2.2rem;
  position: relative;
  overflow: hidden;
}
.placeholder-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(246, 239, 228, 0.4);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.placeholder-image.landscape { aspect-ratio: 4 / 3; }
.placeholder-image.square    { aspect-ratio: 1 / 1; }

/* Reale Porträt-Bilder (4:5) für „Über das Retreat", Sophie, Rike */
.portrait-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  image-orientation: from-image;
  /* Sehr dezenter Wash – Hauttöne bleiben natürlich */
  filter: saturate(0.96) contrast(1.01) brightness(1.02);
}

/* ---------- Hard Facts ---------- */
.facts-card {
  background: var(--cream);
  padding: clamp(40px, 5vw, 70px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 920px;
  margin: 0 auto;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 50px;
  margin-top: 40px;
}
.fact { border-left: 2px solid var(--mustard); padding-left: 22px; }
.fact-label {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 6px;
}
.fact-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown-deep);
  font-weight: 400;
}
.fact-sub {
  font-size: 0.8rem;
  color: var(--brown-soft);
  margin-top: 4px;
}
.fact-detail {
  font-size: 0.9rem;
  color: var(--brown-soft);
  margin-top: 4px;
}

.facts-includes {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.facts-includes h4 {
  color: var(--ochre);
  margin-bottom: 22px;
}
.facts-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
}
.facts-includes li {
  padding-left: 28px;
  position: relative;
  color: var(--brown-soft);
  font-size: 0.95rem;
}
.facts-includes li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

/* ---------- Unsere Methoden ---------- */
.methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}
.method {
  background: var(--cream);
  padding: 44px 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.method-meta {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 14px;
}
.method h3 {
  margin: 0 0 22px;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
}
.method p:last-of-type { margin-bottom: 24px; }
.method-link {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 4px;
  transition: all 0.25s ease;
}
.method-link:hover {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.gallery-item .placeholder-image { margin-bottom: 14px; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  display: block;
  /* EXIF-Drehung respektieren (für rotierte iPhone-Fotos) */
  image-orientation: from-image;
  /* Sanfter, warmer Wash – sorgt für Stimmigkeit mit Cream/Terracotta-Palette */
  filter: saturate(0.92) contrast(1.02) brightness(1.02) sepia(0.05);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.015);
  filter: saturate(1) contrast(1.02) brightness(1.03) sepia(0.03);
}
.gallery-caption {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brown-soft);
  font-size: 1rem;
  text-align: center;
}

/* ---------- Video Testimonials ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  margin-top: 60px;
}
.video-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.video-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--terracotta) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.video-placeholder::before {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(246, 239, 228, 0.92);
  display: block;
}
.video-placeholder::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 22px solid var(--terracotta);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.card-video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--brown-deep);
}
.video-body { padding: 28px 30px 32px; }
.video-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown-deep);
  margin: 0 0 6px;
  font-weight: 400;
}
.video-name {
  font-family: var(--font-script);
  color: var(--terracotta);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 16px;
}
.video-summary {
  font-size: 0.96rem;
  color: var(--brown-soft);
  margin: 0;
}
.bg-burgundy .video-card .video-title { color: var(--brown-deep); }
.bg-burgundy .video-card .video-title em { color: var(--terracotta); }
.bg-burgundy .video-card .video-summary { color: var(--brown-soft); }

/* ---------- Hosts (mini) ---------- */
.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.host-mini { text-align: center; }
.host-mini .placeholder-image {
  max-width: 280px;
  margin: 0 auto 26px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}
.host-mini-avatar {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 26px;
  image-orientation: from-image;
  filter: saturate(0.96) contrast(1.01) brightness(1.02);
}
.host-mini h3 { margin-bottom: 6px; }
.host-mini .host-role {
  font-family: var(--font-script);
  color: var(--terracotta);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.host-mini p { max-width: 360px; margin: 0 auto 20px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 50px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  padding: 8px 0;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--terracotta);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a {
  padding: 12px 0 8px;
  color: var(--brown-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
}

/* ---------- Calendly CTA ---------- */
.cta-final {
  text-align: center;
}
.cta-final h2 { margin-bottom: 18px; }
.cta-final p { max-width: 580px; margin: 0 auto 36px; }
.calendly-placeholder {
  max-width: 900px;
  margin: 50px auto 0;
  background: var(--cream);
  border: 2px dashed var(--mustard);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
}
.calendly-placeholder .label {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.calendly-placeholder code {
  display: inline-block;
  background: var(--sand);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--brown-deep);
  margin-top: 12px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--brown-deep);
  color: rgba(246, 239, 228, 0.7);
  padding: 60px 0 30px;
  text-align: center;
  font-size: 0.9rem;
}
.footer h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
}
.footer h3 em { color: var(--mustard); font-style: italic; }
.footer .script { color: var(--mustard); font-size: 2rem; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 32px 0 24px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(246, 239, 228, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--mustard); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(246, 239, 228, 0.45);
  margin-top: 20px;
  border-top: 1px solid rgba(246, 239, 228, 0.12);
  padding-top: 24px;
}

/* ---------- About Pages (Sophie / Rike) ---------- */
.host-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding: 0;
}
.section-host { padding-top: 60px !important; padding-bottom: clamp(70px, 9vw, 130px); }
.host-hero .placeholder-image { aspect-ratio: 4 / 5; }
.host-hero .script { display: block; margin-bottom: 4px; }
.host-hero h1 { margin-bottom: 22px; }
.host-name-line { display: flex; align-items: baseline; gap: 0.3em; flex-wrap: nowrap; margin-bottom: 22px; }
.host-name-line h1 { margin-bottom: 0; font-size: clamp(1.8rem, 3.5vw, 3rem); }
.host-name-line .script { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.host-meta {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.host-meta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 4px;
}

/* ---------- Page Hero (Testimonials/Impressum) ---------- */
.page-hero {
  text-align: center;
  padding: clamp(70px, 10vw, 130px) 0 clamp(40px, 5vw, 70px);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 620px; margin: 0 auto; }

/* ---------- Testimonials Page ---------- */
.testimonial-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 110px);
}
.testimonial-full.reverse { direction: rtl; }
.testimonial-full.reverse > * { direction: ltr; }
.testimonial-full .video-placeholder { border-radius: var(--radius-lg); }
.testimonial-video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  display: block;
  background: var(--brown-deep);
}
.testimonial-full h2 em { font-size: inherit; }
.testimonial-full .video-name {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* ---------- Impressum ---------- */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0;
}
.legal h2 { margin-top: 40px; font-size: 1.6rem; }
.legal p { font-size: 0.96rem; }

/* ---------- Responsive ---------- */

/* Tablet & kleiner */
@media (max-width: 900px) {
  .nav-inner { padding: 14px 22px; }
  .nav-brand { font-size: 1rem; letter-spacing: 0.18em; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    gap: 0;
    padding: 12px 24px 22px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { font-size: 0.82rem; }

  .split,
  .host-hero,
  .testimonial-full,
  .hosts-grid,
  .methods-grid,
  .video-grid,
  .gallery,
  .facts-grid,
  .facts-includes ul {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .split.reverse,
  .testimonial-full.reverse { direction: ltr; }

  /* Host-hero: Foto über dem Text */
  .host-hero .placeholder-image { max-width: 380px; margin: 0 auto; }

  /* Hero meta vertikal mit weniger Gap */
  .hero-meta { gap: 10px 18px; font-size: 0.74rem; letter-spacing: 0.18em; }
  .hero-meta span::before { margin-right: 10px; }

  /* Facts card weniger Padding */
  .facts-card { padding: 36px 26px; }
  .facts-grid { gap: 28px 0; }
}

/* Mobile (Smartphone) */
@media (max-width: 640px) {
  body { font-size: 16px; line-height: 1.6; }
  section { padding: 60px 0; }
  .container { padding: 0 20px; }

  /* Eyebrow kleiner */
  .eyebrow { font-size: 0.7rem; letter-spacing: 0.26em; margin-bottom: 0.8rem; }

  /* Typografie */
  h1 { font-size: 2.2rem; line-height: 1.2; }
  h2 { font-size: 1.7rem; line-height: 1.25; }
  h3 { font-size: 1.3rem; }

  /* Hero kompakter */
  .hero { padding: 60px 0 70px; }
  .hero h1 { font-size: 1.7rem; line-height: 1.25; }
  .hero-brand { font-size: 2rem; letter-spacing: 0.2em; margin-bottom: 24px; }
  .hero-tagline { font-size: 1rem; margin-bottom: 32px; }

  /* Hero meta stacked */
  .hero-meta {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 38px;
  }

  /* Buttons */
  .btn {
    padding: 16px 30px;
    font-size: 0.76rem;
    letter-spacing: 0.24em;
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  /* Pain list noch eleganter */
  .pain-list li {
    font-size: 1.02rem;
    padding: 16px 0;
    line-height: 1.55;
  }
  .pain-closing { font-size: 1.05rem; margin-top: 40px; }

  /* Methoden-Karten */
  .method { padding: 32px 26px; }
  .method h3 { font-size: 1.5rem; margin-bottom: 16px; }

  /* Transformation: auf Mobile vertikal stacken */
  .transformation-row {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: center;
    padding: 14px 0;
  }
  .transformation-row .from,
  .transformation-row .to { text-align: center; }
  .transformation-row .arrow { font-size: 0.95em; }
  .transformation-closing { font-size: 1.15rem; margin-top: 36px; }

  /* Facts */
  .facts-card { padding: 32px 22px; border-radius: 8px; }
  .fact-value { font-size: 1.3rem; }
  .facts-includes ul { grid-template-columns: 1fr !important; gap: 10px 0; }
  .facts-includes li { font-size: 0.92rem; }

  /* Gallery */
  .gallery { gap: 22px; }
  .gallery-caption { font-size: 0.95rem; }

  /* Video Testimonials */
  .video-grid { gap: 28px; }
  .video-body { padding: 22px 22px 26px; }
  .video-title { font-size: 1.3rem; }
  .video-name { font-size: 1.4rem; }
  .video-placeholder::before { width: 60px; height: 60px; }
  .video-placeholder::after {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }

  /* Host mini */
  .host-mini .placeholder-image { max-width: 220px; }

  /* FAQ */
  .faq-q { font-size: 1.05rem; padding: 4px 0; }
  .faq-a { font-size: 0.95rem; }

  /* Calendly fit */
  .calendly-inline-widget {
    min-width: 280px !important;
    height: 660px !important;
  }

  /* Footer */
  .footer { padding: 50px 0 24px; }
  .footer h3 { font-size: 1.3rem; letter-spacing: 0.2em; }
  .footer-links {
    gap: 18px;
    margin: 26px 0 18px;
  }
  .footer-links a { font-size: 0.74rem; }

  /* Host hero (Sophie/Rike) */
  .host-hero { padding: 50px 0 30px; gap: 36px; }
  .host-hero h1 { font-size: 2.4rem; }
  .host-hero .placeholder-image { max-width: 280px; }

  /* Testimonial Page */
  .testimonial-full { gap: 32px; margin-bottom: 60px; }
}

/* Sehr kleine Geräte (iPhone SE etc.) */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 14px 16px; }
  .nav-brand { font-size: 0.92rem; letter-spacing: 0.16em; }
  h1, .hero h1 { font-size: 1.55rem; }
  .hero-brand { font-size: 1.7rem; letter-spacing: 0.18em; }
  .btn { padding: 15px 24px; font-size: 0.72rem; letter-spacing: 0.2em; }
}
