:root {
  --bg: #0d0d0f;
  --bg-raised: #16161a;
  --bg-alt: #121216;
  --text: #eceae6;
  --text-dim: #a9a6a0;
  --accent: #e8b64c;
  --accent-hover: #f2c765;
  --line: rgba(255, 255, 255, 0.09);
  --display: 'Oswald', 'Arial Narrow', sans-serif;
  --heading: 'Archivo', 'Helvetica Neue', sans-serif;
  --body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(13, 13, 15, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}
.brand span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.2rem);
  list-style: none;
}

.nav-links a {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-socials { display: flex; gap: 0.9rem; align-items: center; }
.icon { width: 18px; height: 18px; fill: currentColor; }
.nav-socials a, .footer-socials a { color: var(--text-dim); display: inline-flex; }
.nav-socials a:hover, .footer-socials a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.site-header {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(232, 182, 76, 0.13), transparent 60%),
    linear-gradient(180deg, #141317 0%, var(--bg) 100%);
  overflow: hidden;
}

/* Blurred stage photo behind the hero for atmosphere */
.site-header::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: url('/images/hero.jpg') center 20% / cover no-repeat;
  filter: blur(26px) saturate(1.1) brightness(0.5);
  opacity: 0.35;
  z-index: 0;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0.35) 45%, var(--bg) 100%);
  z-index: 0;
}
.site-header .hero { position: relative; z-index: 1; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(7rem, 14vh, 10rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 7vh, 5rem);
}

.eyebrow {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.tagline {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text);
  margin-bottom: 0.9rem;
}

.lede {
  color: var(--text-dim);
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1.8rem; }

.btn {
  display: inline-block;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: #141310; }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #141310; }

.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: rgba(232, 182, 76, 0.12); color: var(--text); }

.hero-points {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
  font-family: var(--heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.hero-photo img {
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.6));
}

/* ---------- Stats strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 1.6rem 1rem;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.stat span {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--heading);
}

/* ---------- Sections ---------- */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1.25rem, 4vw, 3rem);
  scroll-margin-top: 4.5rem;
}

.section-alt {
  max-width: none;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

.section-head { margin-bottom: 2.2rem; }

.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
}
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 3.5rem; height: 3px;
  background: var(--accent);
}

.section-head p { color: var(--text-dim); margin-top: 0.8rem; }
.section-foot { margin-top: 1.5rem; color: var(--text-dim); }

/* ---------- Videos ---------- */

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.video-facade, .video-grid iframe {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  padding: 0;
  cursor: pointer;
}

.video-facade img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.3s;
}
.video-facade:hover img { opacity: 1; transform: scale(1.03); }

.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(20, 19, 16, 0.85);
}
.play-btn svg {
  width: 68px; height: 48px;
  color: rgba(232, 182, 76, 0.92);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
  transition: transform 0.15s;
}
.video-facade:hover .play-btn svg { transform: scale(1.08); }

/* ---------- Bio ---------- */

.bio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.bio-text h3, .press h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.bio-text p { margin-bottom: 1rem; color: var(--text-dim); }
.bio-text strong { color: var(--text); }

.bio-photo {
  margin-top: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.press { display: grid; gap: 1.1rem; align-content: start; }
.press img {
  border-radius: 10px;
  border: 1px solid var(--line);
  transition: transform 0.25s;
}
.press img:hover { transform: scale(1.02); }

/* ---------- FAQ ---------- */

.faq-list {
  list-style: none;
  max-width: 820px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--text);
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 1.3rem;
  max-width: 62ch;
}
.faq-answer p { color: var(--text-dim); }

/* ---------- Contact ---------- */

