/* =========================================================
   DADS ALOUD — village-fête / vintage gig-poster aesthetic
   ========================================================= */

:root {
  /* paper + ink */
  --cream:   #FBEFD7;
  --cream-2: #F6E3C4;
  --ink:     #2C2118;
  --ink-soft:#5b4a39;

  /* faded-poster palette */
  --red:    #E2503C;
  --red-dk: #C03A2B;
  --yellow: #F4B73D;
  --teal:   #218C7E;
  --teal-dk:#176B60;
  --blue:   #3E6FA8;
  --pink:   #E98A8A;

  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);

  --font-display: "Shrikhand", cursive;
  --font-head: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-hand: "Gochi Hand", cursive;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(44,33,24,.10) 1px, transparent 0);
  background-size: 22px 22px;
  overflow-x: hidden;
  line-height: 1.55;
}

/* film grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

a { color: inherit; }

/* ============ BUNTING ============ */
.bunting {
  position: relative; height: 56px; z-index: 5;
  margin-top: 4px;
}
.bunting__svg { position: absolute; inset: 0; width: 100%; height: 56px; }
.bunting__string { stroke: var(--ink); stroke-width: 3; }
.bunting__flags {
  position: absolute; inset: 0; display: flex; justify-content: space-around;
  align-items: flex-start; padding: 0 10px;
}
.flag {
  width: 0; height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 30px solid var(--red);
  filter: drop-shadow(2px 3px 0 rgba(44,33,24,.25));
  transform-origin: top center;
  animation: flutter 3.5s ease-in-out infinite;
}
@keyframes flutter {
  0%,100% { transform: rotate(-3deg); }
  50%     { transform: rotate(3deg); }
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem clamp(1rem, 4vw, 2.4rem);
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 4px 0 rgba(44,33,24,.12);
}
.nav__logo {
  font-family: var(--font-display); font-size: 1.5rem;
  text-decoration: none; color: var(--ink); letter-spacing: .5px;
  display: flex; align-items: center; gap: .4rem;
}
.nav__logo-mark {
  background: var(--red); color: var(--cream);
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1rem;
  border: 2px solid var(--ink);
}
.nav__links { display: flex; align-items: center; gap: clamp(.6rem, 2vw, 1.6rem); }
.nav__links a {
  font-family: var(--font-head); font-weight: 700; text-decoration: none;
  color: var(--ink); position: relative; padding: .2rem 0;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 3px; width: 0;
  background: var(--red); transition: width .25s ease;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--teal); color: var(--cream) !important;
  padding: .45rem 1rem; border: 2.5px solid var(--ink);
  border-radius: 30px; box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease;
}
.nav__cta:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ============ BUTTONS / BADGES ============ */
.btn {
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  text-decoration: none; cursor: pointer;
  display: inline-block; padding: .8rem 1.5rem;
  border: 3px solid var(--ink); border-radius: 40px;
  box-shadow: var(--shadow); transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--ink); }
.btn--primary { background: var(--red); color: var(--cream); }
.btn--ghost   { background: var(--yellow); color: var(--ink); }

.badge {
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  padding: .35rem .85rem; border-radius: 30px; border: 2.5px solid var(--ink);
  transform: rotate(-2deg); box-shadow: var(--shadow-sm);
}
.badge--red    { background: var(--red);    color: var(--cream); transform: rotate(-3deg); }
.badge--teal   { background: var(--teal);   color: var(--cream); transform: rotate(2deg); }
.badge--yellow { background: var(--yellow); color: var(--ink);   transform: rotate(-1deg); }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(2.5rem, 7vw, 5rem) 1.2rem clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.sunburst {
  position: absolute; top: 38%; left: 50%; width: 175vmax; height: 175vmax;
  transform: translate(-50%,-50%); z-index: 0; opacity: .55;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--yellow) 0deg 9deg,
    transparent 9deg 18deg);
  animation: spin 90s linear infinite;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero__inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }

