        /* ========== RESET & VARIABLES ========== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        :root {
            --honey: #ec8c11;
            --honey-dark: #c97508;
            --honey-glow: #ff9f2e;
            --honey-light: #fff3d6;
            --black: #111111;
            --dark: #1A1A1A;
            --dark-surface: #222222;
            --white: #FFFFFF;
            --cream: #FFFAF0;
            --gray: #888888;
            --gray-light: #C4C4C4;
            --radius: 12px;
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--white);
            background: var(--black);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        button { font-family: inherit; cursor: pointer; border: none; }

        h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; letter-spacing: 0.03em; line-height: 1.1; text-transform: uppercase; }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ========== HONEYCOMB BG PATTERN ========== */
        .honeycomb-bg {
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23ec8c11' stroke-width='1'/%3E%3C/svg%3E");
            background-size: 56px 100px;
            pointer-events: none;
        }
        /* Honeycomb via pseudo-element for black bg sections */
        .has-honeycomb {
            position: relative;
            overflow: hidden;
        }
        .has-honeycomb::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23ec8c11' stroke-width='1'/%3E%3C/svg%3E");
            background-size: 56px 100px;
            pointer-events: none;
        }

        /* ========== ANNOUNCEMENT BAR ========== */
        .announce-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            background: var(--dark-surface);
            border-bottom: 1px solid rgba(236,140,17,0.12);
            display: flex;
            flex-direction: column;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }
        .announce-bar.hidden {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
        }
        .announce-spacer {
            transition: height 0.4s ease;
        }

        /* --- Single row (pinned or rotating) --- */
        .announce-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 0 40px;
            height: 40px;
            position: relative;
            max-width: 100%;
        }
        /* Priority rows get a subtle left accent + darker bg */
        .announce-row--priority {
            background: rgba(244,67,54,0.04);
            border-left: none;
        }
        .announce-row--priority + .announce-row--priority {
            border-top: 1px solid rgba(255,255,255,0.04);
        }
        /* Rotating row */
        .announce-row--rotate {
            border-left: 3px solid transparent;
        }
        /* If priority rows exist above, add subtle separator */
        .announce-row--priority + .announce-row--rotate {
            border-top: 1px solid rgba(236,140,17,0.1);
        }

        .announce-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--honey);
            flex-shrink: 0;
            position: relative;
        }
        .announce-dot--urgent {
            background: #ef5350;
        }
        .announce-dot::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: inherit;
            opacity: 0;
            animation: announcePulse 2s ease-in-out infinite;
        }
        @keyframes announcePulse {
            0%, 100% { opacity: 0; transform: scale(1); }
            50% { opacity: 0.35; transform: scale(1.8); }
        }

        .announce-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
        }

        /* Slider wrapper for rotating items */
        .announce-slider {
            position: relative;
            height: 20px;
            overflow: hidden;
            flex: 1;
            max-width: 600px;
        }
        .announce-slide {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            opacity: 0;
            transform: translateY(100%);
            transition: opacity 0.5s ease, transform 0.5s ease;
            white-space: nowrap;
        }
        .announce-slide.active {
            opacity: 1;
            transform: translateY(0);
        }
        .announce-slide.exit-up {
            opacity: 0;
            transform: translateY(-100%);
        }

        .announce-tag {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 2px 8px;
            border-radius: 3px;
            flex-shrink: 0;
        }
        .announce-tag--info {
            background: rgba(236,140,17,0.15);
            color: var(--honey);
        }
        .announce-tag--new {
            background: rgba(76,175,80,0.15);
            color: #66bb6a;
        }
        .announce-tag--warn {
            background: rgba(244,67,54,0.15);
            color: #ef5350;
        }
        .announce-tag--urgent {
            background: rgba(244,67,54,0.2);
            color: #ef5350;
            animation: tagFlash 3s ease-in-out infinite;
        }
        @keyframes tagFlash {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        .announce-text {
            font-size: 0.82rem;
            color: var(--gray-light);
            font-weight: 400;
        }
        .announce-row--priority .announce-text {
            color: rgba(255,255,255,0.9);
        }
        .announce-text a {
            color: var(--honey);
            font-weight: 600;
            border-bottom: 1px solid rgba(236,140,17,0.3);
            transition: border-color 0.3s ease;
        }
        .announce-text a:hover {
            border-color: var(--honey);
        }
        .announce-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }
        .announce-pip {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        .announce-pip.active {
            background: var(--honey);
            transform: scale(1.3);
        }
        .announce-pip:hover {
            background: rgba(255,255,255,0.35);
        }
        .announce-close {
            position: absolute;
            right: 16px;
            top: 10px;
            background: none;
            color: var(--gray);
            padding: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease, background 0.3s ease;
            flex-shrink: 0;
            border-radius: 50%;
            z-index: 2;
        }
        .announce-close:hover {
            color: var(--white);
            background: rgba(255,255,255,0.08);
        }
        .announce-close svg {
            width: 14px;
            height: 14px;
        }
        /* Dismiss single priority row */
        .announce-row-close {
            background: none;
            color: var(--gray);
            padding: 2px;
            display: flex;
            align-items: center;
            margin-left: auto;
            transition: color 0.3s ease;
            flex-shrink: 0;
        }
        .announce-row-close:hover {
            color: var(--white);
        }
        .announce-row-close svg {
            width: 12px;
            height: 12px;
        }
        .announce-row.dismissed {
            height: 0;
            overflow: hidden;
            padding: 0;
            border: none;
            transition: height 0.3s ease, padding 0.3s ease;
        }

        /* ========== NAVIGATION ========== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10002;
            padding: 16px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, top 0.4s ease;
        }
        .nav.scrolled {
            background: rgba(17, 17, 17, 0.95);
            backdrop-filter: blur(20px);
            padding: 10px 40px;
            box-shadow: 0 2px 40px rgba(236, 140, 17, 0.1);
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-logo img {
            height: 48px;
            transition: height 0.3s ease;
        }
        .nav.scrolled .nav-logo img { height: 38px; }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
        }
        .nav-links a {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--gray-light);
            transition: color var(--transition);
            position: relative;
            letter-spacing: 0.02em;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--honey);
            transition: width var(--transition);
        }
        .nav-links a:hover { color: var(--honey); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            background: var(--honey);
            color: var(--black);
            padding: 10px 24px;
            font-weight: 700;
            font-size: 0.85rem;
            clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
            transition: background var(--transition), transform var(--transition);
            letter-spacing: 0.03em;
        }
        .nav-cta:hover {
            background: var(--honey-glow);
            transform: scale(1.05);
        }

        /* Mobile menu */
        .nav-burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            padding: 8px;
        }
        .nav-burger span {
            display: block;
            width: 28px;
            height: 2px;
            background: var(--honey);
            transition: var(--transition);
        }
        .nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .nav-burger.active span:nth-child(2) { opacity: 0; }
        .nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .mobile-menu {
            position: fixed;
            inset: 0;
            background: rgba(17,17,17,0.97);
            backdrop-filter: blur(30px);
            z-index: 10001;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            padding-top: 80px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }
        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }
        .mobile-menu a {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 2rem;
            color: var(--white);
            letter-spacing: 0.08em;
            transition: color var(--transition);
        }
        .mobile-menu a:hover { color: var(--honey); }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top left;
            filter: brightness(0.35);
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.4) 40%, rgba(236,140,17,0.15) 100%);
            z-index: 1;
        }
        .hero-honeycomb-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            opacity: 0.07;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23ec8c11' stroke-width='1.5'/%3E%3C/svg%3E");
            background-size: 56px 100px;
        }
        .hero-hex-decor {
            position: absolute;
            z-index: 2;
            opacity: 0.12;
            border: 2px solid var(--honey);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }
        .hero-hex-1 { width: 120px; height: 138px; top: 15%; right: 8%; animation: floatHex 8s ease-in-out infinite; }
        .hero-hex-2 { width: 80px; height: 92px; top: 60%; right: 15%; animation: floatHex 10s ease-in-out infinite reverse; }
        .hero-hex-3 { width: 60px; height: 69px; top: 30%; right: 22%; animation: floatHex 12s ease-in-out infinite 2s; }
        .hero-hex-4 { width: 200px; height: 231px; bottom: -40px; left: -60px; animation: floatHex 15s ease-in-out infinite 1s; opacity: 0.06; }

        @keyframes floatHex {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            padding: 0 40px;
            max-width: 820px;
            margin-left: 8%;
        }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(236, 140, 17, 0.15);
            border: 1px solid rgba(236, 140, 17, 0.3);
            padding: 8px 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--honey);
            margin-bottom: 28px;
            clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .hero-tag svg {
            width: 16px;
            height: 16px;
        }
        .hero h1 {
            font-size: clamp(3rem, 7vw, 5.5rem);
            color: var(--white);
            margin-bottom: 28px;
            line-height: 1.05;
        }
        .hero h1 span {
            color: var(--honey);
            position: relative;
        }
        .hero-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 40px;
        }
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 1.1rem;
            font-weight: 400;
            color: rgba(255,255,255,0.85);
        }
        .hero-feature-hex {
            width: 28px;
            height: 32px;
            background: var(--honey);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .hero-feature-hex svg {
            width: 14px;
            height: 14px;
            fill: none;
        }
        .hero-cta-group {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: var(--honey);
            color: var(--black);
            padding: 16px 40px;
            font-weight: 700;
            font-size: 1rem;
            clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
            transition: background var(--transition), transform var(--transition);
            letter-spacing: 0.03em;
            display: inline-block;
        }
        .btn-primary:hover {
            background: var(--honey-glow);
            transform: scale(1.04);
        }
        .btn-outline {
            color: var(--white);
            padding: 16px 40px;
            font-weight: 600;
            font-size: 1rem;
            clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
            transition: background var(--transition), color var(--transition);
            display: inline-block;
            background: rgba(255,255,255,0.1);
            border: none;
        }
        .btn-outline:hover {
            background: rgba(236,140,17,0.15);
            color: var(--honey);
        }

        /* Scroll indicator */
        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--gray);
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-align: center;
        }
        .hero-scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--honey), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }
        @keyframes scrollPulse {
            0%, 100% { opacity: 1; transform: scaleY(1); }
            50% { opacity: 0.4; transform: scaleY(0.6); }
        }

        /* ========== SECTION COMMON ========== */
        .section {
            position: relative;
            padding: 120px 40px;
        }
        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.95rem;
            color: var(--honey);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--honey);
        }
        .section-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            color: var(--white);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--honey);
            margin-top: 12px;
        }
        .programs-header .section-title::after,
        .stats-header .section-title::after,
        .ig-section .section-title::after {
            margin-left: auto;
            margin-right: auto;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 600px;
            line-height: 1.7;
            font-weight: 300;
        }

        /* ========== HONEY DIVIDER ========== */
        .honey-divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--honey), transparent);
            border: none;
            margin: 0;
        }

        /* ========== ABOUT SECTION ========== */
        .about {
            background: var(--dark);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .about-image-wrapper {
            position: relative;
        }
        .about-image-hex {
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            overflow: hidden;
            aspect-ratio: 1 / 1.15;
            max-width: 420px;
            margin: 0 auto;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
            transition: filter 0.5s ease;
        }
        .about-image-hex:hover {
            filter: drop-shadow(0 8px 20px rgba(236,140,17,0.15));
        }
        .about-image-hex img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .about-image-hex:hover img {
            transform: scale(1.05);
        }
        .about-image-ring {
            position: absolute;
            top: -15px;
            left: calc(50% - 225px);
            width: 450px;
            aspect-ratio: 1 / 1.15;
            pointer-events: none;
        }
        .about-image-ring::before,
        .about-image-ring::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 220px;
            height: 3px;
            margin-left: -110px;
            margin-top: -1.5px;
            background: linear-gradient(90deg, transparent, rgba(236, 140, 17, 0.55), rgba(236, 140, 17, 0.55), transparent);
            border-radius: 2px;
            filter: drop-shadow(0 0 6px rgba(236, 140, 17, 0.25));
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .about-image-ring::before {
            transform: translate(-140px, -210px) rotate(-30deg);
        }
        .about-image-ring::after {
            transform: translate(140px, 210px) rotate(-30deg);
        }
        .about-image-wrapper:hover .about-image-ring::before {
            transform: translate(140px, -210px) rotate(30deg);
        }
        .about-image-wrapper:hover .about-image-ring::after {
            transform: translate(-140px, 210px) rotate(30deg);
        }
        .about-text p {
            color: rgba(255,255,255,0.75);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
            font-weight: 300;
        }
        .about-text p strong {
            color: var(--honey);
            font-weight: 600;
        }
        .about-age-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(236, 140, 17, 0.1);
            border: 1px solid rgba(236, 140, 17, 0.25);
            padding: 12px 24px;
            margin-top: 16px;
            font-weight: 600;
            color: var(--honey);
            font-size: 0.95rem;
            clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
            transition: transform var(--transition), background var(--transition), filter var(--transition);
        }
        .about-age-badge:hover {
            transform: translateY(-3px);
            background: rgba(236,140,17,0.14);
            filter: drop-shadow(0 6px 16px rgba(236,140,17,0.12));
        }

        /* ========== PROGRAMS SECTION ========== */
        .programs {
            background: var(--black);
        }
        .programs-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .programs-header .section-label {
            justify-content: center;
        }
        .programs-header .section-label::before {
            display: none;
        }
        /* Legacy program grid (unused) */
        .programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

        /* ========== PROGRAMS V2 ========== */
        .programs-grid-v2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }
        .prog-card {
            background: var(--dark-surface);
            border: 1px solid rgba(236,140,17,0.08);
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
            display: flex;
            flex-direction: column;
        }
        .prog-card:hover {
            transform: translateY(-6px);
            border-color: rgba(236,140,17,0.3);
            box-shadow: 0 12px 40px rgba(236,140,17,0.1), 0 0 20px rgba(236,140,17,0.05);
        }
        .prog-card-img {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }
        .prog-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .prog-card:hover .prog-card-img img {
            transform: scale(1.06);
        }
        .prog-card-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(17,17,17,0.7), transparent);
            pointer-events: none;
        }
        .prog-card-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--honey);
            color: var(--black);
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            padding: 8px 18px;
            z-index: 1;
            box-shadow: 0 4px 16px rgba(236,140,17,0.4);
            text-transform: uppercase;
        }
        .prog-card-body {
            padding: 28px 28px 32px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .prog-card-body h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.04em;
            margin-bottom: 10px;
        }
        .prog-card-body p {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.7;
            font-weight: 300;
            flex: 1;
        }
        .prog-card-link {
            display: inline-block;
            margin-top: 20px;
            color: var(--honey);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.03em;
            transition: letter-spacing 0.3s ease;
        }
        .prog-card:hover .prog-card-link {
            letter-spacing: 0.08em;
        }

        /* ========== STATISTICS ========== */
        .stats {
            background: var(--honey);
            color: var(--black);
            position: relative;
            overflow: hidden;
        }
        .stats .honeycomb-bg { opacity: 0.08; }
        .stats .honeycomb-bg {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23000000' stroke-width='1'/%3E%3C/svg%3E");
        }
        .stats-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .stats-header .section-label { color: var(--black); justify-content: center; }
        .stats-header .section-label::before { background: var(--black); display: none; }
        .stats-header .section-title { color: var(--black); }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .stat-hex {
            text-align: center;
        }
        .stat-hex-shape {
            width: 140px;
            height: 161px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            background: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: transform 0.4s ease;
        }
        .stat-hex:hover .stat-hex-shape { transform: scale(1.08) rotate(5deg); }
        .stat-hex-number {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 2.8rem;
            color: var(--honey);
            line-height: 1;
        }
        .stat-hex-unit {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 400;
        }
        .stat-hex-desc {
            font-size: 0.92rem;
            color: rgba(0,0,0,0.7);
            font-weight: 400;
            max-width: 280px;
            margin: 0 auto;
            line-height: 1.5;
        }

        /* ========== WHERE / KDE FUNGUJEME ========== */
        .where-section {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        .where-section .section-subtitle {
            color: var(--gray);
            font-size: 1.15rem;
        }
        .where-section .section-subtitle strong {
            color: var(--honey);
        }
        .where-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .where-card {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 16px 20px;
            transition: background var(--transition), transform var(--transition);
        }
        .where-card:hover {
            background: rgba(236,140,17,0.08);
            border-color: rgba(236,140,17,0.2);
            transform: translateY(-2px);
        }
        .where-card-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            color: var(--honey);
        }
        .where-card-icon svg {
            width: 100%;
            height: 100%;
        }
        .where-card span {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--white);
        }
        @media (max-width: 900px) {
            .where-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 500px) {
            .where-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== INSTAGRAM SECTION ========== */
        .ig-section {
            background: var(--black);
            text-align: center;
        }
        .ig-section .section-label {
            justify-content: center;
        }
        .ig-section .section-label::before {
            display: none;
        }
        .ig-section .section-title {
            margin-bottom: 16px;
        }
        .ig-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(236,140,17,0.1);
            border: 1px solid rgba(236,140,17,0.25);
            padding: 16px 36px;
            color: var(--honey);
            font-weight: 600;
            font-size: 1.1rem;
            transition: background var(--transition), transform var(--transition);
            margin-top: 32px;
        }
        .ig-link:hover {
            background: rgba(236,140,17,0.2);
            transform: translateY(-3px);
        }
        .ig-link svg {
            width: 24px;
            height: 24px;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--black);
            border-top: none;
            padding: 60px 40px 32px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 48px;
        }
        .footer-brand img {
            height: 48px;
            margin-bottom: 16px;
        }
        .footer-brand p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.7;
            max-width: 280px;
        }
        .footer-col h4 {
            font-size: 0.85rem;
            color: var(--honey);
            letter-spacing: 0.12em;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .footer-col a {
            display: block;
            color: var(--gray);
            font-size: 0.9rem;
            padding: 6px 0;
            transition: color var(--transition);
        }
        .footer-col a:hover {
            color: var(--honey);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom p {
            color: var(--gray);
            font-size: 0.8rem;
        }

        /* ========== BEE MODE SWITCHER ========== */
        .bee-switcher {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            gap: 0;
            background: rgba(17,17,17,0.9);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(236,140,17,0.2);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,0,0,0.4);
        }
        .bee-switcher-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.65rem;
            color: var(--honey);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 8px 14px 4px;
            text-align: center;
        }
        .bee-switcher-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: none;
            color: var(--gray-light);
            font-size: 0.75rem;
            font-weight: 500;
            transition: background 0.2s ease, color 0.2s ease;
            white-space: nowrap;
            cursor: pointer;
        }
        .bee-switcher-btn:hover {
            background: rgba(236,140,17,0.08);
            color: var(--white);
        }
        .bee-switcher-btn.active {
            background: rgba(236,140,17,0.15);
            color: var(--honey);
        }
        .bee-switcher-btn svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        /* ========== BEE MODE 1: SCROLL COMPANION ========== */
        .bee-trail {
            position: fixed;
            right: 32px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: repeating-linear-gradient(to bottom, rgba(236,140,17,0.15) 0px, rgba(236,140,17,0.15) 6px, transparent 6px, transparent 14px);
            z-index: 998;
            pointer-events: none;
            display: none;
        }
        .bee-trail-progress {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background: repeating-linear-gradient(to bottom, var(--honey) 0px, var(--honey) 6px, transparent 6px, transparent 14px);
            transition: height 0.1s linear;
        }
        .bee-companion {
            position: fixed;
            right: 14px;
            top: 0;
            z-index: 999;
            width: 38px;
            height: 42px;
            pointer-events: none;
            filter: drop-shadow(0 2px 8px rgba(236,140,17,0.3));
            will-change: transform;
            display: none;
        }
        .bee-companion svg { width: 100%; height: 100%; }

        /* ========== BEE MODE 2: FREE ROAM ========== */
        .bee-freeroam {
            position: fixed;
            left: 0;
            top: 0;
            z-index: 999;
            width: 38px;
            height: 42px;
            pointer-events: none;
            filter: drop-shadow(0 2px 10px rgba(236,140,17,0.35));
            will-change: transform;
            display: none;
        }
        .bee-freeroam svg { width: 100%; height: 100%; }
        .bee-dot {
            position: fixed;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--honey);
            pointer-events: none;
            z-index: 998;
            opacity: 0.5;
            animation: beeDotFade 1.2s ease-out forwards;
        }
        @keyframes beeDotFade {
            0% { opacity: 0.5; transform: scale(1); }
            100% { opacity: 0; transform: scale(0.2); }
        }

        /* ========== BEE MODE 3: CURSOR ========== */
        .bee-cursor {
            position: fixed;
            left: 0;
            top: 0;
            z-index: 10000;
            width: 32px;
            height: 36px;
            pointer-events: none;
            filter: drop-shadow(0 2px 8px rgba(236,140,17,0.4));
            will-change: transform;
            display: none;
        }
        .bee-cursor svg { width: 100%; height: 100%; }
        .bee-trail-dot {
            position: fixed;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--honey);
            pointer-events: none;
            z-index: 9998;
            animation: trailFade 0.8s ease-out forwards;
        }
        @keyframes trailFade {
            0% { opacity: 0.4; transform: scale(1); }
            100% { opacity: 0; transform: scale(0); }
        }
        body.cursor-mode, body.cursor-mode * { cursor: none !important; }

        body.bee-over-light .bee-trail {
            background: repeating-linear-gradient(to bottom, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 6px, transparent 6px, transparent 14px);
        }
        body.bee-over-light .bee-trail-progress {
            background: repeating-linear-gradient(to bottom, #111 0px, #111 6px, transparent 6px, transparent 14px);
        }
        body.bee-over-light .bee-dot,
        body.bee-over-light .bee-trail-dot {
            background: #111;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .section { padding: 80px 24px; }
            .nav { padding: 14px 24px; }
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-image-ring { display: none; }
            .stats-grid { grid-template-columns: 1fr; gap: 40px; }
            .programs-grid { grid-template-columns: repeat(2, 1fr); }
            .programs-grid-v2 { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-burger { display: flex; }
            .hero-content { margin-left: 0; padding: 0 20px; }
            .hero { min-height: 100svh; }
            .hero-bg img { object-position: 40% center; }
            .section { padding: 60px 18px; }
            .announce-row { padding: 0 16px; height: 36px; }
            .announce-tag { display: none; }
            .announce-text { font-size: 0.78rem; }
            .announce-close { right: 8px; }
            .programs-grid { grid-template-columns: 1fr; }
            .programs-grid-v2 { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px 24px; }
            .footer-brand { grid-column: 1 / -1; text-align: center; }
            .footer-brand p { max-width: 100%; margin: 0 auto; }
            .footer-brand img { margin: 0 auto 12px; display: block; }
            .footer-col { text-align: center; }
            .footer-col h4 { margin-bottom: 12px; }
            .footer-col a { padding: 4px 0; }
            .footer-bottom { justify-content: center; }
            .bee-trail { right: 12px; }
            .bee-companion { right: 2px; width: 28px; height: 31px; }
            .bee-freeroam { width: 28px; height: 31px; }
            .bee-switcher { display: none !important; }
            body.cursor-mode, body.cursor-mode * { cursor: auto !important; }
            .bee-cursor { display: none !important; }
        }

        @media (max-width: 480px) {
            .hero-cta-group { flex-direction: column; align-items: flex-start; }
        }

/* ========== SUB-PAGES COMMON ========== */
.page-hero {
    padding: 160px 40px 80px;
    background: var(--dark);
    position: relative;
    text-align: center;
}
.page-hero .honeycomb-bg { opacity: 0.04; }
.page-hero .section-label { justify-content: center; }
.page-hero .section-label::before { display: none; }

.page-content {
    padding: 80px 40px;
    background: var(--black);
}
.page-content .section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* Cards grid for kroužky/tábory */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}
.card {
    background: var(--dark-surface);
    border: 1px solid rgba(236,140,17,0.1);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--honey);
    transform: scaleX(0);
    transition: transform var(--transition);
    z-index: 1;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(236,140,17,0.3);
    box-shadow: 0 12px 40px rgba(236,140,17,0.08);
}
.card-image {
    height: 200px;
    overflow: hidden;
    background: var(--dark);
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card:hover .card-image img {
    transform: scale(1.05);
}
.card-body {
    padding: 28px;
}
.card-body h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.card-body p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--honey);
    font-weight: 500;
}

