/* ═══════════════════════════════════════════════
   BALDO ZUNIGA — v1 · b/w GAZU-inspired · Playfair + DM Sans
   ═══════════════════════════════════════════════ */

:root {
  /* Palette — monochrome, GAZU-adapted */
  --bg:        #EAE6DE;
  --bg2:       #F3F0EA;
  --ink:       #131311;
  --muted:     #6F6B62;
  --line:      #D6D2C8;
  --white:     #FFFFFF;

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1200px;
  --pad-x: min(1200px, 92vw);
  --gutter: max(1.25rem, calc((100vw - 1200px) / 2));
  --ease: cubic-bezier(.16, .8, .26, 1);
  /* FINAL hero (2026-08-30): canva-bc0dfb0d — scale keeps the artist the
     same height as the original cutout (1.22 × 0.9436 / 0.8052 person frac) */
  --hero-scale: 1.431;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: .01em;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

section { scroll-margin-top: 84px; }

.h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: .01em;
  margin: .4rem 0 1.1rem;
}

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-note { color: var(--muted); max-width: 34rem; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(234, 230, 222, .86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: var(--pad-x);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: .02em;
}
.nav-logo em { font-weight: 600; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a:not(.nav-book) {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .3rem 0;
  position: relative;
  transition: color .25s;
}
.nav-links a:not(.nav-book)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:not(.nav-book):hover { color: var(--ink); }
.nav-links a:not(.nav-book):hover::after { transform: scaleX(1); }
.nav-book {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  padding: .62rem 1.25rem;
  transition: background .25s, color .25s, box-shadow .25s;
}
.nav-book:hover { color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); background: transparent; }

.nav-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 30px; height: 22px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 0; width: 100%; height: 2px;
  background: var(--ink);
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.nav-burger span:nth-child(1) { top: 4px; }
.nav-burger span:nth-child(2) { top: 16px; }
body.nav-open .nav-burger span:nth-child(1) { top: 11px; transform: rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { top: 11px; transform: rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}
body.nav-open .mobile-menu { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bg);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease .25s, transform .5s var(--ease) .25s;
}
body.nav-open .mobile-menu a { opacity: 1; transform: none; }
.mobile-menu a:nth-child(2) { transition-delay: .32s; }
.mobile-menu a:nth-child(3) { transition-delay: .39s; }
.mobile-menu a:nth-child(4) { transition-delay: .46s; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .95rem 1.9rem;
  cursor: pointer;
  transition: background .3s, color .3s, box-shadow .3s, transform .3s;
  border: 0;
}
.btn--ink { background: var(--ink); color: var(--bg); }
.btn--ink:hover { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.btn--text { background: none; color: var(--ink); padding: .95rem 0; position: relative; }
.btn--text::after {
  content: "";
  position: absolute;
  left: 0; bottom: .55rem;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.btn--text:hover::after { transform: scaleX(1); }
.btn--block { display: block; width: 100%; text-align: center; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;            /* outer clip only */
  background: var(--bg);       /* flat cream (studio backdrop reverted 2026-08-30) */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* giant wordmark stack — centered */
.hero-type {
  position: relative;
  z-index: 1;
  text-align: center;
  will-change: transform;
}
.hero-tag {
  position: absolute;
  top: 6.5rem;
  left: var(--gutter);
  z-index: 4;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease .1s, transform 1s var(--ease) .1s;
}
body.loaded .hero-tag { opacity: 1; transform: none; }
.hero-kicker {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  letter-spacing: .55em;
  text-transform: uppercase;
  margin-bottom: .2rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s ease .25s, transform 1s var(--ease) .25s;
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-line {
  display: flex;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.2rem, 17vw, 15.5rem);
  line-height: .92;
  letter-spacing: .02em;
  white-space: nowrap;
}
.ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.3em) rotate(8deg);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(.2, 1.15, .3, 1);
}
body.loaded .ltr { opacity: 1; transform: none; }

/* front name layer — red, masked BY the portrait (alpha of the cutout PNG),
   so the red shows only on his silhouette. Bright red + soft glow keeps it
   readable over the dark shirt. */
.hero-type--front {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;   /* front masked name layer — ON (2026-08-30) */
  /* mask = hero-front-mask.png — alpha of the final hero photo (canva-bc0dfb0d) */
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s ease 1s;
  -webkit-mask-image: url(../assets/photos/hero-front-mask.png?v=2);
          mask-image: url(../assets/photos/hero-front-mask.png?v=2);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
body.loaded .hero-type--front { opacity: .3; }
/* counter-scale: figure renders at 1.431 → name shrinks back to the same visual
   size as the back wordmark; translateY re-centers to the hero center */
.hero-type--front__inner {
  transform: scale(0.6988) translateY(calc(clamp(480px, 88vh, 880px) / 2 - 50vh));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-line--front {
  color: #B9B5AC;
  text-shadow: 0 0 14px rgba(150, 148, 140, .35),
               0 0 4px rgba(150, 148, 140, .45);
}

/* isolated artist cutout — layered over the wordmark (GAZU effect) */
.hero-figure {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  height: clamp(480px, 88vh, 880px);
  opacity: 0;
  transform: translateX(-50%) scale(var(--hero-scale, 1.22));
  transition: opacity 1.2s ease .45s;
  will-change: transform;
}
body.loaded .hero-figure { opacity: 1; }
.hero-figure img {
  height: 100%;
  width: auto;
  max-width: none;   /* global img{max-width:100%} must not clamp the square aspect */
  animation: figFloat 7s ease-in-out infinite;
  /* FINAL hero grade (2026-08-30): B&W with white highlights, on cream */
  filter: grayscale(1) contrast(1.15) brightness(1.08)
          drop-shadow(0 6px 10px rgba(19,19,17,.45))
          drop-shadow(0 24px 40px rgba(19,19,17,.55))
          drop-shadow(0 70px 120px rgba(19,19,17,.40))
          drop-shadow(0 140px 240px rgba(19,19,17,.26));
}
@keyframes figFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* color-reveal overlay — the hovered spot turns back to original color
   (soft circle follows the cursor; B&W base shows everywhere else).
   REVERT POINT: delete this block + the .hero-img-color <img> to disable */
.hero-figure .hero-img-color {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  width: auto;
  max-width: none;
  filter: none;                     /* original color — no B&W grade */
  opacity: 0;                       /* hidden until hover */
  transition: opacity .25s ease;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle 150px at var(--hx, 50%) var(--hy, 50%), #000 0%, rgba(0,0,0,.85) 55%, transparent 100%);
          mask-image: radial-gradient(circle 150px at var(--hx, 50%) var(--hy, 50%), #000 0%, rgba(0,0,0,.85) 55%, transparent 100%);
}
/* reveal only while the pointer is actually OVER the photo (the figure),
   never on the empty hero background around it */
.hero-figure:hover .hero-img-color { opacity: 1; }

/* touch devices: no cursor → no reveal; drop the overlay entirely so the
   second full-size cutout never decodes (phone renderer crash fix) */
@media (hover: none), (pointer: coarse) {
  .hero-img-color { display: none; }
}

/* spotlight sweep */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.38) 50%, transparent 60%);
  width: 160%;
  left: -30%;
  mix-blend-mode: soft-light;
  animation: sweep 9s ease-in-out infinite alternate;
}
@keyframes sweep {
  from { transform: translateX(-12%); }
  to   { transform: translateX(12%); }
}

/* hero corners + CTA */
.hero-cta {
  position: absolute;
  left: var(--gutter);
  bottom: 13vh;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s ease 1.05s, transform 1s var(--ease) 1.05s;
}
.hero-note {
  position: absolute;
  right: var(--gutter);
  bottom: 13vh;
  z-index: 4;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s ease 1.15s, transform 1s var(--ease) 1.15s;
}
body.loaded .hero-cta,
body.loaded .hero-note { opacity: 1; transform: none; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
  z-index: 4;
  width: 26px; height: 42px;
  border: 1px solid var(--muted);
  border-radius: 14px;
  opacity: 0;
  transition: opacity 1s ease 1.4s;
}
body.loaded .hero-scroll { opacity: 1; }
.hero-scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 3px; height: 9px;
  margin-left: -1.5px;
  background: var(--muted);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* hidden defs holder for the SVG portrait mask */
.svg-mask-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: .95rem 0;
  /* borders removed — the strip now bridges hero → dark music section
     (REVERT POINT: add back for a standalone strip)
  border-top: 1px solid rgba(234,230,222,.14);
  border-bottom: 1px solid rgba(234,230,222,.14);
  */
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  white-space: nowrap;
  animation: marquee 17s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.12rem;
  letter-spacing: .08em;
}
.marquee-track i {
  font-style: normal;
  color: var(--muted);
  font-size: .9rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════ SECTIONS ═══════════ */
.section { padding: 7.5rem 0; }
.section > * {
  width: var(--pad-x);
  margin-inline: auto;
}
.section-head { margin-bottom: 3.2rem; }
.section-head .h2 { margin-bottom: .6rem; }

.music, .booking { background: var(--bg2); }
.music .section-head, .booking .section-head { width: var(--pad-x); }

/* ── MUSIC LAYOUT: 4-col grid — text col + 3 album cols ────────────
   (REVERT POINT: delete .music-grid block to go back to stacked
   section-head above + centered 3-col track grid) */
.music-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;   /* title column vertically centered against the albums */
}
.music-grid .section-head {
  width: auto;
  margin-bottom: 0;
  grid-column: 1;
}
.music-grid .track-grid {
  grid-column: 2 / -1;
}
.music-grid .track { text-align: center; }
.music-grid .track-disc { margin: 0 auto 1.3rem; width: min(100%, 220px); }

/* ── MUSIC DARK THEME ──────────────────────────────────────────────
   Music sits directly under the dark marquee strip — same ink
   background so the black flows hero → strip → music without a seam.
   (REVERT POINT: .music { background: var(--bg2); } above for light) */
.music {
  background: var(--ink);
  border-top: 1px solid rgba(234,230,222,.08);   /* whisper of a seam only */
}
.music .eyebrow        { color: rgba(234,230,222,.45); }
.music .h2             { color: var(--bg); }
.music .section-note   { color: rgba(234,230,222,.55); }
.music .track-no       { color: rgba(234,230,222,.4); }
.music .track-title    { color: var(--bg); }
.music .track-play     { color: var(--bg); }
.music .track-disc {
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.12),
              inset 0 0 0 12px rgba(255,255,255,.05),
              0 22px 48px rgba(0,0,0,.55);
}