.hero__eyebrow {
  font-family: var(--font-hand); font-size: 1.4rem; color: var(--red-dk);
  margin: 0 0 .4rem; transform: rotate(-1.5deg);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 15vw, 9.5rem);
  line-height: .86; margin: 0; letter-spacing: 1px;
}
.hero__title-line { display: block; color: var(--red);
  text-shadow: 5px 5px 0 var(--ink), 5px 5px 0 var(--ink); }
.hero__title-line--alt { color: var(--teal); }
.hero__tag {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.6rem); margin: 1.1rem 0 1.5rem;
}
.hero__badges { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* spinning vinyl */
.now-playing {
  position: absolute; right: clamp(1rem, 5vw, 5rem); top: clamp(1rem, 6vw, 3rem);
  z-index: 3; text-align: center; display: none;
}
.now-playing__text { font-family: var(--font-hand); font-size: 1.1rem; color: var(--ink); }
.vinyl {
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #1a1a1a 0 32%, #2c2c2c 33% 100%);
  border: 4px solid var(--ink); display: grid; place-items: center;
  box-shadow: var(--shadow); animation: spin 4s linear infinite; margin: 0 auto .3rem;
}
.vinyl__label {
  width: 46px; height: 46px; border-radius: 50%; background: var(--yellow);
  color: var(--ink); font-family: var(--font-head); font-weight: 800;
  font-size: .5rem; line-height: 1; display: grid; place-items: center;
  text-align: center; border: 2px solid var(--ink);
}

.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 2; }
.wave-divider svg { width: 100%; height: 55px; display: block; fill: var(--teal); }

/* ============ CALL & RESPONSE ============ */
.callresponse { background: var(--teal); color: var(--cream); text-align: center;
  padding: clamp(3rem,7vw,5rem) 1.2rem; border-bottom: 3px solid var(--ink); }
.section-kicker { font-family: var(--font-hand); font-size: 1.4rem; color: var(--yellow); margin: 0 0 1rem; }
.callresponse__line {
  font-family: var(--font-display); font-size: clamp(2rem, 7vw, 4rem);
  margin: .1rem 0; line-height: 1; text-shadow: 3px 3px 0 var(--teal-dk);
}
.callresponse__line--2 { color: var(--yellow); }
.snack-btn {
  margin: 1.6rem auto .5rem; display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  background: var(--cream); color: var(--ink); cursor: pointer;
  padding: .7rem 1.4rem; border: 3px solid var(--ink); border-radius: 40px;
  box-shadow: var(--shadow); transition: transform .12s ease, box-shadow .12s ease;
}
.snack-btn:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.snack-btn__face { font-size: 1.6rem; display: inline-block; }
.snack-btn.pop .snack-btn__face { animation: pop .4s ease; }
@keyframes pop { 0%{transform:scale(1)} 40%{transform:scale(1.6) rotate(15deg)} 100%{transform:scale(1)} }
.callresponse__answer {
  font-family: var(--font-display); font-size: clamp(2.5rem, 9vw, 5rem);
  color: var(--yellow); margin: .4rem 0 0; opacity: 0; transform: scale(.6);
  transition: opacity .3s ease, transform .35s cubic-bezier(.2,1.6,.4,1);
  text-shadow: 4px 4px 0 var(--teal-dk);
}
.callresponse__answer.show { opacity: 1; transform: scale(1); }
.snack-count { font-family: var(--font-hand); font-size: 1.2rem; color: var(--cream); min-height: 1.4rem; margin: .6rem 0 0; }

/* ============ SECTION HEADS ============ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem,5vw,3rem); padding: 0 1rem; }
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--red); margin: 0; line-height: 1; text-shadow: 3px 3px 0 var(--ink);
}
.section-title--light { color: var(--yellow); text-shadow: 3px 3px 0 var(--ink); }
.section-sub { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; margin: .8rem 0 0; }
.section-sub--light { color: var(--cream); }

/* ============ BAND ============ */
.band { padding: clamp(3rem,7vw,5rem) clamp(1rem,4vw,2rem); max-width: var(--maxw); margin: 0 auto; }
/* scrapbook band photos */
.band-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem;
  max-width: 840px; margin: 0 auto clamp(2.2rem, 5vw, 3.2rem); }
