/*
Theme Name: BLOC NO LIMIT
Theme URI: https://boulderhalle-leipzig.de
Author: ZATO
Description: Custom Theme für BLOC NO LIMIT - Version 2.0 No-Scroll
Version: 2.0.0
Text Domain: bloc
*/

/* ============================================
   DESIGN SYSTEM
   ============================================ */
:root {
    /* Markenfarben */
    --brand-orange: #F49B31;
    --brand-orange-text: #c47a1a;  /* WCAG-konformes Orange fuer Text auf hellem BG (4.56:1) */
    --brand-orange-hover: #e08a20;
    --brand-gray: #4D4D4D;

    /* Hintergründe */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-cream: #fdfbf7;
    --bg-card: #ffffff;

    /* Text */
    --text-primary: #1a1a1a;
    --text-secondary: rgba(0, 0, 0, 0.7);
    --text-muted: rgba(0, 0, 0, 0.5);

    /* Borders & Shadows */
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 4px 20px rgba(244, 155, 49, 0.3);

    /* Fonts */
    --font-headline: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Layout */
    --header-height: 50px;
    --footer-height: 50px;
    --bottom-nav-height: 60px;

    /* Touch-Targets (UX-optimiert) */
    --touch-target-min: 48px;
    --touch-target-comfortable: 56px;

    /* Spacing System */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
}

/* ============================================
   BREAKPOINTS (Projekt-Standard)
   ============================================
   Tablet/Mobile:  max-width: 900px
   Kleine Phones:  max-width: 600px
   Mini-Phones:    max-width: 480px

   768px und 500px werden NICHT mehr verwendet.
   ============================================ */

/* ============================================
   ACCESSIBILITY (BFSG / WCAG 2.1 AA)
   ============================================ */

/* Globaler Focus-Indicator fuer Tastatur-Nutzer.
   Wirkt auch wenn irgendwo outline:none gesetzt ist.
   :focus-visible triggert nur bei Keyboard-Navigation (nicht Click). */
*:focus-visible {
    outline: 2px solid var(--brand-orange);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Reduzierte Bewegung: Animationen und Transitions auf ein Minimum. */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   LAYOUT SYSTEM
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    font-family: var(--font-body);
    background: var(--bg-cream);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    flex-direction: column;
}

/* No-scroll app-layout pages (Panel-System) */
body.home,
body.page-bouldern,
body.page-beach {
    height: 100%;
    overflow: hidden;
}

/* ============================================
   HEADER - 50px KOMPAKT
   ============================================ */
.site-header {
    position: relative;
    flex-shrink: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 3vw, 40px);
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.logo-bloc {
    font-family: var(--font-headline);
    font-size: clamp(16px, 1.8vw, 22px);
    color: var(--brand-orange-text);
    letter-spacing: 2px;
}

.logo-nolimit {
    font-family: var(--font-headline);
    font-size: clamp(16px, 1.8vw, 22px);
    color: var(--brand-gray);
    letter-spacing: 2px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
}

.header-nav a {
    color: var(--text-secondary);
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--brand-orange-text);
}

.back-link {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
}

.back-link:hover {
    color: var(--brand-orange-text);
}

