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

:root {
  --cream:   #f5f0e8;
  --parchment: #ede3ce;
  --dark:    #1e1509;
  --brown:   #4a2e0a;
  --rust:    #8b3a1a;
  --gold:    #b08030;
  --border:  #8a6a30;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--dark);
  font-family: 'Inter', Georgia, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

/* ── Header ── */
header {
  background-color: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: 3rem 1rem 1.5rem;
  border-bottom: 5px double var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
  line-height: 1.1;
}

.tagline {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--parchment);
  margin-top: 0.4rem;
  margin-bottom: 1.2rem;
}

.ornament {
  font-size: 1.4rem;
  color: var(--gold);
}

nav {
  margin-top: 1rem;
  font-family: 'IM Fell English', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

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

.nav-sep {
  margin: 0 0.8rem;
  color: var(--gold);
}

/* ── Band Photo ── */
.photo-section {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
  background: var(--parchment);
  border-bottom: 3px solid var(--border);
}

.photo-frame {
  border: 6px solid var(--border);
  box-shadow:
    0 0 0 3px var(--parchment),
    0 0 0 6px var(--border),
    6px 6px 20px rgba(0,0,0,0.4);
  max-width: 820px;
  width: 100%;
  background: #2a1a08;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: sepia(20%) contrast(1.05);
}

/* ── Lightbox ── */
.lightbox-trigger {
  cursor: zoom-in;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
  filter: sepia(20%) contrast(1.05);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ── Flyer Section ── */
.flyer-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.flyer-thumb {
  width: 280px;
  cursor: zoom-in;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.flyer-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* ── Sections ── */
.section {
  padding: 4rem 1rem;
}

.section-alt {
  background-color: var(--parchment);
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
}

.section-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  font-variation-settings: 'WONK' 1;
  color: var(--rust);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

h3 {
  font-family: 'IM Fell English', serif;
  font-size: 1.3rem;
  color: var(--brown);
  margin: 2rem 0 0.8rem;
  letter-spacing: 0.06em;
}

.divider {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  margin: 0.5rem 0 2rem;
}

/* ── Bio ── */
.bio {
  text-align: left;
  font-size: 1.05rem;
}

.bio p + p { margin-top: 1rem; }

/* ── Lineup ── */
.lineup ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown);
}

/* ── Videos ── */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 2rem;
  margin-top: 1rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.video-card {
  border: 3px solid var(--border);
  background: var(--dark);
  padding: 0.5rem;
  box-shadow: 4px 4px 14px rgba(0,0,0,0.3);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  color: var(--parchment);
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem 0.25rem;
}

/* ── Lineup illustrations ── */
.lineup-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.rabbit-illustration {
  width: 120px;
  opacity: 0.85;
}

.rabbit-flip {
  transform: scaleX(-1);
}

@media (max-width: 600px) {
  .rabbit-illustration { display: none; }
}

/* ── Dancers divider ── */
.dancers-divider {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem 0;
  background: var(--cream);
}

.dancers-divider img {
  width: 260px;
  opacity: 0.9;
}

/* ── Contact ── */
.contact-text {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-links a {
  font-family: 'IM Fell English', serif;
  font-size: 1.2rem;
  color: var(--rust);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-links a:hover {
  color: var(--gold);
}

.contact-icon, .ig-icon {
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  margin-right: 0.4em;
  position: relative;
  top: -0.1em;
}


/* ── Footer ── */
footer {
  background-color: var(--dark);
  color: var(--parchment);
  text-align: center;
  padding: 1.5rem 1rem;
  font-family: 'IM Fell English', serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-top: 4px double var(--gold);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .header-inner { flex-direction: column; gap: 0.5rem; }
  .ornament { display: none; }
}
