/* ============================================================
   JAMEY JOHNSON — Official Website
   Design System v2.0
   Warm Whiskey & Amber | Polished Outlaw Country
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Barlow+Condensed:wght@300;400;500;600;700;800&display=swap');

/* ── CUSTOM TOUR FONTS ────────────────────────────────────── */
@font-face {
  font-family: 'Grand Mighty';
  src: url('fonts/Grand_Mighty.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Old Street Signs';
  src: url('fonts/Old_Street_Signs.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Carsito Tember';
  src: url('fonts/Carsito_Tember.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  /* Admat-matched palette — burnt sienna / rust / earth */
  --amber:      #B84A1C;  /* burnt sienna — "TRAVELING TRUEBADOUR" rust */
  --amber-lt:   #D4672A;  /* lighter rust for hovers */
  --amber-dk:   #8B3210;  /* deep rust for pressed states */
  --cream:      #EDE0CC;  /* warm parchment text */
  --parchment:  #C8B48A;  /* aged paper mid-tone */
  --bark:       #2E1A0A;  /* deep earth brown */
  --oak:        #3D2210;  /* road/ground brown */
  --charcoal:   #140E06;  /* near-black with warm undertone */
  --coal:       #0C0804;  /* deepest background */
  --smoke:      #7A6A52;  /* muted text */
  --offwhite:   #F5EDD8;  /* warm off-white, like aged paper */

  --font-display: 'Old Street Signs', 'Barlow Condensed', sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Barlow Condensed', sans-serif;
  --font-accent:  'Carsito Tember', cursive;
  --font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 160px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--amber-lt); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber); }
button { cursor: pointer; font-family: inherit; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .028;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--offwhite);
  line-height: 1.05;
  letter-spacing: 0.04em;
  font-weight: normal;
}
.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.label::after {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
form .label::after { display: none; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  line-height: 1;
}
.btn-primary {
  background: var(--amber);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--amber-lt);
  color: var(--charcoal);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(217,201,168,.4);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber-lt);
}
.btn-sm { padding: 10px 22px; font-size: .7rem; }

/* ── LAYOUT HELPERS ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── NAV ──────────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 500;
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}
#site-nav.scrolled {
  background: rgba(14,10,4,.97);
  box-shadow: 0 1px 0 rgba(200,134,42,.18);
  backdrop-filter: blur(12px);
}
#site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--parchment);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber-lt); }
.nav-cta {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--charcoal);
  padding: 18px 40px;
  text-decoration: none;
  transition: background .2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--amber-lt); color: var(--charcoal); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--amber);
  transition: transform .2s, opacity .2s;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: rgba(10,7,2,.98);
  border-left: 1px solid rgba(200,134,42,.15);
  z-index: 600;
  flex-direction: column;
  padding: 80px 40px 40px;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .3s var(--ease-out);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer .nav-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.nav-drawer .nav-links a { font-size: 1.6rem; letter-spacing: .08em; padding: 8px 0; display: block; }
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 599;
}
.nav-overlay.open { display: block; }
.nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--amber); font-size: 1.5rem;
  line-height: 1;
}

/* Social icons in nav */
.nav-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
}
.nav-socials a {
  font-size: .85rem;
  color: var(--smoke);
  transition: color .2s;
}
.nav-socials a:hover { color: var(--amber-lt); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 56vw; /* matches wide banner ~16:9 proportion */
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 80px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(200,134,42,.15) 0%, transparent 55%),
    linear-gradient(160deg, #2A1A06 0%, #181208 50%, #0A0704 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.hero-watermark {
  position: absolute;
  right: -0.05em; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,134,42,.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}
.hero-content {
  position: relative;
  padding: 0 48px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-content .label { margin-bottom: 20px; }
.hero-title {
  font-family: 'Old Street Signs', 'Barlow Condensed', sans-serif;
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 900;
  line-height: .88;
  color: var(--offwhite);
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--amber-lt); }
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--parchment);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px; right: 48px;
  font-family: var(--font-sans);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--smoke);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: .3; transform: scaleY(.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── RELEASE BANNER ───────────────────────────────────────── */
.release-banner {
  background: linear-gradient(135deg, var(--oak) 0%, #251508 100%);
  border-top: 1px solid rgba(200,134,42,.25);
  border-bottom: 1px solid rgba(200,134,42,.2);
  padding: 44px 0;
}
.release-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.release-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--amber);
  padding: 5px 12px;
  margin-bottom: 10px;
}
.release-text h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 4px;
}
.release-text p {
  font-style: italic;
  color: var(--parchment);
  font-size: 1rem;
}
.release-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 20px;
}
.section-header .label { margin-bottom: 10px; }
.section-header h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }

