/* ============================================
   SEELENFUCHS — Global Stylesheet
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #3B5345;
  background: #DADBD5;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 400; line-height: 1.25; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.script-font {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-style: italic;
}

.sans { font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif; }

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.text-center { text-align: center; }

.section-padding {
  padding: 5rem 0;
}

/* ---------- Cover images ---------- */
.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-rounded {
  border-radius: 8px;
  overflow: hidden;
}

.img-container {
  position: relative;
  overflow: hidden;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #FF914D;
  color: #fff;
  border-radius: 4px;
}
.btn-primary:hover {
  background: #e07a38;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #3B5345;
  border: 1.5px solid #3B5345;
  border-radius: 4px;
}
.btn-outline:hover {
  background: #3B5345;
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 4px;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo-text {
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ---------- Hamburger Button ---------- */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

/* ---------- Nav Overlay ---------- */
.nav-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: #3B5345;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.nav-close:hover { opacity: 1; }

.nav-links {
  list-style: none;
  text-align: center;
  padding: 0;
}

.nav-links li {
  margin-bottom: 1.8rem;
}

.nav-links a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #FF914D;
}

.nav-links .nav-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 1.8rem;
}

/* ============================================
   HERO — Homepage
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: #1a2030;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-home .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 30, 27, 0.74) 0%, rgba(24, 30, 27, 0.46) 38%, rgba(24, 30, 27, 0.14) 72%, rgba(24, 30, 27, 0.08) 100%);
}

/* Mobile hero: verstecke Desktop-Elemente, zeige Mobile-Version */
.hero-img-mobile,
.hero-mobile-gradient,
.hero-content-mobile {
  display: none;
}

@media (max-width: 600px) {
  /* Desktop-Bild verstecken */
  .hero-home .hero-img-desktop { display: none; }
  .hero-home .hero-content { display: none; }
  .hero-home .hero-bg::after { display: none; }

  /* Hero wieder vollbild */
  .hero-home {
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
  }

  /* hero-bg zurück auf absolut */
  .hero-home .hero-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    inset: 0;
  }

  /* Mobile-Bild: hochkant, vollbild */
  .hero-home .hero-img-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* Gradient: transparent oben → dunkelgrün unten */
  .hero-home .hero-mobile-gradient {
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(30, 40, 35, 0.85) 0%,
      rgba(30, 40, 35, 0.30) 50%,
      transparent 72%
    );
  }

  /* Hero auf mobile: column damit content nach unten rutscht */
  .hero-home {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
  }

  /* Text-Overlay: unten zentriert */
  .hero-home .hero-content-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2rem 3.5rem;
    color: #fff;
  }

  .hero-home .hero-mobile-sub {
    font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.80;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }

  .hero-home .hero-mobile-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(1.95rem, 7vw, 2.55rem);
    line-height: 1.12;
    margin-bottom: 0.9rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }

  .hero-home .hero-mobile-brand {
    font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.90;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  }

  .hero-home .hero-mobile-btn {
    margin-top: 1.4rem;
    width: min(100%, 320px);
    text-align: center;
  }
}

.hero-home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: min(100%, 1200px);
  padding: 2rem 3rem;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-home .hero-subtitle {
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-home h1 {
  max-width: 720px;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5.2vw, 4.7rem);
  line-height: 1.08;
}

.hero-home .hero-desktop-text {
  max-width: 560px;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.92;
  margin: 0;
}

.hero-home .script-font {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  display: block;
  margin-top: 0.3rem;
}

.hero-home .btn {
  margin-top: 2rem;
  text-shadow: none;
}

@media (min-width: 601px) {
  .hero-home .hero-img-mobile,
  .hero-home .hero-mobile-gradient,
  .hero-home .hero-content-mobile {
    display: none;
  }
}

/* ============================================
   SECTION: Mein Wirken
   ============================================ */
.mein-wirken {
  background: #fff;
}

.mein-wirken .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.mein-wirken .img-container {
  height: 400px;
  border-radius: 8px;
}

