/* ── Design tokens ─────────────────────────────────── */
:root {
  --black: #000000;
  --white: #f0f0f0;
  --accent: #1aa1f2;
  --accent-glow: rgba(26, 161, 242, 0.35);
  --accent-dim: rgba(26, 161, 242, 0.08);

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  --header-h: 72px;
  --section-pad: clamp(80px, 12vw, 160px);
  --max-w: 1400px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 200;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
}

/* ── Scroll reveal ─────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease calc(var(--delay, 0s)),
              transform 0.75s ease calc(var(--delay, 0s));
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-word {
  opacity: 0;
  transition: opacity 0.8s ease 0.4s;
}

.reveal-word.visible { opacity: 1; }

/* ── Custom cursor ─────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.cursor-ring {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--accent-glow);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.expanded {
  width: 48px; height: 48px;
  border-color: var(--accent);
}

/* ── Sticky header ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 64px);
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header .logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.site-header .nav {
  display: flex;
  gap: 2rem;
}

.site-header .nav a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.7);
  transition: color 0.2s;
}

.site-header .nav a:hover { color: var(--accent); }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0a0a0a;
  background-image: url('Images/Hero.webp');
  background-size: cover;
  background-position: center 30%;
}

/* Dark overlay so text pops over the photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.8)  100%
  );
  z-index: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 161, 242, 0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes glowPulse {
  from { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(16px, 5vw, 80px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 20rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.85;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

.title-gradient {
  color: #ffffff;
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  animation: titleReveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
}

@keyframes titleReveal {
  to { opacity: 1; transform: translateY(0); }
}


.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(240, 240, 240, 0.7);
  margin-top: 1.5rem;
}


.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: rgba(240,240,240,0.3);
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── About / Vibe ──────────────────────────────────── */
.about {
  padding: var(--section-pad) 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 60%, rgba(26, 161, 242, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
}

.about-lucy-img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  border: 1px solid rgba(26, 161, 242, 0.2);
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #000000;
  -webkit-text-stroke: 4px var(--accent);
}

.about-stat-label {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  max-width: 16ch;
  line-height: 1.4;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.1;
}

.about-detail {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240, 240, 240, 0.7);
  margin-bottom: 0.2rem;
}

.about-detail:last-of-type {
  margin-bottom: 0;
}

.about-radio {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(26, 161, 242, 0.2);
  padding-top: 1.25rem;
}

.about-radio a {
  color: var(--accent);
  text-decoration: none;
}

.about-radio a:hover {
  text-decoration: underline;
}

.about-mixcloud {
  margin-top: 1rem;
  border: 1px solid rgba(26, 161, 242, 0.2);
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  height: 120px;
}

.about-mixcloud iframe {
  display: block;
  width: 100%;
  height: 120px;
}

/* ── Responsive ─────────────────────────────────────── */

/* Hide hamburger on desktop */
.nav-toggle { display: none; }

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .events-track { gap: 1rem; }
  .event-card { flex: 1 1 calc(50% - 1rem); }
  .dj-card { flex: 1 1 calc(50% - 2rem); }
}