/* ── MUSIC GRID (homepage) ────────────────────────────────── */
.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.music-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--bark);
}
.music-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s var(--ease-out);
}
.music-card:hover .music-card-bg { transform: scale(1.04); }
.music-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,10,4,.92) 0%, rgba(14,10,4,.2) 55%, transparent 100%);
  transition: background .3s;
}
.music-card:hover .music-card-overlay {
  background: linear-gradient(to top, rgba(200,134,42,.2) 0%, rgba(14,10,4,.5) 60%, transparent 100%);
}
.music-card-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.music-card-type {
  font-family: var(--font-sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.music-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--offwhite);
  line-height: 1.15;
}
.music-card-sub {
  font-size: .85rem;
  font-style: italic;
  color: var(--parchment);
  margin-top: 4px;
}
/* Fallback bg gradients for cards with no photo */
.mc-bg-1 { background: linear-gradient(135deg, #3D2409 0%, #1A0E04 100%); }
.mc-bg-2 { background: linear-gradient(135deg, #251809 0%, #0E0804 100%); }
.mc-bg-3 { background: linear-gradient(135deg, #4A2E10 0%, #231506 100%); }

/* ── TOUR LIST ────────────────────────────────────────────── */
.tour-section-wrap {
  position: relative;
  background: linear-gradient(180deg, var(--coal) 0%, var(--charcoal) 100%);
  border-top: 1px solid rgba(200,134,42,.12);
}
.tour-list { display: flex; flex-direction: column; }
.tour-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(217,201,168,.1);
  transition: padding .2s, background .2s;
  cursor: pointer;
}
.tour-item:hover {
  background: rgba(200,134,42,.05);
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
}
.tour-date { text-align: center; }
.tour-date .month {
  font-family: var(--font-sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
}
.tour-date .day {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--offwhite);
  line-height: 1;
}
.tour-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 3px;
}
.tour-info p { font-size: .88rem; color: var(--smoke); font-style: italic; }
.tour-ticket {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 9px 18px;
  background: transparent;
  transition: background .2s, color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.tour-ticket:hover { background: var(--amber); color: var(--charcoal); }

/* Bandsintown embed wrapper */
.bit-wrapper { margin-top: 8px; }

/* ── NEWS LIST ────────────────────────────────────────────── */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(217,201,168,.1);
  transition: background .2s;
}
.news-item:hover { background: rgba(200,134,42,.04); }
.news-date {
  text-align: center;
  padding-top: 4px;
}
.news-date .month {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
}
.news-date .day {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--offwhite);
  line-height: 1;
}
.news-date .year {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 400;
  color: var(--smoke);
  letter-spacing: .1em;
  display: block;
}
.news-body h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--offwhite);
  line-height: 1.3;
  margin-bottom: 8px;
}
.news-body h3 a { color: inherit; text-decoration: none; transition: color .2s; }
.news-body h3 a:hover { color: var(--amber-lt); }
.news-body p { font-size: 1rem; color: var(--smoke); line-height: 1.6; }

/* ── DISCOGRAPHY PAGE ─────────────────────────────────────── */
.disco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.disco-card {
  display: flex;
  flex-direction: column;
}
.disco-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bark);
  margin-bottom: 14px;
}
.disco-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .25s;
}
.disco-card:hover .disco-card-img img { opacity: .85; }
.disco-card h3 {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 4px;
}
.disco-card .year {
  font-size: .82rem;
  color: var(--smoke);
  font-style: italic;
  margin-bottom: 12px;
}
.disco-card .btn { align-self: flex-start; }

/* ── CHARITY CARDS (give it away) ─────────────────────────── */
.charity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.charity-card {
  background: rgba(58,42,20,.4);
  border: 1px solid rgba(200,134,42,.15);
  overflow: hidden;
  transition: border-color .2s;
}
.charity-card:hover { border-color: rgba(200,134,42,.4); }
.charity-card-img { aspect-ratio: 4/3; overflow: hidden; }
.charity-card-img img { width: 100%; height: 100%; object-fit: cover; }
.charity-card-body { padding: 24px; }
.charity-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--amber-lt);
}
.charity-card-body p { font-size: .9rem; color: var(--parchment); line-height: 1.6; margin-bottom: 20px; }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 800;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--charcoal);
  border: 1px solid rgba(200,134,42,.25);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}
.modal-header {
  background: var(--bark);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(200,134,42,.2);
}
.modal-header h4 { font-size: 1.1rem; color: var(--amber-lt); }
.modal-close {
  background: none; border: none;
  color: var(--smoke); font-size: 1.4rem;
  line-height: 1; transition: color .2s;
}
.modal-close:hover { color: var(--amber); }
.modal-body { padding: 28px; }
.modal-body img { width: 100%; margin-bottom: 20px; }
.modal-body p { font-size: .95rem; color: var(--parchment); line-height: 1.7; margin-bottom: 12px; }
.modal-footer {
  padding: 16px 28px;
  border-top: 1px solid rgba(200,134,42,.15);
  display: flex; gap: 12px;
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.contact-lead {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--parchment);
  margin-bottom: 28px;
  line-height: 1.65;
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: rgba(26,18,8,.6);
  border: 1px solid rgba(200,134,42,.25);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--amber); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--smoke); font-style: italic; }