.header-title {
    font-family: var(--font-headline);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.header-title-accent {
    /* WCAG: Text auf weissem Header — dunkles Orange (4.56:1) */
    color: var(--brand-orange-text, #c47a1a);
}

.header-title-sub {
    color: var(--text-primary, #1a1a1a);
}

/* Bereichs-Logo im Minimal-Header (Boulder/Beach). Ersetzt Text-Titel wenn im Customizer gesetzt. */
.header-area-logo {
    height: 36px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

/* Beach: Accent in warmem Sand-Ton (WCAG AA: 4.54:1 auf weiss) */
.header-beach .header-title-accent {
    color: #8f6633;
}

.header-beach .header-title-sub {
    color: var(--text-primary, #1a1a1a);
}

/* Beach Header Variante - Gradient wie Beach-Dreieck auf Startseite */
.header-beach {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4bf 50%, #f0e2ce 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(244, 155, 49, 0.15);  /* Feiner Orange-Akzent */
}

.header-beach .back-link,
.header-beach .header-title,
.header-beach .nav-link,
.header-beach .nav-dropdown-trigger {
    color: var(--text-primary);
}

.header-beach .back-link:hover,
.header-beach .nav-link:hover {
    color: var(--brand-orange-text);
}

/* Header CTA Button */
a.header-cta {
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
    box-sizing: border-box;
}

/* ============================================
   SKIP LINK (Barrierefreiheit)
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-orange);
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   DESKTOP NAVIGATION DROPDOWNS
   ============================================ */
.desktop-nav {
    display: none;
}

@media (min-width: 900px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.nav-dropdown-trigger:hover {
    color: var(--brand-orange-text);
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--brand-orange-text);
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.nav-link:hover {
    color: var(--brand-orange-text);
}

/* ============================================
   PANEL-SYSTEM TRIGGER STYLES
   Wenn data-panel-trigger verwendet wird
   ============================================ */

/* Dropdown-Menu verstecken wenn Trigger fuer Panel verwendet wird */
.nav-dropdown:has([data-panel-trigger]) .nav-dropdown-menu {
    display: none;
}

/* Panel-Trigger aktiver Zustand */
.nav-dropdown-trigger.panel-active,
.nav-dropdown-trigger[aria-expanded="true"] {
    color: var(--brand-orange-text);
}

/* Pfeil rotieren wenn Panel offen */
.nav-dropdown-trigger.panel-active .dropdown-arrow,
.nav-dropdown-trigger[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

/* Unterstreichung fuer aktiven Trigger */
.nav-dropdown-trigger.panel-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 1px;
}

.nav-dropdown-trigger {
    position: relative;
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.header-beach .mobile-menu-toggle span {
    background: var(--text-primary);
}

/* Beach Header CTA Button */
.header-beach .btn-primary,
.header-beach .header-cta {
    background: var(--brand-orange);
    color: #1a1a1a;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 900px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   MOBILE NAVIGATION OVERLAY
   ============================================ */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 500;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

.mobile-nav-overlay.is-open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-title {
    font-family: var(--font-headline);
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--brand-orange-text);
}

.mobile-nav-close {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
}

.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav-section {
    margin-bottom: 8px;
}

.mobile-nav-heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-arrow {
    font-size: 12px;
    transition: transform 0.2s;
}

.mobile-nav-heading[aria-expanded="true"] .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-nav-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 16px;
}

.mobile-nav-heading[aria-expanded="true"] + .mobile-nav-links {
    max-height: 500px;
    padding: 8px 0 8px 16px;
}

.mobile-nav-links a,
.mobile-nav-links button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    cursor: pointer;
}

.mobile-nav-links a:hover,
.mobile-nav-links button:hover {
    background: var(--bg-secondary);
    color: var(--brand-orange-text);
}

.mobile-nav-direct {
    display: block;
    width: 100%;
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background: none;
    text-align: left;
    font-family: var(--font-body);
    cursor: pointer;
}

.mobile-nav-direct:hover {
    color: var(--brand-orange-text);
}

.mobile-nav-highlight {
    background: rgba(244, 155, 49, 0.1);
    color: var(--brand-orange-text);
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 8px;
}

.mobile-nav-cta {
    display: block;
    margin-top: 24px;
    padding: 16px;
    background: var(--brand-orange);
    color: #1a1a1a;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: var(--shadow-orange);
}

.mobile-nav-footer {
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: clamp(12px, 2vh, 24px) clamp(16px, 3vw, 40px);
}

/* ============================================
   FOOTER - 50px KOMPAKT
   ============================================ */
.site-footer {
    flex-shrink: 0;
    height: var(--footer-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 3vw, 40px);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    font-size: 12px;
}

.footer-copy {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: clamp(12px, 2vw, 24px);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--brand-orange-text);
}

.footer-contact {
    color: var(--text-muted);
}

.footer-left,
.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-address {
    color: var(--text-muted);
    display: none;
}

@media (min-width: 900px) {
    .footer-address {
        display: inline;
    }
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--brand-orange-text);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================
   FULL FOOTER (Erweiterter Footer)
   ============================================ */
.site-footer-full {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 0;
    flex-shrink: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 40px);
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-family: var(--font-headline);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--brand-orange-text);
}

.footer-col-brand p {
    margin-bottom: 4px;
}

.footer-phone {
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 12px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 16px clamp(16px, 3vw, 40px);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom .footer-social {
    display: flex;
    gap: 12px;
}

.footer-bottom .footer-social a {
    color: var(--text-muted);
}

.footer-bottom .footer-social a:hover {
    color: var(--brand-orange-text);
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
a.btn-primary,
.btn-primary {
    background: var(--brand-orange);
    color: #1a1a1a;
    padding: 8px clamp(14px, 1.5vw, 20px);
    border-radius: 9999px;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-orange);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    display: inline-block;
}

a.btn-primary:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(244, 155, 49, 0.4);
    color: #1a1a1a;
}

.btn-secondary {
    background: transparent;
    color: var(--brand-orange-text);
    padding: 8px clamp(14px, 1.5vw, 20px);
    border: 2px solid var(--brand-orange);
    border-radius: 9999px;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--brand-orange);
    color: #1a1a1a;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: clamp(16px, 2vw, 24px);
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s, transform 0.3s;
}

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

.card-highlight {
    background: var(--brand-orange);
    color: #1a1a1a;
}

/* ============================================
   STAT CARDS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: clamp(8px, 1vw, 16px);
}

.stat-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: clamp(12px, 1.5vw, 20px);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.stat-value {
    font-family: var(--font-headline);
    font-size: clamp(24px, 3vw, 36px);
    color: var(--brand-orange-text);
    display: block;
}

.stat-value sup {
    font-size: 0.5em;
}

.stat-label {
    font-size: clamp(10px, 0.9vw, 12px);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TABS
   ============================================ */
.tab-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--bg-secondary);
    border-radius: 12px;
    flex-shrink: 0;
}

