/* ===== THE OTHER SIDE — Design System ===== */
/* Ethereal Violet Theme */

:root {
    /* Color Palette */
    --bg: #0A0A0C;
    --surface: #121218;
    --surface-elevated: #1A1A24;
    --border: #2A2A36;
    --accent: #8B5CF6;
    --accent-hover: #A78BFA;
    --accent-glow: rgba(139, 92, 246, 0.35);
    --accent-glow-soft: rgba(139, 92, 246, 0.15);
    --text: #F5F5F7;
    --text-secondary: #A0A0B0;
    --text-muted: #6B6B7B;
    --badge-onsale: #22C55E;
    --badge-limited: #F59E0B;
    --badge-soldout: #EF4444;
    --badge-coming: #8B5CF6;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--ease);

    /* Radius */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Z-index */
    --z-nav: 1000;
    --z-overlay: 1100;
    --z-fab: 900;
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }
ul { list-style: none; }

/* Selection */
::selection {
    background: var(--accent);
    color: var(--text);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.hidden { display: none !important; }

/* ===== TYPOGRAPHY ===== */
.section-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.section-heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: var(--space-2xl);
    line-height: 1.2;
}

/* ===== PARTICLE CANVAS ===== */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: var(--space-md) 0;
    transition: background var(--transition), padding var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-wordmark {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.6rem 1.4rem;
    background: var(--accent);
    color: var(--text);
    border-radius: var(--radius-full);
    transition: background var(--transition), box-shadow var(--transition);
    box-shadow: 0 0 20px var(--accent-glow);
}

.nav-cta:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 30px var(--accent-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: calc(var(--z-overlay) + 1);
}

.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-overlay);
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition), transform var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-overlay.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered entrance */
.mobile-overlay.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-overlay.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-overlay.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-overlay.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-overlay.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-overlay.active .mobile-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-link:hover { color: var(--accent); }

.mobile-cta {
    color: var(--accent) !important;
    font-weight: 700;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 12, 0.3) 0%, rgba(10, 10, 12, 0.6) 50%, rgba(10, 10, 12, 0.95) 100%);
}

/* CSS Fog */
.hero-fog {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-fog::before,
.hero-fog::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    opacity: 0.4;
}

.hero-fog::before {
    top: -20%;
    left: -10%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    animation: fogDrift 20s ease-in-out infinite alternate;
}

.hero-fog::after {
    bottom: -30%;
    right: -10%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    animation: fogDrift 25s ease-in-out infinite alternate-reverse;
}

@keyframes fogDrift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
    100% { transform: translate(-20px, 10px) scale(0.98); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--space-lg);
    max-width: 56rem;
}

.hero-pretitle {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    opacity: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 8rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: var(--space-lg);
    opacity: 0;
}

.accent-glow {
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(139, 92, 246, 0.15);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--text);
    box-shadow: 0 0 25px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow-soft);
    transform: translateY(-2px);
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
    margin: 0 auto;
    max-width: 72rem;
    padding: 0 var(--space-lg);
}

/* ===== ABOUT SHOW (What Is) ===== */
.about-show {
    position: relative;
    padding: var(--space-5xl) 0;
    text-align: center;
    overflow: hidden;
}

.about-show-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow-soft) 0%, transparent 70%);
    pointer-events: none;
}

.about-show-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-show-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
}

.about-show-text em {
    color: var(--text);
    font-style: italic;
}

.about-show-text strong {
    color: var(--accent);
}

/* ===== PRESS & AWARDS ===== */
.press {
    padding: var(--space-5xl) 0;
    text-align: center;
}

.awards-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.award-laurel {
    width: 220px;
    color: var(--accent);
}

.laurel-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.laurel-svg {
    width: 200px;
    height: 100px;
}

.laurel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.laurel-year {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.laurel-award {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    line-height: 1.3;
}

.laurel-org {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Press Quotes */
.press-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.press-quote {
    background: var(--surface);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: var(--space-xl);
    text-align: left;
}

.press-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.press-quote cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
}

/* ===== EXPERIENCE ===== */
.experience {
    position: relative;
    padding: var(--space-5xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.experience-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 12, 0.85) 0%,
        rgba(10, 10, 12, 0.7) 50%,
        rgba(10, 10, 12, 0.9) 100%
    );
}