.band-photo { margin: 0; background: var(--cream); border: 3px solid var(--ink); border-radius: 14px;
  padding: .7rem .7rem .2rem; box-shadow: var(--shadow); transform: rotate(-1.6deg);
  transition: transform .15s ease, box-shadow .15s ease; }
.band-photo:nth-child(even) { transform: rotate(1.6deg); }
.band-photo:hover { transform: rotate(0) translateY(-5px); box-shadow: 9px 12px 0 var(--ink); }
.band-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  border: 2.5px solid var(--ink); border-radius: 8px; }
.band-photo figcaption { font-family: var(--font-hand); font-size: 1.3rem; text-align: center;
  padding: .45rem 0 .55rem; color: var(--ink); }

.band__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; }
.dadcard {
  background: var(--cream-2); border: 3px solid var(--ink); border-radius: 18px;
  padding: 1.4rem; box-shadow: var(--shadow); position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.dadcard:nth-child(odd) { transform: rotate(-1.2deg); }
.dadcard:nth-child(even){ transform: rotate(1.2deg); }
.dadcard:hover { transform: rotate(0) translateY(-6px); box-shadow: 9px 12px 0 var(--ink); z-index: 2; }
.dadcard__avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto .8rem;
  display: grid; place-items: center; font-size: 3rem; border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
}
/* full portrait photo at the top of the card */
.dadcard--photo { padding-top: 0; overflow: hidden; }
.dadcard__photo { margin: 0 -1.4rem 1rem; border-bottom: 3px solid var(--ink); overflow: hidden; }
.dadcard__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 12%; display: block; }
.dadcard__name { font-family: var(--font-display); font-size: 1.5rem; text-align: center; margin: 0; color: var(--red-dk); }
.dadcard__role { font-family: var(--font-hand); font-size: 1.2rem; text-align: center; margin: 0 0 .8rem; color: var(--teal-dk); }
.dadcard__bio { font-size: .95rem; margin: 0 0 1rem; text-align: center; }
.dadcard__stats { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.dadcard__stats li { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; font-weight: 700; }
.stat-bar { flex: 0 0 92px; height: 10px; background: rgba(44,33,24,.15); border: 2px solid var(--ink); border-radius: 6px; overflow: hidden; }
.stat-bar span { display: block; height: 100%; background: var(--yellow); }
code { background: rgba(44,33,24,.1); padding: .1rem .35rem; border-radius: 5px; font-size: .82em; }

/* ============ LISTEN ============ */
.listen { background: var(--red); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  padding: clamp(3rem,7vw,5rem) clamp(1rem,4vw,2rem); }
.listen__grid { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 1.5rem;
  grid-template-columns: 2fr 1fr 1fr; }
.media-card { background: var(--cream); border: 3px solid var(--ink); border-radius: 16px; padding: .9rem; box-shadow: var(--shadow); }
.media-card--feature { grid-row: span 1; }
.media-card h3 { font-family: var(--font-head); font-weight: 800; margin: .7rem 0 .2rem; font-size: 1.15rem; }
.media-card p { margin: 0; font-size: .92rem; }
.media-card__link { font-weight: 800; color: var(--red-dk); text-decoration: none; border-bottom: 2.5px solid var(--red-dk); }
.media-card__link:hover { color: var(--teal-dk); border-bottom-color: var(--teal-dk); }
.media-card__frame { aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; border: 2.5px solid var(--ink);
  background: var(--ink); display: grid; place-items: center; }
.media-card--feature .media-card__frame { aspect-ratio: 16/10; }
.media-card__frame video, .media-card__frame iframe,
.media-card__frame img { width: 100%; height: 100%; display: block; border: 0; object-fit: cover; }
.media-card__placeholder { color: var(--cream); text-align: center; font-size: .85rem; padding: 1rem; }
.media-card__placeholder code { background: rgba(255,255,255,.15); color: var(--cream); }
.media-card__play { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto .6rem;
  background: var(--red); border-radius: 50%; border: 3px solid var(--cream); font-size: 1.2rem; }
.media-card__frame--photo { background: var(--cream-2); }
.photo-placeholder { text-align: center; color: var(--ink-soft); }
.photo-placeholder span { font-size: 2rem; display: block; }
.photo-placeholder p { font-family: var(--font-hand); font-size: 1.1rem; margin: .2rem 0 0; }

/* photo gallery strip */
.gallery { max-width: var(--maxw); margin: 1.6rem auto 0; display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.gallery__item { display: block; border: 3px solid var(--ink); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--cream); transition: transform .14s ease, box-shadow .14s ease; }
.gallery__item:hover { transform: translateY(-4px); box-shadow: 6px 8px 0 var(--ink); }
.gallery__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* set list ticker */
.setlist { max-width: var(--maxw); margin: 2rem auto 0; overflow: hidden;
  background: var(--ink); border: 3px solid var(--ink); border-radius: 40px; padding: .5rem 0; }
.setlist__track { display: flex; gap: 2.5rem; white-space: nowrap; width: max-content;
  animation: ticker 28s linear infinite; font-family: var(--font-display); color: var(--yellow); font-size: 1.2rem; }
.setlist__track span { display: inline-flex; align-items: center; gap: 2.5rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============ KIDS ============ */
.kids { padding: clamp(3rem,7vw,5rem) clamp(1rem,4vw,2rem); max-width: var(--maxw); margin: 0 auto; }
.kids__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1.6rem; }
.sheet { text-decoration: none; color: var(--ink); background: var(--cream-2);
  border: 3px solid var(--ink); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
  display: block; transition: transform .15s ease, box-shadow .15s ease; }
.sheet:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 9px 12px 0 var(--ink); }
.sheet__thumb { aspect-ratio: 4/3; border-bottom: 3px solid var(--ink); background-size: cover; background-position: center; }
.sheet__thumb--1 { background: var(--cream) center/72% no-repeat url("../assets/sheets/colouring-dads-are-cool.svg"); }
.sheet__thumb--2 { background: var(--cream) center/72% no-repeat url("../assets/sheets/colouring-air-guitar.svg"); }
.sheet__thumb--3 { background: var(--cream) center/82% no-repeat url("../assets/sheets/snack-maze.svg"); }
.sheet__meta { padding: .9rem 1rem 1.1rem; }
.sheet__meta h3 { font-family: var(--font-head); font-weight: 800; margin: 0 0 .3rem; font-size: 1.1rem; }
.sheet__dl { font-family: var(--font-hand); font-size: 1.15rem; color: var(--red-dk); }

