@font-face {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/bebas-neue.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/montserrat-400.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/montserrat-600.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/montserrat-700.woff2") format("woff2");
}

:root {
    --black: #0a0a0a;
    --charcoal: #141414;
    --red: #c41e1e;
    --red-bright: #e82424;
    --red-dark: #8b0000;
    --white: #f5f5f5;
    --gray: #b3b3b3;
    --green: #1a4d2e;
    --green-bright: #2d6a4f;
    --font-display: "Bebas Neue", sans-serif;
    --font-body: "Montserrat", sans-serif;
    --touch-min: 3rem;
    --page-x: clamp(1rem, 4vw, 1.5rem);
    --section-y: clamp(2rem, 6vw, 2.5rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    z-index: 1;
}

.sunburst {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(196, 30, 30, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #1a0505 0%, var(--black) 40%, #0d0d0d 100%);
    z-index: 0;
}

.hero {
    position: relative;
    z-index: 2;
    padding: var(--section-y) var(--page-x) 1.5rem;
    text-align: center;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    line-height: 0;
}

.urban-logo {
    display: block;
    width: min(100%, clamp(140px, 42vw, 200px));
    height: auto;
    margin: 0;
    opacity: 0.92;
}

.logo {
    margin: 0;
    line-height: 0;
}

.hero-title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.25rem);
    letter-spacing: 0.08em;
    line-height: 1.05;
    color: var(--white);
    text-transform: uppercase;
}

.logo-image {
    display: block;
    width: min(100%, clamp(260px, 78vw, 380px));
    height: auto;
    margin: 0;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(196, 30, 30, 0.25));
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.15em;
    color: var(--white);
    margin: 0 0 1.25rem;
    font-style: italic;
}

.hero-stack {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin: 0;
}

.meta-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0.75rem 0.65rem;
    border: 1px solid rgba(196, 30, 30, 0.5);
    background: rgba(20, 20, 20, 0.8);
    font-weight: 700;
    font-size: clamp(0.8rem, 2.8vw, 0.95rem);
    letter-spacing: 0.03em;
    line-height: 1.3;
    text-align: center;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
    min-height: 3.25rem;
    padding: 0.85rem 1rem;
    background: var(--green);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: clamp(1rem, 3.8vw, 1.25rem);
    letter-spacing: 0.06em;
    line-height: 1.2;
    box-shadow: 0 0 30px rgba(45, 106, 79, 0.4);
}

.hero-cta {
    width: 100%;
}

.btn-cta-main {
    width: 100%;
}

.cta-hint {
    margin: 0.65rem 0 0;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cta-float {
    position: fixed;
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-min);
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--red-bright), var(--red-dark));
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    letter-spacing: 0.08em;
    box-shadow: 0 6px 0 #5a0000, 0 0 30px rgba(196, 30, 30, 0.35);
    max-width: calc(100vw - 1.75rem);
}

.cta-float span {
    line-height: 1.15;
}

.whatsapp-hero-cta {
    margin-top: 0.75rem;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-hint {
    margin: 0.75rem 0 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.btn-whatsapp {
    color: #fff;
    background: linear-gradient(180deg, #25d366, #128c7e);
    box-shadow: 0 4px 0 #0d5c4a, 0 0 30px rgba(37, 211, 102, 0.35);
    gap: 0.65rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #0d5c4a, 0 0 40px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-lg {
    width: 100%;
    min-height: var(--touch-min);
    padding: 1rem 1.25rem;
    font-size: clamp(1.15rem, 4.5vw, 1.5rem);
}

.btn-whatsapp-block {
    width: 100%;
    min-height: var(--touch-min);
    padding: 1rem 1.25rem;
    font-size: clamp(1.1rem, 4vw, 1.35rem);
}

.btn-whatsapp-group {
    background: linear-gradient(180deg, #128c7e, #0d5c4a);
}

.btn-whatsapp-contact {
    background: linear-gradient(180deg, #25d366, #128c7e);
}

.btn-whatsapp-outline {
    background: rgba(0, 0, 0, 0.55);
    border: 2px solid #25d366;
    box-shadow: none;
}

.form-whatsapp-extras {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 8px;
    background: rgba(18, 140, 126, 0.12);
    text-align: center;
}

.form-whatsapp-extras-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 4vw, 1.45rem);
    letter-spacing: 0.08em;
    color: var(--white);
}

.footer-whatsapp-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.footer-whatsapp-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 4.5vw, 1.5rem);
    letter-spacing: 0.08em;
    color: var(--white);
}

.footer-whatsapp-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.wa-icon {
    width: 1.35em;
    height: 1.35em;
    flex-shrink: 0;
}

.whatsapp-form-cta {
    margin-bottom: 1.5rem;
    text-align: center;
}

.whatsapp-form-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1.25rem;
    color: var(--gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.whatsapp-form-divider::before,
.whatsapp-form-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.whatsapp-form-divider span {
    flex-shrink: 0;
}

.whatsapp-float {
    position: fixed;
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: var(--touch-min);
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #25d366, #128c7e);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    letter-spacing: 0.06em;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), 0 0 30px rgba(37, 211, 102, 0.35);
    animation: wa-pulse 2.5s ease-in-out infinite;
    max-width: calc(100vw - 1.75rem);
}

.whatsapp-float .wa-icon {
    width: 1.65rem;
    height: 1.65rem;
    flex-shrink: 0;
}

.whatsapp-float span {
    max-width: 11rem;
    line-height: 1.15;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), 0 0 20px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), 0 0 35px rgba(37, 211, 102, 0.55); }
}