.tab-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--bg-card);
    color: var(--brand-orange-text);
    box-shadow: var(--shadow-card);
}

.tab-contents {
    flex: 1;
    overflow: hidden;
    margin-top: clamp(12px, 1.5vh, 20px);
}

.tab-content {
    display: none;
    height: 100%;
    overflow-y: auto;
}

.tab-content.active {
    display: block;
}

/* ============================================
   PAGE HERO (KOMPAKT)
   ============================================ */
.page-hero {
    text-align: center;
    margin-bottom: clamp(12px, 2vh, 24px);
    flex-shrink: 0;
}

.hero-label {
    color: var(--brand-orange-text);
    font-size: clamp(10px, 0.9vw, 12px);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.page-title {
    font-family: var(--font-headline);
    font-size: clamp(32px, 5vw, 52px);
    color: var(--text-primary);
    line-height: 1;
    margin: 0 0 8px;
    letter-spacing: 2px;
}

.page-intro {
    font-size: clamp(13px, 1.2vw, 16px);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   GRIDS
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 40px);
    align-items: start;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 24px);
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(10px, 1.5vw, 20px);
}

/* ============================================
   PRICE CARDS
   ============================================ */
.price-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: clamp(16px, 2vw, 24px);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.price-card h3 {
    font-family: var(--font-headline);
    font-size: clamp(14px, 1.2vw, 18px);
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.price-card.highlight {
    background: var(--brand-orange);
    color: #1a1a1a;
}

.price-card.highlight h3 {
    color: #1a1a1a;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: clamp(12px, 1vw, 14px);
}

.price-row:last-child {
    border-bottom: none;
}

.price-value {
    font-weight: 600;
    color: var(--brand-orange-text);
}

.price-card.highlight .price-value {
    color: #1a1a1a;
}

.price-card.highlight .price-row {
    border-bottom-color: rgba(255,255,255,0.2);
}

/* ============================================
   KURS CARDS
   ============================================ */
.kurs-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: clamp(20px, 2.5vw, 32px);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.kurs-card h3 {
    font-family: var(--font-headline);
    font-size: clamp(18px, 1.5vw, 24px);
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.kurs-price {
    font-family: var(--font-headline);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--brand-orange-text);
}

.kurs-details {
    font-size: clamp(12px, 1vw, 14px);
    color: var(--text-secondary);
    margin: 8px 0 16px;
}

.kurs-card .btn-primary,
.kurs-card .btn-secondary {
    margin-top: auto;
}

/* ============================================
   KONTAKT LAYOUT
   ============================================ */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 60px);
    flex: 1;
    align-items: start;
}

