/* ==========================================================================
   Live Near Me — main.css
   Dark, energetic events brand · video hero · mobile-first · conversion-led.
   Design system is driven entirely by the custom properties below.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --color-bg:          #0a0a0f;
  --color-surface:     #12121b;
  --color-surface-2:   #1a1a27;
  --color-surface-3:   #23233420;
  --color-border:      #2a2a3d;
  --color-border-soft: #ffffff14;

  --color-text:        #f4f4fb;
  --color-text-muted:  #a6a6c2;
  --color-text-dim:    #6f6f8c;

  --color-accent:      #ff2d78;
  --color-accent-2:    #a855f7;
  --color-accent-3:    #22d3ee;
  --color-accent-ink:  #0a0a0f;

  --grad-brand:      linear-gradient(115deg, #a855f7 0%, #ff2d78 55%, #ff7a3d 100%);
  --grad-brand-soft: linear-gradient(115deg, #a855f733, #ff2d7833);

  --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fs-hero:  clamp(2.7rem, 6.5vw, 5.25rem);
  --fs-h2:    clamp(1.7rem, 3.5vw, 2.6rem);
  --fs-h3:    clamp(1.15rem, 2vw, 1.4rem);
  --fs-small: 0.875rem;

  --container:   1200px;
  --gutter:      clamp(1.15rem, 4vw, 2.5rem);
  --radius:      18px;
  --radius-sm:   12px;
  --radius-pill: 999px;

  --shadow-card: 0 18px 40px -24px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 10px 45px -12px rgba(255, 45, 120, 0.5);
  --transition:  200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; }
:focus-visible { outline: 2px solid var(--color-accent-3); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-small);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--grad-brand); color: var(--color-accent-ink); box-shadow: var(--shadow-glow); }
.btn--ghost { background: transparent; border-color: var(--color-border); color: var(--color-text); }
.btn--ghost:hover { border-color: var(--color-accent-2); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }

/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.site-header.is-scrolled {
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--color-border-soft);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand__pin { display: inline-flex; filter: drop-shadow(0 4px 10px rgba(168, 85, 247, 0.5)); }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.site-nav > a { font-size: var(--fs-small); font-weight: 600; color: var(--color-text-muted); transition: color var(--transition); }
.site-nav > a:hover { color: var(--color-text); }
.site-nav__cta {
  padding: 0.55rem 1.1rem; border-radius: var(--radius-pill);
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  color: var(--color-text) !important;
}
.site-nav__cta:hover { border-color: var(--color-accent-2); }
@media (max-width: 680px) { .site-nav > a:not(.site-nav__cta) { display: none; } }

/* --------------------------------------------------------------------------
   5. HERO — video background
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; background: #000; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  /* Tone the footage/poster down so foreground text always wins the contrast */
  filter: brightness(0.62) saturate(1.05);
  /* Slow Ken-Burns drift so the hero feels alive even before the video loads */
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}
/* Scrim: heavy dark on the LEFT (where the left-aligned copy sits), fading
   right; darkened top/bottom for the header + search; colour accent kept to
   the far-right edge only so it never washes over the text. */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,8,12,0.94) 0%, rgba(8,8,12,0.78) 42%, rgba(8,8,12,0.45) 78%, rgba(8,8,12,0.35) 100%),
    linear-gradient(180deg, rgba(8,8,12,0.65) 0%, rgba(8,8,12,0.2) 38%, rgba(8,8,12,0.85) 100%),
    radial-gradient(55% 55% at 88% 22%, rgba(168,85,247,0.28), transparent 60%);
}

