/* ============================================================
   NO PROMISES VOCAL BAND — prototype stylesheet
   Theme: modern crooner / greyscale / classy
   Type:  Bebas Neue (display) · Oswald (UI) · Cormorant Garamond (serif)
   ============================================================ */

:root {
  /* Greyscale palette ---------------------------------------- */
  --ink:    #0b0b0c;   /* near-black base                */
  --ink-2:  #141416;   /* raised dark panel              */
  --ink-3:  #1c1c1f;   /* card on dark                   */
  --smoke:  #8e8e93;   /* mid-grey text                  */
  --ash:    #b9b9bd;   /* light grey text                */
  --paper:  #f4f2ec;   /* warm off-white                 */
  --paper-2:#e9e6dd;   /* warm off-white panel           */
  --paper-3:#dcd8cd;
  --line-d: rgba(255,255,255,.12);  /* hairline on dark  */
  --line-l: rgba(11,11,12,.14);     /* hairline on light */
  --accent: #cfc8b8;   /* muted champagne-grey (reserved)*/

  /* Type ----------------------------------------------------- */
  --f-display: "Bebas Neue", "Oswald", sans-serif;
  --f-ui:      "Oswald", "Helvetica Neue", Arial, sans-serif;
  --f-serif:   "Cormorant Garamond", Georgia, serif;

  /* Layout --------------------------------------------------- */
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-serif);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- shared layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 760px; }

.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section--dark   { background: var(--ink);   color: var(--paper); }
.section--paper  { background: var(--paper); color: var(--ink); }
.section--contact{ background: var(--ink-2); color: var(--paper); }

.section__head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.eyebrow, .hero__eyebrow, .article__kicker, .signup__label, .product__price {
  font-family: var(--f-ui);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .38em;
  font-size: .72rem;
}
.eyebrow { color: var(--smoke); margin-bottom: 14px; }
.section--paper .eyebrow { color: #6f6a5f; }

.section__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.subhead {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: clamp(48px, 7vw, 88px) 0 28px;
}
.subhead--center { text-align: center; }

.section__foot {
  display: flex; gap: 24px; align-items: center; justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(40px, 6vw, 64px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--f-ui);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  font-weight: 500;
  padding: 15px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--solid { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--solid:hover { background: transparent; color: var(--paper); }
.btn--solid.btn--dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--solid.btn--dark:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: currentColor; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--ghost.btn--light { color: var(--paper); }
.btn--ghost.btn--light:hover { background: var(--paper); color: var(--ink); }
.btn--lg { padding: 18px 44px; font-size: .85rem; }
.btn--mini { padding: 10px 20px; font-size: .68rem; letter-spacing: .18em;
  background: transparent; color: var(--paper); border-color: var(--line-d); }
.btn--mini:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--disabled { opacity: .4; pointer-events: none; }

.link-more {
  font-family: var(--f-ui);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .78rem;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: opacity .2s;
}
.link-more--light { color: var(--ash); }
.link-more:hover { opacity: .6; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  background: rgba(11,11,12,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-d);
  height: var(--nav-h);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { height: 40px; width: auto; transition: height .3s ease; visibility: hidden; }
.nav.is-scrolled .nav__logo { height: 32px; }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.nav__links a {
  font-family: var(--f-ui);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .82rem;
  font-weight: 400;
  color: var(--ash);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--paper); }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--paper); transition: width .25s ease;
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--line-d);
  padding: 9px 20px !important;
  color: var(--paper) !important;
}
.nav__cta:hover { background: var(--paper); color: var(--ink) !important; }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 34px; height: 26px; position: relative;
}
.nav__toggle span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--paper);
  transition: transform .3s ease, opacity .2s ease;
}
.nav__toggle span:nth-child(1) { top: 2px; }
.nav__toggle span:nth-child(2) { top: 12px; }
.nav__toggle span:nth-child(3) { top: 22px; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ============ SCROLL-DRIVEN BRAND LOGO ============ */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.brand-bulge {
  position: fixed; top: 0; left: 0; z-index: 110;
  border-radius: 50%;
  background: rgba(11,11,12,.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 7px 20px rgba(0,0,0,.5);
  opacity: 0; pointer-events: none; will-change: opacity;
}
.brand-logo {
  position: fixed; top: 0; left: 0; z-index: 120;
  transform-origin: top left; will-change: transform;
  line-height: 0; opacity: 0;
  filter: drop-shadow(0 3px 16px rgba(0,0,0,.55));
}
.brand-logo__svg { width: 400px; height: auto; display: block; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-h) var(--gutter) 60px;
}
.hero__reel { position: absolute; inset: 0; overflow: hidden; background: var(--ink); }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 28%;
  filter: grayscale(1) contrast(1.06);
  opacity: 0; animation: heroReel 21s infinite; will-change: opacity, transform;
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 7s; }
.hero__slide:nth-child(3) { animation-delay: 14s; }
@keyframes heroReel {
  0%   { opacity: 0; transform: scale(1.04); }
  4%   { opacity: 1; }
  29%  { opacity: 1; }
  33%  { opacity: 0; transform: scale(1.11); }
  100% { opacity: 0; transform: scale(1.04); }
}
.hero__veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,12,.5) 0%, rgba(11,11,12,.72) 55%, rgba(11,11,12,.97) 100%);
}

