        /* ========================================
           CSS VARIABLES
        ======================================== */
        :root {
            --gold: #edc041;
            --gold-light: #f5d97a;
            --black: #1a1a1a;
            --dark: #2a2a2a;
            --gray-900: #333333;
            --gray-600: #666666;
            --gray-400: #999999;
            --gray-200: #e5e5e5;
            --gray-100: #f2f2f2;
            --white: #ffffff;
            --off-white: #f8f7f4;

            --font-display: 'Bebas Neue', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            --font-accent: 'Caveat', cursive;

            --max-width: 1200px;
            --section-padding: clamp(60px, 10vw, 120px);
            --content-padding: clamp(20px, 5vw, 40px);
            --gold-tint: #fdf8ec;
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            color: var(--gray-900);
            background: var(--white);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

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

        /* ========================================
           TYPOGRAPHY
        ======================================== */
        .headline {
            font-family: var(--font-display);
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            line-height: 1.05;
            color: var(--black);
        }

        .headline--xl {
            font-size: clamp(3rem, 8vw, 5.5rem);
        }

        .headline--lg {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
        }

        .headline--md {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        }

        .headline--sm {
            font-size: clamp(1.4rem, 2.5vw, 2rem);
        }

        .accent-text {
            font-family: var(--font-accent);
            color: var(--gold);
            font-weight: 600;
            text-transform: none;
            letter-spacing: 0;
        }

        .body-text {
            font-size: clamp(1rem, 1.1vw, 1.125rem);
            line-height: 1.8;
            color: var(--gray-600);
            max-width: 600px;
        }

        .body-text--lg {
            font-size: clamp(1.1rem, 1.3vw, 1.25rem);
        }

        /* ========================================
           LAYOUT UTILITIES
        ======================================== */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--content-padding);
        }

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

        .section--dark {
            background: var(--black);
            color: var(--white);
        }

        .section--dark .headline {
            color: var(--white);
        }

        .section--dark .body-text {
            color: rgba(255,255,255,0.7);
        }

        .section--light {
            background: var(--gray-100);
        }

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

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* ========================================
           NAVIGATION
        ======================================== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }

        .nav--scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

        .nav__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--content-padding);
        }

        .nav__logo {
            display: flex;
            align-items: center;
        }

        .nav__logo-icon {
            height: 36px;
            width: auto;
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav__link {
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--gray-600);
            transition: color 0.2s;
        }

        .nav__link:hover {
            color: var(--black);
        }

        .nav__cta {
            display: inline-flex;
            align-items: center;
            padding: 10px 24px;
            background: var(--gold);
            color: var(--black);
            font-family: var(--font-display);
            font-size: 1rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav__cta:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
        }

        /* Nav Dropdown */
        .nav__dropdown {
            position: relative;
        }

        .nav__dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
        }

        .nav__dropdown-toggle svg {
            width: 12px;
            height: 12px;
            transition: transform 0.2s ease;
            color: var(--gray-400);
        }

        .nav__dropdown:hover .nav__dropdown-toggle svg {
            transform: rotate(180deg);
        }

        .nav__dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            padding-top: 12px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        .nav__dropdown:hover .nav__dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .nav__dropdown-menu-inner {
            background: var(--white);
            border: 1px solid var(--gray-200);
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
            min-width: 200px;
            padding: 8px 0;
        }

        .nav__dropdown-item {
            display: block;
            padding: 10px 20px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--gray-600);
            transition: all 0.15s ease;
            white-space: nowrap;
        }

        .nav__dropdown-item:hover {
            background: var(--gray-100);
            color: var(--black);
        }

        /* Mobile nav toggle */
        .nav__toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
            min-width: 44px;
            min-height: 44px;
            justify-content: center;
            align-items: center;
            z-index: 1001;
        }

        .nav__toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--black);
            transition: all 0.3s;
        }

        /* Burger → X animation */
        .nav__toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: var(--white);
        }
        .nav__toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .nav__toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
            background: var(--white);
        }

        /* ========================================
           HERO SECTION
        ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 72px;
        }

        .hero__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero__bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.35);
        }

        .hero__content {
            position: relative;
            z-index: 2;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--content-padding);
            color: var(--white);
        }

        .hero__label {
            font-family: var(--font-accent);
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            color: var(--gold);
            margin-bottom: 16px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease forwards 0.3s;
        }

        .hero__headline {
            font-family: var(--font-display);
            font-size: clamp(3.2rem, 9vw, 6.5rem);
            text-transform: uppercase;
            line-height: 0.95;
            letter-spacing: 0.02em;
            color: var(--white);
            margin-bottom: 28px;
            max-width: 800px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards 0.5s;
        }

        .hero__headline .gold {
            color: var(--gold);
        }

        .hero__rotate {
            display: inline-grid;
            color: var(--gold);
        }

        .hero__rotate-word {
            grid-area: 1 / 1;
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.45s ease, transform 0.45s ease;
            white-space: nowrap;
        }

        .hero__rotate-word.active {
            opacity: 1;
            transform: translateX(0);
        }

        .hero__rotate-word.exit {
            opacity: 0;
            transform: translateX(40px);
        }

        .hero__sub {
            font-size: clamp(1.05rem, 1.4vw, 1.25rem);
            line-height: 1.7;
            color: rgba(255,255,255,0.75);
            max-width: 540px;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease forwards 0.7s;
        }

        .hero__actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease forwards 0.9s;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            font-family: var(--font-display);
            font-size: 1.05rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        .btn--primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(237,192,65,0.3);
        }

        .btn--outline {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.4);
        }

        .btn--outline:hover {
            border-color: var(--white);
            background: rgba(255,255,255,0.08);
        }

        .btn--dark {
            background: transparent;
            color: var(--black);
            border: 1.5px solid var(--gray-200);
        }

        .btn--dark:hover {
            border-color: var(--gold);
            background: rgba(237,192,65,0.06);
        }

        /* ========================================
           INTRO / PHILOSOPHY
        ======================================== */
        .intro {
            padding: var(--section-padding) 0;
        }

        .intro__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 6vw, 80px);
            align-items: center;
        }

        .intro__image {
            position: relative;
            aspect-ratio: 4/5;
            overflow: hidden;
        }

        .intro__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .intro__image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gold);
        }

        .intro__content {
            max-width: 500px;
        }

        .intro__label {
            font-family: var(--font-accent);
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .intro__content .headline {
            margin-bottom: 24px;
        }

        .intro__content .body-text {
            margin-bottom: 20px;
        }

        /* ========================================
           3 PRACTICE LEVELS
        ======================================== */
        .levels__header {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 72px);
        }

        .levels__header .accent-text {
            font-size: 1.8rem;
            display: block;
            margin-bottom: 4px;
        }

        .levels__header .body-text {
            margin: 20px auto 0;
        }

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

        .level-card {
            padding: clamp(32px, 4vw, 48px);
            position: relative;
            border-right: 1px solid rgba(255,255,255,0.1);
        }

        .level-card:last-child {
            border-right: none;
        }

        .level-card__number {
            font-family: var(--font-accent);
            font-size: 2.8rem;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 16px;
        }

        .level-card__title {
            font-family: var(--font-display);
            font-size: clamp(1.3rem, 2vw, 1.6rem);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: var(--white);
            margin-bottom: 16px;
        }

        .level-card__text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.65);
        }

        /* ========================================
           6 BEREICHE
        ======================================== */
        .bereiche__header {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 72px);
        }

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

        .bereich-card {
            padding: clamp(28px, 3vw, 40px);
            background: var(--white);
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .bereich-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .bereich-card:hover::before {
            transform: scaleX(1);
        }

        .bereich-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.06);
        }

        .bereich-card__number {
            font-family: var(--font-accent);
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .bereich-card__title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            margin-bottom: 10px;
        }

        .bereich-card__text {
            font-size: 0.9rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* ========================================
           FOUNDATIONS
        ======================================== */
        .foundations__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 6vw, 80px);
            align-items: center;
        }

        .foundations__content {
            max-width: 520px;
        }

        .foundations__list {
            list-style: none;
            margin-top: 32px;
        }

        .foundations__item {
            padding: 24px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .foundations__item:first-child {
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .foundations__item-number {
            font-family: var(--font-accent);
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 4px;
        }

        .foundations__item-title {
            font-family: var(--font-display);
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: var(--white);
            margin-bottom: 8px;
        }

        .foundations__item-text {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
        }

        .foundations__image {
            aspect-ratio: 3/4;
            overflow: hidden;
        }

        .foundations__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ========================================
           JOURNEY / OUTCOMES
        ======================================== */
        .journey__header {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 60px);
        }

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

        .journey-item {
            position: relative;
            padding: clamp(28px, 3vw, 40px);
        }

        .journey-item__number {
            font-family: var(--font-accent);
            font-size: 2.4rem;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .journey-item__title {
            font-family: var(--font-display);
            font-size: clamp(1.2rem, 1.8vw, 1.5rem);
            text-transform: uppercase;
            letter-spacing: 0.02em;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .journey-item__text {
            font-size: 0.92rem;
            color: var(--gray-600);
            line-height: 1.65;
        }

        /* ========================================
           TESTIMONIALS
        ======================================== */
        .testimonials {
            padding: var(--section-padding) 0;
            background: var(--gray-100);
        }

        .testimonials__header {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 64px);
        }

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

        .testimonial-card {
            background: var(--white);
            padding: clamp(28px, 3vw, 40px);
            border: 1px solid var(--gray-200);
            position: relative;
        }

        .testimonial-card__quote-mark {
            font-family: var(--font-accent);
            font-size: 3.5rem;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 12px;
        }

        .testimonial-card__text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--gray-900);
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-card__author {
            font-size: 0.85rem;
            color: var(--gray-400);
        }

        .testimonial-card__author strong {
            color: var(--gray-600);
            font-weight: 500;
        }

        /* ========================================
           CTA / EINSTIEG
        ======================================== */
        .einstieg {
            position: relative;
            overflow: hidden;
        }

        .einstieg__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .einstieg__bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.3);
        }

        .einstieg__content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
        }

        .einstieg__headline {
            color: var(--white);
            margin-bottom: 20px;
        }

        .einstieg__sub {
            font-size: clamp(1.05rem, 1.3vw, 1.2rem);
            color: rgba(255,255,255,0.7);
            max-width: 600px;
            margin: 0 auto 20px;
            line-height: 1.7;
        }

        .einstieg__options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 800px;
            margin: 48px auto 0;
        }

        .einstieg-card {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.12);
            padding: clamp(28px, 3vw, 40px);
            text-align: left;
            transition: all 0.3s ease;
        }

        .einstieg-card:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--gold);
            transform: translateY(-4px);
        }

        .einstieg-card__label {
            font-family: var(--font-accent);
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .einstieg-card__title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: var(--white);
            margin-bottom: 12px;
        }

        .einstieg-card__text {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .einstieg-card__price {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--gold);
            letter-spacing: 0.03em;
            margin-bottom: 20px;
        }

        .einstieg-card .btn {
            width: 100%;
            justify-content: center;
        }

        /* ========================================
           COMMUNITY / ZUSAMMENWACHSEN
        ======================================== */
        .community__inner {
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }

        .community__headline {
            margin-bottom: 8px;
        }

        .community__sub-headline {
            font-family: var(--font-accent);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: var(--gold);
            margin-bottom: 32px;
        }

        .community__text {
            font-size: clamp(1.05rem, 1.3vw, 1.2rem);
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .community__quote {
            font-family: var(--font-accent);
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: var(--gold);
            margin-top: 40px;
            line-height: 1.4;
        }

        /* ========================================
           INSTAGRAM
        ======================================== */
        .instagram {
            padding: var(--section-padding) 0;
            background: var(--gray-100);
        }

        .instagram__inner {
            text-align: center;
        }

        .instagram__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin: 40px 0;
        }

        .instagram__item {
            aspect-ratio: 1;
            background: var(--gray-200);
            overflow: hidden;
            transition: opacity 0.3s ease;
        }

        .instagram__item:hover {
            opacity: 0.85;
        }

        /* ========================================
           FOOTER
        ======================================== */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 60px 0 40px;
        }

        .footer__inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
        }

        .footer__brand-name {
            font-family: var(--font-display);
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
        }

        .footer__brand-text {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.6;
            max-width: 300px;
        }

        .footer__heading {
            font-family: var(--font-display);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .footer__links {
            list-style: none;
        }

        .footer__links li {
            margin-bottom: 10px;
        }

        .footer__links a {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.5);
            transition: color 0.2s;
        }

        .footer__links a:hover {
            color: var(--white);
        }

        .footer__bottom {
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer__copy {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.35);
        }

        .footer__legal {
            display: flex;
            gap: 20px;
        }

        .footer__legal a {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.35);
            transition: color 0.2s;
        }

        .footer__legal a:hover {
            color: rgba(255,255,255,0.6);
        }

        .footer__socials {
            display: flex;
            gap: 20px;
        }

        .footer__socials a {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
            transition: color 0.2s;
        }

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

        /* ========================================
           ANIMATIONS
        ======================================== */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========================================
           IMAGE PLACEHOLDERS
        ======================================== */
        .placeholder-img {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-100) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-body);
            font-size: 0.8rem;
            color: var(--gray-400);
            text-align: center;
            padding: 20px;
        }

        .placeholder-hero {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 60%, #111 100%);
        }

        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 968px) {
            .nav__links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--black);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 0;
                z-index: 1000;
                padding: 80px 20px 40px;
            }

            .nav__links.active {
                display: flex;
            }

            .nav__links li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.08);
            }

            .nav__links li:last-child {
                border-bottom: none;
            }

            .nav__links .nav__link {
                display: block;
                padding: 18px 16px;
                font-size: 1.1rem;
                color: var(--white);
                letter-spacing: 0.08em;
                min-height: 44px;
            }

            .nav__links .nav__link:hover {
                color: var(--gold);
            }

            /* Mobile dropdown */
            .nav__links .nav__dropdown-menu {
                position: static;
                transform: none;
                padding-top: 0;
                opacity: 1;
                visibility: visible;
                display: none;
            }

            .nav__links .nav__dropdown.active .nav__dropdown-menu {
                display: block;
            }

            .nav__links .nav__dropdown-menu-inner {
                background: transparent;
                border: none;
                box-shadow: none;
                padding: 0 0 8px;
            }

            .nav__links .nav__dropdown-item {
                color: var(--gray-400);
                font-size: 0.9rem;
                padding: 10px 0;
            }

            .nav__links .nav__dropdown-item:hover {
                background: transparent;
                color: var(--gold);
            }

            .nav__links .nav__dropdown-toggle svg {
                color: var(--gray-400);
                transition: transform 0.2s ease;
            }

            .nav__links .nav__dropdown.active .nav__dropdown-toggle svg {
                transform: rotate(180deg);
            }

            /* Mobile CTA button */
            .nav__cta {
                display: none;
            }

            .nav__links.active ~ .nav__cta {
                display: none;
            }

            .nav__toggle {
                display: flex;
            }

            .intro__grid,
            .foundations__grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .levels__grid,
            .journey__items {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .level-card {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .level-card:last-child {
                border-bottom: none;
            }

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

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

            .testimonials__grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

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

            .footer__inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

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

            .hero__actions {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
                min-height: 48px;
            }

            .footer__bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            /* Readable font sizes on small screens */
            .footer__copy,
            .footer__legal a,
            .footer__socials a {
                font-size: 0.85rem;
            }

            .footer__links a {
                font-size: 0.92rem;
                display: block;
                padding: 6px 0;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .footer__legal {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer__legal a {
                padding: 8px 4px;
                min-height: 44px;
                display: inline-flex;
                align-items: center;
            }

            /* Ensure small text is at least 14px */
            .bereich-card__text,
            .level-card__text,
            .journey-item__text,
            .foundations__item-text,
            .einstieg-card__text {
                font-size: 0.95rem;
            }

            .testimonial-card__author {
                font-size: 0.9rem;
            }
        }

        /* ========================================
           REDUCED MOTION
        ======================================== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .reveal {
                opacity: 1;
                transform: none;
            }
            .hero__label,
            .hero__headline,
            .hero__sub,
            .hero__actions {
                opacity: 1;
                transform: none;
                animation: none;
            }
        }

        /* ========================================
           MOBILE STICKY CTA BAR
        ======================================== */
        .mobile-cta {
            display: none;
        }

        @media (max-width: 968px) {
            .mobile-cta {
                display: block;
                position: fixed;
                bottom: 20px;
                right: 20px;
                left: auto;
                z-index: 999;
                transform: translateY(0);
                transition: transform 0.3s ease, opacity 0.3s ease;
            }

            .mobile-cta.hidden {
                transform: translateY(calc(100% + 30px));
                opacity: 0;
            }

            .mobile-cta__link {
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 14px 24px;
                min-height: 48px;
                background: var(--gold);
                color: var(--black);
                font-family: var(--font-display);
                font-size: 1rem;
                letter-spacing: 0.05em;
                text-transform: uppercase;
                text-decoration: none;
                border-radius: 50px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.15);
                transition: all 0.2s ease;
            }

            .mobile-cta__link:hover {
                background: var(--gold-light);
                box-shadow: 0 6px 24px rgba(0,0,0,0.2);
            }

            .mobile-cta__link svg {
                width: 16px;
                height: 16px;
                flex-shrink: 0;
            }
        }

        /* ========================================
           PAGE: HOME — NEWSLETTER
        ======================================== */
        .newsletter {
            padding: var(--section-padding) 0;
            background: var(--black);
            color: var(--white);
        }

        .newsletter__inner {
            text-align: center;
        }

        .newsletter__inner .headline {
            color: var(--white);
        }

        .newsletter__inner .body-text {
            color: rgba(255,255,255,0.7);
        }

        .newsletter__widget {
            margin-top: 40px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            overflow: visible;
            min-height: 200px;
        }

        /* Eversports Widget — fallback for non-Shadow DOM */
        .newsletter__widget [data-eversports-widget-id] {
            color-scheme: dark;
        }

        /* reCAPTCHA Badge verstecken (Hinweis in Datenschutzerklärung) */
        .grecaptcha-badge {
            visibility: hidden !important;
        }

        .newsletter__widget iframe {
            border: none !important;
            border-radius: 12px;
        }

        /* ========================================
           PAGE: BEGINNER-KURS — HERO LANDING PAGE
        ======================================== */
        .hero-lp {
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 72px;
        }

        .hero-lp__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-lp__bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.3);
        }

        .hero-lp__content {
            position: relative;
            z-index: 2;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: clamp(60px, 10vw, 100px) var(--content-padding);
            color: var(--white);
        }

        .hero-lp__label {
            font-family: var(--font-accent);
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            color: var(--gold);
            margin-bottom: 16px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease forwards 0.3s;
        }

        .hero-lp__headline {
            font-family: var(--font-display);
            font-size: clamp(3rem, 8vw, 5.5rem);
            text-transform: uppercase;
            line-height: 0.95;
            letter-spacing: 0.02em;
            color: var(--white);
            margin-bottom: 20px;
            max-width: 700px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards 0.5s;
        }

        .hero-lp__sub {
            font-size: clamp(1.1rem, 1.5vw, 1.3rem);
            line-height: 1.7;
            color: rgba(255,255,255,0.75);
            max-width: 520px;
            margin-bottom: 36px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease forwards 0.7s;
        }

        .hero-lp__actions {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease forwards 0.9s;
        }

        .hero-lp__meta {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
        }

        /* ========================================
           PAGE: BEGINNER-KURS — FÜR WEN
        ======================================== */
        .fuer-wen__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 6vw, 80px);
            align-items: center;
        }

        .fuer-wen__content { max-width: 520px; }
        .fuer-wen__content .headline { margin-bottom: 24px; }
        .fuer-wen__content .body-text { margin-bottom: 16px; }

        .fuer-wen__image {
            aspect-ratio: 4/5;
            overflow: hidden;
            position: relative;
        }
        .fuer-wen__image::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 4px;
            background: var(--gold);
        }

        /* ========================================
           PAGE: BEGINNER-KURS — 4 WOCHEN TIMELINE
        ======================================== */
        .wochen__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }

        .woche-card {
            padding: clamp(28px, 3vw, 40px);
            background: var(--white);
            border: 1px solid var(--gray-200);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .woche-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .woche-card:hover::before { transform: scaleX(1); }
        .woche-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.06);
        }

        .woche-card__number {
            font-family: var(--font-accent);
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 4px;
        }

        .woche-card__title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            margin-bottom: 12px;
        }

        .woche-card__text {
            font-size: 0.92rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ========================================
           PAGE: BEGINNER-KURS — ENTHALTEN CHECKLIST
        ======================================== */
        .enthalten__inner {
            max-width: 700px;
            margin: 0 auto;
        }

        .checklist {
            list-style: none;
            margin: 36px 0;
        }

        .checklist__item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--gray-200);
            font-size: 1.02rem;
            color: var(--gray-900);
            line-height: 1.6;
        }

        .checklist__item:first-child {
            border-top: 1px solid var(--gray-200);
        }

        .checklist__icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
        }

        .checklist__icon svg {
            width: 16px;
            height: 16px;
        }

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

        .enthalten__price-amount {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--black);
            letter-spacing: 0.02em;
        }

        .enthalten__price-note {
            font-size: 0.9rem;
            color: var(--gray-400);
            margin-top: 4px;
        }

        /* ========================================
           PAGE: BEGINNER-KURS — SOCIAL PROOF
        ======================================== */
        .proof__inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .proof__stat {
            font-family: var(--font-display);
            font-size: clamp(4rem, 10vw, 7rem);
            color: var(--gold);
            line-height: 1;
            margin-bottom: 16px;
        }

        .proof__stat-label {
            font-family: var(--font-display);
            font-size: clamp(1.4rem, 3vw, 2.2rem);
            text-transform: uppercase;
            letter-spacing: 0.02em;
            color: var(--white);
            margin-bottom: 24px;
        }

        .proof__text {
            font-size: clamp(1rem, 1.2vw, 1.15rem);
            color: rgba(255,255,255,0.65);
            line-height: 1.8;
            max-width: 560px;
            margin: 0 auto 32px;
        }

        .proof__quote {
            font-style: italic;
            font-size: clamp(1.05rem, 1.3vw, 1.2rem);
            color: rgba(255,255,255,0.8);
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.7;
            padding: 24px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .proof__quote-author {
            display: block;
            margin-top: 12px;
            font-style: normal;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
        }

        /* ========================================
           PAGE: BEGINNER-KURS — FAQ ACCORDION
        ======================================== */
        .faq__list {
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--gray-200);
        }
        .faq-item:first-child {
            border-top: 1px solid var(--gray-200);
        }

        .faq-item__question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 24px 0;
            background: none;
            border: none;
            cursor: pointer;
            font-family: var(--font-body);
            font-size: 1.02rem;
            font-weight: 500;
            color: var(--gray-900);
            text-align: left;
            line-height: 1.5;
            transition: color 0.2s;
        }
        .faq-item__question:hover { color: var(--black); }

        .faq-item__icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            margin-left: 16px;
            position: relative;
            transition: transform 0.3s ease;
        }
        .faq-item__icon::before,
        .faq-item__icon::after {
            content: '';
            position: absolute;
            background: var(--gray-400);
            transition: all 0.3s ease;
        }
        .faq-item__icon::before {
            top: 50%; left: 4px; right: 4px;
            height: 1.5px;
            transform: translateY(-50%);
        }
        .faq-item__icon::after {
            left: 50%; top: 4px; bottom: 4px;
            width: 1.5px;
            transform: translateX(-50%);
        }

        .faq-item.open .faq-item__icon::after {
            transform: translateX(-50%) scaleY(0);
        }

        .faq-item__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-item.open .faq-item__answer {
            max-height: 300px;
        }

        .faq-item__answer-inner {
            padding: 0 0 24px;
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ========================================
           PAGE: BEGINNER-KURS — CTA FINAL
        ======================================== */
        .cta-final {
            position: relative;
            overflow: hidden;
        }

        .cta-final__content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-final__headline {
            color: var(--black);
            margin-bottom: 16px;
        }

        .cta-final__text {
            font-size: clamp(1.05rem, 1.3vw, 1.2rem);
            color: var(--gray-600);
            margin-bottom: 8px;
        }

        .cta-final__meta {
            font-size: 0.88rem;
            color: var(--gray-400);
            margin-top: 20px;
        }

        .cta-final__meta a {
            color: var(--gold);
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .cta-final__meta a:hover {
            border-color: var(--gold);
        }

        /* ========================================
           PAGE: BEGINNER-KURS — RESPONSIVE
        ======================================== */
        @media (max-width: 968px) {
            .fuer-wen__grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .wochen__grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .hero-lp__actions { flex-direction: column; }
        }

        /* ========================================
           PAGE: WORKSHOPS-EVENTS — INTRO WORKSHOP
        ======================================== */
        .intro-workshop {
            padding: var(--section-padding) 0;
            background: var(--gold-tint);
        }

        .intro-workshop__inner {
            max-width: 700px;
            margin: 0 auto;
        }

        .intro-workshop__label {
            font-family: var(--font-accent);
            font-size: 1.6rem;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .intro-workshop__headline {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            text-transform: uppercase;
            letter-spacing: 0.02em;
            color: var(--black);
            margin-bottom: 20px;
        }

        .intro-workshop__text {
            font-size: clamp(1rem, 1.2vw, 1.15rem);
            line-height: 1.8;
            color: var(--gray-600);
            margin-bottom: 24px;
        }

        .intro-workshop__detail {
            font-size: 0.95rem;
            color: var(--gray-600);
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(237,192,65,0.2);
        }

        .intro-workshop__cta {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .intro-workshop__small-text {
            font-size: 0.85rem;
            color: var(--gray-600);
            font-style: italic;
            max-width: 500px;
        }

        /* ========================================
           PAGE: WORKSHOPS-EVENTS — WORKSHOP GRID
        ======================================== */
        .workshops-header {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 60px);
        }

        .workshops-header__label {
            font-family: var(--font-accent);
            font-size: 1.6rem;
            color: var(--gold);
            display: block;
            margin-bottom: 4px;
        }

        .workshops-header__headline {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            text-transform: uppercase;
            letter-spacing: 0.02em;
            color: var(--black);
        }

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

        .workshop-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            padding: clamp(28px, 3vw, 40px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .workshop-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .workshop-card:hover::before { transform: scaleX(1); }

        .workshop-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.06);
        }

        .workshop-card__title {
            font-family: var(--font-display);
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: var(--black);
            margin-bottom: 12px;
        }

        .workshop-card__text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 16px;
        }

        .workshop-card__details {
            font-size: 0.85rem;
            color: var(--gray-400);
            margin-bottom: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-200);
        }

        .workshop-card__detail-item {
            margin-bottom: 6px;
        }

        /* ========================================
           PAGE: WORKSHOPS-EVENTS — RECURRING EVENTS
        ======================================== */
        .recurring-events {
            padding: var(--section-padding) 0;
        }

        .recurring-events__header {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 60px);
        }

        .recurring-events__label {
            font-family: var(--font-accent);
            font-size: 1.6rem;
            color: var(--gold);
            display: block;
            margin-bottom: 4px;
        }

        .recurring-events__headline {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            text-transform: uppercase;
            letter-spacing: 0.02em;
            color: var(--white);
        }

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

        .recurring-event-block {
            padding: clamp(32px, 4vw, 48px);
            position: relative;
        }

        .recurring-event-block__title {
            font-family: var(--font-display);
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: var(--white);
            margin-bottom: 12px;
        }

        .recurring-event-block__text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.6);
        }

        /* ========================================
           PAGE: WORKSHOPS-EVENTS — CTA
        ======================================== */
        .events-cta {
            padding: var(--section-padding) 0;
            background: var(--gray-100);
        }

        .events-cta__inner {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .events-cta__headline {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            text-transform: uppercase;
            letter-spacing: 0.02em;
            color: var(--black);
            margin-bottom: 20px;
        }

        .events-cta__text {
            font-size: clamp(1rem, 1.2vw, 1.15rem);
            line-height: 1.8;
            color: var(--gray-600);
            margin-bottom: 32px;
        }

        .events-cta__buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ========================================
           PAGE: WORKSHOPS-EVENTS — RESPONSIVE
        ======================================== */
        @media (max-width: 968px) {
            .workshops-grid,
            .recurring-events__grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .events-cta__buttons {
                flex-direction: column;
            }

            .events-cta__buttons .btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .intro-workshop__cta {
                flex-direction: column;
            }

            .intro-workshop__cta .btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* ========================================
           UTILITY CLASSES
        ======================================== */
        .accent-label {
            font-size: 1.8rem;
            display: block;
            margin-bottom: 4px;
        }

        .icon-shrink {
            flex-shrink: 0;
        }

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

        .tag-badge {
            padding: 6px 14px;
            background: var(--gray-100);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--gray-900);
        }

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

        .img-aspect-43 {
            aspect-ratio: 4/3;
            overflow: hidden;
            border-radius: 8px;
        }

        .list-disc {
            padding-left: 20px;
            list-style: disc;
        }
