/* =========================================
   MĀT — DJ Website
   style.css
   ========================================= */

/* --- RESET & ROOT --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:     #070707;
  --bg2:    #0D0D0D;
  --bg3:    #131313;
  --w:      #EFEFEF;
  --w2:     rgba(239, 239, 239, 0.5);
  --w3:     rgba(239, 239, 239, 0.1);
  --red:    #D42B2B;
  --red-d:  rgba(212, 43, 43, 0.12);
  --border: rgba(239, 239, 239, 0.07);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--w);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* =========================================
   GRAIN OVERLAY
   ========================================= */
.grain {
  position: fixed;
  inset: -150px;
  width: calc(100% + 300px);
  height: calc(100% + 300px);
  pointer-events: none;
  z-index: 9997;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-anim 0.45s steps(2) infinite;
}

@keyframes grain-anim {
  0%  { transform: translate(0, 0); }
  25% { transform: translate(3%, -4%); }
  50% { transform: translate(-4%, 3%); }
  75% { transform: translate(4%, 4%); }
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.53rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}

.sec-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.5vw, 7rem);
  line-height: 0.83;
  letter-spacing: 0.01em;
  margin-bottom: 2.5rem;
}

/* =========================================
   LAYOUT
   ========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.section { padding: 8rem 0; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.btn-white {
  background: var(--w);
  color: var(--bg);
}

.btn-white:hover {
  background: var(--red);
  color: var(--w);
}

.btn-line {
  border: 1px solid rgba(239, 239, 239, 0.22);
  color: var(--w);
}

.btn-line:hover {
  border-color: var(--red);
  color: var(--red);
}

/* =========================================
   NAV
   ========================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3.5rem;
  height: 64px;
  background: rgba(7, 7, 7, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo img {
  height: 34px;
  transition: opacity 0.2s;
}
.nav-logo img:hover { opacity: 0.7; }

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.32);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-links a:hover          { color: var(--w); }
.nav-links a:hover::after   { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-ig {
  display: flex;
  align-items: center;
  opacity: 0.28;
  transition: opacity 0.2s;
}
.nav-ig:hover { opacity: 1; }

.nav-book {
  padding: 0.48rem 1.35rem;
  border: 1px solid rgba(239, 239, 239, 0.18);
  font-size: 0.57rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-book:hover {
  background: var(--red);
  color: var(--w);
  border-color: var(--red);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--w);
  transition: all 0.32s cubic-bezier(0.76, 0, 0.24, 1);
  transform-origin: center;
}

/* Burger → X when mobile menu is open (no JS needed) */
nav:has(+ .mobile-menu.open) .nav-burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
nav:has(+ .mobile-menu.open) .nav-burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
nav:has(+ .mobile-menu.open) .nav-burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 99;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 3rem;
  transform: translateY(calc(-100% - 64px));
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1),
              visibility 0s linear 0.35s;
}

.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.mobile-menu a {
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.5);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--w); }

.mobile-menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-book {
  display: inline-block;
  padding: 0.65rem 1.7rem;
  border: 1px solid rgba(239, 239, 239, 0.18);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w) !important;
  opacity: 1 !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.mobile-book:hover {
  background: var(--red);
  color: var(--w) !important;
  border-color: var(--red);
}

.mobile-ig {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.38) !important;
  opacity: 1 !important;
  transition: color 0.2s;
}
.mobile-ig:hover { color: var(--w) !important; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3.5rem 2.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0) brightness(0.3);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 7, 7, 1) 0%,
    rgba(7, 7, 7, 0.45) 40%,
    rgba(7, 7, 7, 0.08) 100%
  );
}

/* Subtle sheen sweep over the video */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    128deg,
    transparent 0%,
    rgba(239, 239, 239, 0.018) 45%,
    transparent 60%
  );
  background-size: 250% 250%;
  animation: heroSheen 10s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes heroSheen {
  0%, 100% { background-position: 0% 0%; }
  50%       { background-position: 100% 100%; }
}

/* Vertical side label */
.hero-vert {
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.hero-vert span {
  display: block;
  font-size: 0.49rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.16);
  writing-mode: vertical-rl;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.57rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.36);
  margin-bottom: 1.2rem;
}

