/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg:          #0c0b0b;
  --bg-alt:      #111010;
  --bg-card:     #1a1917;
  --gold:        #c9a84c;
  --gold-lt:     #e2c878;
  --gold-dim:    rgba(201, 168, 76, 0.10);
  --gold-border: rgba(201, 168, 76, 0.25);
  --text:        #f2ede6;
  --muted:       #8a8580;
  --border:      rgba(255, 255, 255, 0.07);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-h:    68px;
  --pad:      clamp(20px, 5vw, 64px);
  --sec-pad:  clamp(80px, 11vw, 144px);
  --max:      1200px;
  --max-wide: 1400px;
  --max-sm:   680px;
  --ease:     cubic-bezier(.25,.1,.25,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --radius:   4px;
  --radius-lg:14px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--text);
}
h2 { font-size: clamp(40px, 5.5vw, 68px); }
h3 { font-size: clamp(26px, 3.5vw, 44px); }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--gold-lt);
}

p {
  color: var(--muted);
  max-width: 60ch;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container       { width: 100%; max-width: var(--max);      margin: 0 auto; padding: 0 var(--pad); }
.container-wide  { width: 100%; max-width: var(--max-wide); margin: 0 auto; padding: 0 var(--pad); }
.container-sm    { width: 100%; max-width: var(--max-sm);   margin: 0 auto; padding: 0 var(--pad); }

.section  { padding: var(--sec-pad) 0; }
.bg-alt   { background: var(--bg-alt); }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

.section-head { margin-bottom: clamp(40px, 6vw, 80px); }
.head-sub     { margin-top: 14px; font-size: 17px; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background .22s var(--ease), border-color .22s, color .22s, transform .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-gold  { background: var(--gold); color: #0c0b0b; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--gold-border); }
.btn-ghost:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold-lt); }

.btn-full  { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 90;
  transition: background .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(12,11,11,.94);
  border-bottom-color: var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.logo {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: color .2s, opacity .3s var(--ease);
}
.logo:hover { color: var(--gold-lt); }
.navbar.scrolled .logo { opacity: 1; pointer-events: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: calc(100% - 28px);
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transition: transform .2s var(--ease);
}
.nav-link:hover,
.nav-link.active              { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after       { transform: translateX(-50%) scaleX(1); }

.nav-social {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}
.nav-social a {
  color: var(--muted);
  display: flex;
  transition: color .2s;
}
.nav-social a:hover { color: var(--gold-lt); }

/* Mobile hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  margin-left: auto;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 12%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12,11,11,.82) 0%,
    rgba(12,11,11,.45) 55%,
    rgba(12,11,11,.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: var(--nav-h) var(--pad) 0;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(70px, 12.5vw, 168px);
  font-weight: 300;
  line-height: .93;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}

.hero-meta {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
  max-width: none;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Entrance animations */
.anim-1, .anim-2, .anim-3, .anim-4, .anim-5 {
  opacity: 0;
  transform: translateY(28px);
  animation: slideUp .8s var(--ease-out) forwards;
}
.anim-1 { animation-delay: .1s; }
.anim-2 { animation-delay: .24s; }
.anim-3 { animation-delay: .38s; }
.anim-4 { animation-delay: .52s; }
.anim-5 { animation-delay: .68s; }

@keyframes slideUp {
  to { opacity: 1; transform: none; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 44px;
  right: var(--pad);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: color .2s;
}
.scroll-cue:hover { color: var(--gold); }
.scroll-word { writing-mode: vertical-rl; }
.scroll-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; transform-origin: top;    }
  40%  { transform: scaleY(1); opacity: 1; transform-origin: top;    }
  60%  { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.about-photo { position: relative; }

.photo-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.photo-frame:hover img { transform: scale(1.04); }

/* Placeholder — visible until real photo is added */
.photo-fill {
  width: 100%; height: 100%;
  background: linear-gradient(145deg,
    #1c1510 0%, #2a1d14 25%,
    #1a1210 50%, #241a0f 75%, #1c1510 100%);
  background-size: 300% 300%;
  animation: breathe 9s ease infinite;
}
@keyframes breathe {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.photo-caption {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 11px 18px;
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--gold-lt);
  line-height: 1.4;
  max-width: 210px;
}

.about-copy { padding-top: 12px; }
.about-copy h2 { margin-top: 10px; margin-bottom: 28px; }
.about-copy p  { font-size: 16.5px; line-height: 1.78; margin-bottom: 18px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.tag {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 5px 13px;
}

/* ============================================================
   MUSIC
   ============================================================ */
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.music-collab {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  max-width: none;
}

.music-title { margin-bottom: 18px; }

.music-desc { font-size: 16.5px; line-height: 1.75; }

.stream-links { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; }
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.stream-btn:hover { color: var(--gold-lt); border-color: var(--gold); }

/* Spotify placeholder */
.spotify-placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--gold-border);
  border-radius: var(--radius-lg);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px;
  text-align: center;
}
.sp-inner svg { color: var(--gold); opacity: .6; }
.sp-inner p   { font-size: 15px; color: var(--text); max-width: none; }
.sp-inner span { font-size: 12px; color: var(--muted); max-width: none; }

/* ============================================================
   SHOWS
   ============================================================ */
.show-list { border-top: 1px solid var(--border); }

.show-item {
  display: grid;
  grid-template-columns: 72px 1fr 130px auto;
  align-items: center;
  gap: 24px;
  padding: 26px 12px;
  border-bottom: 1px solid var(--border);
  transition: background .2s, border-color .2s;
  border-radius: var(--radius);
  position: relative;
}
.show-item:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border);
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 3px;
}
.show-month {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.show-day {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}

.show-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.show-venue {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
}
.show-location { font-size: 13.5px; color: var(--muted); }
.show-range { font-size: 12.5px; color: var(--gold); letter-spacing: .01em; }

.show-time {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .05em;
  white-space: nowrap;
  text-align: right;
}

.show-cta {
  grid-column: 4;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 8px 18px;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.show-cta:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  columns: 4;
  column-gap: 6px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: none;
  background: none;
  padding: 0;
  cursor: zoom-in;
  break-inside: avoid;
  margin-bottom: 6px;
  display: block;
  width: 100%;
}

.g-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .55s var(--ease);
}
.g-item:hover img { transform: scale(1.04); }

/* Distinct atmospheric tones for each slot */
.g1  { background: linear-gradient(145deg, #1a1015 0%, #2d1520 100%); }
.g2  { background: linear-gradient(165deg, #0f1520 0%, #1a2840 100%); }
.g3  { background: linear-gradient(130deg, #1a1208 0%, #2e1e0e 100%); }
.g4  { background: linear-gradient(150deg, #10101a 0%, #1c1a2e 100%); }
.g5  { background: linear-gradient(140deg, #1a1010 0%, #2e1616 100%); }
.g6  { background: linear-gradient(160deg, #0a1518 0%, #122028 100%); }
.g7  { background: linear-gradient(135deg, #1a1510 0%, #2c2016 100%); }
.g8  { background: linear-gradient(155deg, #141016 0%, #221c28 100%); }
.g9  { background: linear-gradient(145deg, #111a14 0%, #1a2a1e 100%); }
.g10 { background: linear-gradient(130deg, #1a1008 0%, #2c1a10 100%); }
.g11 { background: linear-gradient(150deg, #0e1318 0%, #1a2230 100%); }
.g12 { background: linear-gradient(140deg, #1a1016 0%, #281822 100%); }

/* Hover overlay */
.g-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,11,11,.45);
  color: var(--gold-lt);
  opacity: 0;
  transition: opacity .3s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,7,7,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,11,11,.55);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  transition: background .2s, border-color .2s, color .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold-lt);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev  { left:  20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lb-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 90vw;
  max-height: 90vh;
}

.lb-media {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-media img {
  max-width: 90vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lb-counter {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: none;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 44px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 7px; }

label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

input, textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: border-color .2s, background .2s;
}
input::placeholder, textarea::placeholder { color: var(--muted); opacity: .55; }
input:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.04);
}
textarea { resize: vertical; min-height: 130px; }

.select-wrap { position: relative; }
.select-wrap select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 40px 13px 16px;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s;
}
.select-wrap select:focus { border-color: var(--gold); }
.select-wrap select option { background: var(--bg-card); }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}

.form-success {
  text-align: center;
  padding: 16px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gold-lt);
  letter-spacing: .03em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.footer-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  max-width: none;
  margin-bottom: 3px;
}
.footer-sub {
  font-size: 11.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  max-width: none;
}

.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-nav a {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold-lt); }

.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a { color: var(--muted); display: flex; transition: color .2s; }
.footer-social a:hover { color: var(--gold-lt); }

.footer-bottom {
  padding-top: 28px;
  text-align: center;
}
.footer-bottom p {
  font-size: 11.5px;
  letter-spacing: .05em;
  color: var(--muted);
  max-width: none;
  margin: 0 auto;
}

/* ============================================================
   VIDEOS
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.video-hero {
  grid-column: 1 / -1;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-hero {
    grid-column: 1;
  }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.fade-up.delay-1 { transition-delay: .12s; }
.fade-up.delay-2 { transition-delay: .22s; }
.fade-up.in      { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — TABLET  (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid  { grid-template-columns: 1fr 1.4fr; gap: 50px; }
  .music-grid  { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { columns: 3; }

  .show-item { grid-template-columns: 68px 1fr 110px auto; gap: 18px; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Nav */
  .menu-btn    { display: flex; }
  .nav-social  { display: none; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(12,11,11,.97);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 20px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    /* hidden state */
    transform: translateY(-6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s, visibility 0s .25s;
  }
  .nav-menu.open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: transform .25s var(--ease), opacity .25s, visibility 0s;
  }
  .nav-link {
    display: block;
    padding: 15px 24px;
    font-size: 13px;
    width: 100%;
    text-align: left;
  }
  .nav-link::after { display: none; }

  /* Hero */
  .hero-name { font-size: clamp(60px, 17vw, 90px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .scroll-cue { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .photo-caption { display: none; }

  /* Shows */
  .show-item {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
    padding: 20px 10px;
  }
  .show-time { grid-column: 2; }
  .show-cta  { grid-column: 1 / -1; text-align: center; padding: 10px; }

  /* Gallery */
  .gallery-grid { columns: 2; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-nav { gap: 14px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-name { font-size: clamp(52px, 18vw, 80px); }
}
