/* ============================================================
   URBAN FLOW — section styles
   ============================================================ */

section { position: relative; }
.section { padding: clamp(80px, 11vh, 150px) 0; }
.sec-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 54px; }
.sec-head.center { align-items: center; text-align: center; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-rd="1"]{ transition-delay: .08s;} [data-rd="2"]{ transition-delay: .16s;}
[data-rd="3"]{ transition-delay: .24s;} [data-rd="4"]{ transition-delay: .32s;}
[data-rd="5"]{ transition-delay: .40s;} [data-rd="6"]{ transition-delay: .48s;}

@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }

/* neon divider */
.neon-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--cyan) 70%, transparent); opacity: 0.5; box-shadow: 0 0 18px rgba(177,77,255,0.4); }

/* ---------------- ABOUT ---------------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
/* desktop: each phrase on its own line, no wrapping */
.about-h .ln { display: block; white-space: nowrap; }
@media (max-width: 900px) {
  .about-h .ln { display: inline; white-space: normal; }
}
.about-copy p { margin-top: 22px; color: var(--muted); font-size: clamp(15px,1.45vw,19px); }
.about-copy .big { color: var(--text); font-size: clamp(20px,2vw,27px); font-weight: 600; line-height: 1.4; }
.about-copy .big b { color: var(--accent); font-weight: 700; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tag { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 9px 15px; border-radius: 100px; border: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,0.02); }

.about-card { position: relative; aspect-ratio: 4/5; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); }
.about-card .ph { position: absolute; inset: 0; }
.about-card .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6,3,12,0.85)); }
.about-card .meta { position: absolute; left: 22px; right: 22px; bottom: 22px; }
.about-card .meta b { font-family: var(--display); font-size: 26px; display: block; }
.about-card .meta span { color: var(--muted); font-size: 13px; }
.about-card .pill { position: absolute; top: 18px; left: 18px; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px; background: rgba(6,3,14,0.6); border: 1px solid var(--accent); color: #fff; box-shadow: 0 0 18px -4px var(--accent); }

/* image placeholder treatment */
.ph {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, rgba(177,77,255,0.30), rgba(47,227,255,0.14) 50%, rgba(255,45,143,0.26));
  position: relative;
}
.ph::after { content: attr(data-ph); position: absolute; inset: auto 0 14px 0; text-align: center; font-family: var(--body); font-weight: 600; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ---------------- STYLES CARDS ---------------- */
.styles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; perspective: 1300px; }

