/* ============================================================
   3 Piece Suite — style.css
   Palette:
     --charcoal:      #1c1c1e  (deep charcoal background)
     --charcoal-mid:  #2a2a2d  (card / section backgrounds)
     --ivory:         #f0ede6  (primary light text / backgrounds)
     --ivory-dim:     #c8c4bb  (subdued text)
     --silver:        #b0b4b8  (metallic accent — borders, rules)
     --silver-bright: #d6d9dc  (hover / highlight silver)
     --gold:          #c9a96e  (warm accent for CTAs)
     --gold-hover:    #dfc089  (CTA hover)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

:root {
  --charcoal:      #1c1c1e;
  --charcoal-mid:  #2a2a2d;
  --charcoal-light:#3a3a3e;
  --ivory:         #f0ede6;
  --ivory-dim:     #c8c4bb;
  --silver:        #b0b4b8;
  --silver-bright: #d6d9dc;
  --gold:          #c9a96e;
  --gold-hover:    #dfc089;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --nav-height: 70px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container-max: 1160px;
  --radius: 3px;
  --transition: 0.25s ease;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  background-color: var(--charcoal);
  color: var(--ivory-dim);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-hover); }

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: min(100%, var(--container-max));
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ivory);
  margin-bottom: 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--charcoal);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--silver);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  font-size: 0.72rem;
  padding: 0.5rem 1.25rem;
}

.btn-submit {
  width: 100%;
  font-size: 0.85rem;
  padding: 0.9rem;
  margin-top: 0.5rem;
}

/* ---------- Section shared styles ---------- */
.section {
  padding-block: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.section-rule {
  width: 4rem;
  height: 1px;
  background: var(--gold);
  margin: 0.75rem auto 1.25rem;
}

.section-intro {
  font-size: 1rem;
  color: var(--ivory-dim);
  max-width: 50ch;
  margin-inline: auto;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(28, 28, 30, 0.97);
  box-shadow: 0 1px 0 rgba(176, 180, 184, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--ivory);
  gap: 0.05rem;
}
.logo:hover { color: var(--gold); }

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Primary nav */
.primary-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.primary-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--ivory);
  border-bottom-color: var(--gold);
}

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  padding: 0.4rem 1rem !important;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--charcoal) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ivory);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger {
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

/* Open state */
[aria-expanded="true"] .hamburger { background: transparent; }
[aria-expanded="true"] .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Replace this gradient with a background-image of your hero photo */
  background:
    linear-gradient(
      to bottom,
      rgba(28, 28, 30, 0.55) 0%,
      rgba(28, 28, 30, 0.75) 60%,
      rgba(28, 28, 30, 0.95) 100%
    ),
    linear-gradient(135deg, #1c1c1e 0%, #2a2a2d 40%, #1c1c1e 100%);
  /* Example with a real image:
  background-image:
    linear-gradient(to bottom, rgba(28,28,30,.5), rgba(28,28,30,.9)),
    url('images/hero.jpg');
  background-size: cover;
  background-position: center top;
  */
}

.hero-overlay {
  /* Subtle noise/texture overlay — pure CSS, zero HTTP requests */
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  padding-block: 2rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--silver-bright);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--silver);
  border-bottom: 1px solid var(--silver);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============================================================
   BIO
   ============================================================ */
.bio-section {
  background: var(--charcoal-mid);
}

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

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

.bio-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.member-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--charcoal-light);
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
}

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--charcoal-mid);
  border: 1px solid var(--silver);
  margin: 0 auto 1rem;
  /* Replace with: background-image: url('images/member-name.jpg'); background-size: cover; */
}

.member-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.member-card p {
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ============================================================
   REPERTOIRE
   ============================================================ */
.repertoire-section {
  background: var(--charcoal);
}

.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.repertoire-category {
  padding: 1.75rem;
  background: var(--charcoal-mid);
  border-radius: var(--radius);
  border-left: 2px solid var(--gold);
}

.repertoire-category h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.repertoire-category li {
  font-size: 0.88rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(176, 180, 184, 0.1);
  color: var(--ivory-dim);
}
.repertoire-category li:last-child { border-bottom: none; }
.repertoire-category em { color: var(--silver-bright); }

.repertoire-note {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--silver);
  border-top: 1px solid rgba(176, 180, 184, 0.15);
  padding-top: 1.5rem;
}