.form-textarea { resize: vertical; min-height: 130px; }
.contact-panel {
  background: rgba(58,42,20,.4);
  border: 1px solid rgba(200,134,42,.15);
  padding: 22px 24px;
  margin-bottom: 16px;
}
.contact-panel h4 {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,134,42,.2);
}
.contact-panel p { font-size: 1.05rem; color: var(--parchment); line-height: 1.6; }
.contact-panel a { color: var(--amber-lt); }
.contact-panel strong { color: var(--offwhite); }

/* ── MAILING LIST PAGE ────────────────────────────────────── */
.mailing-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.mailing-social-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 22px;
  background: rgba(58,42,20,.5);
  border: 1px solid rgba(200,134,42,.2);
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 12px;
  transition: border-color .2s, color .2s;
}
.mailing-social-btn:hover { border-color: var(--amber); color: var(--amber-lt); }
.mailing-social-btn i { font-size: 1.4rem; color: var(--amber); }

/* ── INSTAGRAM / FOLLOW SECTION ───────────────────────────── */
.follow-section { background: var(--coal); border-top: 1px solid rgba(200,134,42,.1); }

/* ── NEWSLETTER BAR ───────────────────────────────────────── */
.newsletter-bar {
  background: var(--amber);
  padding: 64px 0;
}
.newsletter-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-bar h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--charcoal);
  line-height: 1.1;
}
.newsletter-bar h2 em { font-style: italic; }
.newsletter-form {
  display: flex;
  min-width: 380px;
  flex-shrink: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 15px 18px;
  background: rgba(26,18,8,.15);
  border: 1px solid rgba(26,18,8,.3);
  border-right: none;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(26,18,8,.5); font-style: italic; }
.newsletter-form button {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--amber-lt);
  border: none;
  padding: 15px 26px;
  cursor: pointer;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--bark); }

/* ── FOOTER ───────────────────────────────────────────────── */
#site-footer {
  background: var(--coal);
  border-top: 1px solid rgba(200,134,42,.18);
  padding: 64px 0 36px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 48px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(217,201,168,.08);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--amber-lt);
  line-height: 1;
}
.footer-brand span {
  display: block;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 1px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.footer-socials a {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color .2s;
}
.footer-socials a:hover { color: var(--amber-lt); }
.footer-socials-link {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color .2s;
}
.footer-socials-link:hover { color: var(--amber-lt); }
.footer-nav-cols {
  display: flex;
  gap: 56px;
}
.footer-nav-col h5 {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a {
  font-size: 1rem;
  color: var(--smoke);
  text-decoration: none;
  transition: color .2s;
}
.footer-nav-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-bottom p {
  font-size: .88rem;
  color: var(--smoke);
  font-style: italic;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--cream); }

/* ── PAGE HERO (interior pages) ───────────────────────────── */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,10,4,.9) 0%, rgba(14,10,4,.3) 60%, transparent 100%);
}
.page-hero-content { position: relative; }
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-style: italic;
  line-height: .95;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .label  { animation: fadeUp .8s var(--ease-out) .1s both; }
.hero-content .hero-title { animation: fadeUp .9s var(--ease-out) .25s both; }
.hero-content .hero-subtitle { animation: fadeUp .8s var(--ease-out) .42s both; }
.hero-content .hero-actions { animation: fadeUp .8s var(--ease-out) .56s both; }

/* ── UTILITIES ────────────────────────────────────────────── */
.text-amber { color: var(--amber); }
.text-smoke { color: var(--smoke); }
.italic { font-style: italic; }
.divider {
  border: none;
  border-top: 1px solid rgba(200,134,42,.2);
  margin: 48px 0;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.hidden { display: none !important; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .disco-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid, .mailing-grid { grid-template-columns: 1fr; }
  .contact-grid .contact-panels { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
  .nav-drawer .nav-links { display: flex; }
  .nav-logo img { height: 48px !important; }
  .nav-hamburger span { background: var(--offwhite); }

  .hero-content { padding: 0 24px; }
  .hero-watermark { display: none; }
  .hero-scroll { display: none; }

  .release-banner .container { flex-direction: column; align-items: flex-start; }

  .music-grid { grid-template-columns: 1fr 1fr; }
  .tour-item { grid-template-columns: 80px 1fr; }
  .tour-item .tour-ticket { display: none; }
  .news-item { grid-template-columns: 70px 1fr; }
  .news-item .btn { display: none; }

  .disco-grid { grid-template-columns: repeat(2, 1fr); }
  .charity-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  .newsletter-bar .container { flex-direction: column; }
  .newsletter-form { min-width: 0; width: 100%; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-nav-cols { gap: 32px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .contact-grid .contact-panels { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .music-grid { grid-template-columns: 1fr; }
  .disco-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