main {
    position: relative;
    z-index: 2;
}

.section {
    max-width: 960px;
    margin: 0 auto;
    padding: var(--section-y) var(--page-x);
    width: 100%;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem;
    color: var(--red-bright);
    text-shadow: 0 0 20px rgba(196, 30, 30, 0.3);
}

.section-header p {
    color: var(--gray);
    margin: 0 0 1rem;
}

.divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    margin: 1rem 0 2rem;
}

.section-eyebrow {
    margin: 0 0 0.25rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    color: var(--red-bright);
}

.event-intro {
    margin: 0 0 2rem;
    font-size: clamp(1rem, 3.8vw, 1.08rem);
    color: var(--white);
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 640px;
    margin: 0 auto;
}

.info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 5.25rem;
    padding: 1rem 0.85rem;
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(196, 30, 30, 0.35);
    text-align: center;
}

.info-card-wide {
    grid-column: 1 / -1;
}

.info-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
}

.info-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    letter-spacing: 0.04em;
    line-height: 1.25;
}

.info-card-wide strong {
    font-family: var(--font-body);
    font-size: clamp(0.88rem, 3vw, 1rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.schedule-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 0.75rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: minmax(7.5rem, 9.5rem) 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 1rem 1.1rem;
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(196, 30, 30, 0.35);
    border-left: 4px solid var(--red);
}

.schedule-time {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    letter-spacing: 0.04em;
    color: var(--red-bright);
    line-height: 1.25;
}

.schedule-desc {
    font-size: clamp(0.92rem, 3.2vw, 1rem);
    font-weight: 600;
    line-height: 1.45;
    color: var(--white);
}

.bands-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.band-card {
    padding: 1.75rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(196, 30, 30, 0.35);
    border-left: 4px solid var(--red);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-logos picture,
.band-card picture,
.ig-video-media picture {
    display: block;
    line-height: 0;
}

.band-logo {
    display: block;
    width: min(100%, clamp(160px, 50vw, 220px));
    height: auto;
    margin: 0 auto 1rem;
    line-height: 0;
}

.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;
}

.band-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(196, 30, 30, 0.2), transparent);
}

.band-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    margin: 0 0 0.5rem;
    color: var(--white);
    text-align: center;
}

.band-card p.band-name {
    margin: 0 0 0.5rem;
    color: var(--white);
    text-align: center;
}

.band-card p:not(.band-name) {
    margin: 0 0 1rem;
    color: var(--gray);
    font-size: 0.95rem;
    text-align: left;
}

.ig-video-preview {
    display: block;
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid rgba(204, 35, 102, 0.45);
    background: #111;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ig-video-media {
    position: relative;
    display: block;
}

.ig-video-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35));
}