.hero__content { position: relative; max-width: 820px; }
.hero__eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--color-accent-3);
  padding: 0.4rem 0.9rem; margin-bottom: 1.35rem;
  background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: var(--radius-pill);
}
.hero__title { font-size: var(--fs-hero); font-weight: 800; margin-bottom: 1.25rem; text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.hero__title-accent { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__subtitle { font-size: clamp(1rem, 1.5vw, 1.25rem); color: #d7d7ea; max-width: 60ch; margin-bottom: 2.2rem; }

/* Search — dominant centrepiece */
.search { max-width: 720px; }
.search__field {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.55rem 0.55rem 1.2rem;
  background: rgba(18, 18, 27, 0.72); backdrop-filter: blur(12px);
  border: 1px solid var(--color-border); border-radius: var(--radius-pill);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search__field:focus-within { border-color: var(--color-accent-2); box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.22), 0 20px 50px -20px rgba(0,0,0,0.8); }
.search__icon { color: var(--color-text-dim); flex-shrink: 0; }
.search__input {
  flex: 1; min-width: 0; padding: 0.8rem 0.25rem; border: 0; background: transparent;
  color: var(--color-text); font-family: var(--font-body); font-size: 1.1rem;
}
.search__input::placeholder { color: var(--color-text-dim); }
.search__input:focus-visible { outline: none; }
.search__btn {
  flex-shrink: 0; padding: 0.85rem 1.8rem; border: 0; border-radius: var(--radius-pill);
  background: var(--grad-brand); color: var(--color-accent-ink);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  box-shadow: var(--shadow-glow); transition: transform var(--transition);
}
.search__btn:hover { transform: translateY(-1px); }

.search__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.chip {
  padding: 0.4rem 0.95rem; border-radius: var(--radius-pill);
  border: 1px solid var(--color-border); background: rgba(26, 26, 39, 0.7);
  color: var(--color-text-muted); font-size: var(--fs-small); font-weight: 600;
  transition: all var(--transition);
}
.chip:hover { color: var(--color-text); border-color: var(--color-accent-2); }
.chip.is-active { background: var(--grad-brand-soft); border-color: var(--color-accent-2); color: var(--color-text); }

/* Hero stats */
.hero__stats { list-style: none; padding: 0; margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 2.75rem); }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; line-height: 1; }
.hero__stats span { color: var(--color-text-muted); font-size: var(--fs-small); margin-top: 0.25rem; }

/* Scroll cue */
.hero__scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--color-border-soft); border-radius: var(--radius-pill); display: grid; place-items: start center; padding-top: 7px; }
.hero__scroll span { width: 4px; height: 8px; border-radius: 2px; background: var(--color-text-muted); animation: scrollCue 1.6s ease-in-out infinite; }
@keyframes scrollCue { 0%, 100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(6px); } }
@media (max-width: 680px) { .hero__scroll { display: none; } }

/* --------------------------------------------------------------------------
   6. Section scaffolding
   -------------------------------------------------------------------------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--muted { background: var(--color-surface); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.section__head--center { justify-content: center; text-align: center; }
.section__title { font-size: var(--fs-h2); font-weight: 800; }
.section__subtitle { color: var(--color-text-muted); margin-top: 0.5rem; }
.section__link { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-small); color: var(--color-accent-3); white-space: nowrap; transition: opacity var(--transition); }
.section__link:hover { opacity: 0.75; }

/* --------------------------------------------------------------------------
   7. Events grid + cards
   -------------------------------------------------------------------------- */
.events__status { color: var(--color-text-dim); font-size: var(--fs-small); margin-bottom: 1.25rem; min-height: 1.2em; }
.events-grid, .artist-grid, .category-grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.events-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }

.event-card {
  display: flex; flex-direction: column;
  background: var(--color-surface-2); border: 1px solid var(--color-border-soft);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition);
}
.event-card:hover { transform: translateY(-5px); border-color: var(--color-accent-2); }

.event-card__media { display: block; position: relative; aspect-ratio: 16 / 10; background: var(--grad-brand-soft); overflow: hidden; }
.event-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.event-card:hover .event-card__img { transform: scale(1.05); }

.event-card__cat {
  position: absolute; top: 0.85rem; left: 0.85rem;
  padding: 0.3rem 0.75rem; border-radius: var(--radius-pill);
  background: rgba(10, 10, 15, 0.72); backdrop-filter: blur(6px);
  border: 1px solid var(--color-border-soft);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.event-card__flag {
  position: absolute; bottom: 0.85rem; left: 0.85rem;
  padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
  background: var(--grad-brand); color: var(--color-accent-ink);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase;
  box-shadow: var(--shadow-glow);
}
.event-card__date {
  position: absolute; top: 0.85rem; right: 0.85rem;
  display: grid; place-items: center; width: 52px; padding: 0.4rem 0;
  border-radius: var(--radius-sm); background: rgba(10, 10, 15, 0.82); backdrop-filter: blur(6px);
  border: 1px solid var(--color-border-soft); text-align: center; line-height: 1;
}
.event-card__date .day { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
.event-card__date .mon { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent); font-weight: 700; }

.event-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.15rem 1.25rem 1.35rem; }
.event-card__title { font-size: var(--fs-h3); font-weight: 700; margin-bottom: 0.15rem; }
.event-card__title a { color: inherit; transition: color var(--transition); }
.event-card__title a:hover { color: var(--color-accent-3); }
.event-card__artist { color: var(--color-accent-3); font-weight: 600; font-size: var(--fs-small); margin-bottom: 0.9rem; }
.event-card__meta { display: grid; gap: 0.4rem; margin-bottom: 1.15rem; color: var(--color-text-muted); font-size: var(--fs-small); }
.event-card__meta-row { display: flex; align-items: center; gap: 0.5rem; }
.event-card__meta-row svg { flex-shrink: 0; color: var(--color-text-dim); }
.event-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; }
.event-card__price { font-family: var(--font-display); font-weight: 700; }
.event-card__price small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.72rem; color: var(--color-text-dim); }