.kontakt-form {
    background: var(--bg-card);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 32px);
    box-shadow: var(--shadow-card);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-orange);
}

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

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-card);
}

.info-card h4 {
    font-family: var(--font-headline);
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 4px 0;
}

.info-card a {
    color: var(--brand-orange-text);
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* ============================================
   LEGAL PAGES - NEUES PANEL-STYLE DESIGN
   ============================================ */
.page-legal {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    position: relative;
}

.legal-background {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: -1;
}

.legal-background-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(244, 155, 49, 0.1) 0%, transparent 60%);
}

.legal-card {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.legal-card-header {
    padding: 24px 32px;
    background: var(--brand-orange);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 20px;
}

.legal-back-link {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.legal-back-link:hover {
    color: #1a1a1a;
}

.legal-card-title {
    font-family: var(--font-headline);
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: 2px;
    margin: 0;
    flex: 1;
}

.legal-card-content {
    padding: 32px;
    max-height: 65vh;
    overflow-y: auto;
}

.legal-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-family: var(--font-headline);
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-primary);
    margin: 0 0 12px;
    letter-spacing: 1px;
}

.legal-section p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 12px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--brand-orange-text);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-card-footer {
    padding: 16px 32px;
    background: var(--bg-secondary);
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-card-footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.legal-card-footer a:hover {
    color: var(--brand-orange-text);
}

/* Aktive Seite hervorheben (Boulder-Kontext: Orange) */
.legal-card-footer a.current-page {
    color: var(--brand-orange-text);
    font-weight: 700;
    pointer-events: none;
}

/* Aktive Seite hervorheben (Beach-Kontext: Sand, WCAG AA: 4.54:1 auf weiss) */
.page-beach-sub .legal-card-footer a.current-page {
    color: #8f6633;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .page-legal {
        padding: 70px 16px 30px;
        align-items: flex-start;
    }

    .legal-card {
        border-radius: 16px;
    }

    .legal-card-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .legal-card-content {
        padding: 20px;
        max-height: none;
    }

    .legal-card-footer {
        padding: 16px 20px;
    }
}

/* ============================================
   BEACH SUBPAGE STYLES
   ============================================ */
.page-beach-sub .legal-background {
    background: linear-gradient(135deg, #3d2e1f 0%, #5a4332 50%, #3d2e1f 100%);
}

.page-beach-sub .legal-background-overlay {
    background: radial-gradient(ellipse at top, rgba(245, 230, 211, 0.15) 0%, transparent 60%);
}

.page-beach-sub .legal-card-header {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4bf 50%, #f0e2ce 100%);
    color: var(--text-primary);
}

.page-beach-sub .legal-back-link {
    color: rgba(0, 0, 0, 0.5);
}

.page-beach-sub .legal-back-link:hover {
    color: var(--text-primary);
}

.page-beach-sub .legal-card-title {
    color: var(--text-primary);
}

/* Price Highlight Box */
.price-highlight {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #e08a2a 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.page-beach-sub .price-highlight {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4bf 100%);
    color: var(--text-primary);
}

.price-big {
    display: block;
    font-family: var(--font-headline);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.price-desc {
    font-size: 14px;
    opacity: 0.9;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: var(--bg-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.page-beach-sub .feature-tag {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #1d4ed8;
}

/* Legal List */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--brand-orange);
    border-radius: 50%;
}

.page-beach-sub .legal-list li::before {
    background: #3b82f6;
}

/* ============================================
   LEGACY LEGAL STYLES (fuer Kompatibilitaet)
   ============================================ */
.legal-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.legal-content {
    flex: 1;
    overflow-y: auto;
    background: var(--bg-card);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 40px);
    box-shadow: var(--shadow-card);
}

.legal-content h2 {
    font-family: var(--font-headline);
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-primary);
    margin: 24px 0 12px;
    letter-spacing: 1px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: clamp(13px, 1.1vw, 15px);
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.legal-content ul,
.legal-content ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-content li {
    font-size: clamp(13px, 1.1vw, 15px);
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--brand-orange-text);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ============================================
   SEKTOR LIST
   ============================================ */
.sektor-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sektor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: 10px;
    box-shadow: var(--shadow-card);
}

