/* roulang page: index */
:root {
            --brand-gold: #C9A86C;
            --brand-gold-light: #E8D5B0;
            --brand-deep-red: #8B2D3C;
            --brand-burgundy: #4A1A24;
            --brand-bg: #171310;
            --brand-bg-light: #231E1A;
            --brand-bg-card: #2A2420;
            --brand-bg-hover: #322B25;
            --brand-text: #F5EFE5;
            --brand-text-weak: #B8AA99;
            --brand-text-muted: #8E8072;
            --brand-border: #3A322B;
            --brand-border-light: #4A413A;
            --gradient-primary: linear-gradient(135deg, #8B2D3C 0%, #B5455A 35%, #C9A86C 100%);
            --gradient-hero: linear-gradient(165deg, #1A1411 0%, #2A1F1A 40%, #3A2A22 100%);
            --gradient-card: linear-gradient(150deg, #2A2420 0%, #332B25 100%);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --radius-full: 48px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
            --shadow-md: 0 6px 24px rgba(0,0,0,0.35);
            --shadow-lg: 0 14px 48px rgba(0,0,0,0.45);
            --shadow-gold: 0 4px 20px rgba(201,168,108,0.25);
            --transition-base: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--brand-bg);
            color: var(--brand-text);
            line-height: 1.75;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--brand-gold);
            text-decoration: none;
            transition: var(--transition-base);
        }
        a:hover, a:focus {
            color: var(--brand-gold-light);
            text-decoration: none;
            outline: none;
        }
        a:focus-visible {
            outline: 2px solid var(--brand-gold);
            outline-offset: 3px;
            border-radius: 4px;
        }

        button, .button {
            font-family: var(--font-sans);
            cursor: pointer;
            transition: var(--transition-base);
            border: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            letter-spacing: 0.02em;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            font-size: 15px;
            line-height: 1.5;
            text-decoration: none;
        }
        button:focus-visible, .button:focus-visible {
            outline: 2px solid #fff;
            outline-offset: 3px;
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ===== HEADER / NAV ===== */
        .site-header {
            background: rgba(23, 19, 16, 0.96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--brand-border);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 100;
            transition: var(--transition-base);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 20px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: var(--radius-sm);
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .logo-text-primary {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-text);
            letter-spacing: 0.03em;
        }
        .logo-text-secondary {
            font-size: 10px;
            color: var(--brand-text-weak);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .main-nav li {
            margin: 0;
            padding: 0;
        }
        .main-nav a {
            display: inline-flex;
            align-items: center;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--brand-text-weak);
            border-radius: var(--radius-sm);
            transition: var(--transition-base);
            text-decoration: none;
            letter-spacing: 0.02em;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--brand-text);
            background: rgba(201,168,108,0.08);
        }
        .main-nav a.active {
            color: var(--brand-gold);
            background: rgba(201,168,108,0.12);
        }
        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 2px;
            background: var(--brand-gold);
            border-radius: 2px;
        }
        .nav-cta {
            background: var(--gradient-primary);
            color: #fff !important;
            padding: 10px 22px !important;
            border-radius: var(--radius-md) !important;
            font-weight: 600 !important;
            box-shadow: var(--shadow-gold);
        }
        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 28px rgba(201,168,108,0.35);
            background: linear-gradient(135deg, #9A3145 0%, #C05060 35%, #D5B47A 100%);
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--brand-text);
            font-size: 24px;
            padding: 8px;
            cursor: pointer;
            border-radius: var(--radius-sm);
            transition: var(--transition-base);
        }
        .nav-toggle:hover {
            background: rgba(201,168,108,0.1);
        }

        /* ===== HERO ===== */
        .hero-section {
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
            padding: 80px 0 70px;
            border-bottom: 1px solid var(--brand-border);
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.14;
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201,168,108,0.15);
            border: 1px solid rgba(201,168,108,0.35);
            color: var(--brand-gold-light);
            padding: 8px 18px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.05em;
            margin-bottom: 28px;
        }
        .hero-badge i {
            font-size: 14px;
        }
        .hero-title {
            font-size: 38px;
            font-weight: 700;
            line-height: 1.35;
            margin-bottom: 20px;
            color: var(--brand-text);
            letter-spacing: 0.01em;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-desc {
            font-size: 16px;
            line-height: 1.85;
            color: var(--brand-text-weak);
            max-width: 760px;
            margin: 0 auto 36px;
            letter-spacing: 0.02em;
        }
        .hero-panel {
            display: grid;
            grid-template-columns: 1fr 1.6fr 1fr;
            gap: 28px;
            align-items: center;
            max-width: 1080px;
            margin: 0 auto 40px;
        }
        .hero-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
            text-align: left;
        }
        .hero-side-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: rgba(42,36,32,0.75);
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            transition: var(--transition-base);
        }
        .hero-side-item:hover {
            border-color: var(--brand-gold);
            background: rgba(42,36,32,0.95);
            transform: translateY(-2px);
        }
        .hero-side-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 15px;
            flex-shrink: 0;
        }
        .hero-side-text h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--brand-text);
            margin: 0 0 4px;
        }
        .hero-side-text p {
            font-size: 13px;
            color: var(--brand-text-weak);
            margin: 0;
            line-height: 1.6;
        }
        .hero-stage {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--brand-border-light);
            aspect-ratio: 4/3;
            background: var(--brand-bg-card);
        }
        .hero-stage img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .hero-stage:hover img {
            transform: scale(1.03);
        }
        .hero-stage-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 18px;
            background: linear-gradient(to top, rgba(23,19,16,0.9), transparent);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hero-stage-tag {
            background: var(--brand-gold);
            color: #1A1411;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: var(--radius-full);
        }
        .hero-stage-text {
            font-size: 14px;
            color: #fff;
            font-weight: 500;
        }
        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: var(--gradient-primary);
            color: #fff !important;
            padding: 14px 36px;
            border-radius: var(--radius-md);
            font-size: 16px;
            font-weight: 700;
            box-shadow: var(--shadow-gold);
            letter-spacing: 0.03em;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(201,168,108,0.4);
            color: #fff !important;
        }
        .btn-outline {
            background: transparent;
            color: var(--brand-gold-light) !important;
            border: 2px solid var(--brand-gold);
            padding: 13px 32px;
            border-radius: var(--radius-md);
            font-size: 15px;
            font-weight: 600;
        }
        .btn-outline:hover {
            background: rgba(201,168,108,0.12);
            border-color: var(--brand-gold-light);
            color: var(--brand-gold-light) !important;
            transform: translateY(-2px);
        }
        .hero-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 28px;
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat-number {
            font-size: 30px;
            font-weight: 700;
            color: var(--brand-gold);
            line-height: 1.2;
        }
        .hero-stat-label {
            font-size: 13px;
            color: var(--brand-text-weak);
            letter-spacing: 0.04em;
        }

        /* ===== SECTION COMMON ===== */
        .section-block {
            padding: 64px 0;
            position: relative;
        }
        .section-block.alt-bg {
            background: var(--brand-bg-light);
            border-top: 1px solid var(--brand-border);
            border-bottom: 1px solid var(--brand-border);
        }
        .section-header {
            margin-bottom: 40px;
            text-align: center;
        }
        .section-header.left-aligned {
            text-align: left;
        }
        .section-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            color: var(--brand-gold);
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--brand-text);
            margin-bottom: 16px;
            line-height: 1.4;
        }
        .section-desc {
            font-size: 15px;
            color: var(--brand-text-weak);
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
            letter-spacing: 0.02em;
        }
        .section-header.left-aligned .section-desc {
            margin: 0;
        }

        /* ===== CARDS ===== */
        .card-custom {
            background: var(--brand-bg-card);
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-lg);
            padding: 28px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .card-custom:hover {
            border-color: var(--brand-border-light);
            background: var(--brand-bg-hover);
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .card-badge {
            display: inline-block;
            background: rgba(201,168,108,0.15);
            color: var(--brand-gold);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            letter-spacing: 0.06em;
            margin-bottom: 14px;
        }
        .card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-text);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .card-text {
            font-size: 14px;
            color: var(--brand-text-weak);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ===== BRAND STORY ===== */
        .brand-story-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .brand-story-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--brand-border);
            aspect-ratio: 16/10;
        }
        .brand-story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .brand-story-image:hover img {
            transform: scale(1.05);
        }
        .brand-story-text .section-title {
            text-align: left;
            margin-bottom: 18px;
        }
        .brand-story-text .section-desc {
            text-align: left;
            margin: 0 0 20px;
        }
        .brand-points {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 20px;
        }
        .brand-point {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .brand-point-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
        }
        .brand-point-text {
            font-size: 14px;
            color: var(--brand-text-weak);
            line-height: 1.7;
        }
        .brand-point-text strong {
            color: var(--brand-text);
            font-weight: 600;
        }

        /* ===== FOCUS THEMES ===== */
        .themes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .theme-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            aspect-ratio: 3/4;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: 1px solid var(--brand-border);
        }
        .theme-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--brand-gold);
        }
        .theme-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .theme-card:hover img {
            transform: scale(1.08);
        }
        .theme-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(23,19,16,0.95) 0%, rgba(23,19,16,0.5) 50%, transparent 100%);
        }
        .theme-card-overlay h3 {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 6px;
        }
        .theme-card-overlay p {
            font-size: 12px;
            color: rgba(255,255,255,0.75);
            margin: 0;
            line-height: 1.5;
        }

        /* ===== RESOURCE LIST ===== */
        .resource-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .resource-item {
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--brand-bg-card);
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            transition: var(--transition-base);
            cursor: pointer;
        }
        .resource-item:hover {
            border-color: var(--brand-gold);
            background: var(--brand-bg-hover);
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
        }
        .resource-thumb {
            width: 72px;
            height: 72px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid var(--brand-border);
        }
        .resource-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .resource-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--brand-text);
            margin: 0 0 6px;
            line-height: 1.4;
        }
        .resource-info p {
            font-size: 13px;
            color: var(--brand-text-weak);
            margin: 0;
            line-height: 1.6;
        }
        .resource-meta {
            display: flex;
            gap: 12px;
            margin-top: 8px;
            font-size: 12px;
            color: var(--brand-text-muted);
        }
        .resource-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ===== STATS ===== */
        .stats-band {
            background: var(--gradient-primary);
            border-radius: var(--radius-lg);
            padding: 44px 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            border: none;
        }
        .stat-item .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            letter-spacing: 0.01em;
        }
        .stat-item .stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.8);
            letter-spacing: 0.05em;
            margin-top: 6px;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .testimonial-card {
            background: var(--brand-bg-card);
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            transition: var(--transition-base);
        }
        .testimonial-card:hover {
            border-color: var(--brand-border-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
        }
        .testimonial-quote {
            font-size: 14px;
            color: var(--brand-text-weak);
            line-height: 1.75;
            margin-bottom: 18px;
            font-style: italic;
            position: relative;
            padding-left: 18px;
        }
        .testimonial-quote::before {
            content: '\201C';
            position: absolute;
            left: 0;
            top: -4px;
            font-size: 36px;
            color: var(--brand-gold);
            font-style: normal;
            line-height: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            flex-shrink: 0;
        }
        .testimonial-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-text);
        }
        .testimonial-role {
            font-size: 12px;
            color: var(--brand-text-muted);
        }

        /* ===== FAQ ===== */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--brand-bg-card);
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition-base);
        }
        .faq-item:hover {
            border-color: var(--brand-border-light);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 24px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            color: var(--brand-text);
            transition: var(--transition-base);
            user-select: none;
            letter-spacing: 0.02em;
        }
        .faq-question:hover {
            color: var(--brand-gold);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(201,168,108,0.15);
            color: var(--brand-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: var(--transition-base);
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: var(--brand-gold);
            color: #1A1411;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
            color: var(--brand-text-weak);
            line-height: 1.75;
            padding: 0 24px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-bottom: 20px;
        }

        /* ===== CONTRIBUTORS ===== */
        .contributors-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
        }
        .contributor-card {
            background: var(--brand-bg-card);
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-md);
            padding: 22px 16px;
            text-align: center;
            transition: var(--transition-base);
        }
        .contributor-card:hover {
            border-color: var(--brand-gold);
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
        }
        .contributor-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--gradient-primary);
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
        }
        .contributor-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-text);
            margin-bottom: 4px;
        }
        .contributor-tag {
            font-size: 11px;
            color: var(--brand-gold);
            background: rgba(201,168,108,0.12);
            padding: 3px 10px;
            border-radius: var(--radius-full);
            display: inline-block;
            letter-spacing: 0.04em;
        }

        /* ===== FESTIVAL ===== */
        .festival-band {
            background: var(--gradient-primary);
            border-radius: var(--radius-xl);
            padding: 52px 44px;
            display: flex;
            align-items: center;
            gap: 40px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        .festival-band::after {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            pointer-events: none;
        }
        .festival-content {
            flex: 1;
            position: relative;
            z-index: 2;
        }
        .festival-title {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            line-height: 1.4;
        }
        .festival-desc {
            font-size: 15px;
            color: rgba(255,255,255,0.85);
            line-height: 1.8;
            margin-bottom: 22px;
        }
        .festival-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--brand-deep-red);
            padding: 13px 30px;
            border-radius: var(--radius-md);
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: var(--transition-base);
        }
        .festival-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(0,0,0,0.3);
            color: var(--brand-deep-red);
        }
        .festival-visual {
            flex-shrink: 0;
            width: 260px;
            height: 180px;
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            z-index: 2;
            border: 2px solid rgba(255,255,255,0.3);
        }
        .festival-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ===== NEWS ===== */
        .news-layout {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 36px;
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px 20px;
            background: var(--brand-bg-card);
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-md);
            transition: var(--transition-base);
            cursor: pointer;
        }
        .news-item:hover {
            border-color: var(--brand-gold);
            background: var(--brand-bg-hover);
        }
        .news-item-date {
            flex-shrink: 0;
            width: 60px;
            text-align: center;
            padding: 8px 6px;
            background: rgba(201,168,108,0.12);
            border-radius: var(--radius-sm);
        }
        .news-item-date .day {
            font-size: 20px;
            font-weight: 700;
            color: var(--brand-gold);
            line-height: 1.2;
        }
        .news-item-date .month {
            font-size: 11px;
            color: var(--brand-text-weak);
            letter-spacing: 0.04em;
        }
        .news-item-body h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--brand-text);
            margin-bottom: 8px;
            line-height: 1.5;
            transition: var(--transition-base);
        }
        .news-item:hover .news-item-body h4 {
            color: var(--brand-gold);
        }
        .news-item-body p {
            font-size: 13px;
            color: var(--brand-text-weak);
            line-height: 1.6;
            margin: 0;
        }
        .news-side {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .news-side-card {
            background: var(--brand-bg-card);
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-md);
            padding: 20px;
            transition: var(--transition-base);
        }
        .news-side-card:hover {
            border-color: var(--brand-border-light);
            transform: translateY(-2px);
        }
        .news-side-card h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--brand-text);
            margin: 0 0 8px;
        }
        .news-side-card p {
            font-size: 13px;
            color: var(--brand-text-weak);
            margin: 0;
            line-height: 1.6;
        }
        .news-side-tag {
            font-size: 11px;
            color: var(--brand-gold);
            background: rgba(201,168,108,0.12);
            padding: 3px 10px;
            border-radius: var(--radius-full);
            display: inline-block;
            margin-bottom: 10px;
        }

        /* ===== MAP ===== */
        .map-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 32px;
            align-items: stretch;
        }
        .map-placeholder {
            background: var(--brand-bg-card);
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-lg);
            min-height: 340px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            background-image: url('/assets/images/backpic/back-5.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        .map-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(23,19,16,0.75);
        }
        .map-placeholder-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }
        .map-placeholder-content i {
            font-size: 48px;
            color: var(--brand-gold);
            margin-bottom: 16px;
        }
        .map-placeholder-content h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .map-placeholder-content p {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            margin: 0;
        }
        .map-info {
            background: var(--brand-bg-card);
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-lg);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .map-info h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--brand-text);
            margin-bottom: 16px;
        }
        .map-info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
        }
        .map-info-item i {
            color: var(--brand-gold);
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        .map-info-item p {
            font-size: 14px;
            color: var(--brand-text-weak);
            margin: 0;
            line-height: 1.7;
        }

        /* ===== CTA ===== */
        .cta-band {
            background: var(--gradient-hero);
            border-radius: var(--radius-xl);
            padding: 56px 48px;
            text-align: center;
            border: 1px solid var(--brand-border);
            position: relative;
            overflow: hidden;
        }
        .cta-band::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            pointer-events: none;
        }
        .cta-band > * {
            position: relative;
            z-index: 2;
        }
        .cta-band h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--brand-text);
            margin-bottom: 16px;
        }
        .cta-band p {
            font-size: 15px;
            color: var(--brand-text-weak);
            max-width: 600px;
            margin: 0 auto 28px;
            line-height: 1.8;
        }
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #14100D;
            border-top: 1px solid var(--brand-border);
            padding: 48px 0 32px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 36px;
        }
        .footer-brand h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--brand-text);
            margin-bottom: 12px;
        }
        .footer-brand p {
            font-size: 13px;
            color: var(--brand-text-muted);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .footer-social {
            display: flex;
            gap: 10px;
        }
        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--brand-bg-card);
            border: 1px solid var(--brand-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-text-weak);
            transition: var(--transition-base);
        }
        .footer-social a:hover {
            background: var(--brand-gold);
            color: #1A1411;
            border-color: var(--brand-gold);
            transform: translateY(-2px);
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--brand-text);
            margin-bottom: 14px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--brand-text-muted);
            transition: var(--transition-base);
        }
        .footer-col ul li a:hover {
            color: var(--brand-gold);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid var(--brand-border);
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom p {
            font-size: 12px;
            color: var(--brand-text-muted);
            margin: 0;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-panel {
                grid-template-columns: 1fr 1.4fr 1fr;
                gap: 18px;
            }
            .hero-title {
                font-size: 30px;
            }
            .themes-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .contributors-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .stats-band {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                min-height: 60px;
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: var(--brand-bg);
                border-bottom: 1px solid var(--brand-border);
                padding: 16px 24px;
                gap: 6px;
                box-shadow: var(--shadow-md);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                width: 100%;
                font-size: 15px;
            }
            .main-nav a.active::after {
                display: none;
            }
            .hero-section {
                padding: 48px 0 50px;
            }
            .hero-title {
                font-size: 24px;
            }
            .hero-desc {
                font-size: 14px;
                line-height: 1.75;
                padding: 0 10px;
            }
            .hero-panel {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 500px;
            }
            .hero-side {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
            }
            .hero-side-item {
                flex: 1 1 45%;
                min-width: 140px;
                padding: 12px;
            }
            .hero-stage {
                aspect-ratio: 16/10;
            }
            .hero-stats {
                gap: 24px;
            }
            .hero-stat-number {
                font-size: 24px;
            }
            .section-block {
                padding: 44px 0;
            }
            .section-title {
                font-size: 23px;
            }
            .themes-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .theme-card {
                aspect-ratio: 3/4;
            }
            .resource-layout {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .stats-band {
                grid-template-columns: repeat(2, 1fr);
                padding: 30px 24px;
                gap: 20px;
            }
            .stat-item .stat-number {
                font-size: 26px;
            }
            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .contributors-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            .festival-band {
                flex-direction: column;
                padding: 32px 24px;
                gap: 22px;
                text-align: center;
            }
            .festival-visual {
                width: 100%;
                height: 160px;
            }
            .news-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .map-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .map-placeholder {
                min-height: 240px;
            }
            .cta-band {
                padding: 36px 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .brand-story-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .brand-story-image {
                aspect-ratio: 16/10;
            }
        }

        @media (max-width: 520px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
            .logo-text-primary {
                font-size: 15px;
            }
            .logo-text-secondary {
                font-size: 8px;
            }
            .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }
            .hero-title {
                font-size: 20px;
                line-height: 1.4;
            }
            .hero-desc {
                font-size: 13px;
                padding: 0;
            }
            .hero-badge {
                font-size: 11px;
                padding: 6px 14px;
                margin-bottom: 18px;
            }
            .hero-actions {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }
            .btn-primary, .btn-outline {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 14px;
            }
            .hero-stats {
                gap: 16px;
                flex-wrap: wrap;
            }
            .hero-stat-number {
                font-size: 20px;
            }
            .hero-stat-label {
                font-size: 11px;
            }
            .section-block {
                padding: 36px 0;
            }
            .section-title {
                font-size: 20px;
            }
            .section-desc {
                font-size: 13px;
                line-height: 1.7;
            }
            .themes-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .theme-card {
                aspect-ratio: 16/9;
            }
            .resource-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px;
            }
            .resource-thumb {
                width: 100%;
                height: 140px;
            }
            .stats-band {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
                padding: 24px 16px;
            }
            .stat-item .stat-number {
                font-size: 22px;
            }
            .contributors-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .contributor-card {
                padding: 16px 10px;
            }
            .contributor-avatar {
                width: 44px;
                height: 44px;
                font-size: 16px;
            }
            .festival-band {
                padding: 24px 18px;
                border-radius: var(--radius-lg);
            }
            .festival-title {
                font-size: 20px;
            }
            .news-item {
                flex-direction: column;
                gap: 10px;
                padding: 14px 16px;
            }
            .news-item-date {
                width: auto;
                display: flex;
                gap: 6px;
                align-items: baseline;
                background: none;
                padding: 0;
            }
            .news-item-date .day {
                font-size: 16px;
            }
            .news-item-date .month {
                font-size: 11px;
            }
            .map-info {
                padding: 20px 16px;
            }
            .cta-band {
                padding: 28px 18px;
                border-radius: var(--radius-lg);
            }
            .cta-band h2 {
                font-size: 21px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .hero-side-item {
                flex: 1 1 100%;
                min-width: auto;
            }
        }

        @media (max-width: 380px) {
            .hero-title {
                font-size: 18px;
            }
            .themes-grid {
                grid-template-columns: 1fr;
            }
            .stats-band {
                grid-template-columns: 1fr;
            }
            .contributors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .cta-buttons .btn-primary, .cta-buttons .btn-outline {
                width: 100%;
            }
        }