.experience-card {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
}

.experience-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
}

.experience-card em {
    color: var(--text);
}

.experience-pullquote {
    margin-top: var(--space-xl);
    padding: var(--space-lg) 0 0;
    border-top: 1px solid var(--border);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.6;
}

.experience-pullquote cite {
    display: block;
    margin-top: var(--space-sm);
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ===== TOUR DATES ===== */
.tour {
    padding: var(--space-5xl) 0;
    text-align: center;
}

.tour-grid {
    display: grid;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.tour-card {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    align-items: center;
    gap: var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg) var(--space-xl);
    text-align: left;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.tour-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow-soft);
}

.tour-date {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.3;
}

.tour-date .tour-day {
    font-size: 1.5rem;
    color: var(--accent);
    display: block;
}

.tour-venue {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tour-city {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}

.tour-venue-name {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tour-badge {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.tour-badge[data-status="on-sale"] {
    background: rgba(34, 197, 94, 0.15);
    color: var(--badge-onsale);
}

.tour-badge[data-status="limited"] {
    background: rgba(245, 158, 11, 0.15);
    color: var(--badge-limited);
}

.tour-badge[data-status="sold-out"] {
    background: rgba(239, 68, 68, 0.15);
    color: var(--badge-soldout);
}

.tour-badge[data-status="coming-soon"] {
    background: rgba(139, 92, 246, 0.15);
    color: var(--badge-coming);
}

.tour-cta {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
}

.tour-cta[data-status="on-sale"] {
    background: var(--accent);
    color: var(--text);
}

.tour-cta[data-status="on-sale"]:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 20px var(--accent-glow);
}

.tour-cta[data-status="limited"] {
    background: var(--badge-limited);
    color: #000;
}

.tour-cta[data-status="sold-out"] {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

.tour-cta[data-status="coming-soon"] {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.tour-cta[data-status="coming-soon"]:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== ABOUT / CAST ===== */
.about {
    padding: var(--space-5xl) 0;
}

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

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.about-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
}

.about-content em {
    color: var(--text);
}

.about-content .btn {
    margin-top: var(--space-md);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    position: relative;
    padding: var(--space-5xl) 0;
    text-align: center;
    overflow: hidden;
}

.newsletter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow-soft) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-card {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
}

.newsletter-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    margin-bottom: var(--space-xl);
}

.newsletter-input-group {
    display: flex;
    gap: var(--space-sm);
    max-width: 420px;
    margin: 0 auto;
}

.newsletter-input-group input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-input-group input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-input-group input[type="email"]:focus {
    border-color: var(--accent);
}

.social-row {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.social-icon:hover {
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow-soft);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--border);
}

.footer-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}

a.footer-item:hover {
    color: var(--accent);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.back-to-top {
    color: var(--text-muted);
    transition: color var(--transition);
}

.back-to-top:hover {
    color: var(--accent);
}

/* ===== SCROLL-TO-TOP FAB ===== */
.scroll-top-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: var(--z-fab);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--accent-glow);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
}

.scroll-top-fab.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px var(--accent-glow);
}

/* ===== REVEAL ANIMATION CLASSES ===== */
/* Initial states — GSAP will animate these */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
}

.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .tour-card {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }

    .tour-card > * { justify-self: center; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
        letter-spacing: 0.1em;
    }

    .hero-pretitle {
        font-size: 0.65rem;
    }

    .awards-grid {
        gap: var(--space-xl);
    }

    .press-quotes {
        grid-template-columns: 1fr;
    }

    .experience-card {
        padding: var(--space-xl);
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        max-width: 260px;
    }

    .tour-card {
        padding: var(--space-md);
    }
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-fog::before,
    .hero-fog::after {
        animation: none;
    }

    .scroll-line {
        animation: none;
        opacity: 0.5;
    }

    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }

    .hero-pretitle,
    .hero-title,
    .hero-tagline,
    .hero-ctas,
    .scroll-indicator {
        opacity: 1;
    }

    #particle-canvas {
        display: none;
    }
}

/* ===== PRINT ===== */
@media print {
    .navbar, .hero-fog, .hero-video-bg, #particle-canvas,
    .scroll-indicator, .scroll-top-fab, .mobile-overlay {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section-heading, .hero-title {
        color: #000;
    }
}