.ig-video-play {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(204, 35, 102, 0.92);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.ig-video-play svg {
    width: 1.75rem;
    height: 1.75rem;
    margin-left: 0.15rem;
    color: #fff;
}

.ig-video-preview:hover,
.ig-video-preview:focus-visible {
    transform: translateY(-2px);
    border-color: #cc2366;
    box-shadow: 0 8px 28px rgba(204, 35, 102, 0.35);
    outline: none;
}

.ig-video-poster {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    padding: 1rem;
    background: radial-gradient(circle at center, rgba(196, 30, 30, 0.12), #111 70%);
}

.ig-video-caption {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    background: rgba(0, 0, 0, 0.55);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--page-x);
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--red-bright);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.band-social {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-instagram {
    color: #fff;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 0 #7a1048, 0 0 24px rgba(204, 35, 102, 0.25);
}

.btn-instagram-outline {
    background: rgba(0, 0, 0, 0.55);
    border: 2px solid #cc2366;
    box-shadow: none;
}

.btn-instagram-block {
    width: 100%;
}

.btn-instagram-hero {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 0.85rem;
}

.btn-instagram-featured {
    font-size: clamp(1.05rem, 4vw, 1.2rem);
}

.ig-icon {
    width: 1.35em;
    height: 1.35em;
    flex-shrink: 0;
}

.instagram-social-section {
    padding-top: 0;
}

.instagram-social-grid {
    display: grid;
    gap: 0.85rem;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.footer-social .btn-instagram {
    min-width: min(100%, 280px);
}

@media (min-width: 540px) {
    .instagram-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-social-grid .btn-instagram-featured {
        grid-column: 1 / -1;
    }
}

@media (min-width: 768px) {
    .instagram-social-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .instagram-social-grid .btn-instagram-featured {
        grid-column: auto;
    }
}

.location-section .location-address {
    margin: 0;
    color: var(--white);
    font-weight: 600;
    font-size: clamp(0.95rem, 3.5vw, 1.05rem);
    line-height: 1.45;
}

.map-wrap {
    overflow: hidden;
    border: 1px solid rgba(196, 30, 30, 0.35);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.map-preview-link {
    display: grid;
    gap: 0.75rem;
    align-content: center;
    justify-items: center;
    min-height: clamp(240px, 55vw, 360px);
    padding: 2rem 1.25rem;
    text-decoration: none;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 35%, rgba(196, 30, 30, 0.18), transparent 55%),
        linear-gradient(180deg, #161616 0%, #0d0d0d 100%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.map-preview-link:hover,
.map-preview-link:focus-visible {
    background:
        radial-gradient(circle at 50% 35%, rgba(196, 30, 30, 0.28), transparent 55%),
        linear-gradient(180deg, #1c1c1c 0%, #101010 100%);
    outline: 2px solid var(--red-bright);
    outline-offset: -2px;
}

.map-preview-icon {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: rgba(196, 30, 30, 0.2);
    border: 2px solid rgba(196, 30, 30, 0.55);
}

.map-preview-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--red-bright);
}

.map-preview-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    letter-spacing: 0.06em;
    text-align: center;
}

.map-preview-address {
    margin: 0;
    max-width: 28rem;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.map-preview-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-min);
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--red-bright), var(--red-dark));
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--touch-min);
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: clamp(1rem, 3.8vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    border: none;
}

.btn-waze {
    color: #fff;
    background: #33ccff;
    box-shadow: 0 4px 0 #0088bb;
}

.btn-maps {
    color: #fff;
    background: #4285f4;
    box-shadow: 0 4px 0 #1a56c4;
}

.btn-calendar {
    color: #fff;
    background: #2d2d2d;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 0 #111;
}

