/* ===========================
   Global Styles
   =========================== */
:root {
    --primary-color: #a90707;
    --primary-dark: #800101;
    --text-light: #eeeded;
    --text-dark: #0a0a0a;
    --bg-dark: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --border-color: #4a4a4a;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    min-height: -webkit-fill-available;
}

body {
    font-family: 'Cinzel', serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    min-height: -webkit-fill-available;
}

body.intro-active {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.intro-overlay {
    position: fixed;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    z-index: 2500;
    background: #000;
    opacity: 1;
    visibility: visible;
    transition: opacity 700ms ease, visibility 700ms ease;
}

.intro-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at 50% 58%, rgba(255, 235, 235, 0.38) 0%, rgba(255, 160, 160, 0.08) 35%, rgba(0, 0, 0, 0) 70%);
}

.intro-overlay.is-exiting::after {
    animation: introFlash 600ms ease forwards;
}

.intro-overlay.is-hiding {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-video {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: 100dvh;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 600ms ease;
    background: #000;
}

.intro-overlay.is-playing .intro-video {
    opacity: 1;
}

.intro-overlay.is-exiting .intro-video {
    filter: saturate(1.2) contrast(1.08) brightness(1.08);
    transition: opacity 450ms ease, filter 450ms ease;
}

.intro-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0.62) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.38) 100%),
        radial-gradient(circle, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.52) 100%);
    pointer-events: none;
}