/* staggered slide-in (richer than the generic reveal) */
.styles-grid .style-card.reveal { opacity: 0; transition: none; }
.styles-grid .style-card.reveal.in { animation: cardIn .8s var(--ease) both; }
.styles-grid .style-card.reveal.in.anim-done { animation: none; opacity: 1; transform: none; }
.styles-grid .style-card[data-rd="1"].in { animation-delay: .05s; }
.styles-grid .style-card[data-rd="2"].in { animation-delay: .18s; }
.styles-grid .style-card[data-rd="3"].in { animation-delay: .31s; }
.styles-grid .style-card[data-rd="4"].in { animation-delay: .44s; }
@keyframes cardIn {
  0%   { opacity: 0; transform: translateY(58px) scale(.92) rotateX(13deg); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .styles-grid .style-card.reveal { opacity: 1; }
  .styles-grid .style-card.reveal.in { animation: none; }
}
.style-card {
  position: relative; min-height: 380px; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
  isolation: isolate;
}
.style-card .bg { position: absolute; inset: 0; z-index: -2; transition: transform .8s var(--ease); }

/* card with background video — keep stripes + gradient overlay, show video behind */
.style-card.has-video .card-video { position: absolute; inset: 0; z-index: -3; overflow: hidden; background: #0a0518; }
.style-card.has-video .card-video iframe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4px); height: auto; aspect-ratio: 9 / 16; min-height: 100%;
  border: 0; pointer-events: none;
}
/* cover height instead (crop left/right) */
.style-card.has-video.cover-h .card-video iframe {
  width: auto; height: calc(100% + 6px); aspect-ratio: 16 / 9; min-width: 100%;
}
.style-card.has-video.cover-h:hover .card-video iframe { transform: translate(-50%, -50%) scale(1.06); }
.style-card.has-video .bg {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, rgba(255,45,143,0.16), rgba(177,77,255,0.06)) !important;
}
.style-card.has-video:hover .card-video iframe { transform: translate(-50%, -50%) scale(1.06); transition: transform .8s var(--ease); }
.style-card .grad { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(5,3,12,0.5) 60%, rgba(5,3,12,0.92)); transition: opacity .4s; }
.style-card .num { font-family: var(--display); font-size: 60px; line-height: 1; color: rgba(255,255,255,0.14); position: absolute; top: 16px; right: 20px; transition: color .4s; }
.style-card h3 { font-family: var(--display); font-size: 30px; text-transform: uppercase; letter-spacing: 0.02em; }
.style-card p { color: var(--muted); font-size: 13.5px; margin-top: 8px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s, margin .4s; }
.style-card .go { margin-top: 16px; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-2); display: inline-flex; align-items: center; gap: 8px; opacity: 0; transform: translateY(8px); transition: .4s; }
.style-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 26px 50px -22px var(--accent), 0 0 60px -22px var(--accent-2); }
.style-card:hover .bg { transform: scale(1.08); }
.style-card:hover .num { color: rgba(255,255,255,0.32); }
.style-card:hover p { max-height: 80px; opacity: 1; margin-top: 10px; }
.style-card:hover .go { opacity: 1; transform: none; }

/* ---------------- LINEUP ---------------- */
.lineup-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.artist {
  position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 3/4; cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .45s, border-color .4s;
}
.artist .ph { position: absolute; inset: 0; }
.artist .mono { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-size: clamp(34px,4vw,52px); color: rgba(255,255,255,0.18); letter-spacing: 0.04em; }
.artist .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6,3,12,0.9)); transition: background .4s; }
.artist .info { position: absolute; left: 14px; right: 14px; bottom: 14px; transform: translateY(6px); transition: transform .4s; }
.artist .info b { display: block; font-weight: 800; font-size: 15px; letter-spacing: 0.01em; }
.artist .info .st { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-2); margin-top: 4px; }
.artist .info .city { font-size: 11px; color: var(--faint); margin-top: 2px; }
.artist .bio { font-size: 11.5px; color: var(--muted); margin-top: 10px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s var(--ease), opacity .35s, margin .35s; }
.artist .spot { position: absolute; inset: 0; background: radial-gradient(140% 60% at 50% -10%, rgba(47,227,255,0.28), transparent 60%); opacity: 0; transition: opacity .45s; mix-blend-mode: screen; }
.artist:hover { transform: translateY(-7px); border-color: var(--accent); box-shadow: 0 22px 44px -22px var(--accent), 0 0 50px -20px var(--accent-2); }
.artist:hover .scrim { background: linear-gradient(180deg, transparent 25%, rgba(6,3,12,0.94)); }
.artist:hover .info { transform: none; }
.artist:hover .bio { max-height: 60px; opacity: 1; margin-top: 8px; }
.artist:hover .spot { opacity: 1; }
.lineup-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 34px; flex-wrap: wrap; color: var(--muted); }