/* --------------------------------------------------------------------------
   8. Category tiles
   -------------------------------------------------------------------------- */
.category-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr)); }
.category-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 150px; padding: 1.2rem; border-radius: var(--radius);
  border: 1px solid var(--color-border-soft); background: var(--color-surface-2);
  overflow: hidden; text-align: left; color: var(--color-text);
  transition: transform var(--transition), border-color var(--transition);
}
.category-card::before { content: ""; position: absolute; inset: 0; background: var(--cat-grad, var(--grad-brand-soft)); opacity: 0.22; transition: opacity var(--transition); }
.category-card > * { position: relative; z-index: 1; }
.category-card:hover { transform: translateY(-4px); border-color: var(--color-accent-2); }
.category-card:hover::before { opacity: 0.42; }
.category-card__icon { font-size: 1.7rem; margin-bottom: auto; }
.category-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.category-card__count { font-size: var(--fs-small); color: var(--color-text-muted); }

/* --------------------------------------------------------------------------
   9. Artist cards
   -------------------------------------------------------------------------- */
.artist-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr)); }
.artist-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.5rem 1.25rem; background: var(--color-surface-2);
  border: 1px solid var(--color-border-soft); border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
}
.artist-card:hover { transform: translateY(-4px); border-color: var(--color-accent-2); }
.artist-card__avatar {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem;
  border: 2px solid var(--color-accent-2); box-shadow: 0 8px 24px -10px rgba(168, 85, 247, 0.7);
}
.artist-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.artist-card__genre { color: var(--color-text-muted); font-size: var(--fs-small); margin-bottom: 0.9rem; }
.artist-card__link { font-size: var(--fs-small); font-weight: 600; color: var(--color-accent-3); }
.artist-card__link:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   10. How it works
   -------------------------------------------------------------------------- */
