/* ═══════════════════════════════════════════════════
   Site footer — Backstage Pass / Stage Lights
   ═══════════════════════════════════════════════════ */
.site-footer {
    --sf-navy: #070b14;
    --sf-panel: #101827;
    --sf-gold: #f5c97a;
    --sf-gold-hot: #e8b86d;
    --sf-ink: #efe8d9;
    --sf-muted: rgba(239, 232, 217, 0.62);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(232, 184, 109, 0.16), transparent 55%),
        linear-gradient(180deg, #0c1424 0%, var(--sf-navy) 42%);
    color: var(--sf-ink);
    font-family: Inter, sans-serif;
    scroll-margin-top: 84px;
}

.site-footer .container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.sf-spot {
    pointer-events: none;
    position: absolute;
    inset: 0 auto auto 50%;
    width: 720px;
    height: 280px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at 50% 0%, rgba(245, 201, 122, 0.22), transparent 70%);
    filter: blur(8px);
}

/* ── Concert ticket CTA ─────────────────────────── */
.sf-ticket-wrap {
    position: relative;
    z-index: 1;
    padding: 40px 0 8px;
}

.sf-ticket {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    align-items: center;
    gap: 8px 20px;
    min-height: 132px;
    background:
        linear-gradient(180deg, rgba(245, 201, 122, 0.12), transparent 40%),
        linear-gradient(135deg, #1a140c 0%, #12203a 55%, #0d1526 100%);
    border: 1px solid rgba(245, 201, 122, 0.28);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
}

.sf-ticket::before,
.sf-ticket::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sf-navy);
    transform: translateY(-50%);
    box-shadow: inset 0 0 0 1px rgba(245, 201, 122, 0.2);
}

.sf-ticket::before { left: 80px; }
.sf-ticket::after { right: -11px; }

.sf-ticket-stub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 100%;
    min-height: 132px;
    padding: 16px 8px;
    background: linear-gradient(180deg, #f5c97a, #d97706);
    color: #1a1206;
    border-right: 2px dashed rgba(8, 12, 22, 0.35);
}

.sf-ticket-stub span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.sf-ticket-stub strong {
    font-family: Outfit, Inter, sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.sf-kicker {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--sf-gold);
}

.sf-ticket-body h2 {
    margin: 0;
    font-family: Outfit, Inter, sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 800;
    color: #fffdf8 !important;
    line-height: 1.25;
    max-width: 520px;
}

.sf-ticket-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-right: 28px;
}

.sf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14.5px;
    text-decoration: none;
    white-space: nowrap;
}

.sf-btn-gold {
    background: linear-gradient(135deg, #f5c97a, #d97706);
    color: #1a1206 !important;
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
}

.sf-btn-gold:hover { color: #1a1206 !important; filter: brightness(1.06); }

.sf-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.sf-btn-ghost:hover { color: #fff !important; background: rgba(255, 255, 255, 0.14); }

/* ── Main columns ───────────────────────────────── */
.sf-main {
    position: relative;
    padding: 56px 0 48px;
}

.sf-vinyl {
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, #c2410c 0 18px, #1c2333 19px 34px, transparent 35px),
        repeating-radial-gradient(circle at 50% 50%, #0b101a 0 3px, #1a2233 4px 7px);
    box-shadow: 0 0 0 14px rgba(245, 201, 122, 0.08);
    opacity: 0.38;
    pointer-events: none;
    animation: sfSpin 48s linear infinite;
}

@keyframes sfSpin { to { transform: rotate(360deg); } }

.sf-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 0.9fr 1.25fr;
    gap: 36px 28px;
    position: relative;
    z-index: 1;
}

.sf-logo {
    display: inline-flex;
    background: #fff;
    border-radius: 16px;
    padding: 8px 12px;
    margin-bottom: 16px;
}

.sf-logo img {
    height: 64px;
    width: auto;
    display: block;
}

.sf-brand p {
    color: var(--sf-muted);
    line-height: 1.7;
    max-width: 320px;
    margin: 0 0 16px;
}

.sf-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.sf-chips span {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--sf-gold);
    border: 1px solid rgba(245, 201, 122, 0.28);
    background: rgba(245, 201, 122, 0.08);
}

.sf-ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sf-gold) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.sf-ig:hover { color: #fff !important; }

.site-footer h3 {
    font-family: Outfit, Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--sf-gold) !important;
    margin: 8px 0 18px;
}

.sf-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sf-col li { margin-bottom: 11px; }

.sf-col a {
    color: var(--sf-muted);
    text-decoration: none;
    font-size: 14.5px;
    position: relative;
    padding-left: 12px;
}

.sf-col a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 1px;
    background: var(--sf-gold);
    opacity: 0.55;
}

.sf-col a:hover { color: #fff; }

.sf-studio {
    padding: 22px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 201, 122, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sf-studio h3 { margin-top: 0; }

.sf-studio a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--sf-muted);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.sf-studio a span {
    overflow-wrap: anywhere;
}

.sf-studio a:last-child { margin-bottom: 0; }

.sf-studio a i {
    color: var(--sf-gold);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.sf-studio a:hover { color: #fff; }

.sf-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(245, 201, 122, 0.12);
    background: #05070d;
}

.sf-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px 0;
}

.sf-bottom p {
    margin: 0;
    font-size: 14px;
    color: var(--sf-muted);
}

.sf-bottom strong { color: #fff; }

.sf-bottom a {
    color: var(--sf-gold);
    text-decoration: none;
    font-weight: 700;
}

.sf-bottom a:hover { color: #fff; }

@media (max-width: 991.98px) {
    .sf-ticket {
        grid-template-columns: 72px 1fr;
    }

    .sf-ticket::before { left: 60px; }
    .sf-ticket::after { display: none; }

    .sf-ticket-actions {
        grid-column: 1 / -1;
        padding: 0 18px 18px 18px;
    }

    .sf-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .sf-ticket { grid-template-columns: 1fr; }
    .sf-ticket-stub {
        flex-direction: row;
        min-height: 0;
        padding: 10px 16px;
        border-right: 0;
        border-bottom: 2px dashed rgba(8, 12, 22, 0.35);
    }
    .sf-ticket-stub strong {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 14px;
    }
    .sf-ticket::before { display: none; }
    .sf-ticket-body { padding: 16px 18px 0; }
    .sf-grid { grid-template-columns: 1fr; }
    .sf-btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .sf-vinyl { animation: none; }
}