.sektor-nummer {
    font-family: var(--font-headline);
    font-size: 18px;
    color: var(--brand-orange-text);
    width: 30px;
}

.sektor-name {
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.sektor-level {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 9999px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 900px) {
    html:not(:has(body.home)) {
        overflow-y: auto;
    }

    body:not(.home) {
        overflow-y: auto;
        height: auto;
        min-height: 100%;
    }

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

    /* CTA-Button auf Mobile verstecken, Titel zentriert */
    a.header-cta,
    .header-cta {
        display: none;
    }

    .header-title {
        flex: 1;
        text-align: right;
    }

    .header-area-logo {
        height: 30px;
        max-width: 140px;
        margin-left: auto;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-card);
    }

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

    .header-nav a {
        padding: 12px 0;
        font-size: 16px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
    }

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

    .site-footer {
        height: auto;
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-buttons {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 0 0 auto;
        padding: 8px 12px;
    }
}

/* ============================================
   AKKORDEONS (HTML5 native, kein JavaScript!)
   ============================================ */
.accordion-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.accordion-item {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    list-style: none;
    min-height: var(--touch-target-min);
    transition: background 0.2s;
    font-family: var(--font-body);
}

.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-header:hover {
    background: var(--bg-secondary);
}

.accordion-title {
    font-family: var(--font-headline);
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-primary);
    letter-spacing: 1px;
}

.accordion-icon {
    color: var(--brand-orange-text);
    transition: transform 0.3s ease;
    font-size: 12px;
    flex-shrink: 0;
}

.accordion-item[open] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: clamp(14px, 1.1vw, 16px);
    color: var(--text-secondary);
    line-height: 1.6;
}

.accordion-item[open] .accordion-content {
    animation: accordionOpen 0.3s ease;
}

@keyframes accordionOpen {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Akkordeon Content Grids */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: var(--space-md);
}

.feature-card h4 {
    font-family: var(--font-headline);
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

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

/* ============================================
   MOBILE BOTTOM NAVIGATION
   ============================================ */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bottom-nav-height);
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Bottom-Nav verstecken wenn Panel offen */
.panel-open .bottom-nav {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.bottom-nav-inner {
    display: flex;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    min-height: var(--touch-target-min);
    transition: color 0.2s;
    padding: 8px 4px;
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--brand-orange-text);
}

.bottom-nav-item.bottom-nav-cta {
    color: var(--brand-orange-text);
}

.bottom-nav-item.bottom-nav-cta .nav-icon-wrap {
    background: var(--brand-orange);
    color: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: var(--shadow-orange);
    margin-top: -20px;
}

.bottom-nav-item.bottom-nav-cta .nav-icon-wrap svg {
    stroke: white;
}

/* ============================================
   PRICE TABLE (für Akkordeons)
   ============================================ */
.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.price-table th {
    text-align: left;
    padding: 10px 12px;
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
}

.price-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.price-table td.highlight {
    color: var(--brand-orange-text);
    font-weight: 600;
}

.price-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    font-style: italic;
}

.info-box {
    background: var(--bg-secondary);
    border-left: 3px solid var(--brand-orange);
    padding: var(--space-md);
    margin-top: var(--space-md);
    border-radius: 0 8px 8px 0;
    font-size: 13px;
}

/* ============================================
   PRICE CARDS ROW (Quick-Info)
   ============================================ */
.price-cards-row {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.price-cards-row .price-card {
    flex: 1;
    min-width: 150px;
    position: relative;
}

.price-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: white;
    color: var(--brand-orange-text);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: var(--shadow-card);
}

.price-main {
    font-family: var(--font-headline);
    font-size: clamp(24px, 3vw, 32px);
    color: var(--brand-orange-text);
    margin: 8px 0 4px;
}

.price-card.highlight .price-main {
    color: #1a1a1a;
}

.price-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.price-card.highlight .price-sub {
    color: rgba(0,0,0,0.6);
}