.intro-promo {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.4rem;
    z-index: 3;
    margin: 0 auto;
    max-width: 860px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    align-items: center;
    background: rgba(10, 10, 10, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.85rem;
    backdrop-filter: blur(6px);
}

.intro-overlay.is-exiting .intro-promo,
.intro-overlay.is-exiting .intro-skip {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    transition: opacity 280ms ease, transform 280ms ease;
}

@keyframes introFlash {
    0% {
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.intro-cover {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.intro-copy h2 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: 1px;
}

.intro-copy p {
    margin: 0.2rem 0 0.4rem;
    font-size: 0.95rem;
    color: #d0d0d0;
}

.intro-kicker {
    margin: 0;
    color: #e8b2b2;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.7rem;
}

.intro-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.intro-link {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.46rem 0.88rem;
    border-radius: 6px;
    font-size: 0.76rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 200ms ease, transform 200ms ease;
}

.intro-link-spotify {
    background: rgba(30, 215, 96, 0.18);
}

.intro-link-youtube {
    background: rgba(255, 0, 0, 0.16);
}

.intro-link-sound {
    background: linear-gradient(135deg, rgba(169, 7, 7, 0.6), rgba(120, 5, 5, 0.62));
    cursor: pointer;
    font-weight: 700;
    min-width: 104px;
    text-align: center;
}

.intro-link:hover {
    transform: translateY(-1px);
}

.intro-link-spotify:hover {
    background: rgba(30, 215, 96, 0.34);
}

.intro-link-youtube:hover {
    background: rgba(255, 0, 0, 0.3);
}

.intro-link-sound:hover {
    background: linear-gradient(135deg, rgba(190, 12, 12, 0.75), rgba(136, 8, 8, 0.75));
}

.intro-link-continue {
    background: linear-gradient(135deg, rgba(169, 7, 7, 0.94), rgba(120, 5, 5, 0.94));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.36);
    font-size: 0.82rem;
    padding: 0.62rem 1.08rem;
    font-weight: 700;
    min-width: 184px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.intro-link-continue:hover {
    background: linear-gradient(135deg, rgba(196, 12, 12, 0.98), rgba(140, 8, 8, 0.98));
    color: #fff;
}

.intro-skip {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
}

.intro-skip:hover {
    border-color: var(--primary-color);
    color: #f1dddd;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #ff4444;
}

/* ===========================
   Utility Classes
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 1rem;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text-light);
    border-color: #5a5a5a;
}

.btn-ghost:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(169, 7, 7, 0.08);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(12, 12, 12, 0.92), rgba(12, 12, 12, 0.82));
    border-bottom: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.65rem;
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
}

.nav-link {
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.05px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: color var(--transition), border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    border-color: rgba(169, 7, 7, 0.55);
    background: rgba(169, 7, 7, 0.1);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem 0.55rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.82) 0%, rgba(20, 20, 20, 0.82) 100%), url('../images/HERO.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(169, 7, 7, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.96) 70%, var(--bg-dark) 100%);
    z-index: 1;
    pointer-events: none;
}

.floating-symbol-wrap {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    margin-top: -52px;
    margin-bottom: -52px;
    pointer-events: none;
}

.floating-symbol {
    width: clamp(78px, 11vw, 132px);
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.55));
    opacity: 0.9;
    animation: symbolFloat 4.6s ease-in-out infinite;
}

@keyframes symbolFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
}

.hero-logo {
    width: min(760px, 90vw);
    max-height: 320px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1.5rem;
    opacity: 0.7;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(169, 7, 7, 0.4);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--border-color);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Intro animation states */
.hero-logo,
.hero p,
.hero-actions,
.social-links {
    opacity: 0;
    transform: translateY(16px);
}

body.intro-ready .hero-logo,
body.intro-ready .hero p,
body.intro-ready .hero-actions,
body.intro-ready .social-links {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 700ms ease, transform 700ms ease;
}

body.intro-ready .hero-logo {
    transition-delay: 100ms;
}

body.intro-ready .hero p {
    transition-delay: 280ms;
}

body.intro-ready .hero-actions {
    transition-delay: 380ms;
}

body.intro-ready .social-links {
    transition-delay: 500ms;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transition: all var(--transition);
    animation: pulse 2s infinite;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(169, 7, 7, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(169, 7, 7, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Sections
   =========================== */
.section {
    padding: 6rem 2rem;
    scroll-margin-top: 80px;
}

.section:nth-child(even) {
    background-color: var(--bg-secondary);
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.section-divider {
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto 3rem;
}

/* Tour Section */
.tour-content {
    max-width: 900px;
    margin: 0 auto;
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tour-row {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background-color: rgba(20, 20, 20, 0.95);
    border: 1px solid #2a2a2a;
    border-radius: 6px;
}

.tour-date {
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
}

.tour-place {
    color: #d3d3d3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-link {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.tour-link:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.tour-loading,
.tour-empty {
    color: var(--border-color);
    text-align: center;
    padding: 1rem 0;
}

.tour-embed-note {
    text-align: center;
    color: var(--border-color);
    margin-bottom: 2rem;
}

.tour-fallback {
    text-align: center;
    color: var(--border-color);
    margin-top: 2rem;
}

/* About Section */
.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Gallery Section */
.gallery {
    padding: 0;
}

.gallery-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition);
}

.gallery-image:hover img {
    transform: scale(1.02);
}

/* Videos Section */
.video-container {
    max-width: 900px;
    margin: 2rem auto;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.video-action {
    text-align: center;
}

/* Listen and Promoters Section */
.connect-grid {
    max-width: 640px;
    margin: 0 auto;
}

.connect-card {
    background: linear-gradient(145deg, rgba(24, 24, 24, 0.95) 0%, rgba(12, 12, 12, 0.95) 100%);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 1.4rem;
}

.connect-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
    letter-spacing: 1px;
}

.connect-card p {
    color: #c8c8c8;
    margin-bottom: 1rem;
}

.promoter-card .btn {
    margin-top: 0;
}

.promoter-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-light);
    font-family: inherit;
    border-radius: 4px;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn {
    align-self: center;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--bg-secondary);
    border-top: 2px solid var(--primary-color);
    padding: 3rem 2rem;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--transition);
}

.footer-links a:hover {
    border-bottom-color: var(--primary-color);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--border-color);
}

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all var(--transition);
    opacity: 0.8;
}

.back-to-top:hover {
    opacity: 1;
    transform: scale(1.1);
}

.back-to-top::before {
    content: '↑';
    font-size: 1.5rem;
    color: var(--text-light);
}

.back-to-top.show {
    display: flex;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .navbar {
        background: transparent;
        border-bottom: 0;
        box-shadow: none;
        backdrop-filter: none;
        pointer-events: auto;
    }

    .nav-container {
        padding: 0;
        max-width: none;
    }

    .intro-overlay {
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        min-height: -webkit-fill-available;
    }

    .intro-video {
        position: absolute;
        inset: 0 !important;
        left: 0;
        width: 100% !important;
        min-width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        transform: none !important;
        object-fit: cover !important;
        object-position: center center;
    }

    .intro-promo {
        bottom: 1rem;
        left: 0.75rem;
        right: 0.75rem;
        grid-template-columns: 92px 1fr;
        gap: 0.65rem;
        padding: 0.7rem;
    }

    .intro-cover {
        width: 92px;
        height: 92px;
    }

    .intro-copy h2 {
        font-size: 1.08rem;
    }

    .intro-copy p {
        font-size: 0.82rem;
    }

    .intro-link {
        font-size: 0.66rem;
        padding: 0.4rem 0.62rem;
    }

    .intro-link-continue {
        font-size: 0.74rem;
        padding: 0.56rem 0.86rem;
        min-width: 154px;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0.85rem 1rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: calc(env(safe-area-inset-top) + 5.2rem);
        left: 0.7rem;
        right: 0.7rem;
        width: auto;
        max-height: calc(100dvh - 64px);
        overflow-y: auto;
        flex-direction: column;
        background: linear-gradient(to bottom, rgba(17, 17, 17, 0.97), rgba(12, 12, 12, 0.97));
        border: 0;
        border-radius: 12px;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
        padding: 0.45rem;
        gap: 0;
        z-index: 1200;
    }

    .nav-menu.active {
        display: flex;
        animation: navDrop 220ms ease;
    }

    .nav-link {
        display: block;
        padding: 0.95rem 1rem;
        font-size: 0.95rem;
        border-bottom: 0;
        border-radius: 8px;
    }

    .nav-link:last-child {
        border-bottom: 0;
    }

    .nav-toggle {
        display: flex;
        right: 1rem;
        top: calc(env(safe-area-inset-top) + 1.35rem);
        position: fixed;
        transform: none;
        border: 0;
        background: rgba(16, 16, 16, 0.78);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
        pointer-events: auto;
        z-index: 1201;
    }

    @keyframes navDrop {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: 100svh;
        padding: 5.8rem 1rem 2.2rem;
        background-attachment: scroll;
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .hero::after {
        height: 42svh;
        background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.75) 38%, rgba(15, 15, 15, 0.96) 68%, var(--bg-dark) 100%);
    }

    .hero-logo {
        width: min(420px, 86vw);
        max-height: 220px;
    }

    .hero p {
        font-size: 1.05rem;
        margin-bottom: 0.9rem;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions .btn {
        width: min(340px, 92vw);
        text-align: center;
        margin-top: 0;
        padding: 0.8rem 1rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .section {
        padding: 3.25rem 1rem;
        scroll-margin-top: 72px;
    }

    .floating-symbol-wrap {
        margin-top: -42px;
        margin-bottom: -42px;
    }

    .floating-symbol {
        width: clamp(62px, 22vw, 102px);
    }

    .tour-row {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            'date ticket'
            'place place';
        gap: 0.35rem 0.8rem;
        align-items: center;
        padding: 0.75rem;
    }

    .tour-date {
        grid-area: date;
        font-size: 0.86rem;
    }

    .tour-place {
        grid-area: place;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        font-size: 0.86rem;
    }

    .tour-link {
        grid-area: ticket;
        justify-self: end;
        margin-top: 0;
    }

    .connect-grid {
        grid-template-columns: 1fr;
    }

    .connect-card {
        padding: 1.1rem;
    }

    .connect-card h3 {
        font-size: 1.1rem;
    }

    .video-container {
        max-width: 100%;
        border-width: 1px;
    }

    .contact-form .btn {
        width: 100%;
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 1.4rem;
    }
}

@media (max-width: 480px) {
    .nav-toggle {
        top: calc(env(safe-area-inset-top) + 1.2rem);
        right: 0.75rem;
    }

    .intro-overlay {
        height: 100svh;
        min-height: 100svh;
    }

    .intro-video {
        inset: 0 !important;
        height: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
    }

    .intro-promo {
        grid-template-columns: 1fr;
        text-align: center;
        bottom: 0.8rem;
    }

    .intro-cover {
        margin: 0 auto;
    }

    .intro-copy p {
        margin-bottom: 0.45rem;
    }

    .intro-links {
        justify-content: center;
    }

    h2 {
        font-size: 1.35rem;
        letter-spacing: 1px;
    }

    .hero {
        min-height: 90svh;
        padding: 5rem 1rem 2rem;
    }

    .floating-symbol-wrap {
        margin-top: -32px;
        margin-bottom: -32px;
    }

    .hero-logo {
        width: 82vw;
        max-height: 185px;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section {
        padding: 2.7rem 1rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .btn {
        font-size: 0.8rem;
        padding: 0.65rem 1rem;
    }
}
