:root {
  --bg: #0e0a0c;
  --bg-alt: rgba(255, 255, 255, 0.02);
  --ink: #f6efe4;
  --ink-dim: #b9a99b;
  --ink-faint: #8a7a6f;
  --gold: #d8a84e;
  --gold-soft: #eccb8a;
  --maroon: #6e1b28;
  --maroon-light: #9c2f42;
  --radius: 4px;
  --container: 1180px;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
}

a { color: inherit; }

::selection { background: var(--gold); color: #1a0f08; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--gold);
  color: #1a0f08;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 10, 12, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(216, 168, 78, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--gold-soft);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.25s;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

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

.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(156, 47, 66, 0.4), transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 90%, rgba(216, 168, 78, 0.12), transparent 70%),
    linear-gradient(175deg, #1c1013 0%, #0e0a0c 55%, #090607 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  color: var(--gold-soft);
  margin-bottom: 28px;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: rgba(216, 168, 78, 0.5);
}

.hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(4.5rem, 15vw, 10.5rem);
  letter-spacing: 0.01em;
  color: var(--ink);
  text-shadow: 0 0 90px rgba(216, 168, 78, 0.2);
  line-height: 1;
}

.tagline {
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.08em;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--ink-dim);
  margin: 24px 0 48px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  display: block;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 2.2s infinite;
  transform-origin: top;
}

@keyframes cue {
  0% { transform: scaleY(0); opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(20px); opacity: 0; }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(216, 168, 78, 0.15);
  border-bottom: 1px solid rgba(216, 168, 78, 0.15);
  background: var(--bg-alt);
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: scroll 34s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-faint);
  white-space: nowrap;
}

.marquee-track span:nth-child(even) {
  color: var(--gold);
  font-style: normal;
  font-size: 0.8rem;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 45%, #a97a2c);
  color: #1a0f08;
  box-shadow: 0 10px 30px rgba(216, 168, 78, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 14px 40px rgba(216, 168, 78, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(216, 168, 78, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(216, 168, 78, 0.06);
}

/* Sections */
.section {
  padding: 160px 0;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}

.section.in-view {
  opacity: 1;
  transform: none;
}

.section-alt { background: var(--bg-alt); }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 18px;
}

.section h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.text-link {
  text-decoration: none;
  color: var(--ink-dim);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(216, 168, 78, 0.3);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.text-link:hover { color: var(--gold); border-color: var(--gold); }

.lede {
  max-width: 620px;
  color: var(--ink-dim);
  font-size: 1.08rem;
  font-weight: 300;
}

.lede code {
  background: rgba(216, 168, 78, 0.1);
  color: var(--gold-soft);
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 0.85em;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}

.about-grid h2 { margin-top: 24px; }

/* Stats */
.stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
  border-left: 1px solid rgba(216, 168, 78, 0.2);
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.8rem;
  color: var(--gold-soft);
  line-height: 1;
}

.stat-label {
  color: var(--ink-faint);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* Genre / performance-type pills */
.genre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.genre-pill {
  padding: 8px 18px;
  border: 1px solid rgba(216, 168, 78, 0.3);
  border-radius: 999px;
  color: var(--ink-dim);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

/* Why Us */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  margin-top: 56px;
  list-style: none;
  padding: 0;
}

.why-us-grid h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--gold-soft);
  margin: 0 0 10px;
}

.why-us-grid p {
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 56px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9, 6, 7, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: var(--ink-dim);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: none;
}

.gallery-item:hover {
  transform: scale(1.01);
}

.gallery-item { transition: transform 0.5s cubic-bezier(.2,.8,.2,1); }

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-1 { background: linear-gradient(135deg, #6e1b28, #2a0a10); }
.ph-2 { background: linear-gradient(135deg, #d8a84e, #6e5320); }
.ph-3 { background: linear-gradient(135deg, #2c2018, #0e0a0c); }
.ph-4 { background: linear-gradient(135deg, #9c2f42, #38101a); }
.ph-5 { background: linear-gradient(135deg, #4a3c18, #17111a); }
.ph-6 { background: linear-gradient(135deg, #201317, #6e1b28); }

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.video-grid iframe { border-radius: var(--radius); }

/* Shows */
.shows-list {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  border-top: 1px solid rgba(216, 168, 78, 0.15);
}

.show {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(216, 168, 78, 0.15);
  transition: padding-left 0.3s;
}

.show:hover { padding-left: 12px; }

.show-index {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--ink-faint);
  min-width: 28px;
}

.show-date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-soft);
  min-width: 70px;
}

.show-name {
  flex: 1;
  font-size: 1.25rem;
  font-family: var(--serif);
  font-weight: 500;
}

.show-tag {
  font-size: 0.72rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.show-upcoming .show-tag {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Contact */
.contact { text-align: center; }
.contact .lede { margin: 0 auto; }
.contact-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* Booking form */
.booking-form {
  max-width: 620px;
  margin: 48px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.form-field input,
.form-field textarea {
  background: var(--bg-alt);
  border: 1px solid rgba(216, 168, 78, 0.25);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  resize: vertical;
}

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

.booking-form .btn {
  align-self: center;
  border: none;
  cursor: pointer;
}

.form-status {
  min-height: 1.2em;
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}

.form-status.success { color: var(--gold-soft); }
.form-status.error { color: var(--maroon-light); }

@media (max-width: 780px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(216, 168, 78, 0.15);
  padding: 40px 0;
  color: var(--ink-faint);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner a { text-decoration: none; color: var(--gold-soft); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 780px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 28px 32px;
    gap: 22px;
    display: none;
    border-bottom: 1px solid rgba(216, 168, 78, 0.15);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats { gap: 0 24px; }
  .stat { border-left: none; padding: 0; }
  .section { padding: 100px 0; }
}
