@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Bold.woff2') format('woff2');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red:        #8B1A2F;
  --red-light:  #A82040;
  --red-dark:   #5C0F1F;
  --gold:       #C9A227;
  --gold-light: #E2C050;
  --gold-pale:  #FBF5E6;
  --white:      #FFFDF9;
  --dark:       #2C1810;
  --gray:       #6B5040;
  --border:     #E8D5B0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.75;
  font-size: 1.13rem;
}

/* ── Navigation ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--red);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-container {
  width: 100%;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 78px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--gold);
  font-weight: 700;
}

.logo-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.2rem;
  justify-content: center;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  justify-self: end;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Page offset ─────────────────────────────────────────── */
.page-content { padding-top: 78px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 2.5rem 2rem 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,162,39,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero > *:not(.hero-trail) {
  position: relative;
  z-index: 1;
}

.hero-ornament {
  color: var(--gold);
  font-size: 1.8rem;
  letter-spacing: 6px;
  margin-bottom: 1.2rem;
  display: block;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 2.2rem;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
  margin-left: 0.8rem;
}

.btn-outline:hover {
  background: white;
  color: var(--red);
  border-color: white;
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: white;
}

.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

/* ── Section ─────────────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 980px;
  margin: 0 auto;
}

.section-inner.is-wide {
  max-width: 1320px;
}

.section-alt {
  background: var(--gold-pale);
}

.section-dark {
  background: var(--red-dark);
}

.section-dark .section-title {
  color: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 0.4rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.section-line {
  width: 55px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 3rem;
  border-radius: 2px;
}

/* ── Cards ───────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.card {
  background: white;
  border-radius: 14px;
  padding: 2.2rem;
  box-shadow: 0 4px 24px rgba(44,24,16,0.08);
  border-top: 4px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(44,24,16,0.14);
}

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.card p {
  color: var(--gray);
  line-height: 1.75;
  font-size: 1.05rem;
}

.card-tag {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tag-gold { background: var(--gold-pale); color: var(--gold); border: 1px solid var(--gold); }
.tag-soon { background: #f5f5f5; color: #999; border: 1px solid #ddd; }

/* ── Zertifikat-Karten ──────────────────────────────────── */
.cert-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.cert-card .cert-meta {
  flex: 1;
  margin-bottom: 0;
}

.cert-card .cert-download {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--red);
  align-self: flex-start;
  transition: gap 0.3s, color 0.3s;
}

.cert-card .cert-download::after {
  content: '↓';
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.cert-card:hover .cert-download {
  color: var(--red-light);
  gap: 0.75rem;
}

.cert-card:hover .cert-download::after {
  transform: translateY(3px);
}

/* ── Quote ───────────────────────────────────────────────── */
.quote-section {
  background: var(--red);
  padding: 4rem 2rem;
  text-align: center;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: white;
  max-width: 750px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.6;
}

.quote-ornament {
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  font-family: Georgia, serif;
}

.quote-author {
  color: var(--gold);
  margin-top: 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--gold-pale);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.cta-banner p {
  color: var(--gray);
  margin-bottom: 1.8rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Über mich ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 100px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(44,24,16,0.15);
  transition: transform 0.4s ease;
}

.about-photo:hover {
  transform: scale(1.06);
}

.about-photo-img {
  width: 100%;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  object-position: top;
}

.about-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.about-title {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1.2rem;
}

/* ── Vision ──────────────────────────────────────────────── */
.vision-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  color: var(--gray);
  font-size: 1.05rem;
}

.vision-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vision-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--gray);
}

.vision-list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.vision-highlight {
  background: white;
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(44,24,16,0.08);
  border-left: 5px solid var(--gold);
  margin-bottom: 2rem;
}

