/* ============================================================
   Vegas Show Bands — dark editorial
   ============================================================ */

:root {
  /* ink */
  --bg:           #0a0a0c;
  --bg-1:         #111114;
  --bg-2:         #16161a;
  --bg-3:         #1c1c21;
  --line:         #26262c;
  --line-2:       #33333a;

  /* paper */
  --ink:          #f5f1ea;   /* warm off-white */
  --ink-soft:     #c8c2b6;
  --ink-muted:    #8a8478;

  /* accents — rich crimson + deep oxblood */
  --red:          #d6324a;
  --red-soft:     #e95a72;
  --red-deep:     #8a1f30;
  --wine:         #5a141d;
  --wine-soft:    #7a2230;

  /* radii / motion */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;
  --ease: cubic-bezier(.2,.7,.2,1);

  /* type — Plus Jakarta Sans, single-family, Uber-style geometric grotesque */
  --display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --sans:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif:   "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif; /* legacy alias, points to same family */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--red); color: #fff5ec; }

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--red); color: #fff5ec;
  padding: 8px 14px; border-radius: var(--r-sm);
  z-index: 100; font-weight: 600;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
}

/* ---- shared atoms ---------------------------------------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease),
              background .2s var(--ease),
              color .2s var(--ease),
              border-color .2s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 15px 24px; font-size: 15px; }
.btn--red {
  background: var(--red);
  color: #fff5ec;
}
.btn--red:hover {
  background: var(--red-soft);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red-soft);
}

/* ---- NAV ------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,12,.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10,10,12,.85);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
}
.nav__mark {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(140deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff5ec;
  font-family: var(--display);
  font-weight: 800;
  font-style: normal;
  font-size: 13px;
  letter-spacing: -.02em;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav__phone span {
  color: var(--red);
  font-size: 8px;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .4; }
  50%      { opacity: 1; }
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-2);
  width: 40px; height: 40px;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav__toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

/* ---- HERO ----------------------------------------------- */

.hero {
  position: relative;
  padding: 96px 0 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 88px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.hero__eyebrow { justify-content: center; }

/* The brand cover is the centerpiece — large, framed, theatrical. */
.hero__poster {
  position: relative;
  margin: 14px auto 36px;
  width: min(960px, 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 30px 80px -30px rgba(214,50,74,.45),
    0 60px 120px -30px rgba(0,0,0,.7);
  transform: translateZ(0);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.hero__poster:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 40px 90px -30px rgba(214,50,74,.55),
    0 80px 140px -30px rgba(0,0,0,.8);
}
.hero__poster img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.05) contrast(1.02);
}

/* Subtle cinematic corner ticks, like a frame in a marquee */
.hero__poster-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(245,241,234,.55);
  pointer-events: none;
}
.hero__poster-corner--tl { top: 14px;    left: 14px;    border-right: 0; border-bottom: 0; }
.hero__poster-corner--tr { top: 14px;    right: 14px;   border-left: 0;  border-bottom: 0; }
.hero__poster-corner--bl { bottom: 14px; left: 14px;    border-right: 0; border-top: 0;    }
.hero__poster-corner--br { bottom: 14px; right: 14px;   border-left: 0;  border-top: 0;    }

.hero__tagline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 28px;
}
.hero__tagline em {
  font-style: normal;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

/* hero atmosphere */
.hero { background: var(--bg); }
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
  z-index: 1;
  pointer-events: none;
}
.hero__glow--a {
  width: 620px; height: 620px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(214,50,74,.35) 0%, rgba(214,50,74,0) 70%);
}
.hero__glow--b {
  width: 480px; height: 480px;
  bottom: -200px; left: -100px;
  background: radial-gradient(circle, rgba(138,31,48,.40) 0%, rgba(122,36,36,0) 70%);
}

