﻿:root {
  --bg-light: #f5f3ea;
  --bg-dark: #2c332f;
  --text-light: #f3f1e8;
  --text-dark: #222222;
  --accent-light: #2e4a3a;
  --accent-dark: #c7b38a;
  --line-light: #d8d3c7;
  --line-dark: #556057;
  --max-width: 1120px;
  --gap: 2rem;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.55;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.wrap {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 243, 234, 0.94);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--line-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-light);
  white-space: nowrap;
  font-size: 0.95rem;
  text-decoration: none;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.nav-links a {
  position: relative;
  margin-right: 1.5rem;
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 400;
}

.nav-links a:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -0.9rem;
  color: var(--text-dark);
  opacity: 0.6;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-light);
}

.section {
  padding: 4rem 0 1.5rem;
}

.section--light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section__header {
  margin-bottom: 2rem;
}

.section__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
  margin-bottom: 2.8rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-btn--primary {
  background: var(--accent-light);
  color: var(--text-light);
  border: 1px solid var(--accent-light);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hero-btn--primary:hover,
.hero-btn--primary:focus-visible {
  background: #1f3529;
  border-color: #1f3529;
  transform: translateY(-1px);
}

.hero-btn--secondary {
  background: transparent;
  color: var(--accent-light);
  border: 1px solid rgba(46, 74, 58, 0.35);
}

.hero-btn--secondary:hover,
.hero-btn--secondary:focus-visible {
  background: rgba(46, 74, 58, 0.06);
  border-color: rgba(46, 74, 58, 0.55);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btn {
    min-width: 0;
    width: 100%;
    max-width: 280px;
  }
}

.section--light .section__title {
  color: var(--accent-light);
}

.section--dark .section__title {
  color: var(--text-light);
}

.divider {
  width: min(100%, 760px);
  height: 1px;
  margin-top: 1rem;
}

.section--light .divider {
  background: var(--line-light);
}

.section--dark .divider {
  background: var(--line-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap);
  align-items: start;
}

.text-block {
  max-width: 30rem;
}

.text-block p {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  font-weight: 400;
}

.section--dark .text-block p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(199, 179, 138, 0.92);
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2.8rem;
  margin-bottom: 2.8rem;
}

.link-list a {
  width: fit-content;
  font-weight: 650;
  padding-bottom: 0.14rem;
  border-bottom: 1px solid currentColor;
  transition: color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.section--light .link-list a {
  color: var(--accent-light);
  border-bottom-color: rgba(46, 74, 58, 0.55);
}

.section--dark .link-list a {
  color: var(--accent-dark);
  border-bottom-color: rgba(199, 179, 138, 0.6);
}

.section--light .link-list a:hover,
.section--light .link-list a:focus-visible {
  color: #1f3529;
  transform: translateX(2px);
}

.section--dark .link-list a:hover,
.section--dark .link-list a:focus-visible {
  color: #e6d7b8;
  transform: translateX(2px);
}

.media-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.media-card--small {
  display: flex;
  justify-content: flex-end;
}

.media-card--small img {
  max-width: 300px; /* hier steuerst du die Größe */
  width: 100%;
}

.section--light .media-card {
  background: transparent;
}

.section--dark .media-card {
  background: transparent;
}

.media-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.media-frame img,
.media-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-note {
  width: 100%;
  max-width: 560px;
  margin-top: 0.5rem;
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
  border-radius: 6px;
}

.section--light .video-note {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.7);
}

.section--dark .video-note {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 241, 232, 0.75);
}

.press-strip {
  margin-top: 4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.section--dark .press-strip {
  border-top-color: var(--line-dark);
}

.press-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-light);
  white-space: nowrap;
}

.section--dark .press-label {
  color: var(--accent-dark);
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}

.press-logo img {
  height: 22px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.press-logo img:hover {
  opacity: 1;
}

.closing-block {
  margin-top: 0.5rem;
  margin-bottom: 2rem; /* 👈 neu */
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--gap);
  align-items: center;
}