/* hero content entrance */
.hero__inner > * { animation: heroRise 1.1s cubic-bezier(.2,.7,.2,1) both; }
.hero__eyebrow { animation-delay: .15s; }
.hero__title   { animation-delay: .3s; }
.hero__tagline { animation-delay: .55s; }
.hero__actions { animation-delay: .75s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero__grain {
  position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow { color: var(--ash); margin-bottom: 22px; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(4.6rem, 19vw, 15rem);
  line-height: .82;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.hero__tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 3.4vw, 2rem);
  color: var(--ash);
  margin-top: 18px;
  letter-spacing: .01em;
}
.hero__actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn--ghost { color: var(--paper); }
.hero .btn--ghost:hover { background: var(--paper); color: var(--ink); }

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 1px; height: 56px; overflow: hidden;
}
.hero__scroll-line { position: absolute; inset: 0; background: var(--smoke); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine {
  0% { transform: translateY(-100%); } 50% { transform: translateY(0); } 100% { transform: translateY(100%); }
}

/* ============ SEE US LIVE ============ */
.shows { max-width: 860px; margin: 0 auto; }
.show {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 8px;
  border-top: 1px solid var(--line-d);
}
.show:last-child { border-bottom: 1px solid var(--line-d); }
.show--tba { opacity: .55; }
.show__date { text-align: center; line-height: 1; }
.show__mon {
  display: block; font-family: var(--f-ui); text-transform: uppercase;
  letter-spacing: .15em; font-size: .8rem; color: var(--smoke);
}
.show__day { display: block; font-family: var(--f-display); font-size: 3rem; }
.show__name { font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: .02em; }
.show__meta { font-family: var(--f-ui); font-weight: 300; color: var(--ash); font-size: .95rem; letter-spacing: .04em; margin-top: 4px; }
.show__sub { color: var(--smoke); }
.show__note { color: var(--smoke); font-style: italic; font-size: 1rem; margin-top: 2px; }

/* ============ VIDEOS & DISCOGRAPHY ============ */
.videos { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 3vw, 28px); }
.video__thumb {
  position: relative; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #cdc8bd, #b6b1a4);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.video__thumb::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(11,11,12,.04) 0 12px, rgba(11,11,12,.08) 12px 24px);
}
.video__play {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(11,11,12,.78); position: relative; z-index: 1;
  transition: transform .25s ease, background .25s ease;
}
.video__play::before {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-left: 18px solid var(--paper); border-top: 11px solid transparent; border-bottom: 11px solid transparent;
}
.video:hover .video__play { transform: scale(1.08); background: var(--ink); }
.video__label { font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; color: #6f6a5f; margin-top: 14px; }

/* YouTube channel link */
.yt-channel {
  display: flex; justify-content: center;
  margin: clamp(28px, 4vw, 44px) 0 0;
}
.yt-channel__link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .22em;
  font-size: .76rem; color: #6f6a5f;
  border-bottom: 1px solid rgba(11,11,12,.2); padding-bottom: 4px;
  transition: color .25s ease;
}
.yt-channel__link:hover { color: #ff0000; border-color: #ff0000; }
.yt-channel__icon {
  width: 28px; height: auto; flex-shrink: 0;
  fill: currentColor; transition: fill .25s ease;
}

.albums { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 32px); }
.album { transition: transform .25s ease; }
.album:hover { transform: translateY(-6px); }
.album__art {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--line-l);
  position: relative; overflow: hidden;
}
.album__art::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.06), transparent 60%);
}
.album__title-art {
  font-family: var(--f-display); font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: .92; text-align: center; text-transform: uppercase; letter-spacing: .04em;
}
.album__art img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(1) contrast(1.03); transition: filter .4s ease;
}
.album:hover .album__art img { filter: none; }
.album__info { padding-top: 16px; }
.album__info h4 { font-family: var(--f-display); font-size: 1.5rem; letter-spacing: .02em; }
.album__year { font-family: var(--f-ui); font-weight: 300; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: #6f6a5f; margin-top: 2px; }
.album__listen { font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; margin-top: 10px; }

/* ============ IN THE NEWS ============ */
.news { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 44px); }
.article { display: flex; flex-direction: column; }
.article__thumb {
  aspect-ratio: 16/10; background-size: cover; background-position: center;
  filter: grayscale(1) contrast(1.05); border: 1px solid var(--line-d);
}
.article__thumb--alt {
  background: linear-gradient(135deg, #2a2a2e, #161618);
  position: relative;
}
.article__thumb--alt::after {
  content: "♪"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--line-d);
}
.article__body { padding-top: 22px; }
.article__kicker { color: var(--smoke); margin-bottom: 10px; }
.article__title { font-family: var(--f-display); font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: .02em; line-height: 1; }
.article__excerpt { color: var(--ash); margin: 12px 0 18px; font-size: 1.1rem; }