.hero__ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker__track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-left: 32px;
}
.ticker__track span:nth-child(even) { color: var(--red); font-weight: 800; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- SECTION SHARED ------------------------------------- */

.section {
  padding: 120px 0;
  position: relative;
}
.section__head { max-width: 720px; margin: 0 0 64px; }
.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: none;
  margin-bottom: 56px;
}
.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 22px;
}
.section__title em {
  font-style: normal;
  font-weight: 800;
  color: var(--red);
}
.section__lede {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.section__lede--tight { max-width: 38ch; }

/* ---- ACTS ----------------------------------------------- */

.acts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.act {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-1);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.act:hover { border-color: var(--line-2); transform: translateY(-3px); }
.act > a, .act > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  color: inherit;
}
.act__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--bg) 100%);
}
.act__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) brightness(.82) contrast(1.03);
  transition: transform .6s var(--ease), filter .35s var(--ease);
}
.act:hover .act__photo {
  transform: scale(1.05);
  filter: saturate(1.15) brightness(.9) contrast(1.05);
}
.act__media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,12,0) 50%, rgba(10,10,12,.55) 100%);
}
.act__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 30px 30px;
  flex-grow: 1;
}
.act__body--cta {
  padding: 36px 30px;
  justify-content: center;
}
.act__tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-muted);
}
.act__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0;
}
.act__name em {
  font-style: normal;
  font-weight: 800;
  color: var(--red);
}
.act__copy {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
  flex-grow: 1;
}
.act__link {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: auto;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.act:hover .act__link {
  color: var(--red);
  transform: translateX(2px);
}

/* per-act flavor (a subtle hue accent on hover) */
.act::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--accent, transparent) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 1;
}
.act:hover::before { opacity: .18; }
.act--rock    { --accent: rgba(168, 56, 56, .9); }
.act--petty   { --accent: rgba(214,50,74,.9); }
.act--abba    { --accent: rgba(214,50,74,.9); }
.act--benatar { --accent: rgba(168, 56, 56, .9); }
.act--dance   { --accent: rgba(214,50,74,.9); }
.act--combo   { --accent: rgba(168, 56, 56, .9); }

/* ---- ON TOUR -------------------------------------------- */

.section--tour { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.events {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.event { display: block; }
.event__card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  color: inherit;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.event__card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}

/* media (top) */
.event__media {
  position: relative;
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.event__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(.78) contrast(1.02);
  transition: transform .6s var(--ease), filter .35s var(--ease);
}
.event__card:hover .event__photo {
  transform: scale(1.06);
  filter: saturate(1.15) brightness(.86) contrast(1.04);
}
.event__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.10) 30%, rgba(10,10,12,.85) 100%),
    linear-gradient(0deg, transparent 60%, rgba(10,10,12,.35) 100%);
  z-index: 1;
}

/* date badge over the image */
.event__date {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: rgba(10,10,12,.55);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(245,241,234,.12);
  border-radius: 14px;
  padding: 12px 16px;
  font-family: var(--serif);
}
.event__day {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
}
.event__monthyear {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-soft);
  font-family: var(--sans);
  font-weight: 600;
  margin-top: 6px;
}

/* small city pin */
.event__pin {
  position: absolute;
  right: 20px;
  top: 22px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(10,10,12,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,241,234,.12);
  border-radius: 999px;
  padding: 6px 12px;
}

/* body (bottom) */
.event__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 26px 26px;
  flex-grow: 1;
}
.event__act {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0;
}
.event__act em {
  font-style: normal;
  font-weight: 800;
  color: var(--red);
}
.event__venue {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink-soft);
  margin: 0;
}
.event__venue strong {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.event__venue small {
  color: var(--ink-muted);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.event__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--red-soft);
  align-self: flex-start;
  border-bottom: 1px solid rgba(214,50,74,.0);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .25s var(--ease);
}
.event__cta em {
  font-style: normal;
  transition: transform .2s var(--ease);
  display: inline-block;
}
.event__card:hover .event__cta {
  color: var(--red);
  border-color: rgba(214,50,74,.5);
}
.event__card:hover .event__cta em { transform: translateX(4px); }

.events__footer {
  margin: 36px 0 0;
  font-size: 14px;
  color: var(--ink-muted);
}
.events__footer a {
  color: var(--red);
  border-bottom: 1px solid rgba(214,50,74,.4);
  padding-bottom: 1px;
}

/* ---- ABOUT ---------------------------------------------- */

.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__copy p {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 56ch;
}
.about__copy p + p { margin-top: 18px; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.about__stats > div {
  background: var(--bg);
  padding: 32px 28px;
  text-align: left;
}
.about__stats span {
  display: block;
  font-family: var(--display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--red);
}
.about__stats p {
  margin: 12px 0 0;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-soft);
}

/* ---- FOLLOW --------------------------------------------- */