.closing-block--textonly {
  margin-top: 1rem;
  margin-bottom: 1.5rem; 
  padding-top: 1.5rem;
  display: block;
  border-top: 1px solid var(--line-light);
}

.section--dark .closing-block--textonly {
  border-top: 1px solid var(--line-dark);
}

.section--light .closing-block {
  border-top: 1px solid var(--line-light);
}

.section--dark .closing-block {
  border-top: 1px solid var(--line-dark);
}

.closing-text {
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  max-width: 32rem;
}

.closing-text p {
  margin: 0;
  font-weight: 400;
}


.quote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 700px;
  margin: 2.5rem auto;
  text-align: center;

}

.qmark {
  opacity: 0.6;
  font-style: normal;
  margin: 0 0.3rem;
}

.text-block-full {
  max-width: 720px;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.book-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.book-cover {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.section--dark .book-cover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.book-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.books-group-title {
  margin: 3rem 0 0rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.books-note {
  margin-top: 0.6rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
color: var(--accent-dark);
}

.book-title {
  margin: 0.85rem 0 0.3rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.book-sub {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--accent-dark);
}

.book-meta {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--accent-dark);

}

.book-link {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--accent-dark);
}

.book-card:hover .book-link,
.book-card:focus-visible .book-link {
  text-decoration: underline;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line-light);
  background: var(--bg-light);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-nav a {
  color: var(--text-dark);
  font-weight: 400;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--accent-light);
}

.mehrlink a {
  color: #2f5d3a;
  text-decoration: none;
  font-weight: 600;
}

.mehrlink a:hover {
  text-decoration: underline;
}

.section.reverse {
  flex-direction: row-reverse;
  align-items: flex-start;
}

.section.reverse img {
  display: block;
  margin: 0;
  position: relative;
  top: -2rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.course-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.course-cover {
  padding: 10px;
  border-radius: 14px;
  overflow: hidden;
  background: #ece7da;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  filter: contrast(1.04) saturate(0.94);
  transition: transform 0.35s ease;
}

.course-card:hover .course-cover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.course-card:hover .course-cover img {
  transform: scale(1.03);
}

.course-title {
  margin: 0.6rem 0 0.2rem;
  font-size: 1rem;
  font-weight: 600;
}

.course-price {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.75;
}

.courses-text {
  max-width: 720px;
  margin-top: 1rem;
  line-height: 1.7;
}

.courses-text p {
  margin-bottom: 1rem;
}

.course-highlight--textonly {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  max-width: 520px;
}

.section--dark .course-highlight--textonly {
  border-top: 1px solid var(--line-dark);
}

.course-highlight--textonly h3 {
  margin: 0 0 0.5rem;
}

.course-highlight--textonly p {
  margin: 0 0 1rem;
}

.course-highlight-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.garantie-box {
  border: 2px solid #3a5a40;
  background-color: #f4f1ea;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
}

.garantie-logo {
  float: right;
  width: 160px;
  margin: 0 0 10px 20px;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* BASIS FÜR ALLE */
.testimonial-card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* VIDEO */
.testimonial-card--video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* TEXT */
.testimonial-body {
  padding: 1rem 1rem 1.1rem;
}

.testimonial-name {
  margin: 0 0 0.35rem;
  font-weight: 600;
  color: var(--accent-light);
}

.testimonial-text {
  margin: 0;
  line-height: 1.6;
}

/* STORY (BREIT) */
.testimonial-card--story {
  grid-column: 1 / -1;
}

/* STORY LAYOUT */
.testimonial-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* BILDER LINKS */
.testimonial-story-images {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 1rem 1rem;
}

.testimonial-story-images img {
  width: 100%;
  aspect-ratio: 4 / 3; /* perfekt für Landschaft */
  object-fit: cover;
  border-radius: 8px;
  filter: contrast(1.05) saturate(0.95);
}

/* MOBILE */
@media (max-width: 860px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card--story {
    grid-column: auto;
  }

  .testimonial-story-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-story-images {
    padding: 1rem 1rem 0;
  }
}


/* Bilder nebeneinander */
.testimonial-story-images--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem 1rem 0;
}

/* Bilder */
.testimonial-story-images--row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  filter: contrast(1.05) saturate(0.95);
}