/* Trainer grid */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}
.trainer-card {
    text-align: center;
}
.trainer-photo-wrap {
    width: 180px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 0 0px rgba(236,140,17,0));
    transition: filter 0.3s ease;
}
.trainer-card:hover .trainer-photo-wrap {
    filter: drop-shadow(0 0 8px rgba(236,140,17,0.25)) drop-shadow(0 0 20px rgba(236,140,17,0.1));
}
.trainer-photo {
    width: 180px;
    height: 207px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    background: var(--dark-surface);
}
.trainer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.trainer-card:hover .trainer-photo img {
    transform: scale(1.05);
}
.trainer-card h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 6px;
}
.trainer-card .trainer-role {
    font-size: 0.88rem;
    color: var(--honey);
    font-weight: 500;
    margin-bottom: 14px;
}
.trainer-card .trainer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    justify-content: center;
}
.trainer-card .trainer-tag {
    background: rgba(236,140,17,0.12);
    color: var(--honey);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
}
.trainer-card .trainer-bio {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    max-width: 300px;
    margin: 0 auto;
}

/* Featured trainers – photo left, text right */
.trainers-featured {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.trainer-featured {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: center;
}
.trainer-featured--flip {
    direction: rtl;
}
.trainer-featured--flip > * {
    direction: ltr;
}
.trainer-featured-photo {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--dark-surface);
}
.trainer-featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.trainer-featured:hover .trainer-featured-photo img {
    transform: scale(1.03);
}
.trainer-featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-surface);
}
.trainer-featured-body h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}
.trainer-featured-role {
    font-size: 0.95rem;
    color: var(--honey);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.trainer-featured-bio {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}
.trainer-featured-bio p {
    margin-bottom: 12px;
}
.trainer-featured-bio strong {
    color: var(--honey);
    font-weight: 600;
}

/* Drift grid – compact cards for regular trainers */
.trainers-drift {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.trainer-drift-card {
    width: 180px;
    text-align: center;
    animation-delay: var(--drift-delay, 0s);
}
.trainer-drift-photo {
    width: 140px;
    height: 160px;
    margin: 0 auto 16px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    background: var(--dark-surface);
    transition: filter 0.3s ease;
}
.trainer-drift-card:hover .trainer-drift-photo {
    filter: drop-shadow(0 0 8px rgba(236,140,17,0.3));
}
.trainer-drift-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.trainer-drift-card:hover .trainer-drift-photo img {
    transform: scale(1.08);
}
.trainer-drift-card h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}
.trainer-drift-role {
    font-size: 0.8rem;
    color: var(--honey);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Blog/novinky */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}
.blog-card {
    background: var(--dark-surface);
    border: 1px solid rgba(236,140,17,0.1);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
}
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--honey);
    transform: scaleX(0);
    transition: transform var(--transition);
    z-index: 1;
}
.blog-card:hover::before { transform: scaleX(1); }
.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(236,140,17,0.25);
    box-shadow: 0 12px 40px rgba(236,140,17,0.08);
}
.blog-card-image {
    height: 220px;
    overflow: hidden;
    background: var(--dark);
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-body {
    padding: 28px;
}
.blog-card-body .blog-date {
    font-size: 0.78rem;
    color: var(--honey);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.blog-card-body h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}
.blog-card-body p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}
.blog-card-body .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--honey);
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: 16px;
    transition: gap var(--transition);
}
.blog-card-body .read-more:hover {
    gap: 14px;
}

