/* Entertune Park — cinematic responsive site · 2026-08-28 */
:root {
  --bg: #0b0509;
  --bg-2: #160a11;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(30, 15, 24, 0.92);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --ink: #fff7fa;
  --muted: #d7c8ce;
  --muted-2: #b9a8af;
  --rose: #ff6b9b;
  --magenta: #d36bff;
  --amber: #ffc078;
  --gold: #ffe0b3;
  --green: #7cf2a0;
  --grad: linear-gradient(120deg, #ff6b9b 0%, #d36bff 50%, #ffc078 100%);
  --grad-soft: linear-gradient(120deg, rgba(255, 107, 155, 0.18), rgba(211, 107, 255, 0.15), rgba(255, 192, 120, 0.15));
  --radius: 22px;
  --maxw: 1200px;
  --shadow: 0 34px 90px -36px rgba(0, 0, 0, 0.88);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { margin: 0; font-family: Sora, Inter, sans-serif; line-height: 1.08; letter-spacing: -0.025em; }
a { color: inherit; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
main, .hero, .hero-copy, .hero-media { min-width: 0; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: none; }

.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.42; mix-blend-mode: screen; }
.b1 { width: 50vw; height: 50vw; left: -16vw; top: -12vw; background: #b82b65; animation: drift-one 22s ease-in-out infinite; }
.b2 { width: 45vw; height: 45vw; right: -14vw; top: 8vw; background: #7431af; animation: drift-two 27s ease-in-out infinite; }
.b3 { width: 42vw; height: 42vw; left: 28vw; bottom: -22vw; background: #9e572e; animation: drift-one 30s ease-in-out infinite reverse; }
@keyframes drift-one { 50% { transform: translate(7vw, 5vw) scale(1.12); } }
@keyframes drift-two { 50% { transform: translate(-6vw, 7vw) scale(1.08); } }
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.spotlight { position: fixed; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(430px circle at 50% 18%, rgba(255, 107, 155, 0.1), transparent 65%); }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px clamp(18px, 5vw, 52px);
  border-bottom: 1px solid transparent;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.site-nav.scrolled, .legal-nav { padding-block: 11px; background: rgba(11, 5, 9, 0.86); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom-color: var(--line); }
.brand { flex: 0 1 240px; min-width: 0; max-width: 240px; }
.brand-logo { width: 240px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 10px; border-radius: 10px; color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: var(--ink); background: var(--panel); }
.nav-cta { flex: none; padding: 10px 17px; border: 1px solid rgba(255, 255, 255, 0.34); border-radius: 12px; background: #23131d; color: var(--ink); font-size: 14px; font-weight: 800; text-decoration: none; box-shadow: none; }
.nav-cta:hover { border-color: var(--rose); background: #321924; }
.mobile-nav { display: none; position: relative; flex: none; min-width: 0; max-width: 100%; }
.mobile-nav summary { padding: 9px 13px; border: 1px solid var(--line-strong); border-radius: 11px; color: var(--ink); cursor: pointer; font-weight: 700; list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: "+"; padding-left: 8px; color: var(--gold); }
.mobile-nav[open] summary::after { content: "−"; }
.mobile-nav-panel { position: absolute; right: 0; top: calc(100% + 10px); display: grid; min-width: 230px; padding: 10px; border: 1px solid var(--line-strong); border-radius: 16px; background: var(--panel-strong); box-shadow: var(--shadow); }
.mobile-nav-panel a { padding: 11px 12px; border-radius: 9px; color: var(--muted); font-weight: 650; text-decoration: none; }
.mobile-nav-panel a:hover, .mobile-nav-panel a:focus-visible { color: var(--ink); background: rgba(255,255,255,0.08); }

main { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 5vw, 40px); }
.section { position: relative; padding: clamp(64px, 9vw, 116px) 0; }
.section-head { max-width: 780px; margin: 0 auto clamp(34px, 5vw, 54px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2 { margin-bottom: 15px; font-size: clamp(30px, 4.5vw, 48px); font-weight: 800; }
.section-copy { margin: 0; color: var(--muted); font-size: clamp(16px, 1.7vw, 19px); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 0 rgba(255, 107, 155, 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(255, 107, 155, 0); } }
.grad { color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }

.button { display: inline-flex; min-width: 0; max-width: 100%; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; border: 0; border-radius: 14px; background: var(--grad); color: #19070e; box-shadow: 0 15px 36px -17px rgba(255, 107, 155, 0.78); cursor: pointer; font-weight: 800; text-align: center; text-decoration: none; overflow-wrap: anywhere; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -17px rgba(211, 107, 255, 0.8); }
.button.ghost { border: 1px solid rgba(255, 255, 255, 0.42); background: #23131d; color: var(--ink); box-shadow: none; }
.button.ghost:hover { border-color: var(--rose); background: #321924; }
.button.sm { padding: 10px 17px; border-radius: 12px; font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 20px 0; }

.hero { position: relative; display: grid; width: 100%; max-width: 100%; align-items: center; min-height: clamp(500px, 56vh, 560px); margin-top: 10px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(135deg, #371526, #120912 55%, #271333); box-shadow: var(--shadow); isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: linear-gradient(135deg, rgba(255, 107, 155, 0.14), rgba(38, 14, 31, 0.28)), url('/assets/video/stay-in-the-hush-hero-poster.jpg') 68% center / cover no-repeat; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; filter: brightness(1.12) saturate(1.08) contrast(1.02); }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 3, 7, 0.95) 0%, rgba(8, 3, 7, 0.78) 38%, rgba(8, 3, 7, 0.24) 62%, rgba(8, 3, 7, 0.08) 100%), linear-gradient(0deg, rgba(8, 3, 7, 0.48), transparent 42%); }
.hero-video-toggle { position: absolute; right: 18px; bottom: 18px; z-index: 2; display: inline-flex; min-height: 44px; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(255,255,255,0.32); border-radius: 999px; background: rgba(11,5,9,0.76); color: var(--ink); cursor: pointer; font-size: 13px; font-weight: 700; backdrop-filter: blur(8px); }
.hero-video-toggle:hover { background: rgba(11,5,9,0.94); }
.toggle-icon { width: 16px; height: 16px; flex: 0 0 16px; fill: currentColor; }
.toggle-icon[hidden] { display: none; }
.hero-copy { position: relative; z-index: 1; width: min(66%, 720px); max-width: 720px; padding: clamp(34px, 4vw, 48px); }
.hero h1 { max-width: 640px; margin-bottom: 14px; font-size: clamp(38px, 4.3vw, 58px); font-weight: 800; text-wrap: balance; }
.lead { max-width: 620px; margin: 0; color: #eadde2; font-size: clamp(16px, 1.7vw, 19px); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-facts span, .trust-row span { padding: 7px 11px; border: 1px solid rgba(255, 255, 255, 0.38); border-radius: 999px; background: #23131d; color: #fff7fa; font-size: 13px; font-weight: 650; }

.marquee { margin-top: 34px; overflow: hidden; border-block: 1px solid var(--line); padding: 16px 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 24px; width: max-content; white-space: nowrap; animation: scroll-x 28s linear infinite; font-family: Sora, sans-serif; font-size: clamp(19px, 3vw, 32px); font-weight: 750; }
.marquee-track span:nth-child(odd) { color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.marquee-track span:nth-child(even) { color: var(--muted-2); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

.park-intro { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: clamp(28px, 6vw, 70px); margin-bottom: 36px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.trust-row span { background: var(--grad-soft); color: var(--gold); }
.park-visual { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); box-shadow: var(--shadow); }
.park-visual img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.park-visual figcaption { padding: 14px 17px; color: var(--muted); font-size: 13px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.feature { position: relative; overflow: hidden; padding: 25px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); transition: transform 0.22s ease, border-color 0.22s ease; }
.feature::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.feature:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.feature:hover::before { transform: scaleX(1); }
.feature .num { display: block; margin-bottom: 12px; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; font-family: Sora, sans-serif; font-size: 29px; font-weight: 800; }
.feature h3 { margin-bottom: 8px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); font-size: 14.5px; }
.label-features { grid-template-columns: repeat(4, 1fr); }

.next-event-section { padding-block: clamp(24px, 3.5vw, 42px); }
.next-event-heading { max-width: 760px; margin-bottom: 14px; }
.next-event-heading h2 { font-size: clamp(28px, 4vw, 44px); }
.next-event-card { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); align-items: center; }
.next-event-media, .event-card-media { overflow: hidden; aspect-ratio: 16 / 9; background: #160a11; }
.next-event-media { width: 100%; min-height: 0; }
.next-event-media img, .event-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.next-event-body { display: flex; flex-direction: column; justify-content: center; }

.event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.event-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease; }
.event-card:hover { transform: translateY(-4px); border-color: rgba(255, 107, 155, 0.62); box-shadow: var(--shadow); }
.event-card-body { padding: 18px; }
.event-date { margin: 0 0 7px; color: var(--gold); font-size: 12px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.event-card h3 { margin-bottom: 7px; font-size: clamp(20px, 2vw, 24px); }
.event-card-body > p:not(.event-date) { margin: 0 0 10px; color: var(--muted); }
.event-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.event-meta span { padding: 5px 9px; border-radius: 999px; background: var(--grad-soft); color: #f6dfe8; font-size: 12px; font-weight: 650; }
.event-actions { display: grid; gap: 8px; }
.next-event-card .event-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.event-action { display: inline-flex; min-width: 0; min-height: 44px; align-items: center; justify-content: center; padding: 9px 11px; border: 1px solid transparent; border-radius: 11px; font-size: 12.5px; font-weight: 800; line-height: 1.25; text-align: center; text-decoration: none; overflow-wrap: anywhere; transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.event-action-rsvp { background: var(--grad); color: #19070e; }
.event-action-calendar { border-color: #35d0e3; background: rgba(53, 208, 227, 0.08); color: #a8f4ff; }
.event-action-details { border-color: rgba(255, 192, 120, 0.48); background: linear-gradient(135deg, rgba(255, 107, 155, 0.14), rgba(211, 107, 255, 0.12) 58%, rgba(255, 192, 120, 0.14)); color: var(--gold); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 10px 26px -20px rgba(255, 192, 120, 0.92); }
.event-action:hover { transform: translateY(-2px); filter: brightness(1.1); }
.event-action-details:hover { border-color: var(--amber); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 15px 32px -18px rgba(255, 107, 155, 0.78); }

.artist-section { padding-block: clamp(42px, 6vw, 76px); }
.artist-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.artist-card { display: flex; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); flex-direction: column; transition: transform 0.24s ease, border-color 0.24s ease; }
.artist-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.artist-media { overflow: hidden; aspect-ratio: 4 / 5; background: #160a11; }
.artist-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.artist-body { display: flex; flex: 1; min-width: 0; padding: 16px; flex-direction: column; }
.chip { align-self: flex-start; display: inline-block; max-width: 100%; margin-bottom: 9px; padding: 5px 9px; border: 1px solid rgba(255, 255, 255, 0.38); border-radius: 999px; background: #23131d; color: var(--gold); font-size: 10.5px; font-weight: 700; letter-spacing: 0.03em; overflow-wrap: anywhere; }
.artist-body h3 { margin-bottom: 6px; font-size: clamp(17px, 1.8vw, 21px); }
.artist-body p { margin: 0 0 9px; color: var(--muted); font-size: 13px; }
.artist-body .artist-disclosure { color: #a8f4ff; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.artist-cta { display: inline-flex; min-height: 44px; align-items: center; margin-top: auto; color: var(--gold); font-size: 13px; font-weight: 800; text-decoration: none; }
.artist-cta::after { content: " →"; }
.artist-channel-row { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 2px; padding-top: 12px; border-top: 1px solid var(--line); }
.artist-channel-link { display: inline-flex; min-height: 44px; align-items: center; color: #a8f4ff; font-size: 12px; font-weight: 800; text-decoration: none; }
.artist-channel-link:hover { color: var(--ink); }

.band-panel { display: grid; grid-template-columns: 1.05fr 0.95fr; overflow: hidden; margin-bottom: 28px; border: 1px solid var(--line); border-radius: 26px; background: var(--panel); }
.band-panel > img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.band-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 48px); }
.band-copy h3 { margin: 5px 0 13px; font-size: clamp(24px, 3vw, 33px); }
.band-copy p { margin: 0; color: var(--muted); }
.member-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 13px; }
.member { text-align: center; }
.member img { width: 100%; aspect-ratio: 2 / 3; border: 1px solid var(--line); border-radius: 15px; object-fit: cover; transition: transform 0.24s ease, border-color 0.24s ease; }
.member:hover img { transform: translateY(-5px); border-color: var(--rose); }
.member h3 { margin-top: 9px; font-size: 15px; }
.member p { margin: 2px 0 0; color: var(--muted-2); font-size: 12px; }

.event-detail-main { max-width: 1280px; min-height: 70vh; padding-block: clamp(28px, 5vw, 68px) clamp(58px, 8vw, 100px); }
.event-detail-breadcrumb { margin: 0 0 18px; }
.event-detail-breadcrumb a { display: inline-flex; min-height: 44px; align-items: center; color: var(--muted); font-size: 14px; font-weight: 700; text-decoration: none; }
.event-detail-breadcrumb a:hover { color: var(--gold); }
.event-detail-card { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr); overflow: hidden; border: 1px solid var(--line-strong); border-radius: 30px; background: linear-gradient(145deg, rgba(45, 19, 34, 0.96), rgba(15, 8, 15, 0.98)); box-shadow: var(--shadow); }
.event-detail-media { position: relative; min-height: 100%; overflow: hidden; background: #160a11; }
.event-detail-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, transparent 62%, rgba(13, 6, 11, 0.58)), linear-gradient(0deg, rgba(10, 4, 8, 0.34), transparent 42%); }
.event-detail-media img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; object-position: center; }
.event-detail-status { position: absolute; left: 22px; bottom: 22px; z-index: 1; padding: 8px 12px; border: 1px solid rgba(124, 242, 160, 0.48); border-radius: 999px; background: rgba(8, 18, 12, 0.84); color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; backdrop-filter: blur(10px); }
.event-detail-copy { display: flex; min-width: 0; padding: clamp(30px, 4.5vw, 58px); flex-direction: column; justify-content: center; }
.event-detail-eyebrow { margin: 0 0 13px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.event-detail-copy h1 { margin-bottom: 16px; font-size: clamp(35px, 4.4vw, 58px); overflow-wrap: anywhere; text-wrap: balance; }
.event-detail-lead { margin: 0; color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); }
.event-detail-disclosure { margin: 18px 0 4px; color: #a8f4ff; font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.event-detail-profile { margin: 0; }
.event-detail-profile a { display: inline-flex; min-height: 44px; align-items: center; color: var(--gold); font-size: 14px; font-weight: 800; text-decoration: none; }
.event-detail-profile a::after { content: " →"; }
.event-detail-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 26px 0; }
.event-detail-facts > div { min-width: 0; padding: 12px 13px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,0.045); }
.event-detail-facts .event-detail-location { grid-column: 1 / -1; }
.event-detail-facts dt { margin-bottom: 2px; color: var(--muted-2); font-size: 10px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.event-detail-facts dd { margin: 0; color: var(--ink); font-size: 14px; font-weight: 750; overflow-wrap: anywhere; }
.event-detail-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.event-detail-actions .button { width: 100%; min-height: 50px; padding-inline: 16px; white-space: nowrap; }
.event-detail-rsvp { box-shadow: 0 18px 40px -20px rgba(255, 107, 155, 0.85); }
.event-detail-calendar { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 14px; margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); }
.event-detail-calendar > span { color: var(--muted-2); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.event-detail-calendar-link { min-height: 44px; display: inline-flex; align-items: center; color: #a8f4ff; font-size: 13px; font-weight: 800; text-decoration: none; }
.event-detail-calendar-link:hover { color: var(--ink); }
.event-detail-footer { margin-top: 0; }

.artist-profile-main { min-height: 70vh; padding-block: clamp(42px, 7vw, 88px); }
.artist-profile-card { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--panel); box-shadow: var(--shadow); }
.artist-profile-media { min-height: 100%; background: #160a11; }
.artist-profile-image { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.artist-profile-copy { display: flex; min-width: 0; padding: clamp(28px, 5vw, 58px); flex-direction: column; justify-content: center; }
.artist-profile-disclosure { margin: 0 0 10px; color: #a8f4ff; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.artist-profile-copy h1 { margin-bottom: 16px; font-size: clamp(40px, 6vw, 72px); overflow-wrap: anywhere; }
.artist-profile-copy .chip { margin-bottom: 18px; }
.artist-profile-summary { max-width: 620px; margin: 0; color: var(--muted); font-size: clamp(17px, 2vw, 21px); }
.artist-profile-members, .artist-profile-socials, .artist-profile-actions { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.artist-profile-members h2, .artist-profile-socials h2, .artist-profile-actions h2 { margin-bottom: 13px; font-size: 19px; }
.artist-profile-social-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.artist-profile-social-links .button { width: 100%; min-height: 48px; }
.label-channels { justify-content: center; margin-top: 24px; }
.artist-profile-members ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.artist-profile-member { padding: 6px 10px; border-radius: 999px; background: var(--grad-soft); color: var(--gold); font-size: 13px; font-weight: 700; }
.artist-profile-actions p { margin: 10px 0 0; }
.artist-profile-actions .button { width: 100%; }
.artist-profile-footer { margin-top: 0; }

.contact-wrap { display: grid; grid-template-columns: 0.88fr 1.12fr; align-items: start; gap: clamp(30px, 6vw, 70px); }
.contact-points { display: grid; gap: 9px; margin: 23px 0 0; padding: 0; list-style: none; }
.contact-points li { position: relative; padding-left: 25px; color: var(--muted); }
.contact-points li::before { content: "♪"; position: absolute; left: 0; color: var(--rose); }
.contact-form { padding: clamp(23px, 4vw, 34px); border: 1px solid var(--line); border-radius: 25px; background: var(--panel); box-shadow: var(--shadow); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form label { display: block; margin-bottom: 14px; color: #e7d7dd; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 12px 13px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(0,0,0,0.31); color: var(--ink); font-size: 15px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 3px solid rgba(255, 107, 155, 0.27); border-color: var(--rose); }
.contact-form select option { background: var(--bg-2); }
.contact-form textarea { min-height: 128px; resize: vertical; }
.contact-form .button { width: 100%; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--gold); font-size: 14px; }

.footer { margin-top: 34px; padding: clamp(42px, 6vw, 64px) clamp(18px, 5vw, 40px) 28px; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 25px; max-width: var(--maxw); margin: 0 auto; }
.foot-logo { width: auto; height: 30px; margin-bottom: 11px; }
.foot-brand p { max-width: 390px; margin: 0; color: var(--muted-2); font-size: 14px; }
.social-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.social-row a { color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; }
.social-row a:hover { color: var(--ink); }
.foot-base { max-width: var(--maxw); margin: 28px auto 0; padding-top: 21px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 13px; text-align: center; }

.legal-page { max-width: 840px; min-height: 75vh; padding-top: clamp(56px, 8vw, 90px); padding-bottom: 90px; }
.legal-page h1 { margin-bottom: 30px; font-size: clamp(40px, 6vw, 64px); }
.legal-page h2 { margin: 38px 0 12px; font-size: clamp(22px, 3vw, 29px); }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page a { color: var(--gold); }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.65s cubic-bezier(.2,.7,.2,1), transform 0.65s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1040px) {
  .nav-links a { padding-inline: 7px; font-size: 13px; }
  .feature-grid, .label-features { grid-template-columns: repeat(2, 1fr); }
  .event-grid, .artist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .member-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-nav { display: block; }
  .site-nav { gap: 12px; padding-inline: clamp(18px, 5vw, 30px); }
  .brand { flex-basis: min(190px, 52vw); max-width: min(190px, 52vw); }
  .brand-logo { width: 100%; }
  .hero { min-height: 0; align-items: end; }
  .hero-copy { width: 100%; max-width: 100%; padding: 28px 24px 34px; }
  .hero-scrim { background: linear-gradient(0deg, rgba(8,3,7,0.94) 0%, rgba(8,3,7,0.6) 68%, rgba(8,3,7,0.35)); }
  .next-event-card, .park-intro, .band-panel, .contact-wrap { grid-template-columns: 1fr; }
  .artist-profile-card { grid-template-columns: 1fr; }
  .event-detail-card { grid-template-columns: 1fr; }
  .artist-profile-media { aspect-ratio: 4 / 3; }
  .event-detail-media { aspect-ratio: 16 / 9; }
  .event-detail-media img { min-height: 0; }
  .next-event-media { min-height: 0; aspect-ratio: 16 / 9; }
  .next-event-card .event-actions { grid-template-columns: 1fr; }
  .band-panel > img { min-height: 300px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .event-grid, .feature-grid, .label-features, .form-grid { grid-template-columns: 1fr; }
  .artist-grid, .member-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-nav summary { max-width: 100%; min-height: 44px; white-space: nowrap; }
  .mobile-nav-panel { max-width: calc(100vw - 36px); }
  .hero { width: 100%; max-width: 100%; min-height: 0; border-radius: 22px; }
  .hero-copy { padding: 18px 18px 78px; }
  .hero-video-toggle { right: auto; left: 18px; bottom: 18px; }
  .hero .eyebrow, .hero h1, .hero .lead { max-width: 100%; }
  .hero .eyebrow { margin-bottom: 10px; font-size: 10.5px; }
  .hero h1 { margin-bottom: 10px; font-size: clamp(32px, 9vw, 36px); line-height: 1.03; }
  .hero .lead { font-size: 15px; line-height: 1.45; }
  .hero-actions { min-width: 0; gap: 8px; margin-block: 12px; }
  .hero-actions .button { width: 100%; max-width: 100%; min-height: 44px; }
  .hero-facts { display: none; }
  .section { padding-block: 48px; }
  .next-event-section { padding-block: 14px 36px; }
  .next-event-heading { margin-bottom: 10px; }
  .next-event-heading .eyebrow { margin-bottom: 8px; }
  .next-event-heading h2 { font-size: clamp(24px, 7.6vw, 30px); }
  .event-card-body { padding: 16px; }
  .event-actions { grid-template-columns: 1fr; }
  .event-action { width: 100%; }
  .event-detail-main { padding-top: 20px; }
  .event-detail-card { border-radius: 20px; }
  .event-detail-copy { padding: 24px 18px 28px; }
  .event-detail-facts, .event-detail-actions { grid-template-columns: 1fr; }
  .event-detail-facts .event-detail-location { grid-column: auto; }
  .event-detail-calendar { align-items: flex-start; flex-direction: column; }
  .artist-grid { gap: 12px; }
  .artist-profile-social-links { grid-template-columns: 1fr; }
  .artist-body { padding: 12px; }
  .artist-body p:not(.artist-disclosure) { font-size: 12px; line-height: 1.45; }
  .artist-body h3 { font-size: clamp(15px, 4.6vw, 18px); overflow-wrap: anywhere; }
  .chip { font-size: 9.5px; }
  .artist-cta { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-video { display: none; }
  .hero-media { background-image: linear-gradient(0deg, rgba(8,3,7,0.88), rgba(8,3,7,0.25)), url('/assets/video/stay-in-the-hush-hero-poster.jpg'); }
  .hero-video-toggle { display: none; }
}

.hero-poster-only .hero-video { display: none; }
.hero-poster-only .hero-video-toggle { display: none; }