/* Text etwas luftiger */
.testimonial-card--story .testimonial-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.2rem 1rem 1.4rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent-light);
  border-bottom: 1px solid rgba(46, 74, 58, 0.5);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
}

.text-link:hover {
  color: #1f3529;
  border-bottom-color: currentColor;
}

.accordion {
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 0;
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

.section--light .accordion summary {
  color: var(--accent-light);
}

.section--dark .accordion summary {
  color: var(--accent-dark);
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "→ weiterlesen";
  display: block;
  margin-top: 0.2rem;
  font-weight: 400;
  opacity: 0.7;
  font-size: 1.2rem;
}

.accordion summary:hover::after {
  opacity: 1;
}

.accordion[open] summary::after {
  content: "→ schließen";
}

.accordion-content {
  margin-top: 0.75rem;
}

.section--light .accordion-content {
  color: var(--text-dark);
}

.section--dark .accordion-content {
  color: var(--accent-dark);
}

.accordion-content p {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  font-weight: 400;
}

.accordion summary span {
  display: block;
  margin-bottom: 0.9rem;
}

.accordion summary span:last-child {
  margin-bottom: 0;
}


.about-highlight {
  margin-top: 2.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
  max-width: 42ch;
}

.section--dark .about-highlight {
  border-top: 1px solid var(--line-dark);
  color: var(--accent-dark);
}

.mini-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.mini-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 860px) {
  .hero-grid,
  .closing-block {
    grid-template-columns: 1fr;
  }

  .media-card {
    order: 2;
  }

  .text-block {
    order: 1;
  }

  .closing-text,
  .mini-card {
    max-width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .nav {
    align-items: flex-start;
    padding: 0.85rem 0;
    flex-direction: column;
  }

  .nav-links {
    gap: 0.75rem 1rem;
  }

  .section__header {
    margin-bottom: 1.5rem;
  }

  .play-badge {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    font-size: 1.5rem;
  }

  .press-logo {
    height: 26px;
  }

  .press-logos {
    gap: 0.9rem;
  }
}


/* Kontaktformular – an dein Seitendesign angepasst */
/* Kontaktformular – flach & integriert ins Design */
.form.form--complex {
  max-width: 680px;
  width: 80%;
  margin: 0 auto;
  padding: 0.9rem 1rem 1rem;
  background: #ece9df;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);

  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

/* Labels */
.form.form--complex label {
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-top: 0.1rem;
  margin-bottom: -0.1rem;
  color: #2f4036;
}

/* Inputs */
.form.form--complex input,
.form.form--complex textarea {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  line-height: 1.3;
  padding: 0.65rem 0.85rem;

  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);

  transition: border-color 0.15s ease,
              box-shadow 0.15s ease,
              background 0.15s ease;
}

/* Textarea bewusst flacher */
.form.form--complex textarea {
  resize: vertical;
  min-height: 90px;
}

/* Placeholder */
.form.form--complex input::placeholder,
.form.form--complex textarea::placeholder {
  color: rgba(34, 34, 34, 0.55);
}

/* Fokus */
.form.form--complex input:focus,
.form.form--complex textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(46, 74, 58, 0.10);
}

/* Button */
.form.form--complex .submitbtn {
  appearance: none;
  border: none;
  padding: 0.7rem 1.1rem;
  margin-top: 0.25rem;
  border-radius: 999px;

  background-color: var(--accent-light);
  color: var(--text-light);

  font: inherit;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;

  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
  transition: all 0.18s ease;
}

.form.form--complex .submitbtn:hover {
  background-color: #1f3529;
  transform: translateY(-1px);
}

.form.form--complex .submitbtn:active {
  transform: translateY(0);
}