/* ===================================
   SURNEK EVENTS — Premium Minimal
   Inspired by SAY Agency aesthetic
   =================================== */

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #999999;
    --gray-600: #666666;
    --gray-800: #1a1a1a;
    --gray-900: #0d0d0d;
    --green: #00e676;
    --green-dark: #00c853;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Sora', 'Inter', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --duration: 0.4s;
    --container: 1400px;
    --gap: 24px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

ul { list-style: none; }
address { font-style: normal; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 16px;
}

/* ===================================
   Preloader
   =================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    pointer-events: none;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Faster animation for mobile */
@media (max-width: 768px) {
    .preloader {
        transition: opacity 0.3s var(--ease), visibility 0.3s;
    }
}

.preloader-content {
    text-align: center;
}

.logo-animation img {
    height: 50px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.loading-bar {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--green);
    border-radius: 2px;
    animation: loadProgress 1.8s var(--ease) forwards;
}

@keyframes loadProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 var(--gap);
    transition: background var(--duration) var(--ease), backdrop-filter var(--duration);
}

.header.scrolled {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    height: 80px;
}

.header-logo img {
    height: 36px;
    transition: opacity 0.3s;
}

.header-logo:hover img { opacity: 0.7; }

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.02em;
    transition: color 0.3s;
    position: relative;
}

.header-nav-link:hover {
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    border: 1px solid var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--white);
    color: var(--black);
}

/* Burger */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.burger.active span:first-child {
    transform: translateY(4.75px) rotate(45deg);
}

.burger.active span:last-child {
    transform: translateY(-4.75px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    width: 100%;
    padding: 0 var(--gap);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: auto;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: clamp(32px, 8vw, 56px);
    font-weight: 700;
    color: var(--white);
    padding: 8px 0;
    transition: color 0.3s, transform 0.3s;
    display: block;
}

.mobile-nav-link:hover {
    color: var(--green);
    transform: translateX(10px);
}

.mobile-menu-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-cta {
    display: inline-flex;
    padding: 14px 36px;
    border: 1px solid var(--white);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.mobile-cta:hover {
    background: var(--white);
    color: var(--black);
}

.mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contacts a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color 0.3s;
}

.mobile-contacts a:hover { color: var(--white); }

/* ===================================
   Hero
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: transform 8s linear;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    padding: 0 0 100px;
    max-width: 1000px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 9vw, 120px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-title-line {
    display: block;
}

.hero-title em {
    font-style: italic;
    color: var(--green);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-date, .hero-venue {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-200);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: var(--gray-400);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 18px 48px;
    background: var(--green);
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 40px;
    transition: all 0.3s var(--ease);
}

.hero-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0,230,118,0.2);
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 120px 0;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.section-head {
    margin-bottom: 60px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

/* ===================================
   Artists
   =================================== */
.artists {
    background: var(--black);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.artist-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-800);
    transition: transform var(--duration) var(--ease);
}

.artist-card:hover {
    transform: translateY(-6px);
}

.artist-card-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.artist-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.artist-card:hover .artist-card-img img {
    transform: scale(1.05);
}

.artist-card-img--secret {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    border: 1px solid rgba(255,255,255,0.06);
}

.secret-content {
    text-align: center;
}

.secret-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    margin-bottom: 12px;
}

.secret-text {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.artist-card-info {
    padding: 20px;
}

.artist-card-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.artist-card-genre {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-card-cta {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.03em;
    transition: opacity 0.3s;
}

.artist-card:hover .artist-card-cta { opacity: 0.7; }

.artists-cta-wrap {
    text-align: center;
    margin-top: 60px;
}

/* Pill Button */
.btn-pill {
    display: inline-flex;
    align-items: center;
    padding: 14px 40px;
    border: 1px solid var(--white);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.btn-pill:hover {
    background: var(--white);
    color: var(--black);
}

.btn-pill--outline {
    border-color: rgba(255,255,255,0.3);
    color: var(--gray-200);
}

.btn-pill--outline:hover {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
}

/* ===================================
   About
   =================================== */
.about {
    background: var(--gray-900);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-lead {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--gray-200);
    line-height: 1.6;
    margin-top: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
}

.about-feature {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s;
}

.about-feature:first-child {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.about-feature:hover {
    border-color: rgba(255,255,255,0.2);
}

.about-feature-num {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0;
    padding-top: 2px;
}

.about-feature-text h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-feature-text p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===================================
   Numbers
   =================================== */
.numbers {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.number-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.number-value::after {
    content: '+';
    font-size: 0.6em;
    opacity: 0.5;
}

.number-value--plus::before {
    content: '+';
    font-size: 0.8em;
}

.number-value--plus::after {
    content: none;
}

.number-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Gallery
   =================================== */
.gallery {
    background: var(--black);
}

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

.gallery-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

/* ===================================
   Location
   =================================== */
.location {
    background: var(--gray-900);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-venue {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 16px 0 24px;
    color: var(--green);
}

.location-desc {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.location-address {
    font-size: 15px;
    color: var(--gray-200);
    margin-bottom: 32px;
    padding-left: 0;
}

.location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--gray-800);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.8) invert(0.92) contrast(0.9);
}

/* ===================================
   Venue Photos
   =================================== */
.venue {
    background: var(--black);
    padding: 80px 0;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.venue-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--gray-900);
}

.venue-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.4s;
}

.venue-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    color: var(--green);
}

.venue-item:hover .venue-item-overlay {
    opacity: 1;
}

.venue-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.6);
}