.dadjoke { margin-top: 2.5rem; text-align: center; background: var(--yellow);
  border: 3px solid var(--ink); border-radius: 18px; padding: 1.8rem 1.2rem; box-shadow: var(--shadow); }
.dadjoke__label { font-family: var(--font-hand); font-size: 1.3rem; margin: 0 0 .8rem; }
.dadjoke__btn { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; cursor: pointer;
  background: var(--red); color: var(--cream); border: 3px solid var(--ink); border-radius: 40px;
  padding: .6rem 1.3rem; box-shadow: var(--shadow-sm); transition: transform .12s ease, box-shadow .12s ease; }
.dadjoke__btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.dadjoke__text { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; margin: 1.1rem auto 0; max-width: 520px; min-height: 1.5em; }

/* ============ GIGS ============ */
.gigs { background: var(--blue); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  padding: clamp(3rem,7vw,5rem) clamp(1rem,4vw,2rem); }
.gigs__list { list-style: none; padding: 0; margin: 0 auto; max-width: 760px; display: grid; gap: 1rem; }
.gig { display: flex; align-items: center; gap: 1.2rem; background: var(--cream);
  border: 3px solid var(--ink); border-radius: 14px; padding: 1rem 1.3rem; box-shadow: var(--shadow-sm);
  transition: transform .12s ease; }