.field-hint {
    margin: 0 0 0.85rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.field-toggle-group .toggle-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.toggle-btn {
    min-height: var(--touch-min);
    padding: 1rem 1.1rem;
    font: inherit;
    font-size: clamp(1rem, 3.8vw, 1.1rem);
    font-weight: 700;
    color: var(--white);
    background: rgba(0, 0, 0, 0.55);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.toggle-btn:hover {
    border-color: rgba(255, 255, 255, 0.35);
}

.toggle-btn.active {
    border-color: var(--red);
    background: rgba(196, 30, 30, 0.22);
    transform: translateY(-1px);
}

.toggle-btn-yes.active {
    border-color: var(--green-bright);
    background: rgba(45, 106, 79, 0.35);
}

.toggle-panel {
    display: grid;
    gap: 1rem;
    padding-top: 0.25rem;
    animation: panel-in 0.2s ease;
}

@keyframes panel-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.75rem;
}

.highlights-list li {
    padding: 1rem 1.15rem;
    background: rgba(20, 20, 20, 0.7);
    border-left: 3px solid var(--red);
    font-weight: 600;
    font-size: clamp(0.95rem, 3.5vw, 1.05rem);
    line-height: 1.45;
}

.highlights-list li::before {
    content: "🤘 ";
}

.address {
    padding: 1.25rem 1.5rem;
    background: rgba(245, 240, 230, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.form-section {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
}

.capture-form {
    display: grid;
    gap: 1.35rem;
    padding: clamp(1.25rem, 4vw, 2rem);
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(196, 30, 30, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.field,
.field-group {
    display: grid;
    gap: 0.4rem;
}

.field span,
.field-group legend {
    font-size: clamp(0.9rem, 3.2vw, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
}

.field-group {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.1rem;
    margin: 0;
    border-radius: 8px;
}

.field-group legend {
    padding: 0 0.5rem;
}

.field-group legend small {
    text-transform: none;
    font-weight: 400;
    color: var(--gray);
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="search"],
select,
textarea {
    width: 100%;
    min-height: var(--touch-min);
    padding: 0.95rem 1.1rem;
    font: inherit;
    font-size: 16px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f5f5f5' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196, 30, 30, 0.25);
}

.checkbox-field {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
    padding: 1rem;
    background: rgba(26, 77, 46, 0.2);
    border: 1px solid rgba(45, 106, 79, 0.4);
    border-radius: 4px;
}

.checkbox-field input {
    margin-top: 0.25rem;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--red);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: var(--touch-min);
    padding: 1rem 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 4.2vw, 1.35rem);
    letter-spacing: 0.08em;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    appearance: none;
    -webkit-appearance: none;
}

input[type="submit"].btn {
    width: 100%;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(180deg, var(--red-bright), var(--red-dark));
    box-shadow: 0 4px 0 #5a0000, 0 0 30px rgba(196, 30, 30, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #5a0000, 0 0 40px rgba(196, 30, 30, 0.5);
}

.btn-glow {
    width: 100%;
    min-height: 3.5rem;
    padding: 1.1rem 1.25rem;
    font-size: clamp(1.25rem, 4.8vw, 1.55rem);
}

.site-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem var(--page-x) calc(2rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(196, 30, 30, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.footer-urban-logo {
    display: block;
    width: min(100%, 120px);
    height: auto;
    margin: 0 auto 0.75rem;
    opacity: 0.85;
}

.site-footer p {
    margin: 0.25rem 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-address {
    color: var(--white) !important;
    font-weight: 600;
    font-size: clamp(0.95rem, 3.5vw, 1rem);
    line-height: 1.45;
}

.btn-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-danger {
    color: #fff;
    background: linear-gradient(180deg, #c62828, #8b0000);
    box-shadow: 0 3px 0 #4a0000;
}

.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #4a0000, 0 0 16px rgba(198, 40, 40, 0.35);
}

.btn-sm {
    min-height: 2.25rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.admin-delete-form {
    margin: 0;
}

.admin-table td:last-child {
    width: 1%;
    white-space: nowrap;
}

.alert {
    padding: 1rem 1.15rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: clamp(0.95rem, 3.5vw, 1rem);
    line-height: 1.45;
}

.alert-success {
    background: rgba(45, 106, 79, 0.3);
    border: 1px solid var(--green-bright);
    color: #a7f3d0;
}

.alert-error {
    background: rgba(139, 0, 0, 0.3);
    border: 1px solid var(--red);
    color: #fecaca;
}

.action-row {
    margin-top: 1.25rem;
}

.action-row-label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: clamp(0.8rem, 3vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

@media (min-width: 540px) {
    .hero-stack {
        max-width: 520px;
    }

    .meta-chip {
        font-size: 0.95rem;
        padding: 0.85rem 1rem;
    }

    .info-grid {
        max-width: 720px;
    }

    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .hero-tagline {
        border-radius: 999px;
        font-size: clamp(1.05rem, 4.2vw, 1.35rem);
    }

    .bands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .info-grid {
        max-width: 800px;
    }

    .action-buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .btn-action {
        flex: 1 1 calc(50% - 0.425rem);
        width: auto;
    }
}

@media (max-width: 380px) {
    .hero-subtitle {
        letter-spacing: 0.08em;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

@media (max-width: 600px) {
    .admin-page-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
.admin-body {
    background: #111;
    min-height: 100vh;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #0a0a0a;
    border-bottom: 2px solid var(--red);
}

.admin-nav a {
    color: var(--gray);
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: var(--red-bright);
}

.admin-main,
.admin-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.admin-card {
    max-width: 420px;
    margin-top: 4rem;
    padding: 2rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
}

.install-card {
    max-width: 480px;
}

.admin-page-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-page-header h1 {
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    color: var(--red-bright);
}

.admin-page-header p {
    margin: 0.25rem 0 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.admin-form {
    display: grid;
    gap: 1rem;
}

.admin-form label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
}

.admin-form-wide {
    max-width: 720px;
}

.settings-group {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.settings-group h2 {
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    color: var(--white);
    margin: 0 0 1rem;
}

.settings-note {
    margin: -0.5rem 0 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.admin-search {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.admin-search input {
    flex: 1;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid #333;
    border-radius: 8px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2a2a;
}

.admin-table th {
    background: #1a1a1a;
    color: var(--gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-table td.empty {
    text-align: center;
    color: var(--gray);
    padding: 2rem;
}

.admin-table a {
    color: #4ade80;
    text-decoration: none;
}

.admin-table a:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    background: #1a1a1a;
    border: 1px solid #333;
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
}

.pagination a.active {
    background: var(--red);
    border-color: var(--red);
}

.admin-back {
    margin-top: 1.5rem;
    text-align: center;
}

.admin-back a {
    color: var(--gray);
}
