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

  :root {
    --rose:       #d9a49a;
    --rose-light: #f5ede9;
    --rose-dark:  #b0796e;
    --cream:      #faf7f4;
    --warm-gray:  #8a847d;
    --text:       #2c2825;
    --text-mid:   #5a5450;
    --border:     rgba(44,40,37,.1);
    --sans:       'DM Sans', system-ui, sans-serif;
    --heading:    'Playfair Display', serif;
    --radius:     12px;
    --nav-h:      80px;
  }

  html { scroll-behavior: smooth; }

  body {
    padding-top: var(--nav-h);
    font-family: var(--sans);
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading);
    font-weight: 400;
    letter-spacing: normal;
  }

  h1 { font-size: 4.5rem; line-height: 1.1; }
  h2 { font-size: 2.5rem; line-height: 1.2; }
  h3 { font-size: 1.75rem; line-height: 1.3; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    background: rgba(250,247,244,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center;
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    font-family: var(--sans);
    font-size: 1.5rem; font-weight: 400;
    color: var(--text); text-decoration: none;
    letter-spacing: .02em;
    cursor: pointer;
  }
  .logo span { color: var(--rose-dark); }
  .nav-links {
    display: flex; align-items: center; gap: 1.25rem;
    list-style: none;
  }
  .nav-links a {
    font-size: .78rem; font-weight: 400; letter-spacing: .03em;
    text-decoration: none; color: var(--text-mid);
    text-transform: uppercase;
    transition: color .2s;
    white-space: nowrap;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--rose-dark); }
  .nav-cta {
    background: var(--rose);
    color: #fff !important;
    padding: .45rem 1rem;
    border-radius: 100px;
    font-weight: 500 !important;
    white-space: nowrap;
    transition: background .2s !important;
  }
  .nav-cta:hover { background: var(--rose-dark) !important; color: #fff !important; }

  .nav-instagram {
    display: flex; align-items: center;
    color: var(--text-mid) !important;
    transition: color .2s !important;
    padding: 0 !important;
  }
  .nav-instagram:hover { color: var(--rose-dark) !important; }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: .3s;
  }
  .mobile-menu {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--cream); z-index: 99;
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 4rem 1rem 2rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--heading); font-size: 2rem; font-weight: 300;
    color: var(--text); text-decoration: none;
    transition: color .2s;
  }
  .mobile-menu a:hover { color: var(--rose-dark); }

  /* ── PAGES ── */
  main { padding-top: 0; }
  .page { display: none; min-height: 100vh; }
  .page.active { display: block; }
  
  main > section:first-child {
    margin-top: var(--nav-h);
  }

  /* ── SHARED ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
  .section { padding: 5rem 0; }
  .section-sm { padding: 3rem 0; }

  h1 { font-family: var(--heading); font-weight: 300; font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; }
  h2 { font-family: var(--heading); font-weight: 300; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; }
  h3 { font-family: var(--heading); font-weight: 400; font-size: 1.5rem; line-height: 1.3; }
  h4 { font-family: var(--heading); font-weight: 500; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; color: var(--rose-dark); }

  .tag {
    display: inline-block;
    font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
    color: var(--rose-dark); background: var(--rose-light);
    padding: .3rem .75rem; border-radius: 100px;
    margin-bottom: 1rem;
  }

  .btn {
    display: inline-block;
    padding: .75rem 2rem; border-radius: 100px;
    font-family: var(--sans); font-size: .875rem; font-weight: 500;
    letter-spacing: .04em; text-decoration: none; cursor: pointer;
    transition: .2s; border: none;
  }
  .btn-primary { background: var(--rose); color: #fff; }
  .btn-primary:hover { background: var(--rose-dark); }
  .btn-outline {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--border);
  }
  .btn-outline:hover { border-color: var(--rose); color: var(--rose-dark); }

  .divider { height: 1px; background: var(--border); margin: 0; }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--rose);
    padding: 1.5rem 0 1.25rem;
  }
  .stats-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
  }
  .stat-item {
    flex: 1; min-width: 160px;
    text-align: center; padding: 1rem 2rem;
  }
  .stat-num {
    font-family: var(--sans);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300; color: #fff;
    line-height: 1;
  }
  .stat-label {
    font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.75); margin-top: .4rem; font-weight: 400;
  }
  .stat-divider {
    width: 1px; height: 40px;
    background: rgba(255,255,255,.3);
    flex-shrink: 0;
  }
  .stats-note {
    text-align: center; margin-top: 1rem;
    font-size: .75rem; color: rgba(255,255,255,.6);
    letter-spacing: .05em;
  }
  @media (max-width: 640px) {
    .stat-divider { display: none; }
    .stat-item { min-width: 50%; }
  }


  .hero {
    min-height: unset;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 2.5rem;
    padding: 2.5rem 2rem 2.5rem 0;
    max-width: 1200px; margin: 0 auto;
  }
  .hero-text { max-width: 560px; }
  .hero-text h1 { margin-bottom: 1.5rem; }
  .hero-text p { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 2.5rem; line-height: 1.8; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-why {
    background: var(--rose-light);
    border-radius: 20px;
    padding: 2.5rem;
  }
  .hero-why h4 { margin-bottom: 1.5rem; }
  .hero-why-items { display: flex; flex-direction: column; gap: 0; }
  .hero-why-item {
    display: flex; gap: 1.25rem; align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(217,164,154,.25);
  }
  .hero-why-item:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-why-item:first-child { padding-top: 0; }
  .hero-why-num {
    font-family: var(--heading); font-size: 2rem;
    color: var(--rose-dark); font-weight: 300;
    line-height: 1; min-width: 3rem; text-align: right;
    flex-shrink: 0;
  }
  .hero-why-item strong {
    display: block; font-size: .95rem; font-weight: 500;
    color: var(--text); margin-bottom: .2rem;
  }
  .hero-why-item p { font-size: .85rem; color: var(--text-mid); line-height: 1.55; margin: 0; }


  .hqc-inner {
    background: var(--rose);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex; flex-direction: column;
    justify-content: center;
    width: 100%; min-height: 420px;
    position: relative; overflow: hidden;
  }
  .hqc-inner::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;
  }
  .hqc-inner::after {
    content: '';
    position: absolute; bottom: -40px; left: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
  }
  .hqc-deco {
    font-family: var(--heading); font-size: 5rem;
    color: rgba(255,255,255,.25); line-height: .8;
    margin-bottom: 1rem;
  }
  .hqc-text {
    font-family: var(--sans); font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #fff; font-weight: 300; line-height: 1.45;
    margin-bottom: 1.25rem;
  }
  .hqc-cite {
    font-family: var(--sans); font-style: normal;
    font-size: .85rem; color: rgba(255,255,255,.75);
    letter-spacing: .06em;
  }
  .hqc-divider {
    width: 40px; height: 1.5px;
    background: rgba(255,255,255,.35);
    margin: 1.5rem 0;
  }
  .hqc-meta { display: flex; flex-direction: column; gap: .2rem; }
  .hqc-label {
    font-family: var(--sans); font-weight: 500;
    font-size: .9rem; color: #fff; letter-spacing: .04em;
  }
  .hqc-sub {
    font-size: .8rem; color: rgba(255,255,255,.65);
    letter-spacing: .06em;
  }

  .angebote-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .angebot-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem 1.5rem;
    transition: .25s;
  }
  .angebot-card:hover { border-color: var(--rose); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(217,164,154,.15); }
  .angebot-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--rose-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    font-family: var(--heading); font-size: 1.4rem; color: var(--rose-dark);
  }
  .angebot-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
  .angebot-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }

  .warum-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 3rem; margin-top: 4rem;
  }
  .warum-item { }
  .warum-num {
    font-family: var(--heading); font-size: 3rem; color: var(--rose);
    font-weight: 300; line-height: 1;
    margin-bottom: .5rem;
  }
  .warum-item h3 { font-size: 1.1rem; margin-bottom: .4rem; }
  .warum-item p { font-size: .9rem; color: var(--text-mid); }

  .ausbildung-banner {
    background: var(--rose-light);
    border-radius: var(--radius);
    padding: 4rem;
    display: grid; grid-template-columns: 1fr auto;
    gap: 2rem; align-items: center;
  }
  .ausbildung-banner h2 { margin-bottom: 1rem; }
  .ausbildung-banner p { color: var(--text-mid); max-width: 560px; }

  /* ── TRAINER PAGE ── */
  .page-hero {
    background: var(--rose-light);
    padding: 5rem 0 4rem;
    text-align: center;
  }
  .page-hero .tag { margin-bottom: 1rem; }
  .page-hero p { color: var(--text-mid); margin-top: 1rem; font-size: 1.05rem; }

  .quote-banner {
    background: var(--rose-dark);
    padding: 3rem 2rem;
    text-align: center;
  }
  .quote-banner blockquote {
    font-family: var(--sans); font-style: italic;
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: #fff; font-weight: 300; line-height: 1.4;
  }
  .quote-banner cite {
    display: block; font-family: var(--sans);
    font-style: normal; font-size: .85rem;
    color: rgba(255,255,255,.7); margin-top: .75rem; letter-spacing: .08em;
  }

  .trainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem; margin-top: 3rem;
  }
  .trainer-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: .25s;
  }
  .trainer-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
  .trainer-img {
    width: 100%; height: 280px;
    background: var(--rose-light);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .trainer-img img { width: 100%; height: 100%; object-fit: cover; }
  .trainer-img--logo { background: var(--rose-light); display: flex; align-items: center; justify-content: center; }
  .trainer-img--logo img { width: 70%; height: 70%; object-fit: contain; }
  .trainer-img-placeholder {
    font-family: var(--heading); font-size: 3rem; color: var(--rose);
  }
  .trainer-info { padding: 1.5rem; }
  .trainer-info h3 { margin-bottom: .25rem; }
  .trainer-specialty {
    font-size: .85rem; color: var(--rose-dark);
    font-weight: 500; letter-spacing: .03em;
  }

  /* ── KURSE PAGE ── */
  .kurs-intro {
    max-width: 700px; margin: 0 auto; text-align: center;
  }
  .kurs-intro p { color: var(--text-mid); margin-top: 1rem; font-size: 1.05rem; }

  .kurs-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem; margin-top: 3rem;
  }
  .kurs-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: .25s;
  }
  .kurs-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.07); }
  .kurs-img {
    height: 200px; background: var(--rose-light);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--heading); font-size: 4rem; color: var(--rose);
    overflow: hidden;
  }
  .kurs-body { padding: 1.5rem; }
  .kurs-body h3 { margin-bottom: .5rem; }
  .kurs-body p { font-size: .9rem; color: var(--text-mid); margin-bottom: 1rem; }

  .eversports-box {
    background: var(--rose-light); border-radius: var(--radius);
    padding: 3rem; text-align: center; margin-top: 4rem;
  }
  .eversports-box h3 { margin-bottom: .75rem; }
  .eversports-box p { color: var(--text-mid); margin-bottom: 1.5rem; }

  /* ── HANNA VIDEO ── */
  .hanna-video-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44,40,37,.12);
  }
  .hanna-video-caption {
    display: flex; align-items: center; gap: .5rem;
    padding: .75rem 1rem;
    background: #fff;
    font-size: .85rem; color: var(--text-mid);
    border-top: 1px solid var(--border);
  }
  .hanna-video-caption strong { color: var(--text); }

  /* ── PROBETRAINING INTRO ── */
  .probe-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .probe-intro-text { max-width: 480px; }
  .probe-intro-video { width: 100%; }

  /* ── PROBETRAINING ── */
  .probe-banner {
    width: 100%; height: 260px; overflow: hidden;
  }
  .probe-banner img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
  }
  @media (max-width: 640px) {
    .probe-banner { height: 280px; }
  }

  .probe-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    height: 500px;
  }
  .probe-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
  }
  .probe-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2.5rem; align-items: start;
  }
  .probe-steps { margin-top: 2rem; }
  .probe-step {
    display: flex; gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
  }
  .probe-step:last-child { border-bottom: none; }
  .step-num {
    font-family: var(--heading); font-size: 2rem; color: var(--rose);
    font-weight: 300; line-height: 1; min-width: 2.5rem;
  }
  .step-content h3 { font-size: 1.05rem; margin-bottom: .25rem; }
  .step-content p { font-size: .9rem; color: var(--text-mid); }

  .probe-cta-box {
    background: var(--rose-light); border-radius: var(--radius);
    padding: 2.5rem; position: sticky; top: 100px;
  }
  .probe-cta-box h3 { margin-bottom: .75rem; }
  .probe-cta-box p { color: var(--text-mid); margin-bottom: 1.5rem; font-size: .95rem; }
  .contact-info { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
  .contact-info a {
    color: var(--text-mid); text-decoration: none; font-size: .9rem;
    transition: color .2s;
  }
  .contact-info a:hover { color: var(--rose-dark); }

  /* ── GUTSCHEINE ── */
  .gutschein-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2.5rem; align-items: start;
  }
  .gutschein-options { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  .gutschein-option {
    background: #fff; border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; transition: .2s;
  }
  .gutschein-option:hover, .gutschein-option.selected {
    border-color: var(--rose); background: var(--rose-light);
  }
  .gutschein-option .label { font-weight: 500; }
  .gutschein-option .price {
    font-family: var(--sans); font-size: 1.4rem;
    color: var(--rose-dark);
  }
  .gutschein-steps { margin-top: 2.5rem; }
  .gutschein-step {
    display: flex; gap: 1rem; margin-bottom: 1rem;
  }
  .gutschein-step-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--rose); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; font-weight: 500; flex-shrink: 0; margin-top: 2px;
  }
  .gutschein-step-text { font-size: .9rem; color: var(--text-mid); }
  .gutschein-step-text strong { color: var(--text); }

  .gutschein-card-preview {
    background: linear-gradient(135deg, var(--rose-dark), #c4877c);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center; color: #fff;
    position: sticky; top: 100px;
  }
  .gutschein-card-preview .g-label {
    font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
    opacity: .8; margin-bottom: 1rem;
  }
  .gutschein-card-preview .g-title {
    font-family: var(--heading); font-size: 1.8rem; font-weight: 300;
    margin-bottom: .5rem;
  }
  .gutschein-card-preview .g-studio {
    font-size: .9rem; opacity: .7; margin-bottom: 2rem;
  }
  .gutschein-card-preview .g-value {
    font-family: var(--heading); font-size: 4rem; font-weight: 300;
    line-height: 1;
  }
  .gutschein-card-preview .g-info {
    font-size: .8rem; opacity: .6; margin-top: 1rem; line-height: 1.6;
  }

  /* ── KONTAKT ── */
  .kontakt-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2.5rem; align-items: start;
  }
  .kontakt-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
  .kontakt-item {
    display: flex; gap: 1rem; align-items: flex-start;
  }
  .kontakt-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--rose-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .kontakt-item h4 { font-size: .8rem; letter-spacing: .08em; color: var(--warm-gray); margin-bottom: .2rem; text-transform: uppercase; }
  .kontakt-item a, .kontakt-item p { color: var(--text); text-decoration: none; font-size: .95rem; }
  .kontakt-item a:hover { color: var(--rose-dark); }

  .kontakt-form { }
  .form-row { margin-bottom: 1.25rem; }
  .form-row label {
    display: block; font-size: .8rem; letter-spacing: .06em;
    text-transform: uppercase; color: var(--warm-gray);
    margin-bottom: .4rem;
  }
  .form-row input, .form-row textarea {
    width: 100%; padding: .8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px; background: #fff;
    font-family: var(--sans); font-size: .95rem; color: var(--text);
    transition: border-color .2s;
    outline: none;
  }
  .form-row input:focus, .form-row textarea:focus { border-color: var(--rose); }
  .form-row textarea { resize: vertical; min-height: 130px; }
  .form-checkbox {
    display: flex; gap: .75rem; align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .form-checkbox input { margin-top: 4px; accent-color: var(--rose); }
  .form-checkbox label { font-size: .85rem; color: var(--text-mid); line-height: 1.5; }

  .map-embed {
    border-radius: var(--radius); overflow: hidden;
    height: 280px; margin-top: 2rem;
    border: 1px solid var(--border);
  }
  .map-embed iframe { width: 100%; height: 100%; border: none; }

  /* ── FOOTER ── */
  footer {
    background: var(--text); color: rgba(255,255,255,.7);
    padding: 4rem 0 2rem;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
  }
  .footer-brand .logo { color: #fff; }
  .footer-brand .logo span { color: var(--rose); }
  .footer-brand p { margin-top: .75rem; font-size: .875rem; line-height: 1.7; }
  .footer-col h4 {
    font-family: var(--sans); font-size: .75rem;
    letter-spacing: .1em; text-transform: uppercase;
    color: #fff; font-weight: 500; margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
  .footer-col ul li a {
    color: rgba(255,255,255,.6); text-decoration: none;
    font-size: .875rem; transition: color .2s;
    cursor: pointer;
  }
  .footer-col ul li a:hover { color: var(--rose); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .8rem;
  }
  .footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
  .footer-bottom a:hover { color: var(--rose); }

  /* ── SUMMER GLOW BANNER ── */
  .summer-glow-banner {
    background: linear-gradient(135deg, var(--rose-dark), #c4877c);
    border-radius: var(--radius);
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0;
  }
  .summer-glow-price {
    text-align: center;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    min-width: 160px;
  }
  @media (max-width: 640px) {
    .summer-glow-banner { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
    .summer-glow-price { text-align: left; }
  }

  /* ── PREISE ── */
  .preise-kategorie { margin-bottom: 1rem; }
  .preise-kat-header { margin-bottom: 2rem; }
  .preise-kat-header h4 { margin-bottom: .3rem; }
  .preise-kat-header p { font-size: .9rem; color: var(--text-mid); }

  .preise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  .preise-grid--3 {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .preis-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
    transition: .2s;
  }
  .preis-card:hover { border-color: var(--rose); box-shadow: 0 6px 20px rgba(217,164,154,.15); }
  .preis-card--featured {
    border-color: var(--rose);
    background: var(--rose-light);
  }
  .preis-badge {
    position: absolute; top: 1rem; right: 1rem;
    background: var(--rose); color: #fff;
    font-size: .7rem; font-weight: 500; letter-spacing: .08em;
    text-transform: uppercase; padding: .25rem .65rem;
    border-radius: 100px;
  }
  .preis-top { margin-bottom: 1.5rem; }
  .preis-name {
    font-family: var(--sans); font-size: 1.25rem;
    font-weight: 400; margin-bottom: .35rem; color: var(--text);
  }
  .preis-desc { font-size: .85rem; color: var(--text-mid); line-height: 1.55; }
  .preis-bottom { }
  .preis-amount {
    font-family: var(--heading); font-size: 2.5rem;
    font-weight: 300; color: var(--rose-dark); line-height: 1;
  }
  .preis-cent { font-size: 1.4rem; }
  .preis-unit { font-family: var(--sans); font-size: .85rem; color: var(--text-mid); font-weight: 400; }
  .preis-note { font-size: .78rem; color: var(--warm-gray); margin-top: .4rem; }

  .preise-divider {
    height: 1px; background: var(--border);
    margin: 3.5rem 0;
  }

  .preise-einstieg {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2.5rem; align-items: center;
  }
  .preise-einstieg-text h3 { margin: .5rem 0 .75rem; }
  .preise-einstieg-text p { color: var(--text-mid); font-size: .95rem; }
  .preise-einstieg-note {
    background: var(--cream); border-radius: var(--radius);
    padding: 2rem; border: 1px solid var(--border);
  }

  /* ── STUDIO NEWS ── */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
  }
  .news-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: .25s;
  }
  .news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.07); transform: translateY(-2px); }
  .news-card-img {
    width: 100%; height: 200px;
    background: var(--rose-light);
    overflow: hidden;
  }
  .news-card-img img { width: 100%; height: 100%; object-fit: cover; }
  .news-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
  }
  .news-card-img-placeholder img { width: 60%; height: 60%; object-fit: contain; }
  .news-card-body { padding: 1.5rem; }
  .news-card-meta {
    display: flex; gap: .75rem; align-items: center;
    margin-bottom: .75rem;
  }
  .news-card-kat {
    font-size: .72rem; font-weight: 500; letter-spacing: .08em;
    text-transform: uppercase; color: var(--rose-dark);
    background: var(--rose-light); padding: .2rem .65rem;
    border-radius: 100px;
  }
  .news-card-datum {
    font-size: .8rem; color: var(--warm-gray);
  }
  .news-card-titel {
    font-family: var(--sans); font-size: 1.25rem;
    font-weight: 400; margin-bottom: .6rem; color: var(--text);
    line-height: 1.3;
  }
  .news-card-text {
    font-size: .88rem; color: var(--text-mid);
    line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 4;
    -webkit-box-orient: vertical; overflow: hidden;
  }
  .news-card-video {
    margin-top: 1rem;
  }
  .news-card-autor {
    font-size: .75rem; color: var(--warm-gray); letter-spacing: .03em;
  }
    font-size: .85rem; color: var(--rose-dark);
    text-decoration: none; font-weight: 500;
  }
  .news-card-video a:hover { text-decoration: underline; }
  @media (max-width: 640px) {
    .news-grid { grid-template-columns: 1fr; }
  }


  .studio-banner {
    width: 100%; height: 320px; overflow: hidden;
  }
  .studio-banner img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
  }
  @media (max-width: 640px) {
    .studio-banner { height: 220px; }
  }

  /* ── PODCASTS ── */
  .podcast-grid { display: flex; flex-direction: column; gap: 1.25rem; }
  .podcast-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.75rem 2rem;
    display: grid;
    grid-template-columns: 3rem 1fr;
    grid-template-rows: auto auto;
    gap: .5rem 1.25rem;
    transition: .2s;
  }
  .podcast-card:hover { border-color: var(--rose); box-shadow: 0 6px 20px rgba(217,164,154,.12); }
  .podcast-icon { grid-row: 1; grid-column: 1; font-size: 1.75rem; line-height: 1; padding-top: .25rem; }
  .podcast-info { grid-row: 1; grid-column: 2; }
  .podcast-num { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--rose-dark); font-weight: 500; margin-bottom: .3rem; }
  .podcast-title { font-family: var(--sans); font-size: 1.2rem; font-weight: 400; margin-bottom: .4rem; color: var(--text); }
  .podcast-desc { font-size: .875rem; color: var(--text-mid); line-height: 1.6; }
  .podcast-player { grid-row: 2; grid-column: 2; width: 100%; height: 40px; margin-top: .75rem; accent-color: var(--rose); }


    .preise-einstieg { grid-template-columns: 1fr; gap: 2rem; }
  }

  /* ══════════════════════════════════
     RESPONSIVE – TABLET (≤900px)
  ══════════════════════════════════ */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 2rem; }
    .hero-why { order: -1; }
    .probe-layout, .gutschein-layout, .kontakt-layout { grid-template-columns: 1fr; }
    .probe-intro-layout { grid-template-columns: 1fr; gap: 2rem; }
  /* Mobile: Probetraining Video kleiner */
  .probe-intro-video div {
    max-width: 200px !important;
  }
  
  /* Mobile: Logo größer */
  .logo img {
    height: 80px !important;
  }

    .probe-cta-box, .gutschein-card-preview { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .preise-einstieg { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { flex-wrap: wrap; }
    .stat-item { min-width: 45%; }
    .stat-divider { display: none; }
  }

  /* ══════════════════════════════════
     RESPONSIVE – MOBILE (≤640px)
  ══════════════════════════════════ */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
  }

  @media (max-width: 640px) {
    /* Nav */
    :root { --nav-h: 80px; }
    nav { height: 80px; }
    .page { padding-top: 80px; }
    .mobile-menu { top: 80px; }
    .logo img { height: 70px !important; }

    /* Typography */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.2rem; }

    /* Spacing */
    .container { padding: 0 1.25rem; }
    .section { padding: 3rem 0; }
    .section-sm { padding: 2rem 0; }

    /* Hero */
    .hero { padding: 1.5rem 1.25rem; gap: 1.5rem; grid-template-columns: 1fr; }
    .hero-why { order: 1; }
    .hero-text { order: 0; }
    .hero-text h1 { color: var(--text); }
    .hero-text p { color: var(--text-mid); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; }
    .hero-why { padding: 1.5rem; }
    .hero-why-item { gap: 1rem; }
    .hero-why-num { font-size: 1.5rem; min-width: 2.5rem; }

    /* Stats */
    .stats-bar { padding: 2rem 0; }
    .stats-grid { gap: 0; }
    .stat-item { min-width: 50%; padding: 1rem; }
    .stat-num { font-size: 2.2rem; }
    .stat-label { font-size: .7rem; }

    /* Cards */
    .angebote-grid { grid-template-columns: 1fr; gap: 1rem; }
    .trainer-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .kurs-grid { grid-template-columns: 1fr; }
    .preise-grid { grid-template-columns: 1fr; }
    .preise-grid--3 { grid-template-columns: 1fr; }

    /* Trainer card image */
    .trainer-img { height: 200px; }

    /* Probe */
    .probe-layout { gap: 2rem; }
    .probe-cta-box { padding: 1.5rem; }
    .probe-img-wrap { height: 260px; }

    /* Gutschein */
    .gutschein-layout { gap: 2rem; }
    .gutschein-card-preview { padding: 2rem 1.5rem; }
    .gutschein-card-preview .g-value { font-size: 3rem; }

    /* Kontakt */
    .kontakt-layout { gap: 2rem; }
    .map-embed { height: 220px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
    footer { padding: 3rem 0 1.5rem; }

    /* Page hero sections */
    .page-hero { padding: 3rem 0 2.5rem; }

    /* Ausbildung page */
    #page-ausbildung .container > div { grid-template-columns: 1fr !important; gap: 2rem !important; }

    /* Buttons */
    .btn { padding: .7rem 1.5rem; }

    /* Quote card */
    .hqc-inner { padding: 2rem 1.5rem; min-height: 320px; }
    .hqc-text { font-size: 1.2rem; }

    /* Kurs img */
    .kurs-img { height: 160px; }

    /* Podcasts */
    .podcast-card { grid-template-columns: 1fr; }
    .podcast-icon { grid-row: 1; grid-column: 1; }
    .podcast-info { grid-row: 2; grid-column: 1; }
    .podcast-player { grid-row: 3; grid-column: 1; }

    /* Preise einstieg */
    .preise-einstieg-text div { flex-direction: column; }
  }

  /* ══════════════════════════════════
     RESPONSIVE – SMALL MOBILE (≤380px)
  ══════════════════════════════════ */
  @media (max-width: 380px) {
    .trainer-grid { grid-template-columns: 1fr; }
    .stat-item { min-width: 100%; }
    h1 { font-size: 1.9rem; }
  }


  /* ── IMPRESSUM / DATENSCHUTZ ── */
  .legal-content {
    max-width: 780px; margin: 0 auto;
    padding: 5rem 2rem;
  }
  .legal-content h1 { margin-bottom: 2rem; }
  .legal-content h2 { font-size: 1.4rem; margin: 2rem 0 .75rem; }
  .legal-content p, .legal-content li { color: var(--text-mid); margin-bottom: .75rem; font-size: .95rem; }
  .legal-content ul { padding-left: 1.25rem; }
  .legal-content a { color: var(--rose-dark); }

  /* animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .page.active .hero-text,
  .page.active .page-hero {
    animation: fadeUp .6s ease both;
  }