.contact-form {
  max-width: 720px;
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea { resize: vertical; }

.contact-form .btn { justify-self: start; }

.form-alt { color: var(--text-dim); font-size: 0.95rem; }
.form-status { color: var(--accent); font-size: 0.98rem; }
.form-status:empty { display: none; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 1rem;
}
.footer-socials .icon { width: 22px; height: 22px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.4rem;
  margin-bottom: 1.2rem;
}
.footer-links a {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }

/* ---------- Genre chips ---------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 1.2rem 0 1.4rem;
}

.chips li {
  font-family: var(--heading);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--line);
  background: var(--bg-raised);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  transition: border-color 0.15s, color 0.15s;
}
.chips li:hover { border-color: var(--accent); color: var(--text); }

/* ---------- Songbook (/songs) ---------- */

.subpage-header .page-head {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(7rem, 14vh, 9rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vh, 4rem);
}

.page-head h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.songbook-tools {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.songbook-tools input[type="search"],
.requests-main input[type="search"] {
  flex: 1;
  min-width: 240px;
  font-family: var(--body);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  transition: border-color 0.15s;
}
.songbook-tools input[type="search"]:focus,
.requests-main input[type="search"]:focus {
  outline: none;
  border-color: var(--accent);
}

.chip-filters { margin: 0 0 1rem; }
.chip-filters li { padding: 0; border: 0; background: none; }
.chip-filters button {
  font-family: var(--heading);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--line);
  background: var(--bg-raised);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.chip-filters button:hover { border-color: var(--accent); color: var(--text); }
.chip-filters button.active {
  border-color: var(--accent);
  background: rgba(232, 182, 76, 0.14);
  color: var(--accent);
}

.song-count {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.song-list {
  list-style: none;
  border-top: 1px solid var(--line);
  max-width: 820px;
}
.song-list > li {
  border-bottom: 1px solid var(--line);
}
.song-list > li,
.song-list-tap button {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.25rem;
}
.song-list strong { font-family: var(--heading); font-weight: 600; }
.song-list span { color: var(--text-dim); font-size: 0.95rem; text-align: right; }

.song-list-tap > li { padding: 0; }
.song-list-tap button {
  width: 100%;
  background: none;
  border: 0;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.song-list-tap button:hover,
.song-list-tap button:focus-visible {
  background: rgba(232, 182, 76, 0.08);
}

@keyframes song-flash {
  from { background: rgba(232, 182, 76, 0.25); }
  to { background: transparent; }
}
.song-flash { animation: song-flash 1.2s ease; }

/* ---------- Requests (/requests) ---------- */

.requests-head {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 3.5rem) 1.25rem 0;
}
.requests-head .brand { display: inline-block; margin-bottom: 1.6rem; }
.requests-head h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.requests-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.6rem 1.25rem 6.5rem;
}
.requests-main input[type="search"] {
  width: 100%;
  margin-bottom: 1.1rem;
}

.tip-bar[hidden] { display: none; }

.tip-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 0.8rem 1.25rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.tip-bar .btn { width: 100%; max-width: 420px; text-align: center; }

.request-card {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 2rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(232, 182, 76, 0.16), transparent 60%),
    var(--bg);
}
.request-card[hidden] { display: none; }
body.card-open { overflow: hidden; }

.request-label {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.request-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 9vw, 3.6rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.request-artist {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(1.05rem, 4vw, 1.3rem);
  color: var(--text-dim);
}
.request-hint {
  color: var(--text-dim);
  margin-top: 1rem;
}
.request-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.6rem;
  width: 100%;
  max-width: 340px;
}
.request-actions .btn { text-align: center; }

/* ---------- Venue strip ---------- */

.venue-strip {
  padding-top: 1.8rem;
  padding-bottom: 0.4rem;
}
.venue-strip-label {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.venue-strip .chips { margin: 0.8rem 0 0; }

/* ---------- Video captions ---------- */

.video-grid figure { margin: 0; }
.video-grid figcaption {
  margin-top: 0.6rem;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Sticky mobile Book button ---------- */

.book-fab {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 40;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
}
@media (max-width: 860px) {
  .book-fab { display: inline-block; }
  .book-fab.book-fab-hidden { display: none; }
}

/* ---------- Scroll reveal ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  .hero-copy > * {
    animation: rise 0.7s ease both;
  }
  .hero-copy > *:nth-child(2) { animation-delay: 0.07s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.14s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.21s; }
  .hero-copy > *:nth-child(5) { animation-delay: 0.28s; }
  .hero-copy > *:nth-child(6) { animation-delay: 0.35s; }
  .hero-photo { animation: rise 0.8s 0.15s ease both; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(13, 13, 15, 0.97);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.9rem 1.5rem; }
  .nav-socials { padding: 0.9rem 1.5rem; }
  .hero { grid-template-columns: 1fr; padding-top: 5rem; gap: 1.5rem; }
  .hero-photo {
    order: -1;
    justify-self: center;
    width: min(55vw, 260px);
  }
  .video-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .press { grid-template-columns: repeat(3, 1fr); }
  .press h3 { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .form-row { grid-template-columns: 1fr; }
  .press { grid-template-columns: 1fr 1fr; }
}