.eyebrow-line {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-logo {
  width: min(500px, 72vw);
  margin-top: 4rem;
  margin-bottom: 3rem;
  transition: transform 0.35s ease;
}
.hero-logo:hover { transform: scale(1.015); }

.hero-desc {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--w2);
  max-width: 480px;
  margin-bottom: 3.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

/* Stats: ruled editorial table */
.hero-stats {
  display: flex;
  padding-top: 0;
  border-top: 1px solid var(--border);
}

.hstat {
  flex: 1;
  padding: 1.4rem 2rem 1rem 0;
  border-right: 1px solid var(--border);
}

.hstat:last-child { border-right: none; padding-right: 0; }

.hstat-n {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--w);
}

.hstat-l {
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.25);
  margin-top: 0.4rem;
}

/* =========================================
   TICKER
   ========================================= */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  background: var(--bg2);
}

.ticker-inner {
  display: inline-block;
  animation: tick 22s linear infinite;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: rgba(239, 239, 239, 0.18);
}

.ticker-inner b {
  color: var(--red);
  font-weight: 400;
}

@keyframes tick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
  position: relative;
}

/* Oversized background number */
.about-deco {
  position: absolute;
  top: -5rem;
  left: -4rem;
  font-family: var(--font-display);
  font-size: clamp(10rem, 19vw, 24rem);
  line-height: 1;
  color: rgba(239, 239, 239, 0.023);
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.about-photos {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.about-text {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.about-text p {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--w2);
  margin-bottom: 1.2rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pill {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.28);
  transition: border-color 0.2s, color 0.2s;
}

.pill:hover {
  border-color: var(--red);
  color: var(--red);
}

/* =========================================
   ABOUT PHOTOS
   ========================================= */
.about-photo-main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.about-photo-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0) brightness(0.75);
  transition: transform 0.7s ease, filter 0.5s ease;
}

.about-photo-main:hover img {
  transform: scale(1.04);
  filter: saturate(0.18) brightness(0.88);
}

.about-photo-main::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  z-index: 1;
  pointer-events: none;
}

.about-photo-sub {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  position: relative;
}

.about-photo-sub img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0) brightness(0.62);
  transition: transform 0.7s ease;
}

.about-photo-sub:hover img { transform: scale(1.04); }

.about-photo-sub::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  z-index: 1;
  pointer-events: none;
}

/* =========================================
   SHOWS / GIGS
   ========================================= */
.shows-section {
  /* fade in from the page background so the jog wheel hands over seamlessly */
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg2) 320px);
  padding: 6rem 0 0;
}

.shows-section .container { padding-bottom: 2.5rem; }

.gigs-list {
  border-top: 1px solid var(--border);
  counter-reset: gig-counter;
}

.gig {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  padding: 1.6rem 3.5rem;
  border-bottom: 1px solid var(--border);
  gap: 2.5rem;
  cursor: default;
  position: relative;
  overflow: hidden;
  counter-increment: gig-counter;
}

/* Red flood fill slides in from left */
.gig::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-101%);
  transition: transform 0.48s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

.gig:hover::after { transform: translateX(0); }

/* Content stays above the fill */
.gig > * {
  position: relative;
  z-index: 1;
}

/* Ghost row number — far right, decorative */
.gig::before {
  content: counter(gig-counter, decimal-leading-zero);
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(239, 239, 239, 0.035);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  transition: color 0.3s;
}

.gig:hover::before { color: rgba(7, 7, 7, 0.05); }

.gig-d {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(239, 239, 239, 0.26);
  letter-spacing: 0.02em;
  transition: color 0.35s;
}

.gig:hover .gig-d { color: rgba(7, 7, 7, 0.72); }

.gig-v {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(239, 239, 239, 0.78);
  letter-spacing: 0.02em;
  transition: color 0.35s;
}

.gig:hover .gig-v { color: rgba(7, 7, 7, 0.92); }

.gig-l {
  font-size: 0.57rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.22);
  margin-top: 0.2rem;
  transition: color 0.35s;
}

.gig:hover .gig-l { color: rgba(7, 7, 7, 0.52); }

/* Gig tag */
.gig-tag {
  font-size: 0.5rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.2);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  transition: color 0.35s, border-color 0.35s;
}

.gig:hover .gig-tag {
  color: rgba(7, 7, 7, 0.65);
  border-color: rgba(7, 7, 7, 0.18);
}

/* Loading dots */
.gigs-loading {
  display: flex;
  gap: 0.5rem;
  padding: 3rem 3.5rem;
}

.gigs-loading span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--w3);
  animation: gigDot 1.2s ease-in-out infinite;
}

.gigs-loading span:nth-child(2) { animation-delay: 0.2s; }
.gigs-loading span:nth-child(3) { animation-delay: 0.4s; }