/* ============ SHOP ============ */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 32px); }
.product { text-align: center; transition: transform .25s ease; }
.product:hover { transform: translateY(-6px); }
.product__img {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-l);
  font-family: var(--f-display); font-size: 2.4rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink);
}
.product__img--1 { background: var(--paper-2); }
.product__img--2 { background: var(--paper-3); }
.product__img--3 { background: var(--ink); color: var(--paper); }
.product__name { font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .1em; font-size: .92rem; font-weight: 500; margin-top: 16px; }
.product__price { color: #6f6a5f; margin-top: 4px; }

/* ============ ABOUT ============ */
.about { max-width: 760px; margin: 0 auto; text-align: center; }
.about__lead { font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.4; }
.about__lead strong { font-weight: 600; }
.about__text { color: var(--ash); margin-top: 20px; font-size: 1.2rem; }

.members { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.5vw, 30px); }
.member { text-align: center; }
.member a { display: block; color: inherit; text-decoration: none; }
.member__photo {
  aspect-ratio: 3/4; background-size: cover; background-position: center top;
  background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.04);
  transition: filter .35s ease;
  position: relative; overflow: hidden;
}
.member__photo::after {
  content: "Full Bio";
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 0 14px;
  text-align: center;
  font-family: var(--f-ui); text-transform: uppercase;
  letter-spacing: .22em; font-size: .68rem; color: var(--paper);
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  opacity: 0; transition: opacity .3s ease;
}
.member:hover .member__photo { filter: grayscale(0) contrast(1); }
.member:hover .member__photo::after { opacity: 1; }
.member h4 { font-family: var(--f-serif); font-weight: 600; font-size: 1.55rem; letter-spacing: .01em; margin-top: 16px; }

/* ============ BIO PAGE ============ */
.bio-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.bio-portrait {
  aspect-ratio: 3/4; background-size: cover; background-position: center top;
  background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.04);
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.bio-name {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: .92; letter-spacing: .02em; text-transform: uppercase;
}
.bio-voice {
  font-family: var(--f-ui); text-transform: uppercase;
  letter-spacing: .3em; font-size: .72rem; color: var(--smoke);
  margin: 16px 0 32px; padding-bottom: 28px;
  border-bottom: 1px solid var(--line-d);
}
.bio-body { font-family: var(--f-serif); font-size: clamp(1.1rem, 1.8vw, 1.2rem); line-height: 1.8; color: var(--ash); }
.bio-body p + p { margin-top: 1.4em; }
.bio-body strong { color: var(--paper); font-weight: 600; }
.bio-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: 24px; border-top: 1px solid var(--line-d);
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 680px) {
  .bio-layout { grid-template-columns: 1fr; }
  .bio-portrait { position: static; max-width: 280px; }
}

/* ============ CONTACT ============ */
.signup { text-align: center; }
.signup__label { color: var(--ash); margin-bottom: 18px; }
.signup__row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.signup input {
  flex: 1 1 220px; max-width: 280px;
  background: transparent; border: 1px solid var(--line-d); color: var(--paper);
  padding: 15px 18px; font-family: var(--f-serif); font-size: 1.05rem;
}
.signup input::placeholder { color: var(--smoke); }
.signup input:focus { outline: none; border-color: var(--paper); }

.contact__divider { display: flex; align-items: center; gap: 18px; margin: 44px auto; max-width: 420px; color: var(--smoke); }
.contact__divider::before, .contact__divider::after { content: ""; flex: 1; height: 1px; background: var(--line-d); }
.contact__divider span { font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; }

.contact__book { text-align: center; }
.contact__book p { color: var(--ash); margin-bottom: 18px; font-size: 1.15rem; }