.mein-wirken h2 {
  margin-bottom: 1.2rem;
}

.mein-wirken p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #556b60;
}

.mein-wirken .btn {
  margin-top: 1.5rem;
}

/* ============================================
   SECTION: Angebots-Universum
   ============================================ */
.angebote {
  background: #DADBD5;
}

.angebote h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.angebote .angebote-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #6b7d74;
  margin-bottom: 3rem;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
}

.angebote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.angebot-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(59,83,69,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angebot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59,83,69,0.14);
}

.angebot-card .card-img {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.angebot-card .card-phase-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  background: rgba(255, 248, 242, 0.92);
  color: #ef8d4a;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(59, 83, 69, 0.12);
  backdrop-filter: blur(4px);
}

.angebot-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.angebot-card .card-img .card-title-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  z-index: 2;
}

.angebot-card .card-title-overlay h3 {
  font-size: 1.3rem;
}

.angebot-card .card-title-overlay .script-font {
  font-size: 1.5rem;
}

.angebot-card .card-body {
  padding: 1.5rem;
}

.angebot-card .card-body p {
  font-size: 0.92rem;
  color: #6b7d74;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.angebot-card .card-body .price {
  font-size: 0.85rem;
  color: #9aada4;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  margin-bottom: 1.2rem;
}

.angebot-card .card-body .btn {
  width: 100%;
  text-align: center;
}

/* Row of 2 cards */
.angebote-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 740px;
  margin: 0 auto;
}

/* ============================================
   SECTION: Meine Vision
   ============================================ */
.vision {
  /* no container — full bleed grid */
}

.vision-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 420px;
  height: auto;
}

/* --- Linke Bildspalte --- */
.vision-img-col {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.vision-img-wrap {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
}

.vision-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.vision-overlay-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(59, 83, 69, 0.80);
  color: #fff;
  padding: 0.9rem 1.8rem;
}

.vision-overlay-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 0;
  color: #fff;
}

/* --- Rechte Textspalte --- */
.vision-text-col {
  background: #DADBD5;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-divider {
  border: none;
  border-top: 1px solid #a0a89e;
  margin-bottom: 1.2rem;
}

.vision-text-col h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.vision-text-col p {
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: #4a6055;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  text-align: left;
}

.vision-cta-text {
  margin-top: 0.5rem;
  font-size: 0.86rem !important;
  color: #3B5345 !important;
}

.vision-btn {
  margin-top: 1rem;
  align-self: flex-start;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.75rem 2rem;
  border: 2px solid #3B5345;
}

@media (max-width: 900px) {
  .vision-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .vision-img-col {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .vision-img-wrap {
    position: relative;
    top: auto; right: auto; bottom: auto; left: auto;
    inset: auto;
    height: 420px;
    flex-shrink: 0;
  }
  @supports (aspect-ratio: 1) {
    .vision-img-wrap {
      height: auto;
      aspect-ratio: 3 / 4;
    }
  }
  .vision-overlay-box {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .vision-text-col {
    padding: 3rem 2rem;
  }
}

/* ============================================
   SECTION: Über mich (Samantha)
   ============================================ */
.ueber-mich {
  background: #DADBD5;
}

.ueber-mich .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.ueber-mich .img-container {
  height: 380px;
  border-radius: 8px;
}

.ueber-mich h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.ueber-mich h2 {
  margin-bottom: 1rem;
}

.ueber-mich p {
  font-size: 1rem;
  color: #556b60;
  margin-bottom: 1rem;
}

/* ============================================
   SECTION: Podcast
   ============================================ */
.podcast {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.podcast-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
}

.podcast-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.podcast .container {
  position: relative;
  z-index: 2;
}

.podcast h2 {
  margin-bottom: 1rem;
}

.podcast .podcast-cover {
  max-width: 280px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.podcast .podcast-sub {
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.podcast-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.podcast-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-btn-spotify {
  background: #1DB954;
  color: #fff !important;
  border: none;
}
.podcast-btn-spotify:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,185,84,0.4);
}

.podcast-btn-youtube {
  background: #FF0000;
  color: #fff !important;
  border: none;
}
.podcast-btn-youtube:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,0,0,0.4);
}