@keyframes gigDot {
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
  40%            { opacity: 1;   transform: scale(1);   }
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-section {
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.gallery-hint {
  font-size: 0.53rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.16);
  margin-top: -0.8rem;
  margin-bottom: 3rem;
}

.gallery-track {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 3.5rem 1.5rem;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
  align-items: flex-end;
}

.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.dragging { cursor: grabbing; }

.gallery-item {
  flex-shrink: 0;
  width: 280px;
  height: 400px;
  overflow: hidden;
  position: relative;
  contain: layout style;
  transform: translateZ(0);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0) brightness(0.65);
  transition: filter 0.55s ease, transform 0.65s ease;
  pointer-events: none;
  will-change: transform, filter;
}

.gallery-item:hover img {
  filter: saturate(0.85) brightness(1.02);
  transform: scale(1.06);
}

/* Red inset border flash */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 0px var(--red);
  transition: box-shadow 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-item:hover::after {
  box-shadow: inset 0 0 0 2px var(--red);
}

.gallery-track.dragging .gallery-item img { transition: none; }

/* =========================================
   REEL SECTION
   ========================================= */
.reel-section {
  padding: 7rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.reel-section .container { padding-bottom: 3rem; }

.reel-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr 0.85fr;
  gap: 2px;
  background: var(--border);
}

.reel-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.reel-item.reel-tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.reel-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0) brightness(0.58);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.reel-item:hover video {
  filter: saturate(0.22) brightness(0.78);
  transform: scale(1.04);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 7, 0.55) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* Play icon circle on hover */
.reel-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border: 1.5px solid rgba(239, 239, 239, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23efefef'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.reel-item:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* =========================================
   BOOKING
   ========================================= */
.booking-section {
  position: relative;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 0;
}

.booking-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.booking-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0) brightness(0.1);
}

.booking-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(7, 7, 7, 0.98) 0%,
    rgba(7, 7, 7, 0.88) 50%,
    rgba(7, 7, 7, 0.65) 100%
  );
}

.booking-section .container {
  position: relative;
  z-index: 1;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.booking-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  line-height: 0.83;
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
}

.booking-p {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--w2);
  margin-bottom: 2.5rem;
}

.booking-email {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.6rem);
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  word-break: break-all;
}

.booking-email:hover { color: var(--red); }

.booking-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cinfo { border-top: 1px solid var(--border); }

.cinfo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.cinfo-label {
  font-size: 0.53rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.2);
}

.cinfo-row a,
.cinfo-row span:last-child {
  font-size: 0.78rem;
  color: rgba(239, 239, 239, 0.52);
  transition: color 0.2s;
}

.cinfo-row a:hover { color: var(--red); }

/* =========================================
   FOOTER
   ========================================= */
footer {
  border-top: 1px solid var(--red);
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

/* Ghost MĀT behind the CTA band */
footer::before {
  content: 'MĀT';
  position: absolute;
  right: -1rem;
  top: -1rem;
  font-family: var(--font-display);
  font-size: clamp(10rem, 22vw, 28rem);
  line-height: 1;
  color: rgba(239, 239, 239, 0.02);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* --- CTA Band --- */
.footer-cta {
  padding: 5rem 3.5rem 4.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-cta-email {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 10rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  color: var(--w);
  transition: color 0.35s ease;
  margin: 1.8rem 0 3.5rem;
}

.footer-cta-email span { display: block; }

.footer-cta-email:hover { color: var(--red); }

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-avail {
  margin-left: auto;
  font-size: 0.52rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.2);
}

/* --- Nav strip --- */
.footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 3.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-logo img {
  height: 28px;
  opacity: 0.45;
  transition: opacity 0.2s;
  display: block;
}
.footer-logo:hover img { opacity: 0.9; }

.footer-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.footer-nav a {
  font-size: 0.57rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.38);
  position: relative;
  transition: color 0.2s;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.footer-nav a:hover        { color: var(--w); }
.footer-nav a:hover::after { transform: scaleX(1); }

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

.footer-ig-link,
.footer-email-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.38);
  transition: color 0.2s;
}

.footer-ig-link:hover,
.footer-email-link:hover { color: var(--w); }

.footer-ig-link svg,
.footer-email-link svg { flex-shrink: 0; opacity: 0.5; }