.gig:hover { transform: translateX(6px); }
.gig__date { flex: 0 0 64px; text-align: center; font-family: var(--font-head); font-weight: 800; line-height: 1; }
.gig__date b { display: block; font-size: 1.8rem; color: var(--red); }
.gig__info { flex: 1; }
.gig__info h3 { font-family: var(--font-head); font-weight: 800; margin: 0; font-size: 1.15rem; }
.gig__info p { margin: .1rem 0 0; font-size: .9rem; color: var(--ink-soft); }
.gig__tag { font-family: var(--font-hand); font-size: 1.1rem; color: var(--teal-dk); white-space: nowrap; }

/* ============ BOOK ============ */
.book { padding: clamp(3rem,7vw,5rem) 1.2rem; }
.book__inner { max-width: 640px; margin: 0 auto; background: var(--cream-2);
  border: 3px solid var(--ink); border-radius: 22px; padding: clamp(1.6rem,4vw,2.6rem); box-shadow: var(--shadow); text-align: center; }
.book__title { font-family: var(--font-display); font-size: clamp(2rem,6vw,3rem); color: var(--teal); margin: 0; text-shadow: 3px 3px 0 var(--ink); }
.book__sub { font-family: var(--font-head); font-weight: 600; margin: .6rem 0 1.6rem; }
.book__form { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; text-align: left; }
.field { display: flex; flex-direction: column; gap: .3rem; }
.field--wide { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 700; font-size: .9rem; }
.field input, .field textarea { font-family: var(--font-body); font-size: 1rem; padding: .7rem .9rem;
  border: 2.5px solid var(--ink); border-radius: 10px; background: var(--cream); resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid var(--yellow); outline-offset: 1px; }
.book__form .btn { grid-column: 1 / -1; justify-self: center; margin-top: .4rem; }
.book__fallback { margin: 1.2rem 0 0; font-size: .95rem; }
.book__fallback a { color: var(--red-dk); font-weight: 700; }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: var(--cream); text-align: center; padding: 3rem 1.2rem 2.2rem; }
.footer__big { font-family: var(--font-display); font-size: clamp(2.5rem,12vw,7rem); color: var(--yellow);
  line-height: .9; letter-spacing: 2px; }
.footer__snack { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin: .8rem 0 1.6rem; }
.footer__snack strong { color: var(--yellow); }
.footer__row { font-family: var(--font-head); font-size: .9rem; opacity: .8; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.footer__dot { opacity: .5; }

/* ============ BACKSTAGE PAGE ============ */
.bs-hero { position: relative; overflow: hidden; text-align: center;
  padding: clamp(2.5rem,6vw,4.5rem) 1.2rem clamp(3rem,6vw,4.5rem); }
.bs-hero__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.bs-hero__note { font-family: var(--font-hand); font-size: 1.3rem; color: var(--red-dk); margin: 1rem 0 0; }

/* lanyard pass */
.pass { position: relative; width: 150px; margin: 0 auto 1.4rem; padding: 1.5rem 1rem 1rem;
  background: var(--ink); color: var(--cream); border: 3px solid var(--ink); border-radius: 12px;
  box-shadow: var(--shadow); transform: rotate(-4deg); }
.pass::before { content: ""; position: absolute; left: 50%; top: -42px; width: 14px; height: 46px;
  transform: translateX(-50%); background: linear-gradient(var(--red), var(--teal));
  border: 2px solid var(--ink); border-radius: 4px; }
.pass__hole { position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
  width: 30px; height: 9px; background: var(--cream); border: 2px solid #000; border-radius: 6px; }
.pass__label { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  line-height: 1.05; color: var(--yellow); margin-top: .4rem; }
.pass__sub { display: block; font-family: var(--font-hand); font-size: 1rem; margin-top: .4rem; opacity: .9; }

.bs-gallery { max-width: var(--maxw); margin: 0 auto; padding: 1rem clamp(1rem,4vw,2rem) clamp(3rem,7vw,5rem); }
.bs-gallery__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.8rem; align-items: start; }
.poly { margin: 0; background: var(--cream); border: 3px solid var(--ink); border-radius: 8px;
  padding: .8rem .8rem .3rem; box-shadow: var(--shadow); transform: rotate(var(--tilt, 0deg));
  transition: transform .15s ease, box-shadow .15s ease, z-index 0s; }
.poly:hover { transform: rotate(0) scale(1.03); box-shadow: 10px 12px 0 var(--ink); position: relative; z-index: 3; }
.poly a { display: block; }
.poly img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
  border: 2.5px solid var(--ink); border-radius: 4px; background: var(--cream-2); }
