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

:root {
  --gold:       #c8a84b;
  --gold-dark:  #9e7e2a;
  --gold-light: #e8d4a0;
  --gold-pale:  #fdf8ef;
  --cream:      #f9f5ef;
  --beige:      #ede8df;
  --brown:      #6b5335;
  --text:       #2c2317;
  --text-mid:   #5a4f42;
  --text-light: #9a9088;
  --white:      #ffffff;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Lato', system-ui, sans-serif;
  --radius:     4px;
  --shadow:     0 8px 40px rgba(100,80,40,0.12);
  --t:          0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.75; background: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }

/* === Eyebrow / Labels === */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-eyebrow.center { text-align: center; }
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--brown);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}
.section-title.light { color: var(--white); }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t);
  border: 1.5px solid transparent;
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(160,120,40,0.3);
}
.btn-outline-gold {
  background: transparent;
  color: var(--brown);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-full { width: 100%; display: block; }

/* === Header / Nav === */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,168,75,0.15);
  transition: var(--t);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img { height: 58px; width: auto; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--brown);
  transition: var(--t);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(20,12,5,0.15) 0%,
    rgba(20,12,5,0.32) 50%,
    rgba(20,12,5,0.42) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 40px 32px;
  text-shadow: 0 1px 12px rgba(20,12,5,0.45);
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 1.2rem;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.8; }
}

/* === Kraft Section === */
.kraft-section {
  padding: 96px 0;
  background: var(--cream);
}
.kraft-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  font-weight: 300;
}

/* === Das Wirken === */
.wirken-section {
  padding: 96px 0;
  background: var(--white);
}
.wirken-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wirken-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.wirken-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1rem;
}
.wirken-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}
.wirken-tags span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border: 1px solid var(--gold-light);
  color: var(--brown);
  background: var(--gold-pale);
}
.wirken-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

/* === Angebot === */
.angebot-section {
  padding: 96px 0;
  background: var(--cream);
}
.angebot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.angebot-card {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--t);
}
.angebot-card:hover { transform: translateY(-6px); }
.angebot-img-wrap { overflow: hidden; height: 220px; }
.angebot-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.angebot-card:hover .angebot-img-wrap img { transform: scale(1.05); }
.angebot-body { padding: 28px 24px; }
.angebot-body h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.angebot-body p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; }

/* === Sprachnachricht === */
.sprachnachricht {
  max-width: 560px;
  margin: 40px auto;
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid var(--gold-light);
  box-shadow: var(--shadow);
}
.sprachnachricht-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.sprachnachricht audio { width: 100%; }

/* === Individuelles Coaching === */
.coaching-section {
  padding: 96px 0;
  background: var(--white);
}
.coaching-intro,
.geeignet-intro,
.pakete-intro {
  max-width: 720px;
  margin: -24px auto 48px;
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  font-weight: 300;
}
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.coaching-block {
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--gold-light);
}
.coaching-block h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.coaching-block p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; }
.coaching-vision {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}
.coaching-vision strong { color: var(--brown); font-weight: 600; }