.vision-highlight h3 {
  font-family: 'Playfair Display', serif;
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.vision-highlight p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.vision-highlight p:last-child { margin-bottom: 0; }

/* ── Kursangebot ─────────────────────────────────────────── */
.kurs-card {
  background: white;
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(44,24,16,0.08);
  border-left: 6px solid var(--red);
  margin-bottom: 2rem;
}

.kurs-card.coming-soon {
  border-left-color: var(--border);
  opacity: 0.7;
}

.kurs-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.kurs-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.kurs-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.kurs-card .kurs-age {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.kurs-card p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.kurs-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.kurs-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.kurs-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.kurs-detail-value {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.97rem;
}

.kurs-detail-value.price {
  color: var(--red);
  font-size: 1.1rem;
}

.kurs-note {
  background: var(--gold-pale);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray);
  border: 1px solid var(--border);
}

/* ── Kontakt ─────────────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.kontakt-intro {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.kontakt-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(44,24,16,0.08);
  margin-bottom: 1rem;
  transition: box-shadow 0.2s;
}

.kontakt-item:hover {
  box-shadow: 0 4px 24px rgba(44,24,16,0.14);
}

.kontakt-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: white;
}

.kontakt-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 0.15rem;
}

.kontakt-value {
  font-weight: 700;
  color: var(--dark);
}

.kontakt-value a {
  color: var(--red);
  text-decoration: none;
}

.kontakt-value a:hover { text-decoration: underline; }

.kontakt-box {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 14px;
  padding: 2.5rem;
  color: white;
}

.kontakt-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.kontakt-box p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
}

.kontakt-box .kontakt-detail {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.kontakt-box .detail-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.9);
}

.kontakt-box .detail-row a {
  color: var(--gold);
  text-decoration: none;
}

/* ── Vision Foto-Grid ────────────────────────────────────── */
.vision-main-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.vision-main-grid.is-large {
  grid-template-columns: 1fr 500px;
  gap: 2rem;
}

.vision-main-photo {
  position: sticky;
  top: 100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(44,24,16,0.15);
  transition: transform 0.4s ease;
}

.vision-main-photo:hover {
  transform: scale(1.06);
}

.vision-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.vision-photo-stack .vision-main-photo {
  position: static;
}

.vision-photo-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .vision-main-grid,
  .vision-main-grid.is-large {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vision-main-photo { position: static; }
  .vision-photo-stack { position: static; }
}

/* ── Willkommen (Home) ───────────────────────────────────── */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.welcome-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 5px solid var(--red-dark);
  box-shadow:
    0 16px 36px rgba(92, 15, 31, 0.28),
    0 0 25px rgba(139, 26, 47, 0.15);
  animation: welcomePhotoGlow 4s ease-in-out infinite;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

@keyframes welcomePhotoGlow {
  0%, 100% {
    box-shadow:
      0 16px 36px rgba(92, 15, 31, 0.28),
      0 0 25px rgba(139, 26, 47, 0.15);
  }
  50% {
    box-shadow:
      0 18px 44px rgba(92, 15, 31, 0.36),
      0 0 50px rgba(139, 26, 47, 0.45);
  }
}

.welcome-photo:hover {
  transform: scale(1.03);
  border-color: var(--red);
  animation: none;
  box-shadow:
    0 22px 54px rgba(92, 15, 31, 0.42),
    0 0 60px rgba(139, 26, 47, 0.55);
}

.welcome-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .welcome-text .section-title { text-align: center; }
  .welcome-text .section-line  { margin-left: auto; }
}

/* ── Impressum / Datenschutz ─────────────────────────────── */
.legal-content {
  max-width: 780px;
}

.legal-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.legal-stand {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.legal-block {
  margin-bottom: 2.2rem;
}

.legal-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--red);
  margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gold-pale);
}

.legal-block h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.legal-block p {
  color: var(--gray);
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block a {
  color: var(--red);
  text-decoration: none;
}

.legal-block a:hover { text-decoration: underline; }

.legal-list {
  list-style: none;
  margin: 0.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--gray);
  line-height: 1.75;
}

.legal-list li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.legal-divider {
  border: none;
  border-top: 2px solid var(--border);
  margin: 2.5rem 0;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.88rem;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}

footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

footer a:hover { color: var(--gold); }

