
  :root {
    --navy: #18343D;
    --navy-light: #25505C;
    --gold: #B79A6B;
    --gold-light: #D2BB94;
    --cream: #F3EFE8;
    --warm-white: #FCFAF6;
    --text: #1F2E33;
    --text-muted: #667175;
    --border: #E2D8CA;
    --radius: 4px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* TYPOGRAPHY */
  h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
  h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

  .heading-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72em;
    font-weight: 500;
    color: var(--gold);
  }

  p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }

  a { color: inherit; text-decoration: none; }

  /* UTILITIES */
  .container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
  .section { padding: 6rem 0; }
  .section-sm { padding: 4rem 0; }

  .label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
  }

  .btn-primary {
    background: var(--navy);
    color: white;
  }
  .btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(28,43,58,0.2);
  }

  .btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
  }
  .btn-outline:hover {
    background: var(--navy);
    color: white;
  }

  .btn-gold {
    background: var(--gold);
    color: white;
  }
  .btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(184,135,58,0.3);
  }

  .mt-2 { margin-top: 2rem; }

  .hero-content-offset {
    padding-left: max(2rem, calc((100vw - 1100px) / 2 + 2rem));
  }

  .hero-stat-percent { font-size: 1.2rem; }

  .hero-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 0;
  }

  .hero-photo-icon { font-size: 2rem; }

  /* ==================== NAV ==================== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(252,250,246,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    padding: 0 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .nav-logo-img {
    display: block;
    width: auto;
    height: 46px;
    object-fit: contain;
  }

  .nav-logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: none;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--navy); }

  .nav-cta {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    background: var(--gold);
    color: white;
    border-radius: var(--radius);
    transition: all 0.2s;
  }
  .nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  /* ==================== HERO ==================== */
  .hero {
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    background: var(--cream);
    position: relative;
    overflow: hidden;
    padding-top: 76px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 2rem 5rem 2rem;
    max-width: 600px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2rem;
    width: fit-content;
  }

  .hero h1 {
    color: var(--navy);
    font-size: clamp(2.15rem, 4.4vw, 3.5rem);
    margin-bottom: 1.5rem;
    max-width: 660px;
  }

  .hero h1 span {
    display: block;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--gold);
  }

  .hero-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
  }

  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
  }

  .hero-visual {
    position: relative;
    overflow: hidden;
  }

  .hero-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.7;
    mix-blend-mode: luminosity;
  }

  .hero-img-portrait {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% top;
    opacity: 1;
    mix-blend-mode: normal;
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 68%,
      rgba(24, 52, 61, 0.72) 88%,
      var(--navy) 100%
    );
    z-index: 1;
  }

  .hero-visual-text {
    position: absolute;
    bottom: 7rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
    color: white;
  }

  .hero-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-style: italic;
    opacity: 0.96;
    line-height: 1.22;
    max-width: 620px;
  }

  .hero-quote-sub {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    opacity: 0.88;
    margin-top: 0.85rem;
    line-height: 1.5;
    max-width: 620px;
  }

  /* ==================== CLIENT LOGOS ==================== */
  .clients {
    background: linear-gradient(180deg, #f8f5ef 0%, #f2ece3 100%);
    border-top: 1px solid #e7ddd0;
    border-bottom: 1px solid #e7ddd0;
  }

  .clients-head {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 2.2rem;
  }

  .clients-head h2 {
    margin-bottom: 0.8rem;
    color: #26393f;
  }

  .clients-head p {
    color: #6d7472;
    font-size: 0.95rem;
  }

  .clients-subtitle {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6d736f;
    margin: 0 0 0.9rem;
  }

  .hotel-title {
    margin-top: 1.9rem;
  }

  .logo-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.1rem;
  }

  .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 clamp(150px, 16vw, 220px);
    min-height: 86px;
    padding: 0.35rem 0.55rem;
    overflow: hidden;
  }

  .brand-logo {
    --logo-scale: 1;
    --logo-y: 0px;
    height: 46px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(1) saturate(0) contrast(1.08);
    opacity: 0.95;
    transform: translateY(var(--logo-y)) scale(var(--logo-scale));
    transform-origin: center center;
  }

  /* Visual normalization per logo (compensates differing source paddings) */
  .logo-fix-interspar { --logo-scale: 2.05; }
  .logo-fix-anton { --logo-scale: 2.05; }
  .logo-fix-unito { --logo-scale: 1.7; }
  .logo-fix-binder { --logo-scale: 1.85; }
  .logo-fix-wuestenrot { --logo-scale: 2.25; }
  .logo-fix-steigenberger { --logo-scale: 1.75; }
  .logo-fix-imperial { --logo-scale: 1.75; }
  .logo-fix-sofitel { --logo-scale: 1.65; }
  .logo-fix-sacher { --logo-scale: 1.6; }
  .logo-fix-hilton { --logo-scale: 1.2; }
  .logo-fix-marriott { --logo-scale: 1.25; }
  .logo-fix-meridien { --logo-scale: 1.65; }
  .logo-fix-spar { --logo-scale: 1.12; }
  .logo-fix-landmarkt { --logo-scale: 1.1; }
  .logo-fix-bellaflora { --logo-scale: 0.5; }
  .logo-fix-bundesforste { --logo-scale: 0.9; }
  .logo-fix-ikea { --logo-scale: 1.25; }
  .logo-fix-hervis { --logo-scale: 1.6; }
  .logo-fix-kika { --logo-scale: 1.55; }
  .logo-fix-klenk { --logo-scale: 1.25; }
  .logo-fix-komptech { --logo-scale: 1.25; }
  .logo-fix-kufgem { --logo-scale: 1.25; }
  .logo-fix-arcotel { --logo-scale: 1.4; }
  .logo-fix-nh { --logo-scale: 1.5; }

  /* ==================== COMPETENCE ==================== */
  .competence {
    background: var(--warm-white);
  }

  .competence-head {
    max-width: 760px;
    margin-bottom: 2rem;
  }

  .competence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .competence-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.2rem 1.1rem;
  }

  .competence-card h3 {
    font-size: 1.02rem;
    color: var(--navy);
    margin-bottom: 0.45rem;
  }

  .competence-card p {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  /* ==================== STRUCTURE ==================== */
  .structure {
    background: var(--cream);
  }

  .structure-head {
    max-width: 760px;
    margin-bottom: 1.8rem;
  }

  .structure-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .structure-item {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .structure-item strong {
    font-size: 1rem;
    color: var(--navy);
    letter-spacing: 0.02em;
  }

  .structure-item span {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* ==================== MODULE DETAIL ==================== */
  .module-detail {
    background: var(--warm-white);
    padding-top: 1rem;
  }

  .module-accordion {
    display: grid;
    gap: 0.8rem;
  }

  .module-accordion-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--cream);
    overflow: hidden;
  }

  .module-accordion-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    padding: 1rem 1.1rem;
    cursor: pointer;
  }

  .module-accordion-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  }

  .module-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.1rem;
  }

  .module-accordion-panel ul {
    padding: 0 0 1rem 1rem;
    margin: 0;
  }

  .module-accordion-panel li {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.35rem;
  }

  .module-accordion-item.open .module-accordion-panel {
    max-height: 900px;
    padding-top: 0.1rem;
  }

  .module-accordion-item.open .module-accordion-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: white;
    border-color: var(--gold);
  }

  .module-detail-media {
    margin-top: 1.2rem;
    width: min(720px, 100%);
    margin-left: auto;
    margin-right: auto;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(38,57,63,0.14);
    background: linear-gradient(180deg, #fffdfa 0%, #f6f0e6 100%);
    aspect-ratio: 16 / 10;
    box-shadow: 0 18px 48px rgba(18, 43, 52, 0.10);
  }

  .module-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    opacity: 0.98;
  }

  /* ==================== EXTRAS ==================== */
  .extras {
    background: var(--warm-white);
    padding-top: 0;
  }

  .extras-box {
    border: 1px dashed var(--border);
    border-radius: 8px;
    background: #fffdfa;
    padding: 1.5rem;
  }

  .extras-box h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
  }

  .extras-box p {
    max-width: 860px;
  }

  /* ==================== KURS ==================== */
  .kurs { background: var(--warm-white); }

  .kurs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .kurs-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2rem;
  }

  .kurs-fact {
    background: var(--warm-white);
    padding: 1.5rem;
  }

  .kurs-fact-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .kurs-fact-num span {
    font-size: 1rem;
    color: var(--gold);
  }

  .kurs-fact-text {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .kurs-inhalte { margin-top: 2rem; }

  .kurs-inhalt-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }

  .kurs-inhalt-item:last-child { border-bottom: none; }

  .kurs-icon {
    width: 32px;
    height: 32px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--gold);
  }

  .kurs-inhalt-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
  }

  .kurs-inhalt-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* ==================== ONLINE ==================== */
  .online-section {
    background: var(--cream);
    padding: 5rem 0;
  }

  .online-card {
    background: var(--navy);
    border-radius: 8px;
    overflow: hidden;
    display: block;
  }

  .online-content {
    padding: 3.5rem;
    color: white;
  }

  .online-content .label { color: var(--gold-light); }
  .online-content h2 { color: white; margin-bottom: 1rem; }
  .online-content p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }

  .format-buttons {
    display: inline-flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .format-button {
    border: 1px solid rgba(255,255,255,0.22);
    background: transparent;
    color: rgba(255,255,255,0.9);
    border-radius: 999px;
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
    cursor: default;
  }

  .format-button.active {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
  }

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

  .format-offer {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 1.2rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .format-offer.active {
    border-color: var(--gold);
    box-shadow: inset 0 0 0 1px rgba(183,154,107,0.35);
  }

  .format-offer h3 {
    color: white;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
  }

  .format-offer p {
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
  }

  .format-card-action {
    width: fit-content;
    margin-top: 1.2rem;
  }

  .format-offer .format-card-action {
    border-color: rgba(255,255,255,0.38);
  }

  .format-offer .btn-outline {
    color: white;
  }

  .format-offer .btn-outline:hover {
    background: white;
    color: var(--navy);
  }

  .online-points {
    list-style: none;
    margin-bottom: 0;
  }

  .online-points li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
  }

  .online-points li::before {
    content: '✓';
    color: var(--gold-light);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.05rem;
  }


  /* ==================== ABOUT ==================== */
  .about {
    background: var(--warm-white);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .about-content {
    order: 1;
  }

  .about-portrait {
    position: relative;
    order: 2;
  }

  .portrait-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
  }

  .about-photo-icon { font-size: 3rem; }
  .about-photo-caption { font-size: 0.7rem; opacity: 0.6; }

  .portrait-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--gold);
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(184,135,58,0.3);
    text-align: center;
  }

  .portrait-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }

  .portrait-badge-text {
    font-size: 0.7rem;
    opacity: 0.85;
  }

  .about-content h2 { margin-bottom: 1.5rem; }
  .about-content p { margin-bottom: 1.5rem; }

  .about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  .about-highlight {
    background: var(--cream);
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
  }

  .about-highlight-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
  }

  .about-highlight-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* ==================== TESTIMONIALS ==================== */
  .testimonials {
    background: var(--cream);
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
  }

  .testimonial-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
  }

  .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .testimonial-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
  }

  .testimonial-company {
    font-size: 0.75rem;
    color: var(--gold);
  }

  .testimonial-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 560px) auto;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .testimonial-carousel-viewport {
    min-height: 300px;
    display: grid;
  }

  .testimonial-carousel .testimonial-card {
    padding: 1.8rem 2rem;
  }

  .testimonial-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: translateX(18px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
  }

  .testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }

  .testimonial-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--warm-white);
    color: var(--navy);
    font-size: 2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .testimonial-carousel-btn:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-1px);
  }

  .testimonial-carousel-dots {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .testimonial-carousel-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    padding: 0;
  }

  .testimonial-carousel-dots button.active {
    background: var(--gold);
  }

  /* ==================== FAQ ==================== */
  .faq { background: var(--warm-white); }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .faq-intro {
    text-align: center;
    margin-bottom: 3rem;
  }

  .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    background: var(--warm-white);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    user-select: none;
    gap: 1rem;
    width: 100%;
    border: 0;
    text-align: left;
  }

  .faq-question:hover { background: var(--cream); }

  .faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-answer p {
    font-size: 0.87rem;
    padding-bottom: 1.2rem;
  }

  .faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 0;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: white;
    border-color: var(--gold);
  }

  .faq-question:focus-visible,
  .form-group input:focus-visible,
  .form-group select:focus-visible,
  .form-group textarea:focus-visible,
  .form-submit:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
  }

  /* ==================== CTA / KONTAKT ==================== */
  .kontakt {
    background: var(--navy);
    padding: 6rem 0;
  }

  .kontakt-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .kontakt-content { color: white; }

  .kontakt-content .label { color: var(--gold-light); }
  .kontakt-content h2 { color: white; margin-bottom: 1rem; }
  .kontakt-content p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

  .kontakt-info { margin-top: 3rem; }

  .kontakt-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .kontakt-info-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
  }

  .kontakt-info-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
  }

  .kontakt-info-value {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
  }

  /* FORM */
  .kontakt-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 2.5rem;
  }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.5rem;
  }

  .form-group { margin-bottom: 1.2rem; }

  .form-group label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input,
  .form-group select {
    min-height: 46px;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--gold-light);
  }

  .form-group select option { background: var(--navy); color: white; }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-submit { width: 100%; }

  .form-feedback {
    display: none;
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 8px;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.45;
    color: white;
  }

  .form-feedback.show { display: block; }

  .form-feedback.is-success {
    background: rgba(74, 128, 87, 0.26);
    border: 1px solid rgba(148, 214, 160, 0.55);
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  }

  .form-feedback.is-error {
    background: rgba(150, 58, 58, 0.28);
    border: 1px solid rgba(230, 150, 150, 0.55);
  }

  /* ==================== FOOTER ==================== */
  footer {
    background: #111a24;
    padding: 2rem;
    text-align: center;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
  }

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

  .footer-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
  }

  .footer-links a:hover { color: rgba(255,255,255,0.6); }

  /* ==================== LEGAL PAGES ==================== */
  .legal-hero {
    background: var(--cream);
  }

  .legal-section {
    background: var(--warm-white);
  }

  .legal-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
  }

  .legal-toc {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 0.75rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--cream);
  }

  .legal-toc a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.2s;
  }

  .legal-toc a:hover {
    color: var(--navy);
  }

  .legal-content {
    display: grid;
    gap: 2.25rem;
    max-width: 780px;
  }

  .legal-block {
    padding-bottom: 2.25rem;
    border-bottom: 1px solid var(--border);
  }

  .legal-block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .legal-block h2 {
    color: var(--navy);
    font-size: clamp(1.55rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
  }

  .legal-block h3 {
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    margin: 1.4rem 0 0.35rem;
  }

  .legal-block p + p {
    margin-top: 0.85rem;
  }

  .legal-block a {
    color: var(--navy);
    border-bottom: 1px solid rgba(183,154,107,0.55);
  }

  .legal-data {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
  }

  .legal-data div {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
  }

  .legal-data dt {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .legal-data dd {
    color: var(--text);
    line-height: 1.65;
  }

  /* ==================== ANIMATIONS ==================== */
  @keyframes drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content > * {
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
  }

  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.5s; }

  .portrait-badge {
    animation: drift 6s ease-in-out infinite;
  }

  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .testimonial-carousel .testimonial-slide.reveal-on-scroll,
  .testimonial-carousel .testimonial-slide.reveal-on-scroll.is-visible {
    opacity: 0;
    visibility: hidden;
    transform: translateX(18px);
  }

  .testimonial-carousel .testimonial-slide.active.reveal-on-scroll,
  .testimonial-carousel .testimonial-slide.active.reveal-on-scroll.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .testimonial-card,
  .about-highlight,
  .format-offer,
  .faq-item,
  .module-accordion-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .testimonial-card:hover,
  .about-highlight:hover,
  .format-offer:hover,
  .faq-item:hover,
  .module-accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(24,52,61,0.08);
  }

  .brand {
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .brand:hover {
    transform: translateY(-2px);
    opacity: 1;
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-content > *,
    .hero-badge,
    .portrait-badge {
      animation: none !important;
      opacity: 1;
    }
    .reveal-on-scroll,
    .testimonial-card,
    .about-highlight,
    .format-offer,
    .format-standalone-card,
    .faq-item,
    .module-accordion-item,
    .brand {
      transition: none !important;
      transform: none !important;
      opacity: 1 !important;
    }
    .logo-ticker-track {
      animation: none !important;
    }
  }

  /* ==================== NAV RIGHT + HAMBURGER ==================== */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 1px;
  }

  /* ==================== NAV ACTIVE STATE ==================== */
  .nav-links a.active {
    color: var(--navy);
    font-weight: 600;
    position: relative;
  }

  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
  }

  /* ==================== SECTION DIVIDER ==================== */
  .section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    opacity: 0.35;
    margin: 0 auto;
    max-width: 600px;
  }

  /* ==================== PAGE HERO (Unterseiten) ==================== */
  .page-hero {
    background: var(--cream);
    padding: 8rem 0 4rem;
    border-bottom: 1px solid var(--border);
  }

  .page-hero h1 {
    max-width: 760px;
    color: var(--navy);
    margin-bottom: 1rem;
  }

  .page-hero p {
    max-width: 600px;
    font-size: 1.05rem;
  }

  /* ==================== LOGO TICKER ==================== */
  .logo-ticker-wrap {
    overflow: hidden;
    position: relative;
    padding: 1.2rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .logo-ticker-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: ticker-scroll 42s linear infinite;
  }

  .logo-ticker-track:hover {
    animation-play-state: paused;
  }

  .logo-ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 52px;
    padding: 0 0.5rem;
  }

  .logo-ticker-item img {
    --logo-y: 0px;
    height: 40px;
    width: auto;
    max-width: 132px;
    object-fit: contain;
    filter: grayscale(1) saturate(0) contrast(1.08);
    opacity: 0.85;
    transform: translateY(var(--logo-y)) scale(var(--logo-scale, 1));
    transform-origin: center center;
    transition: opacity 0.2s ease;
  }

  .logo-ticker-item img:hover { opacity: 1; }

  .brand-logo.logo-fix-spar,
  .logo-ticker-item img.logo-fix-spar { --logo-scale: 1.45; }

  .brand-logo.logo-fix-landmarkt,
  .logo-ticker-item img.logo-fix-landmarkt { --logo-scale: 1.05; }

  .brand-logo.logo-fix-anton,
  .logo-ticker-item img.logo-fix-anton { --logo-scale: 2.65; }

  .brand-logo.logo-fix-bellaflora,
  .logo-ticker-item img.logo-fix-bellaflora { --logo-scale: 0.56; }

  .brand-logo.logo-fix-hilton,
  .logo-ticker-item img.logo-fix-hilton {
    --logo-scale: 1.28;
    --logo-y: 2px;
  }

  .brand-logo.logo-fix-marriott,
  .logo-ticker-item img.logo-fix-marriott {
    --logo-scale: 1.35;
    --logo-y: 5px;
  }

  @keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ==================== KURS TEASER (index) ==================== */
  .kurs-teaser { background: var(--warm-white); }

  .kurs-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .kurs-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    margin-top: 2rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }

  .kurs-teaser-link:hover { border-bottom-color: var(--gold); }

  .kurs-more-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 0.8rem 0;
  }

  /* ==================== FORMAT STANDALONE CARDS ==================== */
  .format-standalone { background: var(--warm-white); }

  .format-standalone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .format-standalone-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    border-top: 3px solid var(--gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .format-standalone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(24,52,61,0.10);
  }

  .format-standalone-card h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
  }

  .format-standalone-card > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }

  .format-standalone-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(183,154,107,0.1);
    border: 1px solid rgba(183,154,107,0.25);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1.2rem;
    width: fit-content;
  }

  .format-standalone-points {
    list-style: none;
    margin-bottom: 0;
  }

  .format-standalone-points li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
  }

  .format-standalone-points li:last-child { border-bottom: none; }

  .format-standalone-points li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.05rem;
  }

  .format-standalone-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(183,154,107,0.07);
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: var(--text-muted);
    border-left: 2px solid var(--gold);
  }

  /* ==================== COURSE DATES / BOOKING ==================== */
  .course-dates-section {
    background: var(--cream);
  }

  .course-dates-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
  }

  .course-dates-head h2 {
    color: var(--navy);
  }

  .course-date-list {
    display: grid;
    gap: 1rem;
  }

  .course-date-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
    gap: 1.2rem;
    align-items: stretch;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 12px 30px rgba(24,52,61,0.06);
  }

  .course-date-main {
    padding: 0.6rem;
  }

  .course-date-kicker {
    display: inline-flex;
    width: fit-content;
    color: var(--gold);
    border: 1px solid rgba(183,154,107,0.3);
    border-radius: 999px;
    padding: 0.22rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  .course-date-card h3 {
    color: var(--navy);
    margin-bottom: 0.4rem;
  }

  .course-date-card p {
    font-size: 0.9rem;
  }

  .course-schedule {
    margin-top: 0.95rem;
    border: 1px solid rgba(183,154,107,0.28);
    border-radius: 6px;
    background: rgba(183,154,107,0.07);
    overflow: hidden;
  }

  .course-schedule summary {
    cursor: pointer;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
    padding: 0.72rem 0.85rem;
  }

  .course-schedule summary::marker {
    color: var(--gold);
  }

  .course-schedule ul {
    display: grid;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0 0.85rem 0.85rem;
  }

  .course-schedule li {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .course-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.55rem;
    list-style: none;
    margin-top: 1rem;
  }

  .course-benefits li {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    color: var(--text);
    background: rgba(183,154,107,0.08);
    border: 1px solid rgba(183,154,107,0.22);
    border-radius: 999px;
    padding: 0.28rem 0.62rem;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .course-benefits span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
  }

  .course-date-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    background: rgba(243,239,232,0.75);
    border-radius: 6px;
    padding: 1rem;
  }

  .course-date-meta span,
  .booking-summary span {
    display: block;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
  }

  .course-date-meta strong,
  .booking-summary strong {
    display: block;
    color: var(--navy);
    font-size: 0.94rem;
  }

  .course-price-before {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.2;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(102,113,117,0.8);
    margin-bottom: 0.12rem;
  }

  .course-price strong {
    font-size: 1.08rem;
  }

  .course-date-meta small,
  .booking-summary small {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.3;
    margin-top: 0.1rem;
  }

  .course-price-gross {
    color: var(--gold);
  }

  .course-date-meta .btn {
    justify-content: center;
    width: 100%;
  }

  .btn.is-disabled {
    pointer-events: none;
    opacity: 0.62;
  }

  .course-date-loading,
  .course-date-empty {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.2rem;
  }

  .booking-page {
    background: var(--cream);
  }

  .booking-shell {
    padding: 8rem 1.5rem 4rem;
  }

  .booking-panel {
    width: min(100%, 860px);
    margin: 0 auto;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: clamp(1.4rem, 4vw, 2.4rem);
    box-shadow: 0 18px 42px rgba(24,52,61,0.08);
  }

  .booking-panel h1 {
    color: var(--navy);
    margin-bottom: 1.2rem;
  }

  .booking-back {
    color: var(--gold);
    display: inline-flex;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .booking-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin: 1.4rem 0 2rem;
  }

  .booking-summary > div {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem;
  }

  .booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group.light label {
    color: var(--text-muted);
  }

  .form-group.light input,
  .form-group.light select,
  .form-group.light textarea {
    background: white;
    border-color: var(--border);
    color: var(--text);
  }

  .booking-check {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 1rem 0;
  }

  .booking-check input {
    margin-top: 0.25rem;
  }

  .booking-cancellation-note {
    color: var(--gold);
    font-size: 0.8rem;
    line-height: 1.45;
    margin: -0.55rem 0 1rem 2rem;
  }

  .booking-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  .booking-errors,
  .booking-success {
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
  }

  .booking-errors {
    background: #fff0f0;
    border: 1px solid #e4b5b5;
  }

  .booking-errors p {
    color: #8c2f2f;
    font-size: 0.9rem;
  }

  .booking-success {
    background: rgba(183,154,107,0.12);
    border: 1px solid rgba(183,154,107,0.35);
  }

  .booking-success h2 {
    color: var(--navy);
    margin-bottom: 0.5rem;
  }

  .portal-panel {
    width: min(100%, 980px);
  }

  .portal-login {
    max-width: 460px;
  }

  .portal-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin: -0.35rem 0 1.8rem;
  }

  .portal-course-info {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin: 1.2rem 0 2rem;
    padding: 1rem;
  }

  .portal-course-info p {
    color: var(--text);
    margin: 0;
  }

  .portal-course-info p + .portal-course-schedule {
    border-top: 1px solid var(--border);
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .portal-course-schedule strong {
    color: var(--navy);
    display: block;
    margin-bottom: 0.45rem;
  }

  .portal-course-schedule ul {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    padding-left: 1.1rem;
  }

  .portal-course-schedule li {
    color: var(--text-muted);
  }

  .portal-section {
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .portal-section h2 {
    color: var(--navy);
    font-size: 1.45rem;
    margin-bottom: 1rem;
  }

  .portal-section-head {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
  }

  .portal-section-head span {
    color: var(--gold);
    font-weight: 600;
  }

  .portal-add-participant {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin: 0.25rem 0 1rem;
  }

  .portal-add-participant summary {
    align-items: center;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    font-weight: 600;
    gap: 0.65rem;
    list-style: none;
    padding: 0.9rem 1rem;
  }

  .portal-add-participant summary::-webkit-details-marker {
    display: none;
  }

  .portal-add-participant summary span {
    align-items: center;
    background: var(--gold);
    border-radius: 999px;
    color: white;
    display: inline-flex;
    font-size: 1.05rem;
    height: 1.55rem;
    justify-content: center;
    line-height: 1;
    width: 1.55rem;
  }

  .portal-add-participant[open] summary {
    border-bottom: 1px solid var(--border);
  }

  .portal-add-participant .booking-form {
    padding: 1rem;
  }

  .portal-empty {
    color: var(--text-muted);
  }

  .portal-participant-list {
    display: grid;
    gap: 0.85rem;
  }

  .portal-participant {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1rem;
  }

  .portal-participant.is-cancelled {
    opacity: 0.62;
  }

  .portal-participant strong,
  .portal-participant span,
  .portal-participant small {
    display: block;
  }

  .portal-participant strong {
    color: var(--navy);
  }

  .portal-participant span,
  .portal-participant small {
    color: var(--text-muted);
    font-size: 0.86rem;
    margin-top: 0.22rem;
  }

  .portal-participant em {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
  }

  .portal-participant details {
    border-top: 1px solid var(--border);
    grid-column: 1 / -1;
    padding-top: 0.8rem;
  }

  .portal-participant summary {
    color: var(--gold);
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
  }

  .portal-edit-form {
    display: grid;
    gap: 0;
    margin-top: 1rem;
  }

  .portal-edit-form .btn,
  .portal-cancel-form .btn {
    justify-content: center;
    margin-top: 0.75rem;
    width: 100%;
  }

  /* ==================== TRAINER TEASER (index) ==================== */
  .trainer-teaser { background: var(--cream); padding: 6rem 0; }

  .trainer-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
  }

  .trainer-teaser-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: block;
  }

  .trainer-teaser h2 {
    margin-bottom: 1.25rem;
  }

  .trainer-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    margin-top: 1.5rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }

  .trainer-teaser-link:hover { border-bottom-color: var(--gold); }

  /* ==================== TESTIMONIALS 2-COL ==================== */
  .testimonials-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* ==================== SUBPAGE CTA BANNER ==================== */
  .subpage-cta {
    background: var(--navy);
    padding: 5rem 0;
    text-align: center;
  }

  .subpage-cta .label { color: var(--gold-light); }
  .subpage-cta h2 { color: white; margin-bottom: 1rem; }
  .subpage-cta p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ==================== RESPONSIVE ==================== */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { min-height: 40vh; }
    .hero-visual-text { bottom: 2.5rem; }
    .hero-img-portrait { object-position: 50% 12%; }
    .hero-content { padding: 3rem 2rem; max-width: 100%; }
    .hero-stats { gap: 1.5rem; }
    .kurs-grid, .about-grid,
    .kontakt-inner, .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .kurs-facts { grid-template-columns: 1fr 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .about-content { order: 1; }
    .about-portrait { order: 2; }
    .portrait-badge { right: 1rem; }
    .logo-wall { gap: 0.55rem; }
    .brand { flex-basis: clamp(120px, 28vw, 180px); min-height: 72px; min-width: 120px; }
    .brand-logo { height: 36px; max-width: 100%; }
    .hero-quote-sub { max-width: 100%; }
    .competence-grid, .structure-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .format-grid { grid-template-columns: 1fr; }
    .online-content { padding: 2.6rem 2rem; }
    .kurs-teaser-grid, .format-standalone-grid, .trainer-teaser-grid,
    .course-dates-head, .course-date-card { grid-template-columns: 1fr; gap: 2rem; }
    .testimonials-grid-2col { grid-template-columns: 1fr; }
    .testimonial-carousel {
      grid-template-columns: 1fr;
    }
    .testimonial-carousel-viewport {
      min-height: 360px;
    }
    .testimonial-carousel-btn {
      display: none;
    }
    .page-hero { padding: 6rem 0 3rem; }
    .legal-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .legal-toc { position: static; }
  }

  @media (max-width: 600px) {
    .nav-toggle { display: flex; }
    .nav-links {
      display: none;
      position: absolute;
      top: 76px;
      left: 0; right: 0;
      background: rgba(252,250,246,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      flex-direction: column;
      padding: 1.5rem 2rem;
      gap: 1.5rem;
      z-index: 99;
    }
    .nav-links.nav-open { display: flex; }
    .nav-logo-img { height: 40px; }
    .hero-img-portrait { object-position: 50% 10%; }
    .nav-logo-sub { font-size: 0.58rem; letter-spacing: 0.08em; }
    h1 { font-size: 2rem; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .logo-wall { gap: 0.45rem; }
    .brand { flex-basis: calc(50% - 0.3rem); min-height: 58px; min-width: 0; padding: 0.25rem 0.35rem; }
    .brand-logo { height: 32px; max-width: 100%; }
    .hero-quote { font-size: 1.55rem; }
    .hero-quote-sub { font-size: 0.95rem; }
    .competence-grid, .structure-grid { grid-template-columns: 1fr; }
    .online-content { padding: 2.2rem 1.5rem; }
    .format-standalone-card { padding: 1.8rem; }
    .trainer-teaser-grid { grid-template-columns: 1fr; }
    .testimonials-grid-2col { grid-template-columns: 1fr; }
    .booking-summary, .booking-form-grid { grid-template-columns: 1fr; }
    .portal-participant {
      grid-template-columns: 1fr;
    }
    .portal-section-head {
      align-items: flex-start;
      flex-direction: column;
      gap: 0.25rem;
    }
    .legal-data div { grid-template-columns: 1fr; gap: 0.35rem; }
  }