/* Article detail */
.article-content {
    max-width: 760px;
    margin: 0 auto;
}
.article-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.article-content .article-meta {
    font-size: 0.85rem;
    color: var(--honey);
    margin-bottom: 32px;
    font-weight: 500;
}
.article-content .article-image {
    margin-bottom: 40px;
    border-radius: var(--radius);
    overflow: hidden;
}
.article-content .article-image img {
    width: 100%;
}
.article-content .article-body {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.9;
}
.article-content .article-body p {
    margin-bottom: 20px;
}
.article-content .article-body h2,
.article-content .article-body h3 {
    color: var(--white);
    margin: 32px 0 16px;
}
.article-content .article-body strong {
    color: var(--honey);
}
.article-content .article-body a {
    color: var(--honey);
    border-bottom: 1px solid rgba(236,140,17,0.3);
}

/* Schedule table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}
.schedule-table th,
.schedule-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
}
.schedule-table th {
    color: var(--honey);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.schedule-table td {
    color: var(--gray-light);
}

/* Kroužek image */
.krouzek-image {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Category filter tabs */
.filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.filter-tab {
    background: rgba(236,140,17,0.08);
    border: 1px solid rgba(236,140,17,0.2);
    color: var(--gray-light);
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition);
    cursor: pointer;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}