/* --- Legal bar --- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 3.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.2);
}

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

.footer-legal-link {
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.2);
  transition: color 0.2s;
}
.footer-legal-link:hover { color: var(--red); }

.footer-cookie-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.footer-credit {
  font-size: 0.46rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.15);
}

.footer-credit a { color: inherit; transition: color 0.2s; }
.footer-credit a:hover { color: rgba(239, 239, 239, 0.55); }

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: rgba(8, 8, 8, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateY(110%);
  opacity: 0;
  filter: blur(6px);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s ease,
              filter 0.5s ease;
  max-height: 85vh;
  overflow-y: auto;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

/* Compact bar */
.cookie-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 3.5rem;
  flex-wrap: wrap;
}

.cookie-bar-label {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.cookie-bar-text p {
  font-size: 0.78rem;
  color: rgba(239, 239, 239, 0.42);
  line-height: 1.65;
}

.cookie-bar-text a {
  color: rgba(239, 239, 239, 0.6);
  text-decoration: underline;
  text-decoration-color: rgba(239, 239, 239, 0.18);
  transition: color 0.2s;
}
.cookie-bar-text a:hover { color: var(--w); }

.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Cookie buttons */
.cookie-btn-text {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.3);
  padding: 0.5rem;
  transition: color 0.2s;
}
.cookie-btn-text:hover { color: var(--w); }

.cookie-btn-secondary {
  background: transparent;
  border: 1px solid rgba(239, 239, 239, 0.18);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w);
  padding: 0.72rem 1.5rem;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-secondary:hover { border-color: rgba(239, 239, 239, 0.5); }

.cookie-btn-primary {
  background: var(--w);
  border: 1px solid var(--w);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 0.72rem 1.5rem;
  font-weight: 500;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.cookie-btn-primary:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--w);
}

/* Settings panel */
.cookie-settings { padding: 0 3.5rem 2rem; }
.cookie-settings[hidden] { display: none; }

.cookie-settings-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.2rem;
}

.cookie-btn-back {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.32);
  padding: 0;
  transition: color 0.2s;
}
.cookie-btn-back:hover { color: var(--w); }

.cookie-settings-title {
  font-size: 0.53rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.28);
}

/* Cookie category */
.cookie-cat {
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 0;
}

.cookie-cat-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}

.cookie-cat-name {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--w);
  margin-bottom: 0.32rem;
}

.cookie-cat-desc {
  font-size: 0.72rem;
  color: rgba(239, 239, 239, 0.36);
  line-height: 1.7;
  max-width: 540px;
}

.cookie-always-on {
  flex-shrink: 0;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 0.18rem;
  white-space: nowrap;
}

/* Toggle */
.cookie-toggle {
  flex-shrink: 0;
  cursor: pointer;
  display: block;
  margin-top: 0.1rem;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-track {
  display: block;
  width: 46px;
  height: 26px;
  background: rgba(239, 239, 239, 0.08);
  border: 1px solid rgba(239, 239, 239, 0.1);
  border-radius: 13px;
  position: relative;
  transition: background 0.25s, border-color 0.25s;
}

.cookie-toggle input:checked + .cookie-toggle-track {
  background: var(--red);
  border-color: var(--red);
}

.cookie-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: rgba(239, 239, 239, 0.45);
  border-radius: 50%;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s;
}

.cookie-toggle input:checked + .cookie-toggle-track .cookie-toggle-thumb {
  transform: translateX(20px);
  background: var(--w);
}

/* Cookie details table */
.cookie-cat-table {
  margin-top: 1rem;
  border-top: 1px solid rgba(239, 239, 239, 0.04);
}

.cookie-row {
  display: grid;
  grid-template-columns: 150px 1fr 90px;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(239, 239, 239, 0.03);
}

.cookie-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(239, 239, 239, 0.5);
}

.cookie-purpose {
  font-size: 0.67rem;
  color: rgba(239, 239, 239, 0.28);
  line-height: 1.5;
}

.cookie-duration {
  font-size: 0.6rem;
  color: rgba(239, 239, 239, 0.2);
  text-align: right;
  letter-spacing: 0.05em;
}

.cookie-settings-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.6rem;
  flex-wrap: wrap;
}

/* =========================================
   LOADER
   ========================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  height: 44px;
  opacity: 0.85;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.85; }
  50%       { opacity: 0.32; }
}

.loader-bar {
  width: 160px;
  height: 1px;
  background: var(--w3);
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  animation: load 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes load {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.2s;
  opacity: 0;   /* hidden until the mouse first moves */
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(239, 239, 239, 0.32);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.2s;
  opacity: 0;   /* hidden until the mouse first moves */
}