/* ---------------- SCHEDULE ---------------- */
.sched-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.day-tabs { display: inline-flex; padding: 6px; gap: 6px; border-radius: 100px; border: 1px solid var(--line); background: var(--panel); position: relative; }
.day-tab { position: relative; z-index: 2; padding: 12px 24px; border-radius: 100px; cursor: pointer; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12.5px; color: var(--muted); background: none; border: 0; transition: color .3s; }
.day-tab.active { color: #fff; }
.day-tab small { display: block; font-size: 9px; letter-spacing: 0.2em; color: inherit; opacity: 0.7; font-weight: 600; margin-top: 3px; }
.tab-pill { position: absolute; z-index: 1; top: 6px; bottom: 6px; border-radius: 100px; background: linear-gradient(100deg, var(--magenta), var(--purple)); box-shadow: 0 0 24px -6px var(--accent); transition: left .4s var(--ease), width .4s var(--ease); }

.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.fchip { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 9px 15px; border-radius: 100px; border: 1px solid var(--line); background: rgba(255,255,255,0.02); color: var(--muted); cursor: pointer; transition: .25s; }
.fchip:hover { color: #fff; border-color: var(--accent-2); }
.fchip.active { color: #fff; border-color: transparent; background: linear-gradient(100deg, rgba(255,45,143,0.25), rgba(47,227,255,0.22)); box-shadow: inset 0 0 0 1px var(--accent-2); }

.sched-list { display: flex; flex-direction: column; gap: 12px; }
.slot {
  border: 1px solid var(--line); border-radius: 16px; background: var(--panel-2);
  overflow: hidden; transition: border-color .35s, background .35s, transform .35s, opacity .35s;
}
.slot.hide { display: none; }
.slot-head { display: grid; grid-template-columns: 116px 1fr auto; gap: 20px; align-items: center; padding: 20px 24px; cursor: pointer; }
.slot .time { font-family: var(--display); font-size: 22px; color: var(--text); }
.slot .time small { display: block; font-family: var(--body); font-size: 10px; letter-spacing: 0.18em; color: var(--faint); font-weight: 700; margin-top: 2px; }
.slot .title { font-weight: 700; font-size: 17px; }
.slot .title .with { display: block; font-size: 12.5px; color: var(--muted); font-weight: 500; margin-top: 3px; }
.slot .right { display: flex; align-items: center; gap: 16px; }
.stag { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 11px; border-radius: 100px; }
.stag.heels { color: #ffd0ea; background: rgba(255,45,143,0.16); box-shadow: inset 0 0 0 1px rgba(255,45,143,0.5); }
.stag.commercial { color: #e7d4ff; background: rgba(177,77,255,0.16); box-shadow: inset 0 0 0 1px rgba(177,77,255,0.5); }
.stag.hiphop { color: #cfe0ff; background: rgba(77,123,255,0.16); box-shadow: inset 0 0 0 1px rgba(77,123,255,0.5); }
.stag.reggaeton { color: #c9faff; background: rgba(47,227,255,0.14); box-shadow: inset 0 0 0 1px rgba(47,227,255,0.5); }
.stag.event { color: var(--muted); background: rgba(255,255,255,0.05); box-shadow: inset 0 0 0 1px var(--line); }
.slot .chev { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .4s, border-color .3s; color: var(--muted); }
.slot.open .chev { transform: rotate(180deg); border-color: var(--accent-2); color: var(--cyan); }
.slot:hover { border-color: rgba(177,77,255,0.4); transform: translateX(3px); }
.slot-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.slot.open .slot-body { max-height: 160px; }
.slot-body .inner { padding: 0 24px 22px 24px; color: var(--muted); font-size: 14px; display: flex; gap: 28px; flex-wrap: wrap; border-top: 1px solid var(--line); margin-top: 0; padding-top: 18px; }
.slot-body .inner b { color: var(--text); font-weight: 700; display: block; font-size: 12px; letter-spacing: 0.04em; }

/* ---------------- TICKETS ---------------- */
.tix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tix {
  position: relative; border-radius: 22px; padding: 34px 30px 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(28,16,52,0.5), rgba(12,7,24,0.5));
  backdrop-filter: blur(14px);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s, border-color .4s;
}
.tix:hover { transform: translateY(-8px); border-color: var(--accent-2); box-shadow: 0 30px 60px -28px rgba(47,227,255,0.5); }
.tix.feat {
  border-color: transparent;
  background: linear-gradient(180deg, rgba(48,20,70,0.7), rgba(18,9,34,0.7));
  box-shadow: 0 0 0 1.5px var(--accent), 0 30px 70px -26px var(--accent);
}
.tix.feat::before { content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; color: #fff; background: linear-gradient(100deg, var(--magenta), var(--purple)); box-shadow: 0 0 24px -4px var(--accent); white-space: nowrap; }
.tix .tname { font-size: 13px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-2); }
.tix.feat .tname { color: var(--pink); }
.tix .price { font-family: var(--display); font-size: 56px; line-height: 1; margin: 14px 0 4px; }
.tix .price small { font-family: var(--body); font-size: 16px; color: var(--muted); font-weight: 600; }
.tix .pnote { font-size: 12.5px; color: var(--faint); }
.tix ul { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 13px; }
.tix li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.tix li svg { flex: 0 0 17px; margin-top: 2px; }
.tix li.off { opacity: 0.4; text-decoration: line-through; }
.tix .btn { width: 100%; justify-content: center; margin-top: auto; }
.tix-note { text-align: center; color: var(--faint); font-size: 13px; margin-top: 26px; }

/* ---------------- EXPERIENCE ---------------- */
.exp { position: relative; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.exp-points { display: flex; flex-direction: column; gap: 4px; }
.exp-point { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.exp-point .dot { flex: 0 0 10px; width: 10px; height: 10px; border-radius: 50%; margin-top: 7px; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.exp-point h4 { font-size: 18px; font-weight: 700; }
.exp-point p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; background: var(--panel-2); position: relative; overflow: hidden; }
.stat .n { font-family: var(--display); font-size: clamp(48px, 6vw, 74px); line-height: 0.9; background: linear-gradient(160deg, #fff, var(--accent) 90%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lab { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.stat::after { content: ""; position: absolute; right: -30px; top: -30px; width: 100px; height: 100px; border-radius: 50%; background: radial-gradient(circle, var(--accent-2), transparent 70%); opacity: 0.12; }

/* ---------------- GALLERY ---------------- */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reel { position: relative; aspect-ratio: 9/16; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; transition: transform .5s var(--ease), box-shadow .4s; }
.reel .ph { position: absolute; inset: 0; }
.reel .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,3,12,0.2), rgba(6,3,12,0.7)); }
.reel .play { position: absolute; inset: 0; display: grid; place-items: center; }
.reel .play span { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.6); backdrop-filter: blur(6px); display: grid; place-items: center; transition: .4s; }
.reel .lab { position: absolute; left: 14px; bottom: 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; }
.reel .dur { position: absolute; top: 12px; right: 12px; font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 100px; background: rgba(6,3,12,0.6); color: var(--cyan); }
.reel:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 26px 50px -24px var(--accent); }
.reel:hover .play span { transform: scale(1.1); background: var(--accent); border-color: transparent; box-shadow: 0 0 30px -4px var(--accent); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(4,2,10,0.9); backdrop-filter: blur(14px); display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .4s; padding: 24px; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox .frame { width: min(420px, 92vw); aspect-ratio: 9/16; border-radius: 22px; overflow: hidden; border: 1px solid var(--accent); box-shadow: 0 0 80px -10px var(--accent); position: relative; transform: scale(0.92); transition: transform .45s var(--ease); }
.lightbox.open .frame { transform: scale(1); }
.lightbox .frame .ph { position: absolute; inset: 0; }
.lightbox .frame .label { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; background: linear-gradient(transparent, rgba(6,3,12,0.85)); }
.lightbox .frame .label b { font-family: var(--display); font-size: 24px; }
.lb-close { position: absolute; top: 24px; right: 24px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.05); color: #fff; font-size: 20px; cursor: pointer; transition: .3s; }
.lb-close:hover { background: var(--accent); transform: rotate(90deg); }

/* ---------------- LOCATION ---------------- */
.loc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: stretch; }
.loc-info { display: flex; flex-direction: column; gap: 18px; }
.loc-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--panel-2); }
.loc-row .ic { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(177,77,255,0.12); box-shadow: inset 0 0 0 1px var(--line); }
.loc-row b { display: block; font-size: 15px; }
.loc-row span { color: var(--muted); font-size: 13.5px; }
.map { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); min-height: 380px; background:
   linear-gradient(180deg, rgba(12,7,24,0.2), rgba(12,7,24,0.4)),
   repeating-linear-gradient(0deg, rgba(177,77,255,0.10) 0 1px, transparent 1px 46px),
   repeating-linear-gradient(90deg, rgba(47,227,255,0.08) 0 1px, transparent 1px 46px),
   radial-gradient(80% 60% at 60% 40%, rgba(177,77,255,0.18), transparent 60%),
   #07040f; }
.map .road { position: absolute; background: rgba(255,255,255,0.05); }
.map .r1 { left: 0; right: 0; top: 46%; height: 2px; transform: rotate(-8deg); }
.map .r2 { top: 0; bottom: 0; left: 38%; width: 2px; }
.map .r3 { left: 10%; right: 30%; top: 70%; height: 2px; transform: rotate(6deg); background: rgba(47,227,255,0.12); }
.pin { position: absolute; left: 58%; top: 44%; transform: translate(-50%,-100%); }
.pin .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(255,45,143,0.2), 0 0 26px var(--accent); position: relative; z-index: 2; }
.pin .pulse { position: absolute; left: 50%; top: 50%; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--accent); transform: translate(-50%,-50%); animation: pinpulse 2.2s ease-out infinite; }
.pin .tip { position: absolute; left: 50%; top: -46px; transform: translateX(-50%); white-space: nowrap; background: rgba(6,3,14,0.85); border: 1px solid var(--accent); padding: 7px 13px; border-radius: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; box-shadow: 0 0 24px -6px var(--accent); }
@keyframes pinpulse { 0%{ transform: translate(-50%,-50%) scale(1); opacity: 0.8; } 100%{ transform: translate(-50%,-50%) scale(5); opacity: 0; } }

/* ---------------- FINAL CTA ---------------- */
.final { text-align: center; padding: clamp(100px,16vh,200px) 0; position: relative; overflow: hidden; }
.final .ringlogo { margin: 0 auto 38px; }
.final h2 { font-family: var(--display); font-size: clamp(44px, 8vw, 124px); line-height: 0.92; text-transform: uppercase; }
.final h2 .g1 { background: linear-gradient(100deg, var(--cyan), #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final h2 .g2 { background: linear-gradient(100deg, #fff, var(--magenta)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final .fc { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ---------------- FOOTER ---------------- */
.footer { border-top: 1px solid var(--line); padding: 70px 0 40px; background: rgba(6,3,14,0.5); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand p { color: var(--muted); font-size: 14px; margin-top: 18px; max-width: 32ch; }
.foot-col h5 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--muted); font-size: 14px; padding: 6px 0; transition: color .25s, padding-left .25s; }
.foot-col a:hover { color: var(--cyan); padding-left: 6px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--faint); font-size: 12.5px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: .3s; }
.socials a:hover { color: #fff; border-color: var(--accent); box-shadow: 0 0 22px -6px var(--accent); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1120px) {
  .nav .brand .bn { display: none; }
}
@media (max-width: 1080px) {
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-grid { grid-template-columns: repeat(4, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .scrollcue { display: flex; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .burger { display: flex; }
  .about-grid, .exp-grid, .loc-grid { grid-template-columns: 1fr; gap: 38px; }
  .tix-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .tix.feat { order: -1; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 18px; }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .styles-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .slot-head { grid-template-columns: 1fr auto; gap: 12px; }
  .slot .time { font-size: 18px; }
  .sched-controls { flex-direction: column; align-items: stretch; }
  .day-tabs { justify-content: center; }
  .countdown { gap: 8px; }
  .cd { min-width: 58px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