.filter-tab:hover,
.filter-tab.active {
    background: var(--honey);
    color: var(--black);
    border-color: var(--honey);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}
.empty-state p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* ========== PRINCIPLES GRID ========== */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.principle-card {
    background: var(--honey);
    border: none;
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.principle-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23000000' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0,0,0,0.15);
    transform: scaleX(0);
    transition: transform var(--transition);
    z-index: 1;
}
.principle-card:hover::before { transform: scaleX(1); }
.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(236,140,17,0.25);
}
.principle-card-icon {
    width: 56px;
    height: 64px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.principle-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.principle-card h3 {
    font-size: 1.05rem;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.principle-card p {
    font-size: 0.88rem;
    color: rgba(0,0,0,0.7);
    line-height: 1.7;
    font-weight: 400;
}

/* ========== CONTACT FORM ========== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-form label {
    font-size: 0.82rem;
    color: var(--honey);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
}
.contact-form input,
.contact-form textarea {
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    padding: 14px 18px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--honey);
    box-shadow: 0 0 0 3px rgba(236,140,17,0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}
.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}
.contact-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}
.contact-form .form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--honey);
    cursor: pointer;
}
.contact-form .form-checkbox span {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}
.contact-form .form-checkbox a {
    color: var(--honey);
    border-bottom: 1px solid rgba(236,140,17,0.3);
}
.form-alert {
    padding: 16px 20px;
    font-size: 0.92rem;
    font-weight: 500;
}
.form-alert--success {
    background: rgba(76,175,80,0.1);
    border: 1px solid rgba(76,175,80,0.3);
    color: #66bb6a;
}
.form-alert--error {
    background: rgba(244,67,54,0.1);
    border: 1px solid rgba(244,67,54,0.3);
    color: #ef5350;
}

/* Contact info card */
.contact-info-card {
    background: var(--dark-surface);
    border: 1px solid rgba(236,140,17,0.15);
    border-top: 3px solid var(--honey);
    padding: 36px;
}
.contact-info-card h3 {
    color: var(--honey);
    font-size: 1.1rem;
    margin-bottom: 24px;
    letter-spacing: 0.08em;
}
.contact-info-item {
    margin-bottom: 24px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-label {
    font-size: 0.8rem;
    color: var(--honey);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: 'Barlow Condensed', sans-serif;
}
.contact-info-value a {
    color: var(--white);
    font-size: 1.05rem;
    transition: color var(--transition);
}
.contact-info-value a:hover { color: var(--honey); }

/* ========== INFO BANNER ========== */
.info-banner {
    background: var(--honey);
    color: var(--black);
    padding: 14px 40px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 72px;
}
.info-banner strong {
    font-weight: 700;
}
.info-banner svg {
    flex-shrink: 0;
}

/* Contact page layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

/* ========== ORANGE QUOTE ========== */
.orange-quote {
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}
.orange-quote::before,
.orange-quote::after {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.15);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.orange-quote::before {
    content: '\201C';
    left: 0;
}
.orange-quote::after {
    content: '\201D';
    right: 0;
}

/* ========== ANCHOR BUTTONS ========== */
.btn-anchor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(236,140,17,0.3);
    color: #fff;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-anchor span {
    font-weight: 400;
    color: var(--honey);
    font-size: 0.85rem;
}
.btn-anchor:hover {
    background: rgba(236,140,17,0.12);
    border-color: var(--honey);
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(236,140,17,0.25), 0 0 24px rgba(236,140,17,0.1);
}

/* ========== TESTIMONIAL CARD ========== */
.testimonial-card {
    background: var(--dark-surface);
    border: 1px solid rgba(236,140,17,0.1);
    border-left: 4px solid var(--honey);
    padding: 28px 28px 28px 32px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(236,140,17,0.06);
}
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 16px;
}
.testimonial-card cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--honey);
    font-weight: 600;
}