/* ============================================
   SECTION: Mein Team
   ============================================ */
.team {
  background: #fff;
}

.team h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.team-member .img-container {
  height: 220px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.team-member p {
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a9e95;
}

/* ============================================
   SECTION: Social / Contact Footer
   ============================================ */
.social-section {
  background: linear-gradient(135deg, #FF914D 0%, #e87535 50%, #d06020 100%);
  color: #fff;
  text-align: center;
}

.social-section h2 {
  margin-bottom: 0.5rem;
}

.social-section .subtitle {
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.social-grid a {
  display: block;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}

.social-grid a:hover {
  background: rgba(255,255,255,0.15);
}

/* ---------- Footer ---------- */
/* ============================================
   KUNDENSTIMMEN
   ============================================ */
.kundenstimmen {
  background: #fff;
}

.kundenstimmen-subtitle {
  text-align: center;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  color: #8a9e95;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.kundenstimmen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.kundenstimmen-card {
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(50, 67, 58, 0.14);
  scroll-snap-align: start;
}

.kundenstimmen-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  background: rgba(228, 241, 237, 0.94);
  color: #4f6e64;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 3px;
  box-shadow: 0 8px 22px rgba(50, 67, 58, 0.12);
}

.kundenstimmen-feedback-img {
  width: 100%;
  display: block;
  height: auto;
}


.kundenstimmen-mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .kundenstimmen-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    grid-template-columns: none;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 0.2rem 0.8rem;
    margin: 0 -0.2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .kundenstimmen-grid::-webkit-scrollbar {
    display: none;
  }

  .kundenstimmen-card:nth-child(4) {
    grid-column: auto;
  }

  .kundenstimmen-card {
    border-radius: 18px;
  }

  .kundenstimmen-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0 0.2rem;
  }

  .kundenstimmen-mobile-hint {
    font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a9e95;
  }

  .kundenstimmen-next {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1.15rem;
    border: 1px solid rgba(255, 145, 77, 0.4);
    border-radius: 999px;
    background: rgba(255, 145, 77, 0.12);
    color: #c96f35;
    font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }

  .kundenstimmen-next:active {
    transform: scale(0.98);
  }

  .kundenstimmen-next:hover {
    background: rgba(255, 145, 77, 0.18);
    border-color: rgba(255, 145, 77, 0.6);
  }

  .kundenstimmen-next-arrow {
    font-size: 1rem;
    line-height: 1;
  }
}

/* ============================================
   KONTAKTFORMULAR
   ============================================ */
.kontakt-formular {
  background: #DADBD5;
}

.kontakt-formular-sub {
  text-align: center;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #4a6055;
  margin: 0.5rem auto 2.5rem;
  max-width: 500px;
  line-height: 1.6;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3B5345;
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: #3B5345;
  background: #fff;
  border: 1.5px solid #c8cbc4;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #FF914D;
}

.form-row textarea {
  resize: vertical;
}