.socials { display: flex; gap: clamp(16px, 3vw, 32px); justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.socials a {
  font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .16em; font-size: .76rem;
  color: var(--smoke); transition: color .2s;
}
.socials a:hover { color: var(--paper); }

/* ============ FOOTER ============ */
.footer { background: var(--ink); border-top: 1px solid var(--line-d); padding: 56px 0; text-align: center; }
.footer__logo { width: 104px; height: auto; margin: 0 auto 24px; display: block; }
.footer__nav { display: flex; gap: clamp(14px, 2vw, 26px); justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.footer__nav a { font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; color: var(--smoke); transition: color .2s; }
.footer__nav a:hover { color: var(--paper); }
.footer__legal { color: var(--smoke); font-family: var(--f-ui); font-weight: 300; font-size: .8rem; letter-spacing: .04em; line-height: 1.7; }

/* ============ reveal animation ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll-line { animation: none; }
  .hero__slide, .hero__inner > * { animation: none; }
  .hero__slide:first-child { opacity: 1; }
  .hero__inner > * { opacity: 1; transform: none; }
}

/* ============ responsive ============ */
@media (max-width: 860px) {
  .videos, .albums, .news, .products { grid-template-columns: 1fr; }
  .members { grid-template-columns: repeat(2, 1fr); }
  .albums { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .hero__eyebrow { font-size: .62rem; margin-bottom: 16px; }
  .hero__title { font-size: clamp(3.3rem, 16vw, 5rem); }
  .hero__tagline { font-size: 1.1rem; margin-top: 14px; }
  .hero__actions { margin-top: 30px; }
}

@media (max-width: 720px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100svh; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 28px; padding: 0 40px;
    background: rgba(11,11,12,.98); backdrop-filter: blur(12px);
    transform: translateX(100%); transition: transform .35s ease;
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links a { font-size: 1.4rem; }
  .albums { grid-template-columns: 1fr; }
  .show { grid-template-columns: 64px 1fr; grid-template-areas: "date body" "date actions"; gap: 8px 20px; }
  .show__actions { grid-area: actions; }
  .show__day { font-size: 2.2rem; }
}

/* ============ NEWS LISTING PAGE ============ */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px) clamp(24px, 4vw, 44px);
}
.news-card { display: flex; flex-direction: column; }
.news-card__thumb {
  aspect-ratio: 16/10; background-size: cover; background-position: center;
  filter: grayscale(1) contrast(1.05);
  transition: filter .4s ease;
  display: block;
}
.news-card:hover .news-card__thumb { filter: none; }
.news-card__body { padding-top: 20px; flex: 1; display: flex; flex-direction: column; }
.news-card__kicker { font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .3em; font-size: .7rem; color: var(--smoke); margin-bottom: 10px; }
.news-card__title { font-family: var(--f-display); font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: .02em; line-height: 1; flex: 1; }
.news-card__excerpt { color: var(--ash); margin: 12px 0 18px; font-size: 1.05rem; line-height: 1.55; }
@media (max-width: 700px) { .news-grid { grid-template-columns: 1fr; } }

/* ============ ARTICLE PAGE ============ */
.article-page { max-width: 760px; margin: 0 auto; padding: calc(var(--nav-h) + clamp(44px, 7vw, 86px)) var(--gutter) clamp(64px, 9vw, 120px); }
.article-page__kicker { font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .3em; font-size: .72rem; color: var(--smoke); margin-bottom: 18px; }
.article-page__title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: .95;
  letter-spacing: .02em; text-transform: uppercase;
  margin-bottom: 28px;
}
.article-page__byline {
  font-family: var(--f-ui); font-size: .76rem; text-transform: uppercase;
  letter-spacing: .18em; color: var(--smoke);
  padding-bottom: 28px; border-bottom: 1px solid var(--line-d);
  margin-bottom: 36px;
}
.article-page__hero {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  margin-bottom: 44px; display: block;
}
.article-page__body { font-family: var(--f-serif); font-size: clamp(1.1rem, 2vw, 1.25rem); line-height: 1.75; color: var(--ash); }
.article-page__body p + p { margin-top: 1.4em; }
.article-page__body strong { color: var(--paper); font-weight: 600; }
.article-page__pull {
  border-left: 3px solid var(--smoke);
  margin: 2.2em 0; padding: 0 0 0 28px;
  font-style: italic; font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  color: var(--paper); line-height: 1.45;
}
.article-page__nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px; border-top: 1px solid var(--line-d);
  flex-wrap: wrap; gap: 16px;
}