/* ========== MEDIA GRID ========== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.media-card {
    background: var(--dark-surface);
    border: 1px solid rgba(236,140,17,0.1);
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--honey);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.media-card:hover::before { transform: scaleX(1); }
.media-card:hover {
    transform: translateY(-4px);
    border-color: rgba(236,140,17,0.3);
    box-shadow: 0 12px 40px rgba(236,140,17,0.08);
}
.media-card-logo {
    margin-bottom: 16px;
    height: 48px;
    display: flex;
    align-items: center;
}
.media-card-logo img {
    max-height: 48px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.media-card:hover .media-card-logo img {
    opacity: 1;
}
.media-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 16px;
}
.media-card a {
    color: var(--honey);
    font-weight: 600;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(236,140,17,0.3);
    transition: border-color var(--transition);
}
.media-card a:hover {
    border-color: var(--honey);
}

/* ========== PRESS CARDS ========== */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.press-card {
    background: var(--dark-surface);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}
.press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(236,140,17,0.1);
}
.press-card-image {
    height: 180px;
    overflow: hidden;
}
.press-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.press-card:hover .press-card-image img { transform: scale(1.05); }
.press-card-body {
    padding: 24px;
}
.press-card-source {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    color: var(--honey);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.press-card-title {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.5;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    background: var(--honey);
    color: var(--black);
    position: relative;
}
.newsletter-section .honeycomb-bg {
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23000000' stroke-width='1'/%3E%3C/svg%3E");
}
.newsletter-section .section-label {
    color: var(--black);
}
.newsletter-section .section-label::before {
    background: var(--black);
}
.newsletter-section .section-title {
    color: var(--black);
}
.newsletter-section .section-title::after {
    background: var(--black);
    margin-left: auto;
    margin-right: auto;
}
.newsletter-section .section-subtitle {
    color: rgba(0,0,0,0.7);
}
.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input[type="email"] {
    flex: 1;
    background: var(--black);
    border: 2px solid rgba(0,0,0,0.3);
    border-right: none;
    color: var(--white);
    padding: 16px 20px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus {
    border-color: var(--black);
}
.newsletter-form input[type="email"]::placeholder {
    color: var(--gray);
}
.newsletter-form button {
    background: var(--black);
    color: var(--honey);
    padding: 16px 32px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background var(--transition), color var(--transition);
    border: 2px solid var(--black);
}
.newsletter-form button:hover {
    background: rgba(0,0,0,0.8);
    color: var(--white);
}

/* ========== INFO NOTE ========== */
.info-note {
    background: rgba(236,140,17,0.08);
    border: 1px solid rgba(236,140,17,0.2);
    border-left: 4px solid var(--honey);
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.info-note svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: var(--honey);
    fill: none;
    margin-top: 2px;
}
.info-note p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    font-weight: 400;
}
.info-note a {
    color: var(--honey);
    font-weight: 600;
    border-bottom: 1px solid rgba(236,140,17,0.3);
}

/* Benefits columns for aktivni skolka */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefits-col {
    background: var(--dark-surface);
    border: 1px solid rgba(236,140,17,0.1);
    border-top: 3px solid var(--honey);
    padding: 28px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefits-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(236,140,17,0.06);
}
.benefits-col h3 {
    color: var(--honey);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}
.benefits-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.benefits-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
    font-weight: 300;
}
.benefits-col li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--honey);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ========== BENEFITS V2 (Aktivní školka) ========== */
.benefits-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.benefit-v2-card {
    background: var(--black);
    border: 1px solid rgba(236,140,17,0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-v2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(236,140,17,0.08);
    border-color: rgba(236,140,17,0.25);
}
.benefit-v2-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    background: rgba(236,140,17,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-v2-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--honey);
}
.benefit-v2-card h3 {
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}
.benefit-v2-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
.benefit-v2-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
    font-weight: 300;
}
.benefit-v2-card li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--honey);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
    margin-top: 5px;
}