/* ============================================
   HERO COMPACT (für Unterseiten)
   ============================================ */
.page-hero-compact {
    text-align: center;
    padding: var(--space-lg) 0;
    flex-shrink: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    text-align: left;
}

.hero-text p {
    font-size: clamp(14px, 1.2vw, 16px);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.hero-stats .stat-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.accordion-section {
    flex: 1;
    overflow-y: auto;
    padding-bottom: var(--space-lg);
}

/* ============================================
   BENTO GRID (Homepage)
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: var(--space-md);
    padding: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.bento-item {
    background: var(--bg-card);
    border-radius: 20px;
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

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

/* Bento Grid Positionen */
.bento-hero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    min-height: 350px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, #e08a20 100%);
    color: white;
    justify-content: flex-end;
}

.bento-hours { grid-column: 3 / 4; grid-row: 1 / 2; }
.bento-newbie { grid-column: 4 / 5; grid-row: 1 / 2; }
.bento-prices { grid-column: 3 / 4; grid-row: 2 / 3; }
.bento-courses { grid-column: 4 / 5; grid-row: 2 / 3; }
.bento-beach { grid-column: 1 / 2; grid-row: 3 / 4; }
.bento-contact { grid-column: 2 / 5; grid-row: 3 / 4; }

.bento-hero .bento-content {
    position: relative;
    z-index: 2;
}

.bento-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: var(--space-sm);
}

.bento-title {
    font-family: var(--font-headline);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.bento-subtitle {
    font-family: var(--font-headline);
    font-size: clamp(14px, 1.2vw, 18px);
    color: var(--text-primary);
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.bento-highlight {
    font-family: var(--font-headline);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--brand-orange-text);
    margin-bottom: var(--space-xs);
}

.bento-small {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.bento-icon {
    font-size: 24px;
    margin-bottom: var(--space-sm);
}

.bento-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-orange-text);
    text-decoration: none;
    margin-top: auto;
}

.bento-link:hover {
    text-decoration: underline;
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

.bento-contact {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.bento-contact-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.bento-contact p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 2px 0;
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-hero {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        min-height: 280px;
    }

    .bento-hours { grid-column: 1 / 2; grid-row: 2 / 3; }
    .bento-newbie { grid-column: 2 / 3; grid-row: 2 / 3; }
    .bento-prices { grid-column: 1 / 2; grid-row: 3 / 4; }
    .bento-courses { grid-column: 2 / 3; grid-row: 3 / 4; }
    .bento-beach { grid-column: 1 / 2; grid-row: 4 / 5; }
    .bento-contact { grid-column: 1 / 3; grid-row: 5 / 6; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

@media (max-width: 900px) {
    /* Bottom Navigation aktivieren */
    .bottom-nav {
        display: block;
    }

    /* Platz für Bottom-Nav */
    body:not(.home) {
        padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
    }

    /* Footer auf Mobile ausblenden */
    .site-footer {
        display: none;
    }

    /* Bento Grid Mobile */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        padding: var(--space-md);
    }

    .bento-hero,
    .bento-hours,
    .bento-newbie,
    .bento-prices,
    .bento-courses,
    .bento-beach,
    .bento-contact {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .bento-hero {
        min-height: 220px;
    }

    .bento-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    /* Hero Stats Mobile */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Price Cards Mobile */
    .price-cards-row {
        flex-direction: column;
    }

    .price-cards-row .price-card {
        min-width: auto;
    }

    /* Akkordeon Mobile */
    .accordion-header {
        padding: var(--space-md);
    }

    .accordion-content {
        padding: 0 var(--space-md) var(--space-md);
    }

    .info-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BOULDERN PAGE - HERO GRID LAYOUT
   ============================================ */
.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 60px);
    align-items: center;
    padding: clamp(24px, 3vh, 40px) 0;
    flex-shrink: 0;
}

.page-hero-grid .hero-content {
    text-align: left;
}

.page-hero-grid .hero-content .page-intro {
    max-width: none;
    margin: 0 0 var(--space-lg);
}

.page-hero-grid .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.page-hero-grid .stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: var(--space-lg);
    text-align: center;
    transition: box-shadow 0.2s;
}

.page-hero-grid .stat-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.page-hero-grid .stat-card.highlight {
    border: 2px solid var(--brand-orange);
    background: var(--bg-card);
}

.page-hero-grid .stat-card .stat-value {
    font-family: var(--font-headline);
    font-size: clamp(36px, 4vw, 48px);
    color: var(--brand-orange-text);
    display: block;
    line-height: 1;
}

.page-hero-grid .stat-card:nth-child(3) .stat-value {
    color: var(--text-primary);
}

/* ============================================
   INTRO CARD (NEU HIER?)
   ============================================ */
.intro-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 28px) clamp(24px, 3vw, 32px);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-card);
    flex-shrink: 0;
}

