/* =========================================================
   FONTS – selbst gehostet (DSGVO-konform)
========================================================= */

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   1. DESIGN TOKENS / VARIABLEN
========================================================= */

:root {
    --bg: #f7f4f1;
    --bg-soft: #ffffff;
    --white: #ffffff;

    --text-dark: #156083;
    --text-body: #3d3530;
    --text-medium: #6b5f58;
    --text-blue: #356184;

    --pink: #d46c93;
    --pink-dark: #bf5b80;
    --pink-light: #f4d8e4;

    --border: #e4ddd8;
    --border-soft: rgba(228, 221, 216, 0.8);

    --shadow: 0 4px 24px rgba(17, 21, 27, 0.07);
    --shadow-soft: 0 2px 12px rgba(17, 21, 27, 0.04);

    --radius: 20px;
    --radius-small: 12px;

    --container: 1240px;
    --section-space: 90px;
}


/* =========================================================
   2. BASE / GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;

    font-family: 'Nunito', Arial, sans-serif;
    line-height: 1.65;
    background: var(--bg);
    color: var(--text-body);
}

main {
    flex: 1;
}

img {
    display: block;
    max-width: 100%;
    border-radius: var(--radius);
}

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

p {
    margin-top: 0;
    color: var(--text-medium);
    font-size: 18px;
}

ul {
    color: var(--text-medium);
    font-size: 18px;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--text-dark);
    line-height: 1.15;
}

h1 {
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 62px);
}

h2 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3.5vw, 42px);
}

h3 {
    margin-bottom: 12px;
    font-size: 22px;
}


/* =========================================================
   3. GLOBALE LAYOUT-BAUSTEINE
========================================================= */

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: var(--section-space) 0;
}

.alt-bg {
    background: var(--bg-soft);
}

.narrow {
    max-width: 900px;
}

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

.section-tag {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.section-link {
    margin-top: 40px;
    text-align: center;
}


/* =========================================================
   4. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 15px 28px;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.btn-primary {
    background: var(--pink);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--pink-dark);
    box-shadow: 0 6px 20px rgba(212, 108, 147, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--pink);
    color: var(--pink);
}

.btn-outline:hover {
    background: var(--pink-light);
    transform: translateY(-2px);
}


/* =========================================================
   5. HEADER / NAVIGATION
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.96);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: auto;
    height: 70px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.main-nav a {
    position: relative;
    padding-bottom: 6px;
    color: var(--text-blue);
    font-size: 17px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--pink);
}

.main-nav a.active {
    color: var(--pink);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--pink);
    opacity: 0.5;
}

/* Burger */

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-dark);
    transition: 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   6. FOOTER
========================================================= */

.site-footer {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-inner p {
    margin: 0;
    font-size: 15px;
    color: var(--text-medium);
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-medium);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--pink);
}


/* =========================================================
   7. STARTSEITE
========================================================= */

/* Hero */

.hero {
    display: flex;
    align-items: center;
    min-height: 78vh;
    padding: 40px 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
    padding: 40px 0 60px;
}

.hero-content h1 {
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.hero-content p {
    max-width: 560px;
    margin-bottom: 34px;
    color: var(--text-medium);
    font-size: 19px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 680px;
}

.hero-image-wrap img {
    max-height: 660px;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Intro */

.intro-section {
    padding: var(--section-space) 0;
    background: var(--bg);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: start;
}

.info-card {
    padding: 28px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.info-card h3 {
    color: var(--text-dark);
}

.info-card p {
    margin-bottom: 0;
}


/* =========================================================
   8. KURSE / ANGEBOTE
========================================================= */

.card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.card h2,
.card h3 {
    color: var(--text-dark);
}

.card p {
    margin-bottom: 0;
}

.course-text {
    margin-bottom: 14px;
}

.course-info {
    margin-top: 18px;
    color: var(--text-medium);
    font-size: 16px;
    font-style: italic;
}

/* Tabs */

.tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.tabs {
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px;
    gap: 4px;
    box-shadow: var(--shadow-soft);
}

.tab-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 11px 30px;
    border-radius: 999px;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-medium);
    transition: 0.2s ease;
    white-space: nowrap;
}

.tab-btn.active {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 2px 10px rgba(212, 108, 147, 0.25);
}

.tab-btn:not(.active):hover {
    background: var(--bg);
    color: var(--pink);
}

.panel {
    display: none;
}

.panel.active {
    display: block;
}

/* Preis-Accordion */

.price-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding: 16px 0 0;
    border: none;
    border-top: 1px solid #ecd7e0;
    background: none;
    cursor: pointer;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pink);
    transition: 0.2s;
}