.section--follow {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.section--follow::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,50,74,.22) 0%, rgba(214,50,74,0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.section--follow .container { position: relative; z-index: 1; }

.follow__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* primary */
.follow__primary {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: inherit;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.follow__primary:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}
.follow__primary-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--bg) 100%);
}
.follow__primary-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) brightness(.82) contrast(1.03);
  transition: transform .6s var(--ease), filter .35s var(--ease);
}
.follow__primary:hover .follow__primary-media img {
  transform: scale(1.04);
  filter: saturate(1.15) brightness(.9) contrast(1.05);
}
.follow__poster-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(245,241,234,.6);
  pointer-events: none;
  z-index: 2;
}
.follow__poster-corner--tl { top: 14px;    left: 14px;    border-right: 0; border-bottom: 0; }
.follow__poster-corner--tr { top: 14px;    right: 14px;   border-left: 0;  border-bottom: 0; }
.follow__poster-corner--bl { bottom: 14px; left: 14px;    border-right: 0; border-top: 0;    }
.follow__poster-corner--br { bottom: 14px; right: 14px;   border-left: 0;  border-top: 0;    }
.follow__featured {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(10,10,12,.65);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(245,241,234,.14);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.follow__featured svg { color: var(--red-soft); }

.follow__primary-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 32px 32px;
  flex-grow: 1;
}
.follow__primary-head { display: flex; flex-direction: column; gap: 6px; }
.follow__handle {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}
.follow__name {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}
.follow__copy {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
  max-width: 46ch;
}
.follow__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--red-soft);
  border-bottom: 1px solid rgba(214,50,74,0);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .25s var(--ease);
}
.follow__cta em {
  font-style: normal;
  display: inline-block;
  transition: transform .2s var(--ease);
}
.follow__primary:hover .follow__cta,
.follow__card:hover .follow__cta {
  color: var(--red);
  border-color: rgba(214,50,74,.45);
}
.follow__primary:hover .follow__cta em,
.follow__card:hover .follow__cta em {
  transform: translateX(4px);
}

/* secondary list */
.follow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(0, 1fr);
  gap: 14px;
}
.follow__list > li:first-child,
.follow__list > li:nth-child(2) { grid-column: span 1; }
.follow__list > li:nth-child(n+3) { grid-column: span 2; }

.follow__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  color: inherit;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.follow__card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.follow__card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--wine) 0%, var(--bg) 100%);
}
.follow__card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(.74) contrast(1.03);
  transition: transform .6s var(--ease), filter .35s var(--ease);
}
.follow__card:hover .follow__card-media img {
  transform: scale(1.06);
  filter: saturate(1.15) brightness(.84);
}
.follow__platform {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10,10,12,.7);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(245,241,234,.14);
  color: var(--ink);
}
.follow__platform--ig { color: var(--red-soft); }
.follow__platform--fb { color: var(--ink); }

.follow__card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 20px;
  flex-grow: 1;
}
.follow__card-body .follow__handle {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.follow__card-body .follow__name {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.follow__card-body--full { padding: 18px 20px; }
.follow__cta--sm { font-size: 12.5px; margin-top: 8px; }

/* facebook-only mini cards (rows 3+): no image, denser */
.follow__card--fb .follow__card-body--full { background: var(--bg-1); }
.follow__card--fb:not(:has(.follow__card-media)) {
  border-color: var(--line-2);
}
.follow__card--fb:not(:has(.follow__card-media)) .follow__handle {
  font-size: 16px;
}

/* horizontal FB cards (wide rows): thumbnail left, text right */
.follow__card--row {
  flex-direction: row;
  align-items: stretch;
}
.follow__card-media--side {
  flex: 0 0 38%;
  aspect-ratio: auto;
  min-height: 100%;
  background: linear-gradient(135deg, var(--wine) 0%, var(--bg) 100%);
}
.follow__card--row .follow__card-body {
  padding: 22px 24px;
  justify-content: center;
}
@media (max-width: 720px) {
  .follow__card--row { flex-direction: column; }
  .follow__card-media--side {
    flex: 0 0 auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .follow__card--row .follow__card-body { padding: 18px 20px 20px; }
}

@media (max-width: 980px) {
  .follow__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .follow__list { grid-template-columns: 1fr; }
  .follow__list > li:first-child,
  .follow__list > li:nth-child(2),
  .follow__list > li:nth-child(n+3) { grid-column: span 1; }
  .follow__primary-body { padding: 24px 22px 26px; }
  .follow__handle { font-size: 22px; }
}

/* ---- CONTACT -------------------------------------------- */

.section--contact {
  background:
    radial-gradient(circle at 80% 0%, rgba(214,50,74,.09) 0%, transparent 50%),
    var(--bg);
  border-top: 1px solid var(--line);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
}
.contact__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.contact__list span {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact__list a {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.contact__list a[href]:hover { color: var(--red); }

/* form */
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact__full { grid-column: 1 / -1; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14.5px;
  letter-spacing: 0;
  text-transform: none;
  padding: 12px 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact__form textarea { resize: vertical; min-height: 100px; }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #0e0e11;
}

/* ---- FOOTER --------------------------------------------- */

.footer {
  padding: 48px 0 56px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-muted);
}
.footer__brand p { margin: 0; }
.footer__social {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  align-items: center;
  flex-wrap: wrap;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.footer__social a:hover {
  color: var(--ink);
  border-color: var(--red);
  background: rgba(214,50,74,.08);
}
.footer__social svg { color: var(--red-soft); }
.footer__legal { margin: 0; font-size: 12px; color: var(--ink-muted); }

/* ---- EXPERIENCE ----------------------------------------- */

.section__title--star {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35em;
}
.section__title-star {
  flex: 0 0 auto;
  width: .9em;
  height: .9em;
  color: var(--red);
  filter: drop-shadow(0 0 18px rgba(214,50,74,.45));
}

.section--experience {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(214,50,74,.07) 0%, transparent 45%),
    var(--bg);
}
.section--experience::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,50,74,.18) 0%, rgba(214,50,74,0) 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.section--experience .container { position: relative; z-index: 1; }

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature {
  position: relative;
  background: var(--bg-1);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s var(--ease);
}
.feature:hover { background: #14141a; }
.feature::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.feature:hover::after { transform: scaleX(1); }
.feature__num {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--red);
  text-transform: uppercase;
}
.feature__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}
.feature__title em {
  font-style: normal;
  font-weight: 800;
  color: var(--red);
}
.feature__copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 48ch;
}
.features__footer {
  margin: 32px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 68ch;
  font-style: italic;
}

@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
  .feature { padding: 32px 26px 28px; }
  .feature::after { left: 26px; right: 26px; }
}

