:root {
  --sage: #3a4a2a;
  --sage-soft: #7a8a5a;
  --cream: #f4f1e8;
  --cream-soft: #faf8f3;
  --paper: #ffffff;
  --gold: #e8d870;
  --gold-deep: #c8a850;
  --text: #2a2a2a;
  --muted: #6a6a6a;
  --rule: #e0dccf;
}

html, body {
  background: var(--paper);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3, .display-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  color: var(--sage);
  letter-spacing: 0.2px;
}

a { color: var(--sage); text-decoration: underline; text-decoration-color: var(--gold-deep); text-underline-offset: 3px; }
a:hover { color: var(--sage-soft); }

/* ---------- Nav ---------- */
.site-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  color: var(--sage) !important;
  line-height: 1;
  text-decoration: none;
}
.wordmark .tagline {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-top: 4px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  color: var(--sage);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--sage-soft); }

body[data-active="home"]       .nav-links a[data-nav="home"],
body[data-active="art"]        .nav-links a[data-nav="art"],
body[data-active="shows"]      .nav-links a[data-nav="shows"],
body[data-active="television"] .nav-links a[data-nav="television"],
body[data-active="about"]      .nav-links a[data-nav="about"],
body[data-active="contact"]    .nav-links a[data-nav="contact"] {
  border-bottom-color: var(--sage);
}

/* ---------- Main + Footer ---------- */
main { padding: 0; }

.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding: 22px 0;
  margin-top: 60px;
  font-size: 11px;
  color: var(--sage-soft);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---------- Carousel hero ---------- */
.hero-carousel .carousel-item {
  transition-duration: 1.6s;
}
.hero-carousel .carousel-item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-carousel .carousel-caption {
  left: 40px;
  right: auto;
  bottom: 26px;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-carousel .carousel-caption h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  color: #fff;
  margin: 0;
}
.hero-carousel .carousel-indicators {
  margin-right: 28px;
  margin-bottom: 24px;
}

/* ---------- Page sections ---------- */
.page-header { padding: 56px 0 24px; }
.page-header h1 { font-size: 44px; margin: 0 0 6px; }
.page-header .lead { font-size: 16px; color: var(--muted); margin: 0; }

.section { padding: 24px 0 40px; }

/* ---------- Home blurbs ---------- */
.blurb {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.blurb:last-child { border-bottom: none; }
.blurb-icon {
  width: 120px;
  height: 110px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}
.blurb h2 { font-size: 26px; margin: 0 0 10px; }
.blurb p { margin: 0 0 12px; }

/* ---------- Home sidebar ---------- */
.welcome-sidebar {
  background: var(--cream-soft);
  border-radius: 10px;
  padding: 26px 24px;
  margin-top: 40px;
}
.welcome-sidebar h3 { font-size: 22px; margin: 0 0 14px; }
.welcome-sidebar img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-bottom: 14px;
}
.welcome-sidebar p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Gallery cards ---------- */
.gallery .card {
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .18s ease;
  cursor: pointer;
}
.gallery .card:hover { transform: translateY(-3px); }
.gallery .card .thumb {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.gallery .card .title {
  padding: 14px 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--sage);
  font-size: 18px;
}

/* ---------- Modal ---------- */
.modal-content {
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: 12px;
}
.modal-body { padding: 24px; }
.modal-body img { width: 100%; height: auto; border-radius: 6px; }
.modal-body .caption {
  margin-top: 14px;
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--sage);
}

/* ---------- Show card ---------- */
.show-card {
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 28px 30px;
  margin-bottom: 20px;
}
.show-card h2 { font-size: 28px; margin: 0 0 6px; }
.show-card .when { color: var(--sage-soft); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 18px; }
.show-card .venue { font-size: 16px; color: var(--text); margin: 0 0 4px; font-weight: 500; }
.show-card .address { color: var(--muted); margin: 0; }

/* ---------- IMDB ---------- */
.imdb-link {
  display: inline-block;
  margin-top: 22px;
}
.imdb-link img { max-width: 220px; height: auto; }

/* ---------- Contact form ---------- */
.contact-form-wrap { max-width: 640px; }
.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage-soft);
  box-shadow: 0 0 0 3px rgba(122, 138, 90, 0.18);
  background: var(--paper);
}
.contact-form textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
.contact-form .btn-send {
  background: var(--sage);
  color: #fff;
  border: 1px solid var(--sage);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 28px;
  cursor: pointer;
  transition: background .15s ease;
}
.contact-form .btn-send:hover { background: var(--sage-soft); border-color: var(--sage-soft); }

.form-alert {
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 15px;
  border: 1px solid var(--rule);
}
.form-alert-success {
  background: #eef3e6;
  color: var(--sage);
  border-color: #c8d5b2;
}
.form-alert-error {
  background: #fcefe6;
  color: #8a3a1a;
  border-color: #e6c8a8;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .site-nav .container { flex-direction: column; gap: 16px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .hero-carousel .carousel-item img { height: 320px; }
  .blurb { grid-template-columns: 80px 1fr; gap: 16px; }
  .blurb-icon { width: 80px; height: 80px; }
  .welcome-sidebar { margin-top: 28px; }
  .page-header h1 { font-size: 32px; }
}