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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E8C0;
  --deep: #1A1008;
  --charcoal: #2D2318;
  --warm-mid: #4A3828;
  --cream: #FAF3E8;
  --rust: #8B3A1E;
  --smoke: #9E8B78;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--deep);
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ───── NAV ───── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(26,16,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ───── PAGE WRAPPER ───── */
.page-content {
  padding-top: var(--nav-height);
}

/* ───── HERO ───── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 65% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(139,58,30,0.15) 0%, transparent 60%),
    var(--deep);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
}

.hero-text { }

.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-name .highlight {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-tagline {
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--smoke);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--deep);
  background: var(--gold);
  padding: 14px 36px;
  text-decoration: none;
  transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 14px 36px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  max-height: inherit;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%, var(--rust) 100%);
  z-index: 1;
}

.hero-image-frame img {
  position: absolute;
  inset: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  object-fit: cover;
  object-position: center top;
  z-index: 2;
  filter: sepia(10%) contrast(1.05);
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(26,16,8,0.6));
  z-index: 3;
}

.hero-accent-line {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201,168,76,0.3);
  z-index: 0;
}

.hero-accent-dot {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: radial-gradient(var(--rust), transparent 70%);
  z-index: 0;
}

/* ───── SECTION SHARED ───── */
.section {
  padding: 100px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 48px;
}

/* ───── DIVIDER ───── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  margin: 0 48px;
  width: calc(100% - 96px);
}

/* ───── ABOUT STRIP (homepage) ───── */
.about-strip {
  background: var(--charcoal);
  padding: 80px 48px;
}

.about-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.4;
  position: relative;
  padding-left: 32px;
}

.about-quote::before {
  content: '"';
  position: absolute;
  left: -8px;
  top: -20px;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.about-body {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--smoke);
  line-height: 1.9;
}

.about-body p + p { margin-top: 20px; }

/* ───── SCHEDULE PAGE ───── */
.schedule-header {
  text-align: center;
  padding: 80px 48px 40px;
}

.shows-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 48px 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.show-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  background: var(--charcoal);
  border-left: 3px solid transparent;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.show-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201,168,76,0.05), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.show-card:hover {
  border-left-color: var(--gold);
}

.show-card:hover::before { opacity: 1; }

.show-date {
  text-align: center;
}

.show-date-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}

.show-date-month {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--smoke);
}

.show-info { }

.show-venue {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.show-details {
  font-size: 0.95rem;
  color: var(--smoke);
  font-weight: 300;
}

.show-action a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 10px 20px;
  display: inline-block;
  white-space: nowrap;
  transition: all 0.25s;
}

.show-action a:hover {
  background: var(--gold);
  color: var(--deep);
}

.no-shows {
  text-align: center;
  padding: 60px 0;
  color: var(--smoke);
  font-style: italic;
  font-size: 1.1rem;
}

/* ───── GALLERY PAGE ───── */
.gallery-header {
  text-align: center;
  padding: 80px 48px 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 48px 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(8%) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: sepia(0%) contrast(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0);
  transition: background 0.3s;
}

.gallery-item:hover::after {
  background: rgba(201,168,76,0.08);
}

.gallery-placeholder {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.gallery-placeholder-icon {
  font-size: 2rem;
  opacity: 0.15;
  color: var(--gold);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26,16,8,0.96);
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,0.2);
}

.lightbox-close {
  position: fixed;
  top: 24px; right: 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

/* ───── CONTACT PAGE ───── */
.contact-header {
  text-align: center;
  padding: 80px 48px 40px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 100px;
  align-items: start;
}

.contact-info { }

.contact-intro {
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}

.contact-detail-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 1.05rem;
  color: var(--cream);
}

.contact-detail-value a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-value a:hover { color: var(--gold); }

.contact-social {
  margin-top: 36px;
  display: flex;
  gap: 12px;
}

.social-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--smoke);
  text-decoration: none;
  border: 1px solid rgba(158,139,120,0.3);
  padding: 10px 16px;
  transition: all 0.25s;
}

.social-link:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
}

/* Contact Form */
.contact-form {
  background: var(--charcoal);
  padding: 40px;
  border-top: 3px solid var(--gold);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(26,16,8,0.6);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream);
  padding: 14px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--smoke);
  font-style: italic;
}

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

.form-submit {
  width: 100%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--deep);
  background: var(--gold);
  border: none;
  padding: 16px;
  cursor: pointer;
  transition: background 0.25s;
}

.form-submit:hover { background: var(--gold-light); }

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
}

/* ───── FOOTER ───── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 48px;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-logo span {
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
}

.footer-tagline {
  font-style: italic;
  color: var(--smoke);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin-bottom: 32px;
}

.footer-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(158,139,120,0.5);
}

/* ───── ANIMATIONS ───── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ───── SCHEDULE IMAGE ───── */
.schedule-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.6s ease;
  display: block;
}

/* ───── GALLERY FADE-IN ───── */
.gallery-item {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.gallery-item.gallery-visible {
  opacity: 1;
  transform: scale(1);
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 60px 40px;
  }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--charcoal);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    z-index: 99;
  }
  .nav-hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
    text-align: center;
  }
  .hero-eyebrow, .hero-cta { justify-content: center; }
  .hero-tagline { margin: 0 auto 40px; max-width: 100%; }
  .hero-content .hero-image-wrap {
    max-width: 360px;
    width: 100%;
    margin: 0 auto 32px;
    order: -1;
    opacity: 1;
    transform: none;
  }
  /* Flatten the complex frame to a simple image block on mobile */
  .hero-image-frame {
    aspect-ratio: auto;
    height: auto;
    max-height: none;
  }
  .hero-image-frame::before,
  .hero-image-frame::after { display: none; }
  .hero-image-frame img {
    position: static;
    width: 100%;
    height: auto;
    inset: auto;
    max-height: 380px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .about-strip { padding: 60px 24px; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }

  .contact-wrap { grid-template-columns: 1fr; padding: 0 24px 60px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px 60px; }
  .gallery-item.featured { grid-column: span 2; }

  .section { padding: 60px 24px; }
  .schedule-header, .gallery-header, .contact-header { padding-left: 24px; padding-right: 24px; }

  .shows-grid { padding: 0 24px 60px; }
  .show-card { grid-template-columns: 80px 1fr; gap: 16px; padding: 20px; }
  .show-action { grid-column: 1 / -1; }

  footer { padding: 32px 24px; }
  .divider { margin: 0 24px; width: calc(100% - 48px); }
}

@media (max-width: 600px) {
  .hero-content { padding: 36px 20px 32px; }
  .hero-content .hero-image-wrap { max-width: 280px; }
  .hero-image-frame img { max-height: 320px; }
  .section-title { margin-bottom: 32px; }

  .show-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }
  .show-date { display: flex; align-items: baseline; gap: 8px; }
  .show-date-num { font-size: 2rem; }
  .show-action { grid-column: 1; }

  .contact-form { padding: 28px 20px; }
  .gallery-grid { gap: 3px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; padding: 0 16px 60px; }
  .gallery-item.featured { grid-column: span 1; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
  .about-strip { padding: 48px 20px; }
  .schedule-header, .gallery-header, .contact-header {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 56px;
  }
}