/* benefits on orange bg */
.benefits-section .section-label::before { background: var(--black); }
.benefits-section .benefit-v2-card {
    background: var(--black);
    border-color: rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}
.benefits-section .benefit-v2-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.benefits-section .benefit-v2-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: rgba(0,0,0,0.3);
}

/* ========== TESTIMONIALS V2 (Aktivní školka) ========== */
.testimonials-v2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.testimonial-v2 {
    background: var(--dark-surface);
    border: 1px solid rgba(236,140,17,0.08);
    border-radius: 16px;
    padding: 36px 40px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(236,140,17,0.06);
}
.testimonial-v2-quote {
    position: absolute;
    top: 20px;
    right: 28px;
}
.testimonial-v2-quote svg {
    width: 48px;
    height: 48px;
}
.testimonial-v2 blockquote {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.85;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-v2-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-v2-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--honey);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-v2-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}
.testimonial-v2-author span {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 400;
}

@media (max-width: 1024px) {
    .benefits-v2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .testimonial-v2 { padding: 28px 24px; }
    .testimonial-v2-quote svg { width: 36px; height: 36px; }
}

/* ========== ŠKOLKA GRID (Kde fungujeme) ========== */
.skolka-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.skolka-card {
    background: var(--dark-surface);
    border: 1px solid rgba(236,140,17,0.08);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.skolka-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(236,140,17,0.06);
}
.skolka-card-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 14px;
    color: var(--honey);
}
.skolka-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.skolka-card span {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}
@media (max-width: 768px) {
    .skolka-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .skolka-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== REVIEW CARD (long reviews) ========== */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}