.price-toggle:hover {
    color: var(--pink-dark);
}

.price-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.price-toggle.open .price-toggle-icon {
    background: var(--pink);
    color: #fff;
}

.price-toggle-icon svg {
    transition: transform 0.25s ease;
}

.price-toggle.open .price-toggle-icon svg {
    transform: rotate(180deg);
}

.price-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-panel.open {
    max-height: 500px;
}

.price-panel-inner {
    margin-top: 16px;
    padding: 20px;
    border: 1px solid #ecd7e0;
    border-radius: var(--radius-small);
    background: #fdf9fb;
}

.price-label {
    margin: 0 0 6px;
    color: var(--pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.price-intro {
    margin: 0 0 14px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 10px 12px;
    border: 2px solid transparent;
    border-radius: var(--radius-small);
    cursor: pointer;
    color: var(--text-medium);
    font-size: 16px;
    transition: 0.18s ease;
    user-select: none;
}

.price-option:hover {
    background: var(--pink-light);
    border-color: var(--pink-light);
}

.price-option.selected {
    background: var(--pink-light);
    border-color: var(--pink);
}

.price-option-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.18s;
}

.price-option.selected .price-radio {
    border-color: var(--pink);
}

.price-radio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0;
    transition: opacity 0.18s;
}

.price-option.selected .price-radio-dot {
    opacity: 1;
}

.price-option strong {
    white-space: nowrap;
    color: var(--text-dark);
    font-size: 19px;
    font-weight: 700;
}

/* Jetzt-buchen Button */

.book-btn-wrap {
    margin-top: 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    opacity: 0;
}

.book-btn-wrap.visible {
    max-height: 80px;
    opacity: 1;
}

.book-btn {
    display: block;
    width: 100%;
    padding: 15px 28px;
    border: 2px solid transparent;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.book-btn:hover {
    transform: translateY(-2px);
    background: var(--pink-dark);
    box-shadow: 0 6px 20px rgba(212, 108, 147, 0.3);
}

/* Preisbox (statisch, Altbestand) */

.price-box {
    margin-top: auto;
    padding: 20px;
    border: 1px solid #ecd7e0;
    border-radius: var(--radius-small);
    background: #fdf9fb;
}


/* =========================================================
   9. EVENTS
========================================================= */

.events-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.event-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 22px 26px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: 0.2s ease;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.event-date {
    text-align: center;
    background: #fdf9fb;
    border: 1px solid #ecd7e0;
    border-radius: var(--radius-small);
    padding: 10px 8px;
}

.event-day {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.event-month {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pink);
    margin-top: 2px;
}

.event-info h3 {
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 19px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-medium);
    font-size: 15px;
}

.event-action {
    text-align: right;
}

.event-badge {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}

.event-badge.open {
    background: #e8f5ea;
    color: #24653a;
}

.event-badge.limited {
    background: #fef3e8;
    color: #c87533;
}

.event-badge.sold-out {
    background: #f0f0f3;
    color: #999;
}

.event-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    min-width: 120px;
    border: 2px solid var(--pink);
    border-radius: 999px;
    background: transparent;
    color: var(--pink);
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.event-register:hover {
    background: var(--pink-light);
    transform: translateY(-1px);
}

