/* NTG Theater — redesign prototype */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #14110f;
  --surface: #1e1a17;
  --surface-2: #262019;
  --line: #3a322a;
  --text: #f0eae1;
  --muted: #b0a493;
  --accent: #e3a63b;
  --accent-soft: #f2c878;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Helvetica Neue", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-soft); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 17, 15, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.wordmark {
  font-family: var(--serif); font-weight: 700; font-size: 1.35rem;
  letter-spacing: 0.04em; color: var(--text);
}
.wordmark span { color: var(--accent); }
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  color: var(--muted); font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--text); }
.site-nav a.active { color: var(--text); border-bottom-color: var(--accent); }

/* ---------- Hero (homepage) ---------- */
.hero {
  padding: 110px 0 56px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(227, 166, 59, 0.13), transparent 70%),
    var(--bg);
}
.hero .kicker {
  color: var(--accent); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.12; max-width: 17ch; margin: 0 auto 26px;
}
.hero h1 em { font-style: italic; color: var(--accent-soft); }
.hero p.lede {
  color: var(--muted); font-size: 1.15rem; max-width: 46ch; margin: 0 auto 40px;
}
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 3px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn-primary { background: var(--accent); color: #191307; }
.btn-primary:hover { background: var(--accent-soft); color: #191307; }
.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-soft); }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 44px; }
.section-head .kicker {
  color: var(--accent); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--serif); font-weight: 600; font-size: 2.1rem; line-height: 1.2;
}
.section-head p { color: var(--muted); max-width: 60ch; margin-top: 12px; }

/* ---------- Show cards ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 740px; }
.show-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.show-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.show-card .art { aspect-ratio: 1 / 1; overflow: hidden; background: #0d0b0a; }
.show-card .art img { width: 100%; height: 100%; object-fit: cover; }
.show-card .body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.show-card .genre {
  color: var(--accent); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px;
}
.show-card h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.show-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.show-card .more { margin-top: 16px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
a.card-link { display: block; color: inherit; }
a.card-link:hover { color: inherit; }

/* ---------- Highlights strip ---------- */
.highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.highlight {
  border-left: 3px solid var(--accent); padding: 4px 0 4px 20px;
}
.highlight .when { color: var(--accent); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.highlight h3 { font-family: var(--serif); font-size: 1.25rem; margin: 6px 0 4px; }
.highlight p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Split (about teaser, contact) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .photo img { border-radius: 6px; border: 1px solid var(--line); }
.split h2 { font-family: var(--serif); font-size: 2rem; font-weight: 600; margin-bottom: 16px; }
.split p { color: var(--muted); margin-bottom: 14px; }

/* ---------- Show detail page ---------- */
.show-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(227, 166, 59, 0.10), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.show-hero .genre {
  color: var(--accent); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 14px;
}
.show-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; }
.show-hero .credits { color: var(--muted); margin-top: 16px; font-size: 1rem; line-height: 1.7; }

.show-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; padding: 64px 0 80px; }
.show-main .art { margin-bottom: 36px; max-width: 420px; }
.show-main .art img { border-radius: 6px; border: 1px solid var(--line); }
.show-main h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin: 32px 0 12px; }
.show-main p { color: var(--text); margin-bottom: 16px; font-size: 1.05rem; }
.show-main p.note { color: var(--muted); font-size: 0.95rem; }

.fact-box {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: 26px 28px; margin-bottom: 26px;
}
.fact-box h3 {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.fact-box dl { display: grid; gap: 10px; }
.fact-box dt { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.fact-box dd { margin: 0 0 6px; font-weight: 500; }
.timeline { list-style: none; }
.timeline li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.timeline li:last-child { border-bottom: none; }
.timeline .when { color: var(--accent); font-weight: 600; margin-right: 8px; white-space: nowrap; }

/* ---------- About page ---------- */
.about-hero { padding: 72px 0 20px; }
.about-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.2rem); }
.bio-grid { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; padding: 56px 0; }
.bio-grid .photo { order: 2; }
.bio-grid .photo img { border-radius: 6px; border: 1px solid var(--line); position: sticky; top: 92px; }
.bio-grid h2 { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; margin-bottom: 18px; }
.bio-grid p { color: var(--text); margin-bottom: 16px; }
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 8px; }
.cred {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 24px 26px;
}
.cred h3 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cred ul { list-style: none; }
.cred li { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: var(--text); }
.cred li:last-child { border-bottom: none; }
.cred li em { color: var(--muted); font-style: normal; }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 0 80px; align-items: start; }
.contact-info h2 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 14px; }
.contact-info p { color: var(--muted); margin-bottom: 18px; }
.email-cta {
  display: inline-block; font-family: var(--serif); font-size: 1.25rem;
  border-bottom: 2px solid var(--accent); padding-bottom: 2px;
}
form.contact-form { display: grid; gap: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 30px; }
.contact-form label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
  color: var(--text); padding: 12px 14px; font-family: var(--sans); font-size: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form button {
  justify-self: start; cursor: pointer; border: none;
  background: var(--accent); color: #191307; padding: 13px 30px; border-radius: 3px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.contact-form button:hover { background: var(--accent-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center; padding: 76px 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(227, 166, 59, 0.10), transparent 70%),
    var(--surface);
  border-top: 1px solid var(--line);
}
.cta-band h2 { font-family: var(--serif); font-size: 2rem; font-weight: 600; margin-bottom: 12px; }
.cta-band p { color: var(--muted); margin-bottom: 30px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 36px 0; }
.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.site-footer p { color: var(--muted); font-size: 0.85rem; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer nav a { color: var(--muted); font-size: 0.85rem; }
.site-footer nav a:hover { color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .card-grid, .highlights { grid-template-columns: repeat(2, 1fr); }
  .show-layout, .contact-layout, .split, .bio-grid { grid-template-columns: 1fr; gap: 36px; }
  .cred-grid { grid-template-columns: 1fr; }
  .bio-grid .photo { order: 0; }
  .bio-grid .photo img { position: static; max-width: 320px; }
}
@media (max-width: 600px) {
  .card-grid, .card-grid.two, .highlights { grid-template-columns: 1fr; }
  .wordmark { font-size: 1rem; line-height: 1.25; max-width: 90px; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 0.8rem; }
  .hero { padding: 70px 0 60px; }
}
