/* Sean Griffiths — concert-energy portfolio */
:root {
  --bg: #0A0A0A;
  --bg-elevated: #141414;
  --bg-card: #161616;
  --text: #F5F0E8;
  --text-muted: #B8B0A0;
  --accent: #FF2D95;
  --cyan: #00F0FF;
  --cyan-hot: #5CFFFF;
  --purple: #B24BF3;
  --accent-hot: #FF6BB5;
  --accent-dim: rgba(255, 45, 149, 0.15);
  --border: rgba(245, 240, 232, 0.08);
  --max: 1100px;
  --radius: 6px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hot); }

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Brand mark — large left headshot (replaces SG logo) */
.header-brand {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 0 14px rgba(255, 45, 149, 0.5), 0 0 22px rgba(0, 240, 255, 0.22);
  display: block;
  line-height: 0;
  margin: -0.15rem 0.15rem -0.15rem -0.15rem;
}
.header-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.header-brand:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.55), 0 0 24px rgba(255, 45, 149, 0.35);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

/* —— Layout —— */
main { flex: 1; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.muted { color: var(--text-muted); }

/* —— Hero —— */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}

.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px rgba(255,45,149,0.25), 0 18px 40px rgba(0,0,0,0.45);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  image-rendering: auto;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 28px rgba(0,0,0,0.22);
  pointer-events: none;
}

.bio-line {
  font-size: 0.92rem;
  color: var(--text-muted);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin: 1.25rem 0 1.75rem;
  max-width: 36rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--accent);
  color: #0A0A0A;
}
.btn-primary:hover {
  background: var(--accent-hot);
  color: #0A0A0A;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* —— Proof stills —— */
.proof {
  margin-top: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}

.proof-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 4 / 3;
}
.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.proof-card:hover img { transform: scale(1.04); }
.proof-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

/* —— Event cards —— */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.event-card:hover { border-color: rgba(255, 45, 149, 0.45); }

.event-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elevated);
}
.event-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card .body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
}
.event-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.event-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.event-card.no-thumb .body { padding-top: 1.35rem; }

/* —— Capabilities —— */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 720px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
}

.cap-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
  border-top: 3px solid var(--accent);
}
.cap-block ul {
  list-style: none;
  margin-top: 0.75rem;
}
.cap-block li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.cap-block li:last-child { border-bottom: none; }
.cap-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 1px;
}

.note-box {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 45, 149, 0.3);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* —— Contact —— */
.contact-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  max-width: 520px;
  margin-top: 1.25rem;
}

.contact-list {
  list-style: none;
  margin: 1.25rem 0;
}
.contact-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-list a,
.contact-list .value {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}
.contact-list a:hover { color: var(--accent); }

.contact-cta {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.5rem;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.site-footer strong { color: var(--text); font-weight: 700; }

/* Full-bleed accent strip */
.bleed-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
}


/* Vaporwave headings + header banner */
h1 {
  color: var(--cyan) !important;
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.35);
}
h2 {
  color: var(--cyan-hot) !important;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
}
.site-header {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.82) 70%, rgba(10,10,10,0.95) 100%),
    url("images/edm-festival-banner.png") center/cover no-repeat;
  border-bottom: 1px solid rgba(0, 240, 255, 0.25);
  min-height: 120px;
}
.site-header .nav-inner {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  align-items: center;
  min-height: 68px;
}
.bleed-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--accent), var(--purple), var(--cyan));
}
.section-label { color: var(--accent) !important; }
.btn-primary {
  background: var(--accent) !important;
  color: #0A0A0A !important;
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.35);
}
.btn-primary:hover { background: var(--cyan) !important; color: #0A0A0A !important; }
a { color: var(--cyan); }
a:hover { color: var(--accent); }


/* Header LinkedIn — left, next to logo */
.header-linkedin,
.header-social {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 240, 255, 0.45);
  padding-bottom: 1px;
  white-space: nowrap;
}
.header-linkedin:hover,
.header-social:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


/* Rates table */
.rates-wrap {
  margin: 1.5rem 0 1.25rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}
.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.rates-table th,
.rates-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.rates-table th {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}
.rates-table td:last-child {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  text-align: right;
}
.rates-table th:last-child { text-align: right; }
.rates-table tbody tr:last-child td { border-bottom: none; }
.rates-table tbody tr:hover td { background: rgba(0, 240, 255, 0.04); }
.rates-disclaimer {
  margin-top: 1.25rem;
  max-width: 46rem;
  line-height: 1.55;
}

.rates-negotiable {
  margin: 0.75rem 0 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--accent);
}


/* —— Calendar booking —— */
.calendar-panel {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 34rem;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.cal-month {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
}
.cal-nav {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--cyan);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.cal-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.25rem 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}
.cal-day {
  position: relative;
  aspect-ratio: 1;
  min-height: 2.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font: inherit;
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  cursor: default;
}
.cal-day.empty {
  visibility: hidden;
  border: none;
  background: transparent;
}
.cal-day-num {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
}
.cal-day-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cal-day.past {
  opacity: 0.38;
  color: var(--text-muted);
  pointer-events: none;
}
.cal-day.booked {
  background: #1a1a1a;
  border-color: rgba(245, 240, 232, 0.06);
  color: #6a655c;
  cursor: not-allowed;
}
.cal-day.booked .cal-day-tag { color: #6a655c; }
.cal-day.open {
  cursor: pointer;
  border-color: rgba(0, 240, 255, 0.28);
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}
.cal-day.open:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 14px rgba(255, 45, 149, 0.25);
}
.cal-day.open.selected,
.cal-day.selected {
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.12);
  color: var(--cyan-hot);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.3);
}
.cal-day.today .cal-day-num {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cal-legend .swatch {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 2px;
  border: 1px solid var(--border);
}
.cal-legend .swatch.open {
  border-color: rgba(0, 240, 255, 0.5);
  background: rgba(0, 240, 255, 0.15);
}
.cal-legend .swatch.booked {
  background: #1a1a1a;
  border-color: rgba(245, 240, 232, 0.12);
}
.cal-legend .swatch.past {
  opacity: 0.4;
  background: var(--bg-card);
}

.cal-success {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 240, 255, 0.45);
  background: rgba(0, 240, 255, 0.08);
  color: var(--text);
  max-width: 34rem;
}
.cal-success strong { color: var(--cyan); }