.how-grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); max-width: 900px; margin-inline: auto; }
.how-card { padding: 1.75rem; border-radius: var(--radius); border: 1px solid var(--color-border); background: var(--color-surface-2); }
.how-card--accent { background: linear-gradient(160deg, var(--color-surface-2), rgba(168, 85, 247, 0.12)); border-color: var(--color-accent-2); }
.how-card__tag {
  display: inline-block; padding: 0.3rem 0.85rem; border-radius: var(--radius-pill);
  background: var(--grad-brand-soft); border: 1px solid var(--color-border-soft);
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.how-steps { list-style: none; padding: 0; display: grid; gap: 1rem; counter-reset: step; }
.how-steps li { position: relative; padding-left: 2.75rem; color: var(--color-text-muted); }
.how-steps li strong { color: var(--color-text); }
.how-steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -0.1rem; display: grid; place-items: center;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: var(--grad-brand); color: var(--color-accent-ink);
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
}
.how-card__cta { margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   11. Conversion CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--grad-brand); }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem); flex-wrap: wrap;
}
.cta-band__title { font-size: var(--fs-h2); font-weight: 800; color: #12061a; }
.cta-band__subtitle { color: #2a0d20; opacity: 0.85; margin-top: 0.5rem; max-width: 46ch; font-weight: 500; }
.cta-band .btn--primary { background: #0a0a0f; color: var(--color-text); box-shadow: 0 12px 30px -12px rgba(0,0,0,0.6); }

/* --------------------------------------------------------------------------
   12. Empty state
   -------------------------------------------------------------------------- */
.events-empty { text-align: center; padding: 3rem 1rem; color: var(--color-text-muted); display: grid; gap: 1rem; place-items: center; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--color-surface); border-top: 1px solid var(--color-border-soft); padding-top: clamp(2.5rem, 5vw, 4rem); }
.site-footer__inner { display: grid; gap: 2rem; grid-template-columns: 1.6fr repeat(3, 1fr); padding-bottom: 2.5rem; }
.site-footer__tagline { color: var(--color-text-muted); font-size: var(--fs-small); margin: 0.6rem 0 1.1rem; max-width: 26ch; }
.site-footer__col h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-dim); margin-bottom: 1rem; }
.site-footer__col a { display: block; color: var(--color-text-muted); font-size: var(--fs-small); padding: 0.3rem 0; transition: color var(--transition); }
.site-footer__col a:hover { color: var(--color-text); }
.social { display: flex; gap: 0.6rem; }
.social__link {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  color: var(--color-text-muted); transition: all var(--transition);
}
.social__link:hover { color: var(--color-text); border-color: var(--color-accent-2); transform: translateY(-2px); }
.site-footer__base {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem var(--gutter); border-top: 1px solid var(--color-border-soft);
  color: var(--color-text-dim); font-size: var(--fs-small); flex-wrap: wrap;
}
.site-footer__legal { display: flex; gap: 1.25rem; }
.site-footer__legal a:hover { color: var(--color-text); }
@media (max-width: 860px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } .site-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .site-footer__inner { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   14. Event detail page
   -------------------------------------------------------------------------- */
.event-page { padding-top: 70px; }              /* clear the fixed header */

.event-hero { position: relative; min-height: 46vh; display: flex; align-items: flex-end; padding: 3rem 0 2.5rem; overflow: hidden; isolation: isolate; }
.event-hero__media { position: absolute; inset: 0; z-index: -2; background: #000; }
.event-hero__img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.event-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,8,12,0.92) 0%, rgba(8,8,12,0.7) 45%, rgba(8,8,12,0.4) 100%),
    linear-gradient(180deg, rgba(8,8,12,0.3) 0%, rgba(8,8,12,0.75) 100%);
}
.event-hero__content { position: relative; max-width: 780px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: var(--fs-small); color: var(--color-text-dim); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--color-text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-text); }
.breadcrumb span[aria-current] { color: var(--color-text-muted); }
.event-hero__cat {
  display: inline-block; padding: 0.3rem 0.85rem; margin-bottom: 1rem;
  border-radius: var(--radius-pill); background: var(--grad-brand); color: var(--color-accent-ink);
  font-family: var(--font-display); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.event-hero__title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; margin-bottom: 0.5rem; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.event-hero__artist { font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--color-accent-3); font-weight: 600; margin-bottom: 1.5rem; }
.event-hero__facts { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.75rem 1.75rem; }
.event-hero__facts li { display: flex; align-items: center; gap: 0.5rem; color: #d7d7ea; font-size: var(--fs-small); }
.event-hero__facts svg { color: var(--color-accent-2); }

/* Two-column body: content + sticky ticket card */
.event-layout { display: grid; grid-template-columns: 1fr 360px; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.event-main { min-width: 0; }
.event-h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.event-main .event-h2:first-child { margin-top: 0; }
.prose { color: var(--color-text-muted); max-width: 62ch; line-height: 1.75; }
.prose strong { color: var(--color-text); }
.event-maplink { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.75rem; color: var(--color-accent-3); font-size: var(--fs-small); font-weight: 600; }
.event-maplink:hover { text-decoration: underline; }
.event-facts-list { list-style: none; padding: 0; display: grid; gap: 0; max-width: 62ch; }
.event-facts-list li { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 0; border-bottom: 1px solid var(--color-border-soft); }
.event-facts-list li:last-child { border-bottom: 0; }
.event-facts-list span { color: var(--color-text-dim); font-size: var(--fs-small); }
.event-facts-list strong { font-family: var(--font-display); font-weight: 700; }

/* Sticky ticket / conversion card */
.ticket-card {
  position: sticky; top: 90px; align-self: start;
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-card);
}
.ticket-card__flag {
  display: inline-block; margin-bottom: 1rem; padding: 0.35rem 0.8rem; border-radius: var(--radius-pill);
  background: rgba(255, 45, 120, 0.14); border: 1px solid rgba(255, 45, 120, 0.4);
  color: #ff9db6; font-weight: 700; font-size: 0.75rem;
}
.ticket-card__price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.25rem; }
.ticket-card__price span { color: var(--color-text-dim); font-size: var(--fs-small); }
.ticket-card__price strong { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; }
.ticket-card__meta { list-style: none; padding: 0; display: grid; gap: 0.7rem; margin-bottom: 1.5rem; }
.ticket-card__meta li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--color-text-muted); font-size: var(--fs-small); }
.ticket-card__meta svg { color: var(--color-accent-2); margin-top: 2px; flex-shrink: 0; }
.ticket-card__cta { width: 100%; }
.ticket-card__note { text-align: center; margin-top: 0.9rem; color: var(--color-text-dim); font-size: 0.78rem; }