.cursor.on, .cursor-ring.on { opacity: 1; }

.cursor-ring.hovering {
  width: 48px;
  height: 48px;
  border-color: rgba(212, 43, 43, 0.45);
}

@media (hover: none) {
  .cursor, .cursor-ring { display: none; }
}

/* =========================================
   HERO VIDEO & OVERLAY
   ========================================= */
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.15) brightness(0.58);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 7, 7, 0.9) 0%,
    rgba(7, 7, 7, 0.2) 45%,
    transparent 100%
  );
}

/* =========================================
   HERO ENTRANCE ANIMATION
   ========================================= */
.anim-up {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  animation: animUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes animUp {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* =========================================
   SCROLL HINT
   ========================================= */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(239, 239, 239, 0.42), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.42; transform: scaleY(1); }
  50%       { opacity: 1;    transform: scaleY(1.1); }
}

.scroll-hint span {
  font-size: 0.5rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.18);
  writing-mode: vertical-rl;
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition: opacity 0.7s ease,
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Section titles feel more dramatic */
.sec-title.reveal {
  transform: translateY(36px);
  transition-duration: 0.9s;
}

/* =========================================
   SCROLL PROGRESS
   ========================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 10px rgba(212, 43, 43, 0.55);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 200;
  pointer-events: none;
}

/* =========================================
   NAV EQ (live bars)
   ========================================= */
.nav-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.nav-eq span {
  width: 2px;
  background: var(--red);
  animation: eqBar 0.9s ease-in-out infinite alternate;
  transform-origin: bottom;
}

.nav-eq span:nth-child(1) { height: 12px; animation-duration: 0.72s; }
.nav-eq span:nth-child(2) { height: 12px; animation-duration: 0.93s; animation-delay: -0.3s; }
.nav-eq span:nth-child(3) { height: 12px; animation-duration: 0.58s; animation-delay: -0.15s; }
.nav-eq span:nth-child(4) { height: 12px; animation-duration: 1.05s; animation-delay: -0.6s; }
.nav-eq span:nth-child(5) { height: 12px; animation-duration: 0.81s; animation-delay: -0.45s; }

@keyframes eqBar {
  0%   { transform: scaleY(0.18); opacity: 0.55; }
  100% { transform: scaleY(1);    opacity: 1; }
}

/* =========================================
   SPLIT TITLE LETTERS
   ========================================= */
.sec-title.split,
.booking-title.split {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.split .tl {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em) rotate(5deg);
  transform-origin: 0 100%;
}

.split.visible .tl {
  animation: tlIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i) * 0.034s);
}

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

/* =========================================
   DECK — SCROLL-SPUN JOG WHEEL INTERSTITIAL
   ========================================= */
.deck-section {
  position: relative;
  padding: 9rem 0 8rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.deck-glow {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  /* must fit inside the section — overflow:hidden would slice a bigger glow */
  width: min(40%, 580px);
  max-height: 96%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212, 43, 43, 0.07) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.jog-wrap {
  position: relative;
  width: min(400px, 76vw);
  aspect-ratio: 1;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 50%;
  pointer-events: none;
}

.jog-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #1C1C1C 0%, #0A0A0A 68%);
  border: 1px solid rgba(239, 239, 239, 0.09);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(239, 239, 239, 0.07),
    0 0 0 0 rgba(212, 43, 43, 0);
  transition: box-shadow 0.4s ease;
}

.jog-wrap.spinning .jog-outer {
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(239, 239, 239, 0.07),
    0 0 70px 4px rgba(212, 43, 43, 0.14);
}

/* Strobe tick-mark ring */
.jog-strobe {
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(239, 239, 239, 0.22) 0deg 0.9deg,
    transparent 0.9deg 6deg
  );
  -webkit-mask: radial-gradient(closest-side, transparent 87%, #000 88%, #000 97%, transparent 98%);
          mask: radial-gradient(closest-side, transparent 87%, #000 88%, #000 97%, transparent 98%);
}

/* Rotating platter */
.jog-platter {
  position: absolute;
  inset: 9.5%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #151515 0%, #0C0C0C 70%);
  border: 1px solid rgba(239, 239, 239, 0.07);
  will-change: transform;
}

/* Vinyl grooves */
.jog-grooves {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    rgba(239, 239, 239, 0.035) 0px,
    transparent 1px,
    transparent 4px,
    rgba(0, 0, 0, 0.35) 5px
  );
}