.poly figcaption { font-family: var(--font-hand); font-size: 1.2rem; text-align: center;
  padding: .5rem .2rem .4rem; color: var(--ink); }
.bs-empty { text-align: center; font-family: var(--font-head); font-weight: 700; padding: 2rem 0; }

/* ============ LIGHTBOX ============ */
/* photos that open in the gallery viewer */
.band-photo a, .media-card__frame--photo a { display: block; }
.media-card__frame--photo a { width: 100%; height: 100%; }
a[data-lightbox] { cursor: zoom-in; }

body.lightbox-lock { overflow: hidden; }

.lightbox { position: fixed; inset: 0; z-index: 1000; display: none;
  background: rgba(28, 21, 14, .92); padding: clamp(1rem, 4vw, 2.5rem); }
.lightbox.open { display: grid; place-items: center; animation: lb-fade .2s ease; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }

.lightbox__dialog { position: relative; display: grid; justify-items: center;
  gap: .7rem; max-width: 100%; }

.lightbox__figure { margin: 0; display: grid; justify-items: center; gap: .7rem; max-width: 100%; }
.lightbox__stage { position: relative; display: inline-block; line-height: 0; max-width: 100%; }
.lightbox__img { display: block; width: auto; height: auto;
  max-width: 88vw; max-height: 80vh; object-fit: contain;
  background: var(--cream); border: 4px solid var(--cream); border-radius: 10px;
  box-shadow: 8px 10px 0 rgba(0,0,0,.4); }
.lightbox__caption { font-family: var(--font-hand); font-size: 1.4rem; color: var(--cream);
  text-align: center; max-width: 38ch; }
.lightbox__caption[hidden] { display: none; }

.lightbox__btn { background: var(--cream); color: var(--ink); border: 3px solid var(--ink);
  border-radius: 50%; cursor: pointer; line-height: 1; padding: 0; box-shadow: var(--shadow-sm);
  display: grid; place-items: center; transition: transform .12s ease, background .12s ease; }
.lightbox__btn:hover { background: var(--yellow); }
.lightbox__btn[hidden] { display: none; }
/* arrows hug the image edges, vertically centred */
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; font-size: 2rem; z-index: 2; }
.lightbox__prev { left: .5rem; }
.lightbox__next { right: .5rem; }
.lightbox__prev:hover, .lightbox__next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__prev:active, .lightbox__next:active { transform: translateY(-50%) scale(.94); }
.lightbox__close { position: absolute; top: -1.4rem; right: -1.4rem; z-index: 3;
  width: 44px; height: 44px; font-size: 1.7rem; }
.lightbox__close:hover { transform: scale(1.08); }
.lightbox__count { margin: 0; text-align: center;
  font-family: var(--font-head); font-weight: 800; color: var(--yellow); letter-spacing: .04em; }

@media (max-width: 600px) {
  .lightbox__prev, .lightbox__next { width: 42px; height: 42px; font-size: 1.7rem; }
  .lightbox__prev { left: .35rem; }
  .lightbox__next { right: .35rem; }
  .lightbox__close { top: -1.1rem; right: -.4rem; }
  .lightbox__caption { font-size: 1.2rem; }
  .lightbox__img { max-width: 92vw; max-height: 74vh; }
}

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (min-width: 720px) { .now-playing { display: block; } }

@media (max-width: 860px) {
  .listen__grid { grid-template-columns: 1fr 1fr; }
  .media-card--feature { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; flex-direction: column; justify-content: center;
    background: var(--cream); width: min(75vw, 280px); padding: 2rem; gap: 1.6rem;
    border-left: 3px solid var(--ink); transform: translateX(100%); transition: transform .3s ease; }
  .nav__links.open { transform: none; }
  .nav__toggle { display: block; z-index: 110; }
  .listen__grid { grid-template-columns: 1fr; }
  .book__form { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto; transition: none !important; }
}