.event-register:disabled {
    border-color: var(--border);
    color: #bbb;
    background: #f5f5f5;
    cursor: default;
    transform: none;
}


/* =========================================================
   10. ÜBER MICH / ABOUT
========================================================= */

.about-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
    align-items: start;
}

.about-layout img {
    box-shadow: var(--shadow);
}

.about-box {
    padding: 28px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.about-text p {
    margin-bottom: 24px;
    line-height: 1.7;
}


/* =========================================================
   11. KURSPLAN
========================================================= */

.schedule {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.schedule th,
.schedule td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 16px;
}

.schedule th {
    background: #fdf9fb;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.schedule td {
    color: var(--text-medium);
}

.schedule tr:last-child td {
    border-bottom: none;
}

.desktop-schedule {
    display: table;
}

.mobile-schedule {
    display: none;
}

.schedule-card {
    margin-top: 14px;
    padding: 18px 20px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-small);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.schedule-card p {
    margin-bottom: 8px;
}

.schedule-card p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   12. KONTAKT
========================================================= */

.contact-page {
    padding: 60px 0 90px;
}

.contact-wrapper {
    max-width: 860px;
}

.contact-intro {
    margin-bottom: 34px;
}

.contact-form {
    padding: 34px;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-small);
    outline: none;
    background: #fff;
    color: var(--text-body);
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 16px;
    transition: 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(212, 108, 147, 0.1);
}

.input-error {
    border-color: #d35f86 !important;
    box-shadow: 0 0 0 3px rgba(211, 95, 134, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.group-label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 700;
}

.checkbox-group {
    display: grid;
    gap: 10px;
}

.checkbox-group label,
.consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-medium);
    font-size: 16px;
}

.checkbox-group input[type="checkbox"],
.consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--pink);
}

.checkbox-group.has-error {
    padding: 14px;
    border: 1px solid #e8b7c9;
    border-radius: var(--radius-small);
    background: #fff7fa;
}

.form-hint {
    margin-top: 10px;
    margin-bottom: 0;
    color: #9a8f8a;
    font-size: 14px;
}

.form-error {
    margin-top: 10px;
    margin-bottom: 0;
    color: #b14067;
    font-size: 14px;
    font-weight: 700;
}

.consent a {
    color: var(--text-blue);
    text-decoration: underline;
}

.message {
    margin-bottom: 20px;
    padding: 15px 18px;
    border-radius: var(--radius-small);
    font-size: 16px;
    font-weight: 600;
}

.message.success {
    background: #e8f5ea;
    color: #24653a;
}