/* === Für wen geeignet === */
.geeignet-section {
  padding: 96px 0;
  background: var(--gold-pale);
}
.geeignet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}
.geeignet-box {
  background: var(--white);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.geeignet-box h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.geeignet-box ul { list-style: none; }
.geeignet-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--beige);
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.7;
}
.geeignet-box li:last-child { border-bottom: none; }
.geeignet-ja { border-top: 3px solid var(--gold); }
.geeignet-nein { border-top: 3px solid var(--beige); }
.cross {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === Zitat === */
.zitat-section {
  padding: 96px 0;
  background: var(--brown);
  color: rgba(255,255,255,0.85);
}
.zitat-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.zitat-section p {
  max-width: 680px;
  margin: 0 auto 16px;
  font-weight: 300;
  line-height: 1.75;
}
.zitat-section blockquote {
  max-width: 620px;
  margin: 36px auto;
  padding: 24px 32px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.06);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.6;
  text-align: left;
}
.zitat-section cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-style: normal;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* === Pakete === */
.pakete-section {
  padding: 96px 0;
  background: var(--cream);
}
.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
.paket-card {
  background: var(--white);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform var(--t);
}
.paket-card:hover { transform: translateY(-6px); }
.paket-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  padding: 4px 12px;
  margin-bottom: 16px;
}
.paket-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.paket-detail {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.paket-card > p:last-child { color: var(--text-mid); font-size: 0.93rem; line-height: 1.75; }

/* === Klingt das bekannt? === */
.bekannt-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.bekannt-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(0px);
}
.bekannt-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
  z-index: 1;
}
.bekannt-section .container { position: relative; z-index: 2; }
.bekannt-box {
  max-width: 680px;
  margin: 0 auto;
}
.bekannt-box h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.bekannt-list {
  list-style: none;
  margin-bottom: 32px;
}
.bekannt-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige);
  color: var(--text-mid);
  font-size: 1rem;
}
.bekannt-list li:last-child { border-bottom: none; }
.check {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.bekannt-answer {
  color: var(--text-mid);
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.bekannt-answer strong { color: var(--brown); }

/* === Über mich === */
.ueber-section {
  padding: 96px 0;
  background: var(--gold-pale);
}
.ueber-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ueber-image img {
  width: 100%;
  max-width: 480px;
}
.ueber-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.ueber-subtitle {
  font-size: 1rem;
  color: var(--gold-dark);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.ueber-text p { color: var(--text-mid); margin-bottom: 16px; }
.ueber-text .btn { margin-top: 12px; }

/* === Prozess === */
.prozess-section {
  padding: 96px 0;
  background: var(--white);
}
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.prozess-step { text-align: center; padding: 16px; }
.prozess-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}
.prozess-step h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 10px;
}
.prozess-step p { color: var(--text-light); font-size: 0.92rem; }

/* === FAQ === */
.faq-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.faq-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,8,3,0.72);
  z-index: 1;
}
.faq-section .container { position: relative; z-index: 2; }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,168,75,0.25);
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--t);
}
.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(--t);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: rgba(200,168,75,0.1); }
.faq-item[open] summary { color: var(--white); }
.faq-item p {
  padding: 0 24px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* === Testimonials === */
.testimonials-section {
  padding: 96px 0;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial {
  background: var(--white);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-icon {
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
}
.testimonial p {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === Meditation / Freebie === */
.meditation-section {
  padding: 96px 0;
  background: var(--white);
}
.meditation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.meditation-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}
.meditation-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.meditation-text p {
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.75;
}

/* === Kontakt === */
.kontakt-section {
  padding: 96px 0;
  background: var(--gold-pale);
}
.kontakt-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.kontakt-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.kontakt-text p { color: var(--text-mid); margin-bottom: 32px; }
.kontakt-details { display: flex; flex-direction: column; gap: 14px; }
.kontakt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 0.95rem;
  transition: color var(--t);
}
.kontakt-item:hover { color: var(--gold); }

.kontakt-mail-card {
  background: var(--white);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.kontakt-mail-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.kontakt-mail-card > p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; margin-bottom: 28px; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.form-success {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  color: var(--brown);
  padding: 20px 24px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

/* === Footer === */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo { height: 64px; width: auto; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.78rem; }

/* === Legal Pages === */
.legal-page {
  padding: 120px 0 96px;
  min-height: 70vh;
  background: var(--cream);
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 56px 64px;
  box-shadow: var(--shadow);
}
.legal-content h1 {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 20px;
}
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  margin: 32px 0 12px;
}
.legal-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-mid);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal-content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 8px 0 16px 20px;
}
.legal-content ul li { margin-bottom: 6px; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.legal-content a:hover { color: var(--gold); }
.legal-content section { margin-bottom: 8px; }
.legal-quote {
  margin: 40px 0 !important;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
}
.legal-quote blockquote {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brown);
  font-weight: 300;
  line-height: 1.6;
}
.legal-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}
.back-link {
  margin-top: 40px !important;
  padding-top: 24px;
  border-top: 1px solid var(--beige);
}
.back-link a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark) !important;
}

@media (max-width: 640px) {
  .legal-content { padding: 32px 24px; }
}

/* === Responsive === */
@media (max-width: 900px) {
  .angebot-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .coaching-grid { grid-template-columns: 1fr; gap: 32px; }
  .geeignet-grid { grid-template-columns: 1fr; max-width: 560px; }
  .pakete-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .prozess-grid { grid-template-columns: repeat(2, 1fr); }
  .wirken-container,
  .ueber-container,
  .meditation-container,
  .kontakt-container { grid-template-columns: 1fr; gap: 48px; }
  .wirken-image img { height: 360px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-top: 1px solid var(--beige);
  }
  .nav-links.open { display: flex; }
  .prozess-grid { grid-template-columns: 1fr 1fr; }
  .hero-logo { height: 80px; }
}

@media (max-width: 400px) {
  .prozess-grid { grid-template-columns: 1fr; }
}