/* footer-legal for Impressum + Datenschutz side by side */
.footer-legal {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #3B5345;
  color: #c8d4cd;
  padding: 1.5rem 0;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-contact {
  display: flex;
  gap: 2rem;
}

.site-footer a {
  color: #dce8e1;
}
.site-footer a:hover { color: #fff; }

.footer-impressum {
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: #dce8e1;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.footer-impressum:hover { color: #fff; }

/* Sub-page footer: centered column layout */
.footer-subpage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-social a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dce8e1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 1; color: #FF914D; }

@media (max-width: 700px) {
  .site-footer .container {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  .footer-contact {
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
  }
}

/* ============================================
   ANGEBOTS-SEITE (Jenseitskontakt)
   ============================================ */

/* Hero kleiner */
.hero-angebot {
  min-height: 70vh;
}

/* Intro-Sektion */
.angebot-intro {
  background: #fff;
}

.angebot-intro .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.angebot-intro .img-container {
  height: 340px;
  border-radius: 8px;
}

.angebot-intro .uppercase-title {
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #3B5345;
}

.angebot-intro p {
  font-size: 1rem;
  color: #6b7d74;
  margin-bottom: 0.8rem;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  line-height: 1.7;
}

/* Für dich wenn */
.fuer-dich {
  background: #3B5345;
  color: #fff;
  text-align: center;
}

.fuer-dich h2 {
  color: #fff;
  margin-bottom: 2.5rem;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: 0.03em;
}

.fuer-dich-statements {
  max-width: 720px;
  margin: 0 auto;
}

.fuer-dich-statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  padding: 1.6rem 0;
}

.fuer-dich-divider {
  width: 80px;
  height: 2px;
  background: #FF914D;
  margin: 0 auto;
}

/* Atmospheric section */
.atmospheric {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.atmospheric .bg-img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
}

.atmospheric .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 38%;
}

.atmospheric .bg-img::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.atmospheric .container {
  position: relative;
  z-index: 2;
  max-width: 650px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.atmospheric h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .atmospheric .bg-img img {
    object-position: 70% center;
  }
}

/* Ermöglicht dir */
.ermoeglicht {
  background: #dce6de;
  color: #3B5345;
  text-align: center;
}

.ermoeglicht h2 {
  margin-bottom: 3rem;
  color: #3B5345;
}

/* Timeline */
.timeline {
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
  padding-top: 1.5rem;
}

.timeline-line {
  position: absolute;
  top: 1.5rem;
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 2px;
  background: #FF914D;
  transform: translateY(19px); /* align with center of dot */
}

.timeline-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  position: relative;
  z-index: 2;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FF914D;
  border: 4px solid #dce6de;
  box-shadow: 0 0 0 2px #FF914D;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
}

.timeline-text {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  color: #3B5345;
  line-height: 1.6;
  text-align: center;
  padding: 0 0.5rem;
}

@media (max-width: 700px) {
  .timeline-track {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .timeline-line {
    display: none;
  }
  .timeline-point {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.2rem;
    text-align: left;
    padding-bottom: 2rem;
  }
  .timeline-dot {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .timeline-text {
    text-align: left;
  }
}

.ermoeglicht .description {
  max-width: 660px;
  margin: 0 auto;
  font-size: 1rem;
  color: #4a6055;
  line-height: 1.8;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
}

/* Du bekommst */
.du-bekommst {
  background: #DADBD5;
}

.du-bekommst h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bekommst-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 960px;
  margin: 0 auto;
}

.bekommst-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.8rem;
  border-top: 4px solid #FF914D;
  box-shadow: 0 2px 16px rgba(59,83,69,0.07);
}

.bekommst-card-label {
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #3B5345;
  margin-bottom: 1rem;
}

.bekommst-card-desc {
  font-size: 0.92rem;
  color: #6b7d74;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .bekommst-cards {
    grid-template-columns: 1fr !important;
    max-width: 540px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .bekommst-card {
    grid-column: auto !important;
  }
}

/* Preis-Sektion */
.preis {
  background: #3B5345;
  color: #fff;
  text-align: center;
}

.preis h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.preis p {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 550px;
  margin: 0 auto 0.8rem;
  font-family: 'TT Norms', 'Helvetica World', Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.preis .closing {
  font-style: italic;
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .mein-wirken .grid,
  .vision .grid,
  .ueber-mich .grid,
  .angebot-intro .grid {
    grid-template-columns: 1fr;
  }

  .angebote-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .angebote-grid-2 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .circles-row {
    flex-direction: column;
    align-items: center;
  }

  .bekommst-grid {
    grid-template-columns: 1fr;
  }

  .bekommst-quote {
    text-align: center;
    border-left: none;
    padding-left: 0;
    border-top: 3px solid #FF914D;
    padding-top: 1rem;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .podcast-links {
    flex-direction: column;
    align-items: center;
  }

  .site-footer .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .bekommst-item {
    grid-template-columns: 1fr;
  }
}