.message.error {
    background: #fde8ec;
    color: #8c3152;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* =========================================================
   13. RECHTLICHES
========================================================= */

.legal-page {
    padding: 60px 0 90px;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
}

.legal-content h1 {
    margin-bottom: 24px;
}

.legal-content h2 {
    margin-top: 38px;
    margin-bottom: 12px;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.legal-content p,
.legal-content li {
    color: var(--text-medium);
    font-size: 17px;
}

.legal-content ul {
    padding-left: 22px;
}


/* =========================================================
   14. HELPER
========================================================= */

.spacer-top {
    margin-top: 18px;
}

.spacer-bottom {
    margin-bottom: 18px;
}

.text-blue {
    color: var(--text-blue);
}

.text-pink {
    color: var(--pink);
}


/* =========================================================
   15. RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .hero-grid,
    .intro-grid,
    .about-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-image-wrap {
        min-height: auto;
    }

    .hero-image-wrap img {
        max-height: 520px;
    }
}

@media (max-width: 820px) {
    .header-inner {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: 0;
        z-index: 30;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .main-nav.nav-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 8px 0;
        font-size: 17px;
    }

    .main-nav a.active::after {
        width: 36px;
    }

    .form-row,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .btn {
        min-width: auto;
        width: 100%;
    }

    .contact-form,
    .info-card,
    .card,
    .about-box {
        padding: 22px;
    }

    .desktop-schedule {
        display: none;
    }

    .mobile-schedule {
        display: block;
    }

    .tab-btn {
        padding: 10px 22px;
        font-size: 15px;
    }

    .event-card {
        grid-template-columns: 64px 1fr;
        grid-template-rows: auto auto;
    }

    .event-action {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .site-header {
        padding: 14px 0;
    }

    .logo img {
        height: 56px;
    }

    .hero {
        min-height: auto;
        padding-top: 20px;
    }

    .hero-content {
        padding: 16px 0 24px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p,
    p,
    ul {
        font-size: 16px;
    }

    .contact-form {
        padding: 20px;
        border-radius: 18px;
    }

    .section {
        padding: 64px 0;
    }

    .tabs {
        width: 100%;
    }

    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 10px;
    }

    .price-option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 15px;
    }

    .price-option span {
        flex: 1;
    }

    .price-option strong {
        width: 70px;
        text-align: right;
        font-size: 17px;
    }
}


/* =========================================================
   16. ABOUT-SEITE
========================================================= */

.about-hero {
    padding-bottom: 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-end;
}

.about-hero-content {
    padding: 60px 0 60px;
}

.about-hero-content h1 {
    font-size: clamp(34px, 4.5vw, 56px);
}

.about-lead {
    max-width: 520px;
    margin-bottom: 32px;
    color: var(--text-medium);
    font-size: 18px;
    line-height: 1.7;
}

.about-hero-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-hero-image img {
    width: 100%;
    max-width: 480px;
    max-height: 680px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: var(--shadow);
}

.about-text-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.about-text-main p {
    margin-bottom: 20px;
    line-height: 1.75;
}

.about-text-main p:last-child {
    margin-bottom: 0;
}

.about-facts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fact-card {
    padding: 20px 22px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-small);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.fact-icon {
    display: block;
    font-size: 22px;
    margin-bottom: 6px;
}

.fact-card h3 {
    margin-bottom: 4px;
    font-size: 17px;
    color: var(--text-dark);
}

.fact-card p {
    margin: 0;
    font-size: 15px;
    color: var(--text-medium);
}

.about-highlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.about-highlight-box p {
    margin-bottom: 18px;
    line-height: 1.75;
}

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

.about-quote {
    margin: 0;
    padding: 32px 28px;
    border: none;
    border-left: 3px solid var(--pink);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: #fdf9fb;
    box-shadow: var(--shadow-soft);
}

.about-quote p {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.65;
    color: var(--text-dark);
}

.about-quote cite {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 0.05em;
}

.quali-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.quali-card {
    padding: 22px 20px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-small);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: 0.2s ease;
}

.quali-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.quali-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

.quali-card h3 {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.quali-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-medium);
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 1100px) {
    .about-hero-grid,
    .about-text-grid,
    .about-highlight-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-image {
        justify-content: flex-start;
    }

    .about-hero-image img {
        max-height: 480px;
        border-radius: var(--radius);
    }

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

@media (max-width: 820px) {
    .about-hero-content {
        padding: 32px 0 0;
    }

    .about-quote {
        padding: 22px 20px;
    }

    .about-quote p {
        font-size: 17px;
    }

    .about-cta-buttons .btn {
        width: 100%;
    }
}

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


/* =========================================================
   17. STARTSEITE – ERGÄNZUNGEN
========================================================= */

.intro-pillars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pillar-icon {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
}

.info-card .pillar-icon + h3 {
    margin-bottom: 4px;
}

.course-icon {
    display: block;
    font-size: 26px;
    margin-bottom: 10px;
}

.schedule-location {
    color: var(--text-medium);
    font-size: 14px;
}

/* Testimonials */

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

.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: #e8a000;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-text {
    flex: 1;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-medium);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pink-light);
    color: var(--pink-dark);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-medium);
}

.home-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

@media (max-width: 820px) {
    .testimonials-grid,
    .testimonials-grid--4 {
        grid-template-columns: 1fr;
    }

    .home-cta-buttons .btn {
        width: 100%;
    }
}