.review-card {
    background: var(--dark-surface);
    border: 1px solid rgba(236,140,17,0.08);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(236,140,17,0.06);
}
.review-card-quote {
    position: absolute;
    top: 20px;
    right: 28px;
}
.review-card-quote svg {
    width: 48px;
    height: 48px;
}
.review-card blockquote {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.85;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.review-card-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.review-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--honey);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.review-card-author strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}
.review-card-author span {
    font-size: 0.88rem;
    color: var(--honey);
    font-weight: 500;
}
.review-card details {
    margin-top: 0;
    margin-bottom: 0;
}
.review-card details summary {
    cursor: pointer;
    color: var(--honey);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.review-card details summary::-webkit-details-marker { display: none; }
.review-card details summary::before {
    content: '▸';
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}
.review-card details[open] summary::before {
    transform: rotate(90deg);
}
.review-card details .review-detail-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.98rem;
    line-height: 1.8;
    padding-top: 12px;
}
.review-card details .review-detail-text p {
    margin-bottom: 12px;
}
.review-card details .review-detail-text p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .review-card { padding: 28px 24px; }
    .review-card-quote svg { width: 36px; height: 36px; }
}

/* ========== REVIEW BANDS (orange quote strips) ========== */
.review-bands {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.review-band-quote {
    background: var(--honey);
    padding: 40px 48px;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.review-band-quote .orange-quote {
    color: var(--black);
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.review-band-info {
    background: var(--dark-surface);
    border: 1px solid rgba(236,140,17,0.12);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 24px 32px;
}
.review-band-author {
    text-align: center;
}
.review-band-author strong {
    display: block;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
}
.review-band-author span {
    display: block;
    color: var(--honey);
    font-size: 0.92rem;
    font-weight: 500;
    margin-top: 2px;
}
.review-band-info details {
    margin-top: 16px;
    text-align: center;
}
.review-band-info details summary {
    cursor: pointer;
    color: var(--honey);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.review-band-info details summary::-webkit-details-marker { display: none; }
.review-band-info details summary::before {
    content: '\25B8';
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}
.review-band-info details[open] summary::before {
    transform: rotate(90deg);
}
.review-band-info .review-detail-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.98rem;
    line-height: 1.8;
    padding-top: 16px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}
.review-band-info .review-detail-text p {
    margin-bottom: 12px;
}
.review-band-info .review-detail-text p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .review-band-quote { padding: 28px 24px; }
    .review-band-quote .orange-quote { font-size: 1.05rem; padding-left: 28px; padding-right: 28px; }
    .review-band-info { padding: 20px 24px; }
}

/* Nav CTA button (for Kontakt) */
.nav-links .nav-cta-link a {
    background: var(--honey);
    color: var(--black) !important;
    padding: 8px 22px;
    font-weight: 700;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta-link a::after { display: none; }
.nav-links .nav-cta-link a:hover {
    background: var(--honey-glow);
    color: var(--black) !important;
    transform: scale(1.05);
}

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

@media (max-width: 1024px) {
    .principles-grid { grid-template-columns: repeat(2, 1fr); }
    .media-grid { grid-template-columns: repeat(2, 1fr); }
    .press-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding: 120px 20px 60px; }
    .page-content { padding: 60px 18px; }
    .section { padding: 60px 18px; }
    .cards-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .trainers-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 32px; }
    .trainer-featured { grid-template-columns: 1fr; gap: 24px; }
    .trainer-featured--flip { direction: ltr; }
    .trainer-featured-photo { max-width: 280px; margin: 0 auto; }
    .trainer-featured-body { text-align: center; }
    .trainer-featured-body .trainer-tags { justify-content: center; }
    .trainers-drift { gap: 24px; }
    .trainer-drift-card { width: 140px; }
    .trainer-drift-photo { width: 110px; height: 126px; }
    .principles-grid { grid-template-columns: 1fr; }
    .media-grid { grid-template-columns: 1fr; }
    .press-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { border-right: 2px solid rgba(0,0,0,0.3); }
    .photo-strip { grid-template-columns: repeat(2, 1fr) !important; }
    .two-col { grid-template-columns: 1fr !important; }
    .schedule-table th,
    .schedule-table td { padding: 10px 8px; font-size: 0.82rem; white-space: nowrap; }
}