/*
Theme Name: Rainbow Park
Theme URI: https://rainbow-park.de/
Description: Theme für den Rainbow Park Wuppertal.
Author: serend.design
Author URI: https://serend.design
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: rainbow-park
*/

  /* ---------- Später in Style.css für WP unterbringen ---------- */

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #1F1F1D;
    background: #FAF7EE;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  .hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    background: #FAF7EE;
    --sport-accent: #1F1F1D;
    --sport-tint:   #ECEAE3;
    --sport-tint-2: #DDDBD2;
  }

  .tint {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: background 700ms ease;
    z-index: 1;
  }
  @keyframes tint-float-1 {
    0%   { transform: translate(0, 0)      scale(1); }
    33%  { transform: translate(-18px, 14px) scale(1.045); }
    66%  { transform: translate(12px, -10px) scale(0.97); }
    100% { transform: translate(0, 0)      scale(1); }
  }
  @keyframes tint-float-2 {
    0%   { transform: translate(0, 0)       scale(1); }
    40%  { transform: translate(14px, -18px) scale(1.06); }
    75%  { transform: translate(-10px, 8px)  scale(0.95); }
    100% { transform: translate(0, 0)       scale(1); }
  }

  .tint.tint-1 {
    right: -8vw; top: -10vh;
    width: 70vh; height: 70vh;
    background: var(--sport-tint);
    animation: tint-float-1 12s ease-in-out infinite;
  }
  .tint.tint-2 {
    right: 6vw; bottom: -10vh;
    width: 32vh; height: 32vh;
    opacity: 0.55;
    background: var(--sport-tint-2);
    animation: tint-float-2 9s ease-in-out infinite;
  }

  .athlete-stage {
    position: absolute;
    right: 6vw;
    bottom: 0;
    height: 88vh;
    width: 60vw;
    max-width: 820px;
    z-index: 2;
    pointer-events: none;
  }
  .athlete-stage img {
    position: absolute;
    right: 0; bottom: 0;
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0;
    transform: translateX(120px);
    transition: opacity 0.55s ease, transform 0.95s cubic-bezier(.16,1,.3,1);
  }
  .athlete-stage img.is-active {
    opacity: 1;
    transform: translateX(0);
  }

  .nav {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    transition: background 0.25s ease, box-shadow 0.25s ease;
  }
  .nav.is-scrolled {
    background: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  }
  .nav.is-scrolled .nav-links {
    border-color: transparent;
  }
  .logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo-claim {
    font-size: 11px;
    font-weight: 500;
    color: #333330;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  @media (max-width: 767px) {
    .logo-claim { display: none; }
  }
  .logo {
    width: 36px; height: 36px;
    border-radius: 4px;
    display: grid; place-items: center;
    font-weight: 700; font-size: 13px;
    letter-spacing: -0.02em;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    font-size: 15px;
    font-weight: 500;
    color: #1F1F1D;
  }
  .nav-links {
    background: rgba(255,255,255,0.85);
    padding: 15px 20px;
    border-radius: 200px;
    border: 0.8px solid rgba(0, 0, 0, 0.15);
}
  .nav-links a { color: inherit; text-decoration: none; opacity: 0.85; transition: opacity .2s, transform .2s cubic-bezier(.34,1.56,.64,1); display: inline-block; position: relative; }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--link-accent, var(--sport-accent));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.34,1.56,.64,1);
  }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links a:hover { opacity: 1; transform: scale(1.08); }
  .nav-cta { display: flex; gap: 10px; }
  #cta-mehr-label {
    display: contents;
}
  .btn-pill {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    border: 0.8px solid rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    color: #1F1F1D;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center;
    transition: background .2s, border-color .2s, transform .2s cubic-bezier(.34,1.56,.64,1);
  }
  .btn-pill:hover { background: white; transform: scale(1.06); }
  .btn-pill.dark {
    background: #1F1F1D;
    color: white;
    border-color: #1F1F1D;
  }
  .btn-pill.dark:hover { background: #000; transform: scale(1.06); }
 .btn-pill.green {
    background: #77b800;
    color: white;
    border-color: #77b800;
    font-weight: 700;
}
 .btn-pill.green:hover {
    background: #77b800;
    color: white;
    border-color: #77b800;
    font-weight: 700;
    transform: scale(1.06); 
}
  .title-block {
    position: absolute;
    left: 6vw;
    top: 30vh;
    z-index: 3;
  }

  .line-mask {
    display: block;
    overflow: hidden;
    padding: 0.06em 0;
    margin: -0.06em 0;
  }
  .line-inner {
    display: block;
    transform: translateY(120%);
    will-change: transform;
  }

  .title {
    font-size: clamp(64px, 9vw, 132px);
    font-weight: 800;
    line-height: 0.75;
    margin: 0;
    color: #1F1F1D;
    font-family: 'SN Pro', sans-serif;
    text-transform: uppercase;
  }
  .title .line-mask-accent .line-inner {
    color: var(--sport-accent);
    transition: color 700ms ease;
  }

  .lede {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #333330;
    max-width: 700px;
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
  }
  .cta-row {
    margin-top: 28px;
    display: flex; gap: 12px; flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
  }
  .btn-cta {
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--sport-accent);
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background 700ms ease, transform .15s, filter .2s;
    border: none;
    cursor: pointer;
  }
  .btn-cta:hover { filter: brightness(0.92); }
  .btn-cta:active { transform: scale(0.98); }
  .btn-cta .arrow { transition: transform .25s; }
  .btn-cta:hover .arrow { transform: translateX(3px); }
  .btn-cta.light {
    background: rgba(255,255,255,0.85);
    color: #1F1F1D;
    border: 0.8px solid rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);
  }
  .btn-cta.light:hover { filter: none; background: white; }
  @keyframes mask-up {
    from { transform: translateY(120%); }
    to   { transform: translateY(0); }
  }
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .title-block.is-animating .title .line-mask:nth-of-type(1) .line-inner {
    animation: mask-up 0.85s cubic-bezier(.16,1,.3,1) 0.1s both;
  }
  .title-block.is-animating .title .line-mask:nth-of-type(2) .line-inner {
    animation: mask-up 0.85s cubic-bezier(.16,1,.3,1) 0.2s both;
  }
  .title-block.is-animating .lede {
    animation: fade-up 0.6s cubic-bezier(.16,1,.3,1) 0.32s both;
  }
  .title-block.is-animating .cta-row {
    animation: fade-up 0.6s cubic-bezier(.16,1,.3,1) 0.42s both;
  }

  .news-pin {
    position: absolute;
    bottom:35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 0.5px solid rgba(0,0,0,0.08);
    box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.04);
    overflow: hidden;
    transition:
      width      0.45s cubic-bezier(.4,0,.2,1),
      padding    0.45s cubic-bezier(.4,0,.2,1),
      background .2s ease;
  }
  .news-pin[hidden] { display: none; }

  .news-pin.is-expanded {
    width: 300px;
    padding: 16px 18px;
    border-radius: 14px;
    cursor: default;
  }
  .news-pin.is-collapsed {
    width: min-content;
    padding: 10px 16px;
    border-radius: 14px;
    cursor: pointer;
  }
  .news-pin.is-collapsed:hover { background: white; }

  .news-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .news-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--sport-accent);
    transition: color 700ms ease;
    white-space: nowrap;
  }
  .news-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--sport-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    transition: background 700ms ease;
  }

  .news-close {
    background: none; border: none; cursor: pointer;
    width: 22px; height: 22px;
    display: grid; place-items: center;
    color: #888;
    border-radius: 50%;
    font-size: 18px; line-height: 1;
    flex-shrink: 0;
    transition: background .15s, color .15s, opacity 0.25s ease, width 0.3s ease, margin 0.3s ease;
  }
  .news-close:hover { background: rgba(0,0,0,0.05); color: #1F1F1D; }

  .news-pin.is-collapsed .news-close {
    opacity: 0;
    width: 0;
    margin-left: 0;
    pointer-events: none;
  }

  .news-body {
    overflow: hidden;
    max-height: 500px;
    opacity: 1;
    margin-top: 12px;
    transition:
      max-height 0.4s cubic-bezier(.4,0,.2,1),
      opacity    0.25s ease,
      margin-top 0.4s cubic-bezier(.4,0,.2,1);
  }
  .news-pin.is-collapsed .news-body {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
  }

  .news-item {
    display: block;
    text-decoration: none;
    color: #1F1F1D;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    padding: 6px 0;
  }
  .news-item:hover { text-decoration: underline; text-underline-offset: 2px; }
  .news-divider {
    height: 1px;
    background: rgba(0,0,0,0.07);
    margin: 4px 0;
  }
  .news-footer {
    margin-top: 10px;
    font-size: 12px;
    color: #333330;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .news-footer:hover { color: #1F1F1D; }

  .bottom-bar {
    position: absolute;
    bottom: 36px;
    left: 6vw;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .pagination {
    display: flex; align-items: center; gap: 16px;
  }
  .dots { display: flex; gap: 6px; }
  .dot-btn {
    width: 22px; height: 3px;
    background: rgba(0,0,0,0.18);
    border: none;
    border-radius: 2px;
    padding: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: width .3s ease;
  }
  .dot-btn:hover { background: rgba(0,0,0,0.35); }
  .dot-btn.is-active {
    width: 36px;
    background: rgba(0,0,0,0.12);
  }

  .dot-fill {
    position: absolute;
    inset: 0;
    background: var(--sport-accent);
    transform: scaleX(0);
    transform-origin: left;
    border-radius: inherit;
    transition: background 700ms ease;
    pointer-events: none;
  }
  .dot-btn.is-active .dot-fill {
    animation: dot-progress 7s linear forwards;
  }
  @keyframes dot-progress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }

  .dots.is-paused .dot-btn.is-active .dot-fill {
    animation-play-state: paused;
  }
  .dot-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
    transform: translateX(-200%);
    border-radius: inherit;
    pointer-events: none;
  }
  .dots.is-paused .dot-btn.is-active::after {
    animation: dot-shimmer 1.4s ease-in-out infinite;
  }
  @keyframes dot-shimmer {
    0%   { transform: translateX(-200%); }
    100% { transform: translateX(300%); }
  }

  .slide-nav {
    display: flex; gap: 8px;
  }
  .slide-arrow {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 0.8px solid rgba(0,0,0,0.18);
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    cursor: pointer;
    display: grid; place-items: center;
    transition: background .2s, border-color .2s, transform .15s;
  }
  .slide-arrow:hover { background: white; border-color: rgba(0,0,0,0.4); }
  .slide-arrow:active { transform: scale(0.94); }
  .slide-arrow svg { width: 14px; height: 14px; stroke: #1F1F1D; }

  .nav-mobile-right { display: none; }
  @media (max-width: 900px) {
    .nav { padding: 30px 24px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-mobile-right { display: flex; align-items: center; gap: 8px; }
    .title-block { left: 6vw; right: 6vw; top:140px; }
    .lede { max-width: 100%; }
    .news-pin { right: 16px; bottom: 90px; }
    .news-pin.is-expanded { width: calc(100vw - 32px); max-width: 320px; }
    .athlete-stage {
      right: -10vw;
      width: 95vw;
      height: 70vh;
      opacity: 1;
    }
    .bottom-bar { left: 24px; bottom: 28px; }
  }

  @media (max-width: 540px) {
    .title { font-size: clamp(54px, 12vw, 80px) }
  }

  .nav-mobile-right {
    align-items: center;
    gap: 8px;
  }
  .hamburger {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    border: 0.8px solid rgba(0,0,0,0.12);
    border-radius: 50%;
    cursor: pointer;
    display: grid; place-items: center;
    padding: 0;
    flex-shrink: 0;
    transition: background .2s;
  }
  .hamburger:hover { background: white; }
  .hamburger-inner {
    display: flex;
    flex-direction: column;
    gap: 4.5px;
    width: 16px;
  }
  .hamburger-inner span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #1F1F1D;
    border-radius: 2px;
  }

  .mobile-nav-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: #FAF7EE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px 56px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1);
  }
  .mobile-nav-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(0,0,0,0.4);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: inherit;
    transition: background .2s, color .2s;
  }
  .mobile-nav-close:hover { background: rgba(0,0,0,0.06); color: #1F1F1D; }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .mobile-nav-links a {
    color: #1F1F1D;
    text-decoration: none;
    font-size: clamp(26px, 7.5vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1), color .2s;
  }
  .mobile-nav-links a:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
  .mobile-nav-links a:hover { color: rgba(0,0,0,0.4); }
  .mobile-nav-links a .nav-arrow {
    font-size: 0.6em;
    opacity: 0.25;
    transition: transform .2s, opacity .2s;
  }
  .mobile-nav-links a:hover .nav-arrow { transform: translateX(4px); opacity: 0.5; }
  .mobile-nav-modal.is-open .mobile-nav-links a { opacity: 1; transform: translateY(0); }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(1) { transition-delay: .04s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(2) { transition-delay: .09s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(3) { transition-delay: .14s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(4) { transition-delay: .19s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(5) { transition-delay: .24s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(6) { transition-delay: .29s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(7) { transition-delay: .34s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(8) { transition-delay: .38s; }
  .mobile-nav-links .mobile-nav-book {
    border: none !important;
    margin-top: 20px;
    background: #1F1F1D;
    color: white !important;
    border-radius: 999px;
    padding: 14px 28px !important;
    font-size: 16px !important;
    justify-content: center !important;
    transition: opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1), background .2s !important;
  }
  .mobile-nav-links .mobile-nav-book:hover { color: white !important; background: #000; }
  .mobile-nav-links .mobile-nav-book .nav-arrow { display: none; }

  .sport-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: #FAF7EE;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .sport-modal.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .sport-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10;
    background: none;
    border: none;
    color: #1F1F1D;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: inherit;
    transition: background 0.2s;
  }
  .sport-modal-close:hover { background: rgba(0,0,0,0.07); }
  .sport-modal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    width: 100%;
    height: 100%;
  }
  a.sport-card.is-visible {
    text-decoration: none !important;
}
  a.sport-card{
    text-decoration: none !important;
}
  .sport-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: filter 0.2s;
  }
  .sport-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.45s ease, transform 0.55s cubic-bezier(.16,1,.3,1), filter 0.2s;
  }
  .sport-card:hover { filter: brightness(1.12); }
  .sport-card-name {
    font-size: 28px;
    font-weight: 800;
    font-family: 'SN Pro', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    margin: 0 0 -20px;
    text-align: center;
  }
  .sport-card-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
  .sport-card-logo img {
    width: 80%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
  }
  @media (max-width: 900px) {
    .sport-modal-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .sport-card { padding: 20px 16px; }
    .sport-card-name { font-size: 18px; }
    .sport-card-logo img { width: 80%; height: auto; }
  }

  .top-stripe {
    display: flex;
    height: 10px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 200;
  }
  .top-stripe-block { flex: 1; }

  .scroll-wrapper {
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    background: #FAF7EE;
  }

  .section {
    padding: 96px 6vw;
    background: #FAF7EE;
  }
  .section-subheadabove {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #333330;
    margin: 0 0 14px;
  }
  .section-headline {
    font-family: 'SN Pro', sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    margin: 0 0 16px;
    color: #1F1F1D;
  }
  .section-sub {
    font-size: 17px;
    line-height: 1.65;
    color: #333330;
    max-width: 560px;
    margin: 0 0 48px;
  }

  .activities-section { padding-bottom: 80px; }
  .activities-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }
  .activity-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-accent, #ECEAE3);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  }
  .activity-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
  .activity-card-img { display: none; }
  .activity-card-overlay { display: none; }
  .activity-card-body {
    position: relative;
    z-index: 2;
    padding: 20px 22px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
  }
  .activity-card-name {
    font-family: 'SN Pro', sans-serif;
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin: 0 0 4px;
    line-height: 1;
  }
  .activity-card-usp {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.3;
  }
  .activity-card-arrow {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
    color: white;
    font-size: 16px;
    transition: background .2s, transform .2s;
  }
  .activity-card:hover .activity-card-arrow { background: rgba(255,255,255,0.35); transform: translateX(3px); }

  /* Restaurant + Spa row */
  .activities-extra {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .extra-card {
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 32px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s, transform .2s cubic-bezier(.34,1.56,.64,1);
    cursor: pointer;
  }
  .extra-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
  .extra-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: #ECEAE3;
    display: grid; place-items: center;
    font-size: 26px;
    flex-shrink: 0;
  }
  .extra-card-title {
    font-family: 'SN Pro', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 4px;
  }
  .extra-card-sub { font-size: 13px; color: #333330; margin: 0; }

  .story-section {
    padding: 96px 6vw;
    background: #FAF7EE;
    overflow: hidden;
  }
  .story-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 72px;
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
  }
  .story-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  .story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .story-number {
    font-family: 'SN Pro', sans-serif;
    font-size: clamp(72px, 10vw, 140px);
    font-weight: 800;
    line-height: 0.85;
    color: #1F1F1D;
    text-transform: uppercase;
    margin: 0 0 24px;
  }
  .story-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333330;
    margin: 0 0 28px;
  }
  .story-text strong { color: #1F1F1D; }

  .restaurant-section {
    padding: 80px 6vw;
    background: #FAF7EE;
  }
  .restaurant-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
  }
  .restaurant-img {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  .restaurant-img img { width: 100%; height: 100%; object-fit: cover; }
  .restaurant-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }

  .events-section { padding: 96px 6vw; }
  .events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .event-card {
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s cubic-bezier(.34,1.56,.64,1);
  }
  .event-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }
  .event-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
  .event-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
  .event-card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #333330;
    margin: 0 0 10px;
  }
  .event-card-title {
    font-family: 'SN Pro', sans-serif;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0 0 12px;
  }
  .event-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #333330;
    margin: 0 0 24px;
    flex: 1;
  }

  .event-form-overlay {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(31,31,29,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    backdrop-filter: blur(4px);
  }
  .event-form-overlay.is-open { opacity: 1; pointer-events: auto; }
  .event-form-modal {
    background: #FAF7EE;
    border-radius: 24px;
    padding: 40px 40px 36px;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform .35s cubic-bezier(.16,1,.3,1);
    max-height: 90vh;
    overflow-y: auto;
  }
  .event-form-overlay.is-open .event-form-modal { transform: translateY(0) scale(1); }
  .event-form-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; font-size: 22px; cursor: pointer;
    color: #333330; width: 36px; height: 36px; display: grid; place-items: center;
    border-radius: 50%; transition: background .15s;
  }
  .event-form-close:hover { background: rgba(0,0,0,0.06); }
  .event-form-title { font-family: 'SN Pro', sans-serif; font-size: 28px; font-weight: 800; text-transform: uppercase; margin: 0 0 24px; line-height: 1.1; }
  .event-form-field { margin-bottom: 14px; }
  .event-form-field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; margin-bottom: 5px; color: #333330; text-transform: uppercase; }
  .event-form-field input,
  .event-form-field textarea,
  .event-form-field select {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.14);
    background: white;
    font-size: 15px;
    font-family: inherit;
    color: #1F1F1D;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
  }
  .event-form-field input:focus,
  .event-form-field textarea:focus,
  .event-form-field select:focus {
    border-color: #78B800;
    box-shadow: 0 0 0 3px rgba(120,184,0,0.15);
  }
  .event-form-field textarea { min-height: 90px; resize: vertical; }
  .event-form-actions { margin-top: 20px; }
  .event-form-note { font-size: 11px; color: #333330; margin-top: 10px; }
  .event-form-hp {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .event-form-status {
    margin: 0 0 12px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
    border-radius: 4px;
  }
  .event-form-status.is-success {
    background: rgba(120, 184, 0, 0.12);
    color: #3d5c00;
  }
  .event-form-status.is-error {
    background: rgba(180, 40, 40, 0.1);
    color: #8a1f1f;
  }
  #event-form-submit:disabled {
    opacity: 0.65;
    cursor: wait;
  }

  .proof-section { padding: 80px 6vw; background: white; border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
  .proof-stars-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
  }
  .proof-stars {
    font-size: 28px;
    letter-spacing: 2px;
    color: #F5A623;
  }
  .proof-rating-num {
    font-family: 'SN Pro', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #1F1F1D;
  }
  .proof-rating-label { font-size: 14px; color: #333330; line-height: 1.4; }
  .proof-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .review-card {
    background: #FAF7EE;
    border-radius: 16px;
    padding: 24px 24px 22px;
    border: 1px solid rgba(0,0,0,0.06);
  }
  .review-stars { font-size: 14px; color: #F5A623; margin-bottom: 10px; letter-spacing: 1px; }
  .review-text { font-size: 14px; line-height: 1.65; color: #1F1F1D; margin: 0 0 14px; font-style: italic; }
  .review-author { font-size: 12px; font-weight: 600; color: #333330; }

  .location-section { padding: 96px 6vw; }
  .location-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
    align-items: start;
  }
  .location-map {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #ECEAE3;
  }
  .location-map iframe {
    width: 100%; height: 100%; border: none; display: block;
  }
  .location-info h3 {
    font-family: 'SN Pro', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
  }
  .location-info p { font-size: 15px; line-height: 1.7; color: #333330; margin: 0 0 20px; }
  .location-info a { color: #1F1F1D; font-weight: 600; text-decoration: none; }
  .location-info a:hover { text-decoration: underline; }
  .hours-table { width: 100%; border-collapse: collapse; }
  .hours-table th {
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #333330;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .hours-table td {
    padding: 7px 0;
    font-size: 13.5px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .hours-table td:last-child { text-align: right; color: #333330; }
  .hours-table tr.today td { font-weight: 700; color: #1F1F1D; }
  .hours-table tr.today td:last-child { color: #78B800; }
  .hours-exception {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(120,184,0,0.08);
    border-radius: 10px;
    font-size: 12px;
    color: #333330;
    border-left: 3px solid #78B800;
  }

  .site-footer {
    background: #1F1F1D;
    color: white;
    padding: 72px 6vw 32px;
    z-index: 1;
    position: relative;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand img { width: 44px; margin-bottom: 16px; }
  .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); margin: 0 0 20px; max-width: 260px; }
  .footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 0 14px;
  }
  .footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .footer-col a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; transition: color .15s; }
  .footer-col a:hover { color: white; }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
  .footer-social { display: flex; gap: 12px; }
  .footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: grid; place-items: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 15px;
    transition: background .15s, color .15s;
  }
  .footer-social a:hover { background: rgba(255,255,255,0.15); color: white; }

  [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(.16,1,.3,1), transform 0.75s cubic-bezier(.16,1,.3,1);
  }
  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  [data-reveal-delay="1"] { transition-delay: 0.08s; }
  [data-reveal-delay="2"] { transition-delay: 0.16s; }
  [data-reveal-delay="3"] { transition-delay: 0.24s; }
  [data-reveal-delay="4"] { transition-delay: 0.32s; }
  [data-reveal-delay="5"] { transition-delay: 0.40s; }
  [data-reveal-delay="6"] { transition-delay: 0.48s; }

  @media (max-width: 1100px) {
    .activities-grid { grid-template-columns: repeat(4, 1fr); }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .location-grid { grid-template-columns: 1fr 1fr; }
    .location-map { grid-column: span 2; aspect-ratio: 16/6; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 768px) {
    .section { padding: 64px 24px; }
    .story-inner { grid-template-columns: 1fr; gap: 36px; }
    .story-inner .story-img-wrap { order: -1; }
    .restaurant-inner { grid-template-columns: 1fr; }
    .activities-grid { grid-template-columns: 1fr 1fr; }
    .activities-extra { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .proof-reviews { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .location-map { aspect-ratio: 4/3; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .story-section,
    .restaurant-section,
    .events-section,
    .proof-section,
    .location-section { padding: 64px 24px; }
  }
  @media (max-width: 480px) {
    .activities-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .event-form-modal { padding: 28px 20px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    .athlete-stage img { transform: none; opacity: 1; }
    .athlete-stage img:not(.is-active) { opacity: 0; }
    .line-inner { transform: none; }
    .lede, .cta-row { opacity: 1; transform: none; }
  }


/* ============ Unterseiten / Sportart-Template ============ */

    /* ---------- Später in Style.css für WP unterbringen ---------- */

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
  body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #1F1F1D;
    background: #FAF7EE;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  :root {
    --accent:  #78B800;
    --tint:    #C8E06A;
    --tint-2:  #AACE40;
    --bg:      #FAF7EE;
    --fg:      #1F1F1D;
    --muted:   #333330;
    --border:  rgba(0,0,0,0.10);
    --surface: rgba(255,255,255,0.85);
  }

  .top-stripe {
    display: flex;
    height: 10px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 200;
  }
  .top-stripe-block { flex: 1; }

  .nav {
    position: sticky;
    top: 10px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: transparent;
    transition: background 0.25s ease, box-shadow 0.25s ease;
  }
  .nav.is-scrolled {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  }
  .nav.is-scrolled .nav-links {
    border-color: transparent;
  }
  .logo {
    width: 36px; height: 36px;
    border-radius: 4px;
    display: grid; place-items: center;
    font-weight: 700; font-size: 13px;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    font-size: 15px;
    font-weight: 500;
    color: var(--fg);
    background: var(--surface);
    padding: 15px 20px;
    border-radius: 200px;
    border: 0.8px solid rgba(0, 0, 0, 0.15);
  }
  .nav-links a {
    color: inherit; text-decoration: none; opacity: 0.85;
    transition: opacity .2s, transform .2s cubic-bezier(.34,1.56,.64,1);
    display: inline-block; position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 2px;
    background: var(--link-accent, var(--accent));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.34,1.56,.64,1);
  }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links a:hover { opacity: 1; transform: scale(1.08); }
  .nav-links a.is-active { opacity: 1; font-weight: 600; }
  .nav-links a.is-active::after { transform: scaleX(1); }
  .nav-cta { display: flex; gap: 10px; }
  .btn-pill {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    border: 0.8px solid rgba(0,0,0,0.15);
    background: var(--surface);
    backdrop-filter: blur(8px);
    color: var(--fg);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center;
    transition: background .2s, border-color .2s, transform .2s cubic-bezier(.34,1.56,.64,1);
  }
  .btn-pill:hover { background: white; transform: scale(1.06); }
  .btn-pill.dark {
    background: var(--fg);
    color: white;
    border-color: var(--fg);
  }
  .btn-pill.dark:hover { background: #000; transform: scale(1.06); }
 .btn-pill.green {
    background: #77b800;
    color: white;
    border-color: #77b800;
    font-weight: 700;
}
 .btn-pill.green:hover {
    background: #77b800;
    color: white;
    border-color: #77b800;
    font-weight: 700;
    transform: scale(1.06); 
}
  .nav-mobile-right { display: none; }
  .hamburger {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    border: 0.8px solid rgba(0,0,0,0.12);
    border-radius: 50%;
    cursor: pointer;
    display: grid; place-items: center;
    padding: 0;
    flex-shrink: 0;
    transition: background .2s;
  }
  .hamburger:hover { background: white; }
  .hamburger-inner { display: flex; flex-direction: column; gap: 4.5px; width: 16px; }
  .hamburger-inner span { display: block; width: 100%; height: 1.5px; background: var(--fg); border-radius: 2px; }

  .page-hero {
    position: relative;
    width: 100%;
    background: var(--bg);
    overflow: hidden;
  }
  .page-hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 60px 6vw 64px;
    display: flex;
    align-items: flex-end;
    min-height: inherit;
    position: relative;
    z-index: 2;
  }
  .page-hero-tint-1 {
    display: none;
  }
  .page-hero-tint-2 {
   display:none;
  }
  .page-hero-img {
    position: absolute;
    right: max(6vw, calc((100% - 1360px) / 2 + 6vw));
    bottom: 0;
    height: 90%;
    max-width: 52vw;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
    pointer-events: none;
  }
  .page-hero-content {
    max-width: 560px;
  }
  .page-subheadabove {
    font-size: 12px;
    letter-spacing: 0.22em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 16px;
  }
  .page-title {
    font-family: 'SN Pro', sans-serif;
    font-size: clamp(58px, 8vw, 116px);
    font-weight: 800;
    line-height: 0.82;
    margin: 0 0 24px;
    text-transform: uppercase;
    color: var(--fg);
  }
  .page-title .sport-noun { display: block; color: var(--fg); }
  .page-title .sport-verb { display: block; color: var(--accent); }
  .page-lede {
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0 0 32px;
  }
  .btn-cta {
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: filter .2s, transform .15s;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .btn-cta:hover { filter: brightness(0.9); }
  .btn-cta:active { transform: scale(0.98); }
  .btn-cta .arrow { transition: transform .25s; }
  .btn-cta:hover .arrow { transform: translateX(3px); }

  .page-body {
    max-width: 1360px;
    margin: 0 auto;
    padding: 10px 6vw 120px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 64px;
    align-items: start;
  }
  .page-main {
    display: flex;
    flex-direction: column;
    gap: 64px;
    min-width: 0;
  }

  .page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .sidebar-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--accent);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: filter .2s, transform .15s;
    font-family: inherit;
    letter-spacing: -0.01em;
  }
  .sidebar-book-btn:hover { filter: brightness(0.9); transform: scale(1.02); }
  .sidebar-book-sub {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    margin: 4px 0 0;
    margin-bottom: 15px;

  }
  .sidebar-widget {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    margin-bottom: 15px;
  }
  .sidebar-widget-head {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .sidebar-widget-head .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    transition: background 700ms ease;
  }
  .sidebar-widget-body {
    padding: 14px 16px;
  }
  .sidebar-hours-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .sidebar-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    font-size: 13px;
  }
  .sidebar-hours-item .label { color: var(--muted); flex-shrink: 0; }
  .sidebar-hours-item .time { font-weight: 600; font-variant-numeric: tabular-nums; color: var(--fg); white-space: nowrap; }
  .sidebar-rule-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .sidebar-rule-list li {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .sidebar-rule-list li::before {
    content: '';
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--tint);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' viewBox='0 0 8 7'%3E%3Cpath d='M1 3.5l2 2L7 1' stroke='%2378B800' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background-color 700ms ease;
  }
  .sidebar-wertkarten {
    background: linear-gradient(135deg, var(--tint) 0%, var(--tint-2) 100%);
    border-radius: 16px;
    padding: 16px 18px;
    text-decoration: none;
    display: block;
    transition: filter .2s;
    margin-bottom: 15px;

  }
  .sidebar-wertkarten:hover { filter: brightness(0.96); }
  .sidebar-wertkarten-title { font-size: 13.5px; font-weight: 700; color: var(--fg); margin: 0 0 3px; }
  .sidebar-wertkarten-sub { font-size: 12px; color: rgba(31,31,29,0.6); margin: 0 0 10px; line-height: 1.4; }
  .sidebar-wertkarten-link { font-size: 12px; font-weight: 600; color: #363636; }
  .rp-sidebar-wysiwyg {
    font-size: 13px;
    line-height: 1.5;
    color: var(--fg);
  }
  .rp-sidebar-wysiwyg > *:first-child { margin-top: 0; }
  .rp-sidebar-wysiwyg > *:last-child { margin-bottom: 0; }
  .rp-sidebar-wysiwyg p,
  .rp-sidebar-wysiwyg ul,
  .rp-sidebar-wysiwyg ol,
  .rp-sidebar-wysiwyg li,
  .rp-sidebar-wysiwyg span,
  .rp-sidebar-wysiwyg div,
  .rp-sidebar-wysiwyg strong,
  .rp-sidebar-wysiwyg b,
  .rp-sidebar-wysiwyg a {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  .rp-sidebar-wysiwyg h1,
  .rp-sidebar-wysiwyg h2,
  .rp-sidebar-wysiwyg h3,
  .rp-sidebar-wysiwyg h4,
  .rp-sidebar-wysiwyg h5,
  .rp-sidebar-wysiwyg h6 {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin: 0 0 6px;
  }
  .rp-sidebar-wysiwyg p { margin: 0 0 8px; }
  .rp-sidebar-wysiwyg .imgnew { display: block; width: 100%; height: auto; border-radius: 10px; margin: 4px 0 8px; }
  .rp-sidebar-wysiwyg .sidebar-wertkarten-link {
    display: inline-block;
    margin-top: 2px;
    text-decoration: none;
    color: var(--accent);
    white-space: nowrap;
  }
  .rp-sidebar-wysiwyg .sidebar-wertkarten-link:hover { text-decoration: underline; }
  .rp-sidebar-wysiwyg hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 12px 0;
  }
  .rp-sidebar-wysiwyg hr:last-child { display: none; }
  .sidebar-sportnav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .sidebar-sport-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--fg);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color .15s;
  }
  .sidebar-sport-link:last-child { border-bottom: none; }
  .sidebar-sport-link:hover { color: var(--accent); }
  .sidebar-sport-link.is-current { color: var(--accent); font-weight: 700; }
  .sidebar-sport-link .sport-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 12px;
  }
  .section-title {
    font-family: 'SN Pro', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 24px;
    color: var(--fg);
  }
  .section-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 680px;
    margin: 0;
  }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  .intro-images img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 14px;
  }
  .intro-images img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

  .tabs-nav {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: rgba(0,0,0,0.04);
    padding: 4px;
    border-radius: 12px;
    width: fit-content;
  }
  .tab-btn {
    padding: 9px 20px;
    border-radius: 9px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: background .2s, color .2s, box-shadow .2s;
    font-family: inherit;
  }
  .tab-btn.is-active {
    background: white;
    color: var(--fg);
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  }
  .tab-panel { display: none; opacity: 0; }
  .tab-panel.is-active { display: block; animation: tabFadeIn .25s ease forwards; }
  @keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .kontakt-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
    margin-bottom: 36px;
  }
  .kontakt-info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 8px;
  }
  .kontakt-info-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--fg);
  }
  .kontakt-info-text a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .kontakt-info-text a:hover { color: var(--accent); }
  .kontakt-anfragen-intro {
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 28px;
    max-width: 42em;
  }
  .kontakt-intro { margin-bottom: 28px; }
  .rp-form { max-width: 640px; }
  .rp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .rp-req {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--muted);
    font-size: 11px;
  }
  .kontakt-tabs .tabs-nav { margin-bottom: 32px; }

  .price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  .price-table th {
    text-align: left;
    font-size: 11px;
    letter-spacing: 0.14em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted);
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(0,0,0,0.02);
  }
  .price-table th:last-child { text-align: right; }
  .price-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--fg);
    vertical-align: middle;
  }
  .price-table td:last-child {
    text-align: right;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--accent);
    font-size: 15px;
  }
  .price-table tr:last-child td { border-bottom: none; }
  .price-table tr:hover td { background: rgba(120,184,0,0.04); }
  .price-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  }
  .price-card-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .price-card-head .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
  }

  .abo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .abo-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 28px 24px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: box-shadow .2s, transform .2s;
  }
  .abo-card:hover { box-shadow: 0 4px 20px rgba(120,184,0,0.12); transform: translateY(-2px); }
  .abo-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 8px;
  }
  .abo-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
  }
  .abo-card-list {
    list-style: none;
    padding: 0; margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .abo-card-list li {
    font-size: 14px;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.4;
  }
  .abo-card-list li::before {
    content: '';
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--tint);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2378B800' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  span.external-link svg {
    width: 15px !important;
    height: 13px !important;
    margin-right: 5px !important;
    display: inline-block !important;
    line-height: 0;
}
  .info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .info-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  }
  .info-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--tint);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
  }
  .info-card-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
  .info-card-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
  }
  .info-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
  }

  .hours-block {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .hours-pill {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 28px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    flex: 1;
    min-width: 220px;
  }
  .hours-pill-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .hours-pill-time {
    font-size: 28px;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.02em;
  }
  .hours-pill-time span { color: var(--accent); }
  .hours-pill-sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
  }

  .cta-banner {
    background: #fff;
    border-radius: 24px;
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.15;
  }
  .cta-banner::after {
    content: '';
    position: absolute;
    right: 100px; bottom: -80px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: var(--tint);
    opacity: 0.10;
  }
  .cta-banner-text { position: relative; z-index: 1; }
  .cta-banner-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 12px;
  }
  .cta-banner-title {
    font-family: 'SN Pro', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 8px;
    line-height: 1.0;
  }
  .cta-banner-sub {
    font-size: 15px;
    color: #333330;
    margin: 0;
  }
  .cta-banner-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .btn-cta-light {
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: filter .2s, transform .15s;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .btn-cta-light:hover { filter: brightness(0.9); transform: scale(1.03); }
.btn-cta-outline {
    padding: 13px 24px;
    border-radius: 999px;
    background: transparent;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px;
    border-color: var(--accent);
    cursor: pointer;
    font-family: inherit;
    transition: color .2s, border-color .2s;
}
.btn-cta-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--accent);
    background: #dbdbdb;
}
  .divider {
    height: 1px;
    background: var(--border);
    margin: 0;
  }

  /* ============ Anfahrt ============ */
  .anfahrt-top {
    display: block;
  }
  .anfahrt-address-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 32px 30px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
  }
  .anfahrt-address-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--fg);
  }
  .anfahrt-address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.6;
    color: var(--fg);
    margin: 0 0 20px;
  }
  .anfahrt-contact {
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .anfahrt-contact-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 15px;
  }
  .anfahrt-contact-row dt {
    flex: 0 0 64px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .anfahrt-contact-row dd {
    margin: 0;
    color: var(--fg);
    font-variant-numeric: tabular-nums;
  }
  .anfahrt-contact-row dd a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .anfahrt-contact-row dd a:hover { color: var(--accent); }
  .anfahrt-maps-btn { margin-top: auto; align-self: flex-start; }

  .anfahrt-map {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    min-height: 340px;
    background: var(--tint);
  }
  .anfahrt-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
    filter: saturate(1.05);
  }

  .anfahrt-bus .section-title { margin-bottom: 16px; }
  .anfahrt-bus .section-text { margin-bottom: 28px; }
  .anfahrt-lines {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .anfahrt-line {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 18px;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: box-shadow .2s, transform .2s, border-color .2s;
  }
  .anfahrt-line:hover {
    box-shadow: 0 6px 22px rgba(120,184,0,0.14);
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  }
  .anfahrt-line-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--tint);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--accent);
  }
  .anfahrt-line-icon svg { width: 24px; height: 24px; }
  .anfahrt-line-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .anfahrt-line-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--fg);
    line-height: 1.2;
  }
  .anfahrt-line-sub {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.01em;
  }
  .anfahrt-line-arrow {
    margin-left: auto;
    color: var(--accent);
    font-size: 18px;
    transition: transform .25s;
  }
  .anfahrt-line:hover .anfahrt-line-arrow { transform: translateX(4px); }

  .wertkarten-teaser {
    background: linear-gradient(135deg, var(--tint) 0%, var(--tint-2) 100%);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .wertkarten-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.6);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .wertkarten-icon svg { width: 26px; height: 26px; stroke: var(--accent); }
  .wertkarten-text { flex: 1; }
  .wertkarten-title { font-size: 18px; font-weight: 700; margin: 0 0 4px; color: var(--fg); }
  .wertkarten-sub { font-size: 14px; color: rgba(31,31,29,0.65); margin: 0; }
  .btn-wertkarten {
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--fg);
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
    flex-shrink: 0;
  }
  .btn-wertkarten:hover { background: #000; }

  .mobile-nav-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: #FAF7EE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px 56px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1);
  }
  .mobile-nav-modal.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none; border: none;
    color: rgba(0,0,0,0.4);
    font-size: 28px; line-height: 1;
    cursor: pointer;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50%;
    transition: background .15s, color .15s;
    font-family: inherit;
  }
  .mobile-nav-close:hover { background: rgba(0,0,0,0.06); color: var(--fg); }
  .mobile-nav-links { display: flex; flex-direction: column; }
  .mobile-nav-links a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
    font-size: 20px; font-weight: 600;
    color: var(--fg);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(12px);
    transition: color .2s, opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1);
  }
  .mobile-nav-links a:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
  .mobile-nav-links a:hover { color: rgba(0,0,0,0.4); }
  .mobile-nav-links a .nav-arrow { transition: transform .2s, opacity .2s; font-size: 16px; opacity: 0.3; }
  .mobile-nav-links a:hover .nav-arrow { transform: translateX(4px); opacity: 0.5; }
  .mobile-nav-modal.is-open .mobile-nav-links a { opacity: 1; transform: translateY(0); }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(1) { transition-delay: .04s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(2) { transition-delay: .09s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(3) { transition-delay: .14s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(4) { transition-delay: .19s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(5) { transition-delay: .24s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(6) { transition-delay: .29s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(7) { transition-delay: .34s; }
  .mobile-nav-modal.is-open .mobile-nav-links a:nth-child(8) { transition-delay: .38s; }
  .mobile-nav-links .mobile-nav-book {
    border: none !important;
    margin-top: 20px;
    background: var(--fg);
    color: white !important;
    border-radius: 999px;
    padding: 14px 28px !important;
    font-size: 16px !important;
    justify-content: center !important;
    transition: opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1), background .2s !important;
  }
  .mobile-nav-links .mobile-nav-book:hover { color: white !important; background: #000; }
  .mobile-nav-links .mobile-nav-book .nav-arrow { display: none; }

  @media (max-width: 900px) {
    .nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-mobile-right { display: flex; align-items: center; gap: 8px; }
    .page-hero { min-height: auto; }
    .page-hero-inner { padding: 70px 24px 50px 26px; flex-direction: column; align-items: flex-start; min-height: auto; }
    .page-hero-img { display: none; }
    .page-hero-tint-1 { width: 50vw; height: 50vw; }
    .page-hero-tint-2 { display: none; }
    .page-body { grid-template-columns: 1fr; gap: 48px; }
    .page-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .page-sidebar > * { flex: 1 1 260px; }
    .sidebar-book-btn { padding: 14px 16px; }
    .intro-grid { grid-template-columns: 1fr; }
    .abo-grid { grid-template-columns: 1fr; }
    .info-strip { grid-template-columns: 1fr; }
    .cta-banner { padding: 36px 28px; }
    .cta-banner-actions { flex-direction: column; align-items: flex-start; width: 100%; }
    .kontakt-info { grid-template-columns: 1fr; gap: 20px; }
    .rp-form-grid { grid-template-columns: 1fr; }
    .anfahrt-top { grid-template-columns: 1fr; }
    .anfahrt-map { min-height: 280px; }
    .anfahrt-map iframe { min-height: 280px; }
  }
  @media (max-width: 540px) {
    .page-title { font-size: clamp(52px, 15vw, 80px); }
    .tabs-nav { flex-wrap: wrap; }
    .hours-block { flex-direction: column; align-items: stretch; }
    .wertkarten-teaser { flex-direction: column; align-items: flex-start; }
    .anfahrt-lines { grid-template-columns: 1fr; }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }

  /* ============ Wortmarke in der Navigation ============ */
  .site-logo { display: inline-flex; align-items: center; line-height: 0; }
  .site-logo img { height: 60px; width: auto; display: block; }
  @media (max-width: 900px) {
    .site-logo img { height: 44px; }
  }

  /* ============ Essen-Modal (zwei Spalten) ============ */
  #essen-modal .sport-modal-grid { grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 540px) {
    #essen-modal .sport-modal-grid { grid-template-columns: 1fr; }
  }

  /* ============ Farbige Info-Karten (Preis-Blöcke) ============ */
  .rp-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  .rp-card {
    border-radius: 20px;
    padding: 28px 30px;
    font-size: 15px;
    line-height: 1.6;
  }
  .rp-card > :first-child { margin-top: 0; }
  .rp-card > :last-child { margin-bottom: 0; }
  .rp-card strong { font-weight: 700; }
  .rp-card a { color: inherit; text-decoration: underline; }
  /* Steht die letzte Karte allein in ihrer Reihe (ungerade Anzahl), volle Breite. */
  .rp-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  @media (max-width: 768px) {
    .rp-cards { grid-template-columns: 1fr; }
  }


  .rp-content p {
        font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  p {
        font-size: 16px;
    line-height: 1.7;
    margin: 0;
  }

  figure.wp-block-image img {
    border-radius: 15px;
}

.wp-block-details summary {
    cursor: pointer;
    background: var(--accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

details.wp-block-details.is-layout-flow.wp-block-details-is-layout-flow p {
    margin-top: 15px;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}


/* ============ 404 – Seite nicht gefunden ============ */

  .screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
  }

  .error-404-hero {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
  }

  .error-404-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 6vw 100px;
    text-align: center;
  }

  /* Schwebende Farbblasen im Hintergrund */
  .error-404-bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
  .e404-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.5;
  }
  .e404-bubble-1 {
    width: 46vh; height: 46vh;
    top: -12vh; right: -8vw;
    background: var(--tint);
    animation: tint-float-1 13s ease-in-out infinite;
  }
  .e404-bubble-2 {
    width: 30vh; height: 30vh;
    bottom: -10vh; left: -6vw;
    background: var(--tint-2);
    animation: tint-float-2 10s ease-in-out infinite;
  }
  .e404-bubble-3 {
    width: 18vh; height: 18vh;
    top: 18%; left: 12%;
    background: var(--accent);
    opacity: 0.18;
    animation: tint-float-1 16s ease-in-out infinite;
  }

  /* Grosse 404-Ziffern */
  .error-404-digits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(6px, 2vw, 22px);
    margin: 18px 0 8px;
    line-height: 0.8;
  }
  .e404-digit {
    font-family: 'SN Pro', sans-serif;
    font-weight: 800;
    font-size: clamp(120px, 26vw, 300px);
    color: var(--fg);
    letter-spacing: -0.03em;
  }
  /* Die 0 als hüpfender "Ball" */
  .e404-ball {
    display: inline-grid;
    place-items: center;
    width: clamp(120px, 26vw, 300px);
    height: clamp(120px, 26vw, 300px);
    border-radius: 50%;
    color: #fff;
    background:
      radial-gradient(circle at 32% 28%, rgba(255,255,255,0.55), rgba(255,255,255,0) 42%),
      conic-gradient(from 210deg, #eb5b5c, #f59e0b, #78B800, #22b8cf, #8838AA, #eb5b5c);
    box-shadow: 0 22px 45px rgba(0,0,0,0.18);
    animation: e404-bounce 2.4s cubic-bezier(.5,.05,.5,.95) infinite;
  }
  @keyframes e404-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-26px) scale(1.03); }
  }

  .error-404-title {
    font-family: 'SN Pro', sans-serif;
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--fg);
    margin: 12px 0 18px;
  }
  .error-404-lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 34px;
  }

  .error-404-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
  }

  .error-404-search {
    display: flex;
    max-width: 480px;
    margin: 0 auto 40px;
    background: #fff;
    border: 0.8px solid var(--border);
    border-radius: 999px;
    padding: 6px 6px 6px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }
  .error-404-search input[type="search"] {
    flex: 1;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: var(--fg);
    outline: none;
  }
  .error-404-search button {
    border: none;
    cursor: pointer;
    background: var(--accent);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 999px;
    transition: filter .2s, transform .15s;
  }
  .error-404-search button:hover { filter: brightness(1.06); transform: scale(1.04); }

  .error-404-sports {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .error-404-sports-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .error-404-sports-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .error-404-sports-list a {
    --chip-accent: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 8px 18px;
    transition: color .2s, border-color .2s, background .2s, transform .2s cubic-bezier(.34,1.56,.64,1);
  }
  .error-404-sports-list a:hover {
    color: #fff;
    background: var(--chip-accent);
    border-color: var(--chip-accent);
    transform: translateY(-2px) scale(1.05);
  }

  @media (max-width: 600px) {
    .error-404-inner { padding: 60px 22px 80px; }
    .error-404-search { flex-direction: column; border-radius: 20px; padding: 8px; gap: 8px; }
    .error-404-search input[type="search"] { padding: 10px 14px; text-align: center; }
    .error-404-search button { width: 100%; }
  }

  @media (prefers-reduced-motion: reduce) {
    .e404-ball, .e404-bubble { animation: none; }
  }

  .wp-block-details {
    box-sizing: border-box;
    margin-bottom: 10px;
}