/* ============================================================
   LISTEN (Audio embeds)
   ============================================================ */
.listen-section {
  background: var(--charcoal-mid);
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.audio-card {
  background: var(--charcoal-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.audio-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  gap: 0.75rem;
  min-height: 160px;
  border: 1px dashed var(--silver);
  border-radius: var(--radius);
  text-align: center;
}

.audio-placeholder-icon {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.audio-placeholder-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.audio-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ivory);
}

.audio-note {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--silver);
}

/* Fake waveform bars */
.audio-bar {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
}
.audio-bar span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--silver);
  opacity: 0.4;
}
.audio-bar span:nth-child(1)  { height: 40%; }
.audio-bar span:nth-child(2)  { height: 70%; }
.audio-bar span:nth-child(3)  { height: 55%; }
.audio-bar span:nth-child(4)  { height: 90%; }
.audio-bar span:nth-child(5)  { height: 65%; }
.audio-bar span:nth-child(6)  { height: 80%; }
.audio-bar span:nth-child(7)  { height: 50%; }
.audio-bar span:nth-child(8)  { height: 75%; }
.audio-bar span:nth-child(9)  { height: 45%; }
.audio-bar span:nth-child(10) { height: 60%; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background: var(--charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--charcoal-mid);
  border: 1px dashed var(--silver);
  border-radius: var(--radius);
  color: var(--silver);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: border-color var(--transition), color var(--transition);
}
.gallery-placeholder:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-placeholder-icon { font-size: 2rem; }

/* When real images are added, style them like this:
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
*/

/* ============================================================
   GIGS
   ============================================================ */
.gigs-section {
  background: var(--charcoal-mid);
}

.gigs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gig-card {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--charcoal-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: border-color var(--transition);
}
.gig-card:hover { border-left-color: var(--silver-bright); }

.gig-card--placeholder {
  border-left-color: var(--silver);
  opacity: 0.75;
}

.gig-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
}

.gig-day {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ivory);
}
.gig-month {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.gig-year {
  font-size: 0.7rem;
  color: var(--silver);
}

.gig-date--tba .gig-day {
  font-size: 1.4rem;
  color: var(--silver);
}

.gig-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.gig-venue {
  font-size: 0.85rem;
  color: var(--ivory-dim);
  margin-bottom: 0.2rem;
}

.gig-programme {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--silver);
}

.gig-badge {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--charcoal-mid);
  color: var(--silver);
  border: 1px solid var(--silver);
  border-radius: 2px;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--charcoal);
}

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

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1.25rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.contact-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color var(--transition);
  border: 1px solid rgba(176, 180, 184, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
}
.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Form */
.contact-form {
  background: var(--charcoal-mid);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-bright);
}

.required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--charcoal-light);
  border: 1px solid rgba(176, 180, 184, 0.25);
  border-radius: var(--radius);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.7rem 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--silver);
  opacity: 0.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b0b4b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--charcoal-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.form-group--checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.form-group--checkbox label {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ivory-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(176, 180, 184, 0.12);
  padding-block: 3rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ivory);
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--silver);
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-block: 0.5rem;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--charcoal-light);
  margin-top: 0.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — ≤ 900px */
@media (max-width: 900px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .bio-members {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

/* Large mobile — ≤ 700px */
@media (max-width: 700px) {
  :root { --nav-height: 60px; }

  /* Nav collapses */
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 0 0 0 30%;
    background: rgba(28, 28, 30, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 800;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .primary-nav a {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .gig-card {
    grid-template-columns: 70px 1fr;
  }

  .gig-action {
    grid-column: 2;
    margin-top: -0.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .bio-members {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: unset;
    grid-row: unset;
    aspect-ratio: 4/3;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Small mobile — ≤ 420px */
@media (max-width: 420px) {
  .primary-nav {
    inset: 0;
  }

  .logo-main { font-size: 1.1rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .hero-scroll-hint, .hero-actions, .nav-toggle,
  .contact-form, .audio-grid, .gallery-grid { display: none; }

  body { background: #fff; color: #111; }
  .section { padding-block: 2rem; }
  .section-title, .gig-title, .member-card h3 { color: #111; }
}

/* ============================================================
   FOCUS / ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