/* ===================================
   Hall Scheme
   =================================== */
.hall-scheme {
    background: var(--gray-900);
    padding: 80px 0;
}

.scheme-wrapper {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.scheme-image {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: var(--black);
    border: 2px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: border-color 0.4s, transform 0.4s var(--ease);
}

.scheme-image:hover {
    border-color: var(--green);
    transform: translateY(-4px);
}

.scheme-image img {
    width: 100%;
    height: auto;
    display: block;
}

.scheme-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.4s;
    color: var(--green);
}

.scheme-image:hover .scheme-overlay {
    opacity: 1;
}

.scheme-overlay span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Zone Info */
.zone-info {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.zone-info-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(0,230,118,0.03);
    border: 1px solid rgba(0,230,118,0.1);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
}

.zone-info-item:hover {
    background: rgba(0,230,118,0.05);
    border-color: rgba(0,230,118,0.3);
    transform: translateY(-4px);
}

.zone-info-icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}

.zone-info-content {
    flex: 1;
}

.zone-info-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.zone-info-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-400);
}

/* Video Tours */
.video-tours {
    margin-top: 80px;
}

.video-tours-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.video-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-tour-item {
    background: var(--black);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s var(--ease);
}

.video-tour-item:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,230,118,0.15);
}

.video-tour-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gray-900);
    overflow: hidden;
}

.video-tour-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--gray-900);
}

.video-tour-video.lazy-video {
    background: var(--gray-900);
    min-height: 200px;
}

/* Performance: GPU acceleration for videos */
.video-tour-wrapper {
    transform: translateZ(0);
    will-change: transform;
}

.video-tour-info {
    padding: 20px;
}

.video-tour-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0,230,118,0.1);
    border: 1px solid rgba(0,230,118,0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 10px;
}

.video-tour-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

/* ===================================
   FAQ
   =================================== */
.faq {
    background: var(--black);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.faq-list {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    gap: 20px;
    transition: color 0.3s;
}

.faq-trigger:hover { color: var(--gray-200); }

.faq-trigger-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-trigger-icon::before,
.faq-trigger-icon::after {
    content: '';
    position: absolute;
    background: var(--white);
    transition: transform 0.3s var(--ease);
}

.faq-trigger-icon::before {
    width: 20px;
    height: 1.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-trigger-icon::after {
    width: 1.5px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.active .faq-trigger-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-item.active .faq-trigger {
    color: var(--green);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-item.active .faq-body {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-body p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand { max-width: 300px; }

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.footer-tagline {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-columns {
    display: flex;
    gap: 80px;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col-list li {
    margin-bottom: 10px;
}

.footer-col-list a {
    font-size: 15px;
    color: var(--gray-200);
    transition: color 0.3s;
}

.footer-col-list a:hover { color: var(--green); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

.footer-legal {
    font-size: 11px !important;
    color: var(--gray-600) !important;
}

/* ===================================
   Floating CTA
   =================================== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--green);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,230,118,0.3);
}

/* ===================================
   Reveal Animations
   =================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    section { padding: 80px 0; }
    
    .header-nav { display: none; }
    .burger { display: flex; }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .location-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-map { aspect-ratio: 16/9; }
    
    .venue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .zone-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-columns { gap: 40px; }
}

@media (max-width: 768px) {
    :root { --gap: 20px; }
    
    section { padding: 60px 0; }
    
    .header-inner { height: 64px; }
    .header-logo img { height: 28px; }
    .header-cta { display: none; }
    
    .hero-content { padding-bottom: 60px; }
    
    .hero-title {
        font-size: clamp(36px, 11vw, 72px);
        margin-bottom: 30px;
    }
    
    .hero-meta { margin-bottom: 36px; }
    
    .hero-cta {
        padding: 16px 36px;
        font-size: 15px;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .artist-card-img { aspect-ratio: 16/10; }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .venue-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .video-tours-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .video-tours-heading {
        font-size: 24px;
    }
    
    .zone-info-item {
        padding: 20px;
    }
    
    .zone-info-icon {
        font-size: 32px;
    }
    
    .zone-info-title {
        font-size: 18px;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .floating-cta {
        left: 20px;
        right: 20px;
        text-align: center;
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    }
    
    .footer {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(32px, 12vw, 48px); }
    
    .section-heading { font-size: clamp(28px, 8vw, 48px); }
    
    .gallery-grid { grid-template-columns: 1fr; }
    
    .number-value { font-size: clamp(28px, 8vw, 40px); }
}

/* ===================================
   Reduced Motion
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