/* ============ SHOWS PAGE ============ */
.shows-page { margin-bottom: clamp(48px, 7vw, 80px); }
.shows-page__label {
  font-family: var(--f-ui);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .72rem;
  color: var(--smoke);
  margin-bottom: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-d);
}
.shows-page__label--past { opacity: .7; }
.shows--full { max-width: 100%; }
.shows--past .show { opacity: .5; }
.shows--past .show:hover { opacity: .75; transition: opacity .2s; }
.show__yr {
  display: block;
  font-family: var(--f-ui);
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--smoke);
  margin-top: 2px;
}
.show__tag {
  font-family: var(--f-ui);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .64rem;
  color: var(--smoke);
  border: 1px solid var(--line-d);
  padding: 6px 14px;
  white-space: nowrap;
}
.shows-page__book {
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 0 clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--line-d);
}
.shows-page__book-label {
  font-family: var(--f-ui);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
  color: var(--ash);
  margin-bottom: 20px;
}

/* ============ HERO: more photos link ============ */
.hero__more {
  position: absolute; right: var(--gutter); bottom: 32px; z-index: 3;
  font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .2em;
  font-size: .74rem; color: var(--ash);
  border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 5px;
  transition: color .2s, border-color .2s;
}
.hero__more:hover { color: var(--paper); border-color: var(--paper); }
@media (max-width: 600px) {
  .hero__more { right: 50%; transform: translateX(50%); bottom: 70px; }
}

/* ============ SUBPAGE: nav variant + page layout ============ */
.nav--solid {
  background: rgba(11,11,12,.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-d);
}
.nav__logo-static { height: 50px; width: auto; display: block; }

.page {
  max-width: var(--maxw); margin: 0 auto;
  padding: calc(var(--nav-h) + clamp(44px, 7vw, 86px)) var(--gutter) clamp(64px, 9vw, 120px);
}
.page__head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.page__title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(3rem, 9vw, 6rem); line-height: .95;
  letter-spacing: .02em; text-transform: uppercase;
}
.page__intro { color: var(--ash); font-size: 1.2rem; max-width: 600px; margin: 18px auto 0; }
.page__back { text-align: center; margin-top: clamp(48px, 7vw, 80px); }

/* ============ GALLERY (masonry) ============ */
.gallery { column-count: 2; column-gap: clamp(14px, 2.5vw, 26px); }
.gallery__item {
  break-inside: avoid; margin: 0 0 clamp(14px, 2.5vw, 26px);
  position: relative; overflow: hidden; cursor: zoom-in; display: block;
}
.gallery__item img {
  width: 100%; display: block;
  filter: grayscale(1) contrast(1.04);
  transition: filter .45s ease, transform .6s ease;
}
.gallery__item:hover img { filter: none; transform: scale(1.035); }
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 16px 12px;
  font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .2em;
  font-size: .7rem; color: var(--paper);
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.gallery__item:hover .gallery__cap { opacity: 1; }
@media (max-width: 640px) { .gallery { column-count: 1; } }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,8,9,.93);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 5vw;
  opacity: 0; pointer-events: none; transition: opacity .3s ease; cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 90vh; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox__close {
  position: absolute; top: 22px; right: 28px; color: var(--ash);
  font-family: var(--f-ui); font-size: 2rem; line-height: 1; cursor: pointer;
}
.lightbox__close:hover { color: var(--paper); }

/* ============ SWAPPABLE MEDIA: photo fills edge-to-edge, no hairline border (matches .member__photo / The Lineup) ============ */
.video__thumb--photo { background-size: cover; background-position: center; }
.video__thumb--photo::after { background: rgba(11,11,12,.18); }
.product__img--photo {
  background-size: cover;
  background-position: center;
  border: none;
  color: transparent;
}

/* ============ PHOTOS PAGE: native Gallery block matches site treatment ============ */
.gallery--blocks { margin-top: 8px; }
.gallery--blocks img {
  display: block;
  filter: grayscale(1) contrast(1.04);
  transition: filter .45s ease, transform .6s ease;
}
.gallery--blocks a:hover img,
.gallery--blocks figure:hover img { filter: none; transform: scale(1.02); }

/* ============ IN THE NEWS: thumb links + colorizes on hover (matches The Lineup) ============ */
.article__thumb-link { display: block; }
.article__thumb { transition: filter .4s ease; }
.article:hover .article__thumb { filter: none; }

/* video thumbnail image fills the 16:9 box, no bars */
.video__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; }

/* ============ DISCOGRAPHY: embed players ============ */
.album__art-link { display: block; }
.album__embed { margin-top: 14px; }
.album__embed iframe { width: 100% !important; border: 0; border-radius: 10px; display: block; }
