:root {
  --bg: #f8f6f2;
  --text: #1a1a1a;
  --primary: #8b1a1a;
  --primary-light: #b02020;
  --gold: #c9a84c;
  --nav-bg: #1a0a0a;
  --footer-bg: #1a0a0a;
  --footer-text: #ccc;
  --card-bg: #fff;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --font: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Segoe UI', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
}

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

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo span {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  display: none;
}

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

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ddd;
  transition: all 0.25s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 60%, #1a0a0a 100%);
  padding: 70px 20px 60px;
  text-align: center;
  color: #fff;
}

.hero-logo {
  max-width: 280px;
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.hero h1 {
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  color: #d0c5b5;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── MAIN CONTENT ── */
main {
  flex: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 20px 64px;
  width: 100%;
}

/* ── SECTION HEADINGS ── */
h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}

p {
  line-height: 1.8;
  margin-bottom: 1em;
  color: #2a2a2a;
}

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 32px;
  margin-bottom: 32px;
}

/* ── PREMIERE BOX ── */
.premiere-box {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 32px;
  margin-bottom: 32px;
  border-left: 4px solid var(--gold);
}

.premiere-box img {
  width: 220px;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.premiere-info h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.premiere-meta {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.7;
}

.premiere-meta strong {
  color: var(--primary);
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}
.btn:hover { background: var(--primary-light); transform: translateY(-1px); }

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

/* ── ABOUT MEMBERS ── */
.members {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.member-tag {
  background: #f0e8d4;
  color: var(--primary);
  border: 1px solid var(--gold);
  border-radius: 40px;
  padding: 6px 18px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── PLAY PAGE ── */
.play-header {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.play-header img {
  width: 240px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  flex-shrink: 0;
}

.play-info { flex: 1; }
.play-info h2 { margin-top: 0; }

.play-meta {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.8;
}
.play-meta strong { color: var(--text); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-row {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 0 8px;
  margin: 4px 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-label {
  text-align: right;
  color: #666;
  white-space: nowrap;
}

.contact-value a {
  color: var(--primary);
}

/* ── QUOTE ── */
.quote-block {
  max-width: 760px;
  margin: 0 auto 32px;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  padding: 28px 48px;
  position: relative;
  text-align: center;
}

.quote-block::before {
  content: "\201E";
  font-size: 5em;
  color: #d4b96a;
  position: absolute;
  left: 0;
  top: -10px;
  line-height: 1;
  font-style: normal;
}

.quote-block::after {
  content: "\201C";
  font-size: 5em;
  color: #d4b96a;
  position: absolute;
  right: 0;
  bottom: -30px;
  line-height: 1;
  font-style: normal;
}

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 32px 20px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.8;
}

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

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.footer-inner span:first-child { text-align: left; color: #888; }
.footer-inner span:nth-child(2) { text-align: center; }
.footer-inner span:last-child  { text-align: right; }

@media (max-width: 580px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center !important;
  }
  .footer-inner span { text-align: center !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .nav-logo span { display: none; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--nav-bg);
    padding: 12px 0 16px;
    gap: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 24px;
    border-radius: 0;
  }

  .premiere-box,
  .play-header {
    flex-direction: column;
  }

  .premiere-box img,
  .play-header img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

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

  .hero h1 { font-size: 1.4rem; }
  .hero p { font-size: 0.97rem; }

  .card, .premiere-box { padding: 20px; }

  .quote-block { padding: 20px 36px; font-size: 1rem; }
}