/* —— Request form —— */
.request-form-wrap {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 34rem;
}
.request-heading {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.35rem;
  color: var(--cyan);
}
.request-lead {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}
.request-form .form-row {
  margin-bottom: 1rem;
}
.request-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}
.request-form .req { color: var(--accent); }
.request-form .optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--text-muted);
}
.request-form input[type="text"],
.request-form input[type="email"],
.request-form input[type="tel"],
.request-form input[type="time"],
.request-form select,
.request-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
}
.request-form input[readonly] {
  color: var(--cyan-hot);
  border-color: rgba(0, 240, 255, 0.35);
  background: rgba(0, 240, 255, 0.06);
  cursor: default;
}
.request-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
    linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) 50%, calc(100% - 0.75rem) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}
.request-form select option {
  background: #141414;
  color: var(--text);
}
.request-form textarea { resize: vertical; min-height: 5.5rem; }
.request-form .two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) {
  .request-form .two-col { grid-template-columns: 1fr 1fr; }
}
.request-form .form-promise {
  margin: 1.25rem 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-dim);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}
.request-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.request-form .cta-row { margin-top: 0.25rem; }
.request-form button.btn-primary {
  border: 2px solid transparent;
  cursor: pointer;
}


/* Header BOOK ME NOW — pops */
.header-book {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0A0A0A !important;
  background: var(--accent);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 45, 149, 0.35), 0 0 18px rgba(255, 45, 149, 0.55), 0 0 36px rgba(0, 240, 255, 0.2);
  animation: book-pulse 2.4s ease-in-out infinite;
  white-space: nowrap;
}
.header-book:hover {
  background: var(--cyan) !important;
  color: #0A0A0A !important;
  box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.45), 0 0 22px rgba(0, 240, 255, 0.55), 0 0 40px rgba(255, 45, 149, 0.25);
  animation: none;
}
@keyframes book-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255, 45, 149, 0.35), 0 0 14px rgba(255, 45, 149, 0.45), 0 0 28px rgba(0, 240, 255, 0.15); transform: scale(1); }
  50% { box-shadow: 0 0 0 1px rgba(255, 45, 149, 0.55), 0 0 22px rgba(255, 45, 149, 0.7), 0 0 42px rgba(0, 240, 255, 0.3); transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .header-book { animation: none; }
}

.cal-hint {
  margin: 1rem 0 1.5rem;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  border-left: 3px solid var(--cyan);
  padding-left: 0.9rem;
}


/* .header-avatar removed — brand mark is .header-brand on the left */



/* —— Events vertical snap feed (IG-style) —— */
body.events-page {
  background: #000;
}
body.events-page .site-header {
  /* keep sticky header above feed */
}
.events-feed-shell {
  background: #000;
  position: relative;
}
.events-feed-hint {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 240, 255, 0.75);
  padding: 0.65rem 1rem 0.35rem;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.35);
}
.events-feed-hint .hint-desktop { display: none; }
.events-feed-hint .hint-mobile { display: inline; }
@media (hover: hover) and (pointer: fine) {
  .events-feed-hint .hint-desktop { display: inline; }
  .events-feed-hint .hint-mobile { display: none; }
}

.events-feed {
  position: relative;
  height: calc(100dvh - var(--header-offset, 88px));
  max-height: calc(100svh - var(--header-offset, 88px));
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #111;
  background: #000;
  max-width: 480px;
  margin: 0 auto;
  border-left: 1px solid rgba(255, 45, 149, 0.2);
  border-right: 1px solid rgba(0, 240, 255, 0.18);
  box-shadow: 0 0 40px rgba(255, 45, 149, 0.12), 0 0 60px rgba(0, 240, 255, 0.08);
}
@media (max-width: 560px) {
  .events-feed {
    max-width: 100%;
    border-left: none;
    border-right: none;
    box-shadow: none;
  }
}

.feed-slide {
  position: relative;
  height: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #000;
  overflow: hidden;
}
.feed-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.feed-slide::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.92));
  pointer-events: none;
}
.feed-caption {
  position: absolute;
  left: 1rem;
  right: 3rem;
  bottom: 1.25rem;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.feed-caption span {
  color: var(--cyan);
  font-weight: 700;
}

/* Side progress dots */
.feed-progress {
  position: absolute;
  right: max(0.65rem, calc(50% - 240px + 0.65rem));
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  pointer-events: none;
}
@media (max-width: 560px) {
  .feed-progress { right: 0.55rem; }
}
.feed-progress .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.28);
  border: 1px solid rgba(0, 240, 255, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feed-progress .dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(255, 45, 149, 0.7);
  transform: scale(1.25);
}

/* Credits / resume below feed */
.events-credits {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem 1.25rem 3rem;
  background: var(--bg);
  border-top: 1px solid rgba(0, 240, 255, 0.2);
}
.events-credits h2 {
  margin-bottom: 0.35rem;
}
.credits-lead {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 36rem;
  font-size: 0.95rem;
}
.credits-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .credits-list { grid-template-columns: 1fr 1fr; }
}
.credits-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent);
}
.credits-list .c-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.2rem;
}
.credits-list .c-title {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}
.credits-list .c-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.4;
}
