/* ===========================================
   LEGAL PERFORMERS TOUR - STYLES
   =========================================== */

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
    padding: var(--section-padding, 4rem) 0;
}

/* Animated Mesh Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(95, 25, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(139, 58, 92, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.04) 0%, transparent 50%);
    animation: meshFloat 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-3%, 3%) rotate(0.5deg); }
    50% { transform: translate(3%, -3%) rotate(-0.5deg); }
    75% { transform: translate(-2%, -2%) rotate(0.25deg); }
}

/* Floating Orb */
.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(95, 25, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: 5%;
    filter: blur(50px);
    animation: floatOrb 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 15px) scale(1.1); }
}

/* Hero Content */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 80%;
    margin-bottom: 1.5rem;
    color: var(--text-muted, #4a4a5a);
    font-weight: 500;
}

.hero-text {
    flex: 2;
    margin-bottom: 0;
}

/* Hero Logo */
.hero-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* Screen reader only (for accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    background: var(--gradient-primary, linear-gradient(135deg, #5F1937 0%, #8B3A5C 50%, #B86B8F 100%));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(95, 25, 55, 0.25);
}

/* Hero Partnership */
.hero-partnership {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--glass-bg, rgba(255, 255, 255, 0.75));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-partnership .partners-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hero-partnership .partners-logos a {
    display: block;
}

.hero-partnership .partners-logos img {
    height: 120px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hero-partnership .partners-logos img:hover {
    transform: scale(1.05);
}

.hero-partnership .partnership-label {
    font-weight: 600;
    color: var(--text-muted, #4a4a5a);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================================
   MAIN CONTENT - GLASSMORPHISM
   =========================================== */
.main-content {
    padding: var(--section-padding, 4rem) 0;
    background: linear-gradient(180deg, var(--bg-light, #f8f9fa) 0%, #f0f1f3 100%);
}

.two-column-layout {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    gap: 2rem;
    align-items: start;
}

.left-column,
.right-column {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    border-radius: 16px;
    background: var(--glass-bg, rgba(255, 255, 255, 0.75));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.4));
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Gradient border on hover */
.left-column::before,
.right-column::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(95, 25, 55, 0.4), transparent 50%, rgba(95, 25, 55, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.left-column:hover,
.right-column:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.08),
        0 0 30px rgba(95, 25, 55, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.left-column:hover::before,
.right-column:hover::before {
    opacity: 1;
}

.left-column h2,
.right-column h2 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.1rem;
    color: var(--text-color, #1a1a2e);
    background: var(--gradient-primary, linear-gradient(135deg, #5F1937 0%, #8B3A5C 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

/* First H2 in each column - Editorial hierarchy */
.left-column > h2:first-child,
.right-column > h2:first-child {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 1rem;
}

.left-column > h2:first-child::after,
.right-column > h2:first-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary, linear-gradient(90deg, #5F1937, #8B3A5C));
    border-radius: 2px;
}

/* ===========================================
   FORMAT HIGHLIGHT
   =========================================== */
.format-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(95, 25, 55, 0.05), rgba(95, 25, 55, 0.02));
    border-radius: 12px;
    border-left: 4px solid var(--primary-color, #5F1937);
}

.format-icon {
    font-size: 2rem;
}

.format-highlight strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-color, #1a1a2e);
    margin-bottom: 0.25rem;
}

.format-highlight p {
    margin: 0;
    color: var(--text-muted, #4a4a5a);
}

/* ===========================================
   STATEMENT LIST
   =========================================== */
.statement-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1rem;
}

.statement-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted, #4a4a5a);
}

.statement-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--gradient-primary, linear-gradient(135deg, #5F1937, #8B3A5C));
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(95, 25, 55, 0.3);
}

.section-spacer {
    margin-top: 2.25rem;
}

/* ===========================================
   PRACTICAL INFO BLOCK - Combined styling
   =========================================== */
.practical-info-block {
    background: linear-gradient(145deg, rgba(95, 25, 55, 0.03), rgba(95, 25, 55, 0.01));
    border-radius: 12px;
    padding: 1.75rem;
    margin-top: 2rem;
    border: 1px solid rgba(95, 25, 55, 0.08);
    position: relative;
}

.practical-info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(95, 25, 55, 0.15),
        transparent);
}

.practical-info-block h2 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0 !important;
}

.practical-info-block h2::after {
    display: none !important;
}

.practical-info-block .format-highlight {
    margin-bottom: 1.5rem;
}

.practical-info-block .statement-list {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.practical-info-block .audience-info {
    margin-bottom: 0.75rem;
}

.audience-info {
    padding: 0.75rem 1rem;
    background: rgba(95, 25, 55, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* ===========================================
   LINKS BLOCK
   =========================================== */
.links-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color, #1a1a2e);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: var(--primary-color, #5F1937);
    box-shadow: 0 4px 12px rgba(95, 25, 55, 0.1);
    transform: translateX(4px);
}

.link-icon {
    font-size: 1.5rem;
}

/* ===========================================
   CITY CARDS
   =========================================== */
.city-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.city-card.city-confirmed {
    border-color: var(--primary-color, #5F1937);
    box-shadow: 0 4px 20px rgba(95, 25, 55, 0.1);
}

.city-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.city-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.4rem;
    color: var(--text-color, #1a1a2e);
}

.city-date {
    display: inline-block;
    background: var(--gradient-primary, linear-gradient(135deg, #5F1937 0%, #8B3A5C 100%));
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.confirmed {
    background: #d4edda;
    color: #155724;
}

.city-theme {
    font-size: 0.95rem;
    color: var(--text-muted, #4a4a5a);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.city-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted, #4a4a5a);
}

.city-details span {
    display: flex;
    align-items: center;
}

.city-details span::before {
    content: "•";
    margin-right: 0.5rem;
    color: var(--primary-color, #5F1937);
}

/* ===========================================
   CITIES GRID (Upcoming)
   =========================================== */
.right-column h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color, #1a1a2e);
}

.upcoming-note {
    font-size: 0.9rem;
    color: var(--text-muted, #4a4a5a);
    margin-bottom: 1rem;
    font-style: italic;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.city-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(95, 25, 55, 0.05), rgba(95, 25, 55, 0.02));
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-color, #1a1a2e);
    transition: all 0.3s ease;
}

.city-chip:hover {
    background: linear-gradient(135deg, rgba(95, 25, 55, 0.1), rgba(95, 25, 55, 0.05));
}

.city-icon {
    font-size: 1.1rem;
}

/* ===========================================
   INFO PRATIQUES SECTION
   =========================================== */
.info-pratiques h4 {
    position: relative;
    padding-left: 32px;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-color, #1a1a2e);
    border-bottom: 1px solid rgba(95, 25, 55, 0.1);
    padding-bottom: 0.5rem;
    line-height: 1.4;
}

.info-pratiques h4:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--gradient-primary, linear-gradient(135deg, #5F1937, #8B3A5C));
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    border-radius: 4px;
}

.info-pratiques h4.contact-icon:before {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.info-block {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 1.25rem;
    border-left: 3px solid;
    border-image: var(--gradient-primary, linear-gradient(135deg, #5F1937, #8B3A5C)) 1;
}

.info-pratiques p {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: var(--text-muted, #4a4a5a);
}

.info-pratiques a {
    color: var(--primary-color, #5F1937);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* ===========================================
   TOUR TIMELINE - Editorial Luxe Style
   =========================================== */
.tour-timeline {
    position: relative;
    padding-left: 28px;
    margin-bottom: 2rem;
}

/* Vertical line with gradient fade */
.tour-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg,
        #5F1937 0%,
        #8B3A5C 30%,
        #B86B8F 70%,
        rgba(184, 107, 143, 0.3) 100%);
    border-radius: 2px;
}

.tour-stop {
    position: relative;
    padding: 0.75rem 0 0.75rem 0.5rem;
    margin-left: -0.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-stop:hover {
    background: linear-gradient(90deg, rgba(95, 25, 55, 0.04), transparent);
    padding-left: 1rem;
}

.tour-stop:last-child {
    padding-bottom: 0.75rem;
}

.tour-stop-marker {
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    box-shadow:
        0 0 0 3px #5F1937,
        0 4px 12px rgba(95, 25, 55, 0.3);
    transition: all 0.3s ease;
}

.tour-stop-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gradient-primary, linear-gradient(135deg, #5F1937 0%, #8B3A5C 100%));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tour-stop:hover .tour-stop-marker {
    box-shadow:
        0 0 0 4px #5F1937,
        0 6px 20px rgba(95, 25, 55, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.tour-stop:hover .tour-stop-marker::after {
    width: 10px;
    height: 10px;
}

.tour-stop-content {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.75rem;
}

.tour-stop-city {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-color, #1a1a2e);
    letter-spacing: -0.01em;
}

.tour-stop-date {
    display: inline-block;
    background: var(--gradient-primary, linear-gradient(135deg, #5F1937 0%, #8B3A5C 100%));
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(95, 25, 55, 0.25);
}

.tour-stop-theme {
    flex-basis: 100%;
    margin: 0.35rem 0 0 0;
    font-size: 0.9rem;
    color: var(--text-muted, #4a4a5a);
    font-style: italic;
    line-height: 1.5;
    padding-left: 0.25rem;
    border-left: 2px solid rgba(95, 25, 55, 0.15);
}

.tour-info-note {
    text-align: center;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(95, 25, 55, 0.06), rgba(95, 25, 55, 0.02));
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted, #4a4a5a);
    border: 1px solid rgba(95, 25, 55, 0.08);
}

/* ===========================================
   CTA BUTTON - Premium Style
   =========================================== */
.cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.1rem 1.75rem;
    background: linear-gradient(135deg, #5F1937 0%, #7a2548 50%, #5F1937 100%);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 4px 15px rgba(95, 25, 55, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-position: 100% 0;
    box-shadow:
        0 8px 25px rgba(95, 25, 55, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow:
        0 4px 12px rgba(95, 25, 55, 0.35),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 320px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero::after {
        width: 180px;
        height: 180px;
        filter: blur(35px);
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero-partnership {
        width: 100%;
    }

    .hero-partnership .partners-logos {
        gap: 1rem;
    }

    .hero-partnership .partners-logos img {
        height: 80px;
        max-width: 120px;
    }

    .hero-badges {
        justify-content: flex-start;
    }

    .two-column-layout {
        flex-direction: column;
        gap: 1.5rem;
    }

    .left-column,
    .right-column {
        padding: 1.5rem;
    }

    .left-column h2,
    .right-column h2 {
        font-size: 1.5rem;
    }

    .city-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .tour-stop-city {
        font-size: 1rem;
    }

    .tour-stop-date {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 280px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .format-highlight {
        flex-direction: column;
        text-align: center;
    }

    .tour-timeline {
        padding-left: 20px;
    }

    .tour-stop-marker {
        left: -16px;
        width: 14px;
        height: 14px;
    }
}

/* ===========================================
   STAGGER ANIMATIONS - Timeline reveal
   =========================================== */
.tour-stop {
    opacity: 0;
    transform: translateX(-10px);
}

.animate-in .tour-stop {
    animation: slideInTimeline 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-in .tour-stop:nth-child(1) { animation-delay: 0.1s; }
.animate-in .tour-stop:nth-child(2) { animation-delay: 0.18s; }
.animate-in .tour-stop:nth-child(3) { animation-delay: 0.26s; }
.animate-in .tour-stop:nth-child(4) { animation-delay: 0.34s; }
.animate-in .tour-stop:nth-child(5) { animation-delay: 0.42s; }
.animate-in .tour-stop:nth-child(6) { animation-delay: 0.5s; }

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

/* Practical info block reveal */
.practical-info-block {
    opacity: 0;
    transform: translateY(15px);
}

.animate-in .practical-info-block {
    animation: fadeUpBlock 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

@keyframes fadeUpBlock {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================================
   ACCESSIBILITY - REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after {
        animation: none;
    }

    .left-column,
    .right-column,
    .link-card,
    .cta-button,
    .tour-stop,
    .practical-info-block {
        transition: none;
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Backdrop-filter Fallback */
@supports not (backdrop-filter: blur(20px)) {
    .left-column,
    .right-column,
    .hero-partnership {
        background: white;
    }
}