/* ═══════════ ABOUT ═══════════ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about-photo {
  position: relative;
  overflow: hidden;
  background: var(--line);
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(19,19,17,.12);
  pointer-events: none;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transition: transform 1.2s var(--ease), filter .8s ease;
}
.about-photo:hover img {
  transform: scale(1.045);
  filter: grayscale(0) contrast(1.06);
}
.about-photo figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(234,230,222,.9);
  background: rgba(19,19,17,.55);
  padding: .4rem .8rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.about-body .bio { margin: 1.6rem 0 2.2rem; }
.about-body .bio p { color: var(--muted); margin-bottom: 1rem; max-width: 34rem; }

/* ═══════════ MUSIC ═══════════ */
.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
.track { text-align: center; }
.track-disc {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #3b3b37, #131311 70%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.08),
              inset 0 0 0 12px rgba(255,255,255,.035),
              0 22px 48px rgba(19,19,17,.28);
  overflow: hidden;
  cursor: pointer;
}
.track-disc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%, transparent 0 7px, rgba(255,255,255,.05) 7px 8px);
  animation: spin 6s linear infinite;
  animation-play-state: paused;
}
.track-disc::after {
  content: "";
  position: absolute;
  inset: 36%;
  border-radius: 50%;
  background: var(--bg2);
  box-shadow: inset 0 0 0 1px rgba(19,19,17,.15);
}
.track-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--ink);
  opacity: 0;
  transform: scale(.7);
  transition: opacity .35s, transform .35s var(--ease);
}
.track:hover .track-disc::before { animation-play-state: running; }
.track:hover .track-play { opacity: 1; transform: scale(1); }
.track-no {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
}
.track-title { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════ GALLERY (latest gig) ═══════════ */
.gallery {
  background: var(--ink);           /* dark, like the music section */
  border-top: 1px solid rgba(234,230,222,.08);
}
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.2rem;
}
.gallery .eyebrow  { color: rgba(234,230,222,.45); }
.gallery .h2       { color: var(--bg); }
.gallery .section-note { color: rgba(234,230,222,.55); }
.gallery-more {
  /* Luntian-style ghost button — underline chip on dark */
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bg);
  border: 1px solid rgba(234,230,222,.35);
  border-radius: 999px;
  padding: .8rem 1.6rem;
  white-space: nowrap;
  transition: background .3s, color .3s, border-color .3s;
}
.gallery-more:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.gig-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.gig-card--wide { grid-column: 1 / -1; aspect-ratio: 21 / 10; }
.gig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);   /* like .about-photo img */
  transition: transform 1.2s var(--ease), filter .8s ease;   /* same timing as About */
  will-change: transform;
}
.gig-card:hover img {
  transform: scale(1.045);               /* same zoom as About */
  filter: grayscale(0) contrast(1.06);   /* color returns on hover, like About */
}
.gig-cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: 2.2rem 1.6rem 1.3rem;
  background: linear-gradient(0deg, rgba(19,19,17,.78), transparent);
  color: var(--bg);
}
.gig-place {
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(234,230,222,.6);
}
.gig-name {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

/* ═══════════ GIGS ═══════════ */
.gig-list { border-top: 1px solid var(--line); }
.gig {
  display: grid;
  grid-template-columns: 150px 1fr 150px auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.35rem 1.1rem;
  border-bottom: 1px solid var(--line);
  transition: background .3s, color .3s, padding .3s var(--ease);
}
.gig:hover {
  background: var(--ink);
  color: var(--bg);
  padding-left: 1.8rem;
}
.gig-date {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .12em;
}
.gig-venue { font-weight: 500; }
.gig-city { color: var(--muted); font-size: .9rem; }
.gig:hover .gig-city { color: rgba(234,230,222,.6); }
.gig-cta {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s, transform .3s var(--ease);
}
.gig:hover .gig-cta { opacity: 1; transform: none; }

/* ═══════════ BOOKING ═══════════ */
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.booking-contact { margin-top: 2.2rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.booking-contact p { font-size: .92rem; color: var(--muted); margin-bottom: .3rem; }
.booking-contact a { color: var(--ink); border-bottom: 1px solid var(--ink); }

.booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: 0 24px 60px rgba(19,19,17,.07);
}
.field { margin-bottom: 1.15rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg2);
  border: 1px solid transparent;
  border-radius: 0;
  padding: .8rem .95rem;
  transition: border-color .25s, background .25s;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--ink);
}
.field input::placeholder, .field textarea::placeholder { color: #A39E93; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-status { margin-top: 1rem; font-size: .88rem; font-weight: 500; }
.form-status.ok { color: #2E7D46; }
.form-status.err { color: #B3261E; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--ink); color: var(--bg); padding: 4rem 0 2.6rem; overflow: hidden; }
.footer-word {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 1;
  text-align: center;
  letter-spacing: .03em;
  color: rgba(234,230,222,.07);
  margin-bottom: 1rem;
  user-select: none;
}
.footer-inner { width: var(--pad-x); margin-inline: auto; display: flex; flex-direction: column; gap: 1.6rem; align-items: center; text-align: center; }
.footer-socials { display: flex; gap: 2rem; }
.footer-socials a {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(234,230,222,.65);
  position: relative;
  padding-bottom: .25rem;
  transition: color .25s;
}
.footer-socials a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.footer-socials a:hover { color: var(--bg); }
.footer-socials a:hover::after { transform: scaleX(1); }
.footer-copy { font-size: .78rem; color: rgba(234,230,222,.4); }

/* ═══════════ REVEAL ═══════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity .9s ease, transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 960px) {
  .about-grid, .booking-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 480px; }
  .gig { grid-template-columns: 110px 1fr auto; }
  .gig-city { display: none; }
  /* gallery: wide card back to 4:3, grid stays 2-up */
  .gig-card--wide { aspect-ratio: 4 / 3; }
  /* music 4-col → 2-col: text col spans full row, albums 2-up */
  .music-grid { grid-template-columns: repeat(2, 1fr); }
  .music-grid .section-head { grid-column: 1 / -1; margin-bottom: 1.2rem; }
  .music-grid .track-grid { grid-column: 1 / -1; }
  .track-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-type--front { display: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .section { padding: 5rem 0; }
  .track-grid { grid-template-columns: 1fr; }
  .track-disc { width: min(100%, 240px); }
  .field-row { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero-tag { top: 5.4rem; left: 0; right: 0; margin-inline: auto; width: fit-content; }
  .hero-cta { bottom: 10vh; flex-direction: column; align-items: flex-start; gap: .4rem; }
  .hero-note { display: none; }
  .hero-scroll { display: none; }
  .hero-line { font-size: clamp(2.8rem, 22vw, 6rem); }
  .hero-type { position: absolute; top: 10.625rem; left: 0; right: 0; }
  .section-head,
  .about-body .eyebrow, .about-body .h2,
  .booking-intro .eyebrow, .booking-intro .h2 { text-align: center; }
  .gallery-head { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gig { grid-template-columns: 90px 1fr; padding: 1.1rem .8rem; }
  .gig-cta { display: none; }
  .hero-figure { height: clamp(400px, 70vh, 650px); }
  /* ── PHONE PERFORMANCE: no ambient motion, no heavy filters ──────────
     Phones crashed the renderer 1-2s after load — the perpetual hero
     animations (figFloat, spotlight sweep w/ mix-blend-mode, marquee) +
     drop-shadow blurs were too much for mobile GPUs. Static everything.
     (REVERT POINT: delete this block to restore motion on phones) */
  .marquee-track { animation: none; }
  .hero::after { display: none; }            /* spotlight sweep + blend off */
  .hero-figure,
  .hero-type { will-change: auto; }
  .hero-figure img {
    animation: none;                          /* no float */
    filter: grayscale(1) contrast(1.15) brightness(1.08);  /* grade only, no shadows */
  }
  .booking-contact { text-align: center; }
}
@media (max-width: 420px) {
  .hero-cta { bottom: 8vh; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal], .ltr, .hero-tag, .hero-cta, .hero-note, .hero-figure, .hero-type--front, .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