.intro-title {
    font-family: var(--font-headline);
    font-size: clamp(20px, 2vw, 24px);
    color: var(--text-primary);
    margin: 0 0 var(--space-lg);
    letter-spacing: 1px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.step-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: clamp(20px, 2vw, 24px) var(--space-lg) var(--space-lg);
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 16px;
    background: var(--brand-orange);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-card h3 {
    font-family: var(--font-headline);
    font-size: clamp(16px, 1.4vw, 18px);
    color: var(--text-primary);
    margin: 4px 0 10px;
    letter-spacing: 1px;
}

.step-card p {
    font-size: clamp(13px, 1vw, 14px);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   ACCORDION GRID (2x2) - Bouldern Page
   ============================================ */
.accordion-section .accordion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    flex-direction: unset;
}

.accordion-grid .accordion-item {
    height: fit-content;
    width: 100%;
}

/* ============================================
   GRADE BADGES (Schwierigkeits-Farben)
   ============================================ */
.grade-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: var(--space-sm) 0 var(--space-md);
}

.grade-badge {
    padding: 4px 12px;
    border-radius: 12px;
    color: white;
    font-size: 11px;
    font-weight: 600;
}

.highlight-text {
    color: var(--brand-orange-text);
    font-weight: 600;
    margin: 0;
}

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: var(--space-sm) 0 0;
}

.feature-list li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--brand-orange-text);
    font-weight: bold;
}

.link-orange {
    color: var(--brand-orange-text);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: var(--space-sm);
}

.link-orange:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE - BOULDERN PAGE
   ============================================ */
@media (max-width: 900px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .page-hero-grid .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Akkordeons bleiben im 2er-Grid bis Mobile */
}

@media (max-width: 900px) {
    .page-hero-grid .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .step-card {
        padding-top: var(--space-lg);
    }

    .accordion-section .accordion-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
/* ============================================
   LUCIDE ICONS
   ============================================ */
[data-lucide] {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    vertical-align: -0.125em;
    display: inline-block;
}

.panel-nav-icon [data-lucide],
.card-icon [data-lucide],
.info-icon [data-lucide] {
    width: 2rem;
    height: 2rem;
    stroke: var(--brand-orange-text);
    color: var(--brand-orange-text);
}

.card-tab-icon [data-lucide] {
    width: 1.25rem;
    height: 1.25rem;
}

.tip-icon [data-lucide] {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--brand-orange-text);
    color: var(--brand-orange-text);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-orange { color: var(--brand-orange-text); }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }

/* ============================================
   BOOKING MODAL (Webclimber iframe)
   ============================================ */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal-container {
    position: relative;
    background: var(--bg-primary);
    border-radius: 16px;
    width: 95%;
    max-width: 900px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.booking-modal-header {
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-modal-header h2 {
    color: var(--text-primary);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin: 0;
}

.booking-modal-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.booking-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.booking-modal-body {
    flex: 1;
    position: relative;
}

.booking-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: opacity 0.3s ease;
}

.booking-modal-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.booking-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--brand-orange);
    border-radius: 50%;
    animation: bookingModalSpin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes bookingModalSpin {
    to { transform: rotate(360deg); }
}

.booking-modal-spinner p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Booking Modal Mobile */
@media (max-width: 600px) {
    .booking-modal-container {
        width: 100%;
        max-width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .booking-modal-header {
        padding: 12px 16px;
    }

    .booking-modal-header h2 {
        font-size: 18px;
    }
}