/* Large mobile — 768px */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* Nav — hide desktop nav, show hamburger */
  .site-header .nav { display: none; }
  .site-header .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 200;
  }
  .site-header .nav.open a { font-size: 1.5rem; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 201;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-stat { flex-direction: row; align-items: center; border-left: none; border-bottom: 2px solid var(--accent); padding-left: 0; padding-bottom: 1.5rem; }
  .about-stat-number { font-size: clamp(4rem, 18vw, 6rem); }
  .about-lead { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* Events */
  .events-track { flex-direction: column; padding: 1rem clamp(24px, 5vw, 80px) 2rem; }
  .event-card { flex: 1 1 100%; }

  /* DJs */
  .dj-cards { flex-direction: column; gap: 1rem; }
  .dj-card { width: 100%; }
  .dj-bg-text { display: none; }

  /* Lightbox nav */
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* Disable fixed-attachment parallax on touch devices (iOS bug) */
@media (pointer: coarse) {
  .events { background-attachment: scroll; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .hero-tagline { font-size: clamp(0.85rem, 4vw, 1rem); }
  .section-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .about-stat-number { font-size: clamp(3.5rem, 20vw, 5rem); }
  .about-stat-label { font-size: 0.75rem; }
  .back-to-top { bottom: 1rem; right: 1rem; }
  .lightbox-img { max-width: 95vw; max-height: 80vh; }
}

/* ── Events / Nights ───────────────────────────────── */
.events {
  padding: var(--section-pad) 0;
  overflow: hidden;
  background-image: url('Images/Events_Background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.events::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.events-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 2;
}

.events .section-title {
  margin-bottom: 3rem;
  padding-left: 0;
}

.events-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 1rem 0 2rem 0;
}

.events-track::-webkit-scrollbar { display: none; }

.event-card {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 260px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: none;
}

.event-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px var(--accent-glow);
}

.event-glow-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.event-card:hover .event-glow-bar { opacity: 1; }

.event-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.event-date {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.event-dj {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1rem;
  color: #ffffff;
}

.event-card-photo {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.event-dj a {
  color: var(--accent);
  text-decoration: none;
}

.event-dj a:hover {
  text-decoration: underline;
}

.event-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #e53e3e;
  border-radius: 999px;
}

/* ── Resident DJs ──────────────────────────────────── */
.djs {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.dj-bg-text {
  position: absolute;
  inset: 0;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.09);
  line-height: 0.85;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  user-select: none;
}

@keyframes dj-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.dj-bg-text span {
  display: inline-block;
  animation: dj-marquee 45s linear infinite;
  will-change: transform;
}

.djs .section-title {
  max-width: var(--max-w);
  margin: 0 auto 2rem;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: left;
}

.dj-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.dj-card {
  flex: 0 1 calc(25% - 2rem);
  min-width: 220px;
  padding: 2rem;
  background: #000000;
  border: 1px solid rgba(26, 161, 242, 0.45);
  box-shadow: 0 0 18px rgba(26, 161, 242, 0.2), inset 0 0 12px rgba(26, 161, 242, 0.04);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.dj-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 32px rgba(26, 161, 242, 0.45), inset 0 0 20px rgba(26, 161, 242, 0.08);
}

.dj-card-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(30%) contrast(1.05);
  margin-bottom: 1rem;
}

.dj-card-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.dj-card-bio {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 200;
  color: rgba(240, 240, 240, 0.9);
  line-height: 1.6;
}

/* ── DJ card viewport reveal ───────────────────────── */
.dj-reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  transition:
    opacity   0.7s cubic-bezier(0.22, 0.61, 0.36, 1) var(--dj-delay, 0s),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) var(--dj-delay, 0s),
    border-color 0.3s,
    box-shadow   0.3s;
}

.dj-reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Gallery ───────────────────────────────────────── */
.gallery {
  padding: 0 0 var(--section-pad) 0;
}

.gallery .section-title {
  margin-bottom: 3rem;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.gallery-grid {
  columns: 4;
  column-gap: 8px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  background: #0d0d0d;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
}

@media (max-width: 500px) {
  .gallery-grid { columns: 1; }
}

/* ── Contact / Book a Table ────────────────────────── */

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  padding: 4rem clamp(24px, 5vw, 80px) 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  color: var(--white);
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.7;
}

.footer-social a svg {
  width: 26px;
  height: 26px;
}

.footer-social a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-address {
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-address a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-address a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.75rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}

/* ── Ambient moving radial glow ─────────────────────── */
@property --gx {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 20%;
}

@property --gy {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 40%;
}

.events {
  --gx: 30%;
  --gy: 50%;
  animation: ambientGlowMove 14s ease-in-out infinite alternate;
}

.djs {
  --gx: 30%;
  --gy: 50%;
  background: radial-gradient(
    ellipse 120% 80% at var(--gx) var(--gy),
    rgba(26, 161, 242, 0.03) 0%,
    transparent 65%
  );
  animation: ambientGlowMove 14s ease-in-out infinite alternate;
}

.events::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 120% 80% at var(--gx) var(--gy),
    rgba(26, 161, 242, 0.03) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
}

@keyframes ambientGlowMove {
  from { --gx: 20%; --gy: 40%; }
  to   { --gx: 80%; --gy: 60%; }
}

/* ── Back to top ────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: #000;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 12px rgba(26, 161, 242, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 0 24px rgba(26, 161, 242, 0.5);
}

/* ── Lightbox ───────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(26, 161, 242, 0.2);
  box-shadow: 0 0 60px rgba(26, 161, 242, 0.15);
  animation: lbFadeIn 0.25s ease;
  cursor: default;
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(26, 161, 242, 0.3);
  color: #fff;
  font-size: 1.5rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; border-color: var(--accent); }

.gallery-item { cursor: zoom-in; }

/* ── Touch device fallback ──────────────────────────── */
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Reduced motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  /* Make reveal elements immediately visible — do NOT use transition-duration
     on these or transitionend may not fire, breaking the JS cleanup. */
  .reveal-up, .reveal-word, .dj-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