/* Red position marker */
.jog-marker {
  position: absolute;
  top: 2.5%;
  left: calc(50% - 1px);
  width: 2px;
  height: 21%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(212, 43, 43, 0.85);
  border-radius: 1px;
}

/* Center label */
.jog-label {
  position: absolute;
  inset: 31%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #131313 0%, #080808 75%);
  border: 1px solid rgba(239, 239, 239, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.7);
}

.jog-label::after {
  content: '';
  position: absolute;
  inset: -7%;
  border-radius: 50%;
  border: 1px solid rgba(212, 43, 43, 0.28);
  pointer-events: none;
}

.jog-label img {
  width: 52%;
  opacity: 0.92;
}

/* Static sheen over the spinning platter */
.jog-shine {
  position: absolute;
  inset: 9.5%;
  border-radius: 50%;
  background: conic-gradient(
    from 205deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.05) 42deg,
    transparent 84deg
  );
  pointer-events: none;
}

/* =========================================
   REEL — REC OVERLAY
   ========================================= */
.reel-overlay::after {
  content: '● REC';
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0;
  transition: opacity 0.3s;
}

.reel-item:hover .reel-overlay::after {
  opacity: 1;
  animation: recBlink 1.1s steps(2, start) infinite;
}

@keyframes recBlink {
  0%   { opacity: 1; }
  100% { opacity: 0.3; }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-deco {
    font-size: clamp(6rem, 14vw, 10rem);
    top: -1rem;
    left: -1rem;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .footer-nav { gap: 1.8rem; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }

  .nav-links,
  .nav-book   { display: none; }

  .nav-burger { display: flex; }
  .mobile-menu { display: block; }

  .hero {
    padding: 0 1.5rem 3.5rem;
    min-height: 100svh;
  }

  .hero-ghost { font-size: 42vw; }
  .hero-vert  { display: none; }

  .hstat       { padding: 1rem 1rem 0.8rem 0; }
  .hstat-n     { font-size: 2.6rem; }

  .container { padding: 0 1.5rem; }
  .section   { padding: 5rem 0; }

  .about-photo-main { aspect-ratio: 4 / 3; }
  .about-photo-sub  { display: none; }
  .about-deco       { display: none; }

  .shows-section { padding-top: 4rem; }

  .gig {
    grid-template-columns: 72px 1fr;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }

  .gig-d  { font-size: 1.8rem; }
  .gig-l,
  .gig-tag { display: none; }
  .gig::before { display: none; }

  .booking-section { padding: 5rem 0; }
  .booking-email   { font-size: clamp(1.1rem, 5vw, 1.8rem); }

  .deck-section { padding: 5rem 0 4rem; }

  .jog-wrap { width: min(320px, 84vw); }

  .nav-eq { display: none; }

  .scroll-hint { display: none; }

  .reel-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .reel-item { aspect-ratio: 4 / 5; }

  .reel-item.reel-tall {
    grid-row: 1 / 3;
    aspect-ratio: unset;
  }

  .gallery-track { padding: 0 1.5rem 1rem; }

  .gallery-item { width: 210px; height: 300px; }

  .footer-cta {
    padding: 3.5rem 1.5rem 3rem;
  }

  .footer-cta-email {
    font-size: clamp(2.2rem, 10vw, 5rem);
    margin: 1.2rem 0 2rem;
  }

  .footer-avail { margin-left: 0; }

  .footer-strip {
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1.4rem 1.5rem;
  }

  .footer-nav {
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .footer-social { gap: 1rem; }

  .footer-bottom {
    padding: 0.9rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .cookie-bar {
    padding: 1.4rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .cookie-bar-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .cookie-settings { padding: 0 1.5rem 2rem; }

  .cookie-row {
    grid-template-columns: 120px 1fr;
  }

  .cookie-duration { display: none; }
}

@media (max-width: 400px) {
  .hstat-n { font-size: 2.2rem; }

  .gallery-item { width: 170px; height: 250px; }
}

/* =========================================
   ACTIVE NAV STATE
   ========================================= */
.nav-links a.active {
  color: var(--w);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

/* =========================================
   REDUCED MOTION
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  .anim-up {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .grain        { animation: none; }
  .ticker-inner { animation-play-state: paused; }
  .hero::after  { animation: none; }
  .loader-fill  { animation: none; width: 100%; }
  .loader-logo  { animation: none; opacity: 1; }
  .scroll-line  { animation: none; }

  .nav-eq span { animation: none; transform: scaleY(0.5); }

  .split .tl {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .reel-item:hover .reel-overlay::after { animation: none; }
}