/* ---- VENUES --------------------------------------------- */

.section--venues {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.section--venues::before {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,31,48,.28) 0%, rgba(138,31,48,0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.section--venues .container { position: relative; z-index: 1; }

.venues {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.venue {
  position: relative;
  grid-column: span 2;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.venue:nth-child(4),
.venue:nth-child(5) { grid-column: span 3; }
.venue:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}
.venue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(214,50,74,.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.venue:hover::before { opacity: .14; }
.venue > * { position: relative; z-index: 1; }
.venue__index {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-muted);
}
.venue__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--ink);
}
.venue__title em {
  font-style: normal;
  font-weight: 800;
  color: var(--red);
}
.venue__copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .venues { grid-template-columns: repeat(2, 1fr); }
  .venue,
  .venue:nth-child(4),
  .venue:nth-child(5) { grid-column: span 1; }
  .venue:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 620px) {
  .venues { grid-template-columns: 1fr; }
  .venue,
  .venue:nth-child(4),
  .venue:nth-child(5) { grid-column: span 1; }
  .venue { padding: 28px 24px; }
}

/* ---- SCROLL REVEAL -------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ----------------------------------------- */

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .nav__brand { white-space: nowrap; }
  .section__head--row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .section__head--row .section__lede { max-width: 60ch; }

  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
    padding: 24px;
    gap: 4px;
  }
  .nav.is-open .nav__links a { padding: 12px 0; font-size: 16px; }

  .hero { padding-top: 80px; }
  .hero__inner { padding-bottom: 80px; }

  .acts { grid-template-columns: 1fr 1fr; }
  .events { grid-template-columns: 1fr 1fr; }

  .section { padding: 80px 0; }

  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  .hero__poster { margin-bottom: 28px; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 32px); }
  .acts { grid-template-columns: 1fr; }
  .hero__poster { width: 100%; }
  .hero__poster-corner { width: 16px; height: 16px; top: 8px !important; left: 8px; }
  .hero__poster-corner--tr { right: 8px; left: auto; }
  .hero__poster-corner--bl { bottom: 8px; top: auto !important; }
  .hero__poster-corner--br { bottom: 8px; right: 8px; top: auto !important; left: auto; }
  .section__title { font-size: clamp(30px, 9vw, 48px); }
  .contact__form { grid-template-columns: 1fr; padding: 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }

  /* Tight nav on phones: just the mark + book CTA */
  .nav__word { display: none; }
  .nav__brand { gap: 0; }
  .nav__cta .btn { padding: 9px 14px; font-size: 13px; }

  .events { grid-template-columns: 1fr; }
  .event__media { aspect-ratio: 16 / 10; }
  .event__body { padding: 20px 22px 22px; }
  .event__act { font-size: 26px; }

  .contact__list a { font-size: 18px; }
}

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