/* ── Responsive: Tablet (900px) ─────────────────────────── */
@media (max-width: 900px) {
  .nav-links a {
    padding: 0.45rem 0.65rem;
    font-size: 0.88rem;
  }
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* ── Responsive: Mobile (768px) ─────────────────────────── */
@media (max-width: 768px) {
  body { font-size: 1.05rem; }

  /* Nav: 2-Spalten-Grid (Logo links, Hamburger rechts) */
  .nav-container {
    grid-template-columns: 1fr auto;
    height: 68px;
  }
  .page-content { padding-top: 68px; }

  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--red-dark);
    padding: 0.8rem 1rem;
    gap: 0.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 2rem 1.2rem 2.8rem; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.05rem; margin-bottom: 1.8rem; }
  .hero-ornament { font-size: 1.3rem; margin-bottom: 0.7rem; }

  /* Buttons im Hero & CTA-Banner stacked */
  .hero .btn,
  .cta-banner .btn {
    display: block;
    margin: 0 auto 0.75rem;
    max-width: 300px;
    text-align: center;
  }
  .btn-outline { margin-left: 0; }

  /* Sections */
  .section { padding: 2.8rem 1.2rem; }
  .section-title { font-size: 1.8rem; }
  .section-line { margin-bottom: 2rem; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .card { padding: 1.6rem; }

  /* Quote */
  .quote-section { padding: 2.8rem 1.4rem; }
  .quote-text { font-size: 1.2rem; }
  .quote-ornament { font-size: 2.2rem; }

  /* CTA Banner */
  .cta-banner { padding: 2.8rem 1.2rem; }
  .cta-banner h2 { font-size: 1.65rem; }
  .cta-banner p { margin-bottom: 1.5rem; }

  /* Über mich */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { position: static; }
  .about-photo-img {
    max-width: 340px;
    margin: 0 auto;
  }

  /* Kursangebot */
  .kurs-card { padding: 1.5rem 1.2rem; }
  .kurs-header { gap: 0.8rem; }
  .kurs-card h3 { font-size: 1.35rem; }
  .kurs-details { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Kontakt */
  .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .kontakt-box { padding: 1.8rem 1.4rem; }

  /* Vision */
  .vision-highlight { padding: 1.5rem 1.2rem; }
  .vision-intro { font-size: 1rem; }

  /* Footer */
  footer { padding: 2rem 1.2rem; font-size: 0.9rem; }
}

/* ── Responsive: Kleine Phones (420px) ──────────────────── */
@media (max-width: 420px) {
  .hero h1 { font-size: 1.75rem; }
  .logo-name { font-size: 1.2rem; }
  .logo-sub { letter-spacing: 2px; }
  .kurs-details { grid-template-columns: 1fr; }
  .kontakt-item { padding: 1rem; gap: 0.9rem; }
  .section-title { font-size: 1.6rem; }
}

/* ── Rezensionen / Kundenstimmen ─────────────────────────── */
.reviews {
  max-width: 1200px;
  margin: 0 auto;
}

.rev-viewport {
  overflow: hidden;
  padding: 0.5rem 0.3rem;
}

.rev-track {
  --visible: 3;
  --rev-gap: 1.4rem;
  display: flex;
  gap: var(--rev-gap);
  align-items: flex-start;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.rev-card {
  flex: 0 0 calc((100% - (var(--visible) - 1) * var(--rev-gap)) / var(--visible));
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 12px;
  padding: 1.7rem 1.6rem 1.5rem;
  box-shadow: 0 6px 22px rgba(92,15,31,0.22);
  border-top: 6px solid var(--gold);
  display: flex;
  flex-direction: column;
}

.rev-mark {
  font-family: Georgia, serif;
  font-size: 2.7rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.rev-text {
  color: rgba(255,255,255,0.94);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0 0 1.2rem;
}

.rev-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}

.rev-author::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.rev-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 0.6rem;
}

.rev-btn {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: white;
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s, opacity 0.25s;
}

.rev-btn:hover:not(:disabled) {
  background: var(--red);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,26,47,0.28);
}

.rev-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.rev-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.rev-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.rev-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

@media (max-width: 980px) {
  .rev-track { --visible: 2; }
}

@media (max-width: 640px) {
  .rev-track { --visible: 1; }
}