@media (max-width: 820px) {
  .event-layout { grid-template-columns: 1fr; }
  .ticket-card { position: static; order: -1; }   /* ticket card first on mobile */
}

/* Event body: highlights tiles + panels + artist strip */
.event-highlights {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
}
.event-highlights li {
  background: var(--color-surface-2); border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm); padding: 0.95rem 1rem; display: flex; flex-direction: column; gap: 0.3rem;
}
.event-highlights__icon { color: var(--color-accent-2); }
.event-highlights__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-dim); }
.event-highlights__value { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
@media (max-width: 560px) { .event-highlights { grid-template-columns: repeat(2, 1fr); } }

.event-panel {
  background: var(--color-surface-2); border: 1px solid var(--color-border-soft);
  border-radius: var(--radius); padding: 1.5rem 1.6rem; margin-bottom: 1.25rem;
}
.event-panel:last-child { margin-bottom: 0; }
.event-panel__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.85rem; display: flex; align-items: center; gap: 0.5rem; }
.event-panel__title svg { color: var(--color-accent-2); }
.event-panel .prose { max-width: none; margin: 0; }

.event-venue__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.event-venue__addr { color: var(--color-text-muted); margin-top: 0.2rem; }
.event-venue__map { margin-top: 1.1rem; }

.event-artist { display: flex; align-items: center; gap: 1.1rem; }
.event-artist__avatar { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-accent-2); flex-shrink: 0; }
.event-artist__info { flex: 1; min-width: 0; }
.event-artist__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-dim); }
.event-artist__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-top: 0.1rem; }
.event-artist__genre { color: var(--color-text-muted); font-size: var(--fs-small); margin-top: 0.1rem; }
.event-artist__cta { flex-shrink: 0; }
@media (max-width: 520px) { .event-artist { flex-wrap: wrap; } .event-artist__cta { width: 100%; } }

.btn--sm { padding: 0.55rem 1.15rem; font-size: 0.8rem; }

/* --------------------------------------------------------------------------
   15. Artist detail page
   -------------------------------------------------------------------------- */
.artist-page { padding-top: 70px; }
.artist-hero { position: relative; overflow: hidden; isolation: isolate; padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.artist-hero__bg {
  position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center;
  filter: blur(34px) brightness(0.4) saturate(1.2); transform: scale(1.25);
}
.artist-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,10,15,0.55), rgba(10,10,15,0.9)); }
.artist-hero__inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 2.75rem); align-items: center; }
.artist-hero__photo {
  width: clamp(140px, 24vw, 210px); aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--color-border-soft); box-shadow: var(--shadow-card);
}
.artist-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.artist-hero__intro { min-width: 0; }
.artist-hero__genre {
  display: inline-block; padding: 0.3rem 0.85rem; margin-bottom: 0.9rem; border-radius: var(--radius-pill);
  background: var(--grad-brand); color: var(--color-accent-ink);
  font-family: var(--font-display); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.artist-hero__name { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; margin-bottom: 0.5rem; text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.artist-hero__meta { color: var(--color-text-muted); font-size: var(--fs-small); display: flex; align-items: center; gap: 0.4rem; margin-bottom: 1.1rem; }
.artist-hero__meta svg { color: var(--color-accent-2); }
.artist-hero__meta strong { color: var(--color-text); }
.artist-hero__bio { color: #d7d7ea; max-width: 62ch; line-height: 1.75; margin-bottom: 1.5rem; }
.artist-hero__actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.artist-hero__social { gap: 0.6rem; }
@media (max-width: 640px) { .artist-hero__inner { grid-template-columns: 1fr; } }

/* Homepage artist card — now links to the artist page */
.artist-card__avatarlink { display: inline-block; border-radius: 50%; line-height: 0; }
.artist-card__name a { color: inherit; transition: color var(--transition); }
.artist-card__name a:hover { color: var(--color-accent-3); }

/* --------------------------------------------------------------------------
   16. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero__video { animation: none; }
}
