:root {
  --black: #050403;
  --cream: #f4eee4;
  --muted: #d6c5aa;
  --gold: #c98b3b;
  --line: rgba(201, 139, 59, 0.45);
  --max: 1440px;
}

* { box-sizing: border-box; }

html {
  background: var(--black);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 35%, rgba(201,139,59,.20), transparent 22%),
    radial-gradient(circle at 18% 60%, rgba(119,41,26,.14), transparent 30%),
    linear-gradient(180deg, #020201 0%, #080705 58%, #11100d 100%);
}

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--cream);
  color: var(--black);
  padding: .7rem 1rem;
  z-index: 20;
}

.skip-link:focus { top: 1rem; }

.site-header {
  width: min(100%, var(--max));
  margin: 0 auto;
  height: 5.8rem;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.brand-mark {
  color: var(--gold);
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: .8;
  letter-spacing: -.08em;
}

.brand-name {
  display: block;
  font-size: clamp(1.25rem, 1.8vw, 2rem);
  text-transform: uppercase;
  letter-spacing: .17em;
  white-space: nowrap;
}

.brand-role {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .35em;
  margin-top: .25rem;
  font-size: clamp(.7rem, 1vw, .92rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .82rem;
}

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

.menu-button {
  display: none;
  background: transparent;
  border: 0;
  padding: .5rem;
}

.menu-button span {
  display: block;
  width: 2.1rem;
  height: 2px;
  background: var(--gold);
  margin: .42rem 0;
}

/* Desktop homepage is intentionally one-screen before the cards. */
.hero {
  width: min(100%, var(--max));
  height: calc(100vh - 5.8rem - 7rem);
  min-height: 36rem;
  max-height: 46rem;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3.5rem) 2rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr);
  gap: 2rem;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

h1 {
  margin: 0;
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
  font-size: clamp(3.75rem, 5.9vw, 6.6rem);
}

h1 span { display: block; }
.gold { color: var(--gold); }

.rule {
  width: 3.7rem;
  height: 2px;
  background: var(--gold);
  margin: 1.4rem 0;
}

.rule.small {
  width: 3.2rem;
  margin: .8rem auto 0;
}

.tagline {
  max-width: 25rem;
  color: var(--cream);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.42;
  margin: 0 0 1.55rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  min-height: 3.25rem;
  padding: .85rem 1.35rem;
  border: 1px solid var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
}

.button-primary {
  border-color: var(--gold);
  color: var(--gold);
}

.button:hover,
.button:focus-visible { background: rgba(201,139,59,.16); }

.hero-stage {
  position: relative;
  min-height: 100%;
  align-self: stretch;
}

/* This is a CSS stand-in for the eventual approved image, not final illustration. */
.theatre-seat {
  position: absolute;
  left: 22%;
  bottom: 7%;
  width: 27%;
  aspect-ratio: .82 / 1;
  background:
    linear-gradient(115deg, rgba(255,255,255,.11), transparent 18%),
    radial-gradient(circle at 42% 20%, #8b2d1e, #44150f 58%, #170907);
  border-radius: 42% 42% 10% 10%;
  box-shadow: 0 1.3rem 3rem rgba(0,0,0,.78), inset 0 0 2rem rgba(0,0,0,.55);
  border: 1px solid rgba(214,197,170,.18);
}

.theatre-seat::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 18%;
  border: 2px solid rgba(214,197,170,.36);
  border-top: 0;
}

.theatre-seat::after {
  content: "";
  position: absolute;
  left: 49%;
  top: 23%;
  width: 1.3rem;
  height: 2.2rem;
  transform: translateX(-50%);
  border-radius: .2rem;
  background: rgba(8,7,5,.72);
  border: 1px solid rgba(201,139,59,.55);
}

.seat-number {
  position: absolute;
  left: 50%;
  top: 26.5%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: .65rem;
  letter-spacing: .08em;
  z-index: 2;
}

.rehearsal-room {
  position: absolute;
  right: 6%;
  top: 13%;
  width: 38%;
  height: 55%;
  background:
    radial-gradient(circle at 43% 18%, rgba(255,228,165,.95), rgba(255,190,95,.28) 3%, transparent 12%),
    radial-gradient(circle at 60% 18%, rgba(255,228,165,.95), rgba(255,190,95,.25) 3%, transparent 12%),
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(201,139,59,.18) 45%, rgba(0,0,0,.92)),
    linear-gradient(180deg, #21170f, #090705);
  border: 1px solid rgba(201,139,59,.32);
  box-shadow: 0 0 7rem rgba(201,139,59,.23);
}

.rehearsal-room::after {
  content: "";
  position: absolute;
  inset: 60% -10% -12% -120%;
  background: linear-gradient(90deg, transparent, rgba(201,139,59,.30), transparent);
  transform: skewX(-18deg);
  filter: blur(6px);
}

.chair {
  position: absolute;
  bottom: 12%;
  width: 9%;
  height: 18%;
  border: 1px solid rgba(214,197,170,.24);
  border-bottom: 0;
}

.chair-left { left: 36%; }
.chair-right { left: 54%; }

.quote-band {
  height: 7rem;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  background: rgba(12,11,10,.86);
  padding: 1.2rem 1.5rem;
  text-align: center;
  display: grid;
  place-content: center;
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 65rem;
  color: var(--muted);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.pathways {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.path-card {
  min-height: 14rem;
  padding: 1.6rem 1.6rem;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: .75rem;
  background: rgba(10,9,8,.7);
}

.path-card:last-child { border-right: 0; }

.path-card:hover,
.path-card:focus-visible { background: rgba(201,139,59,.08); }

.icon {
  color: var(--gold);
  font-size: 2.25rem;
  line-height: 1;
}

.card-text strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 1rem;
  margin-bottom: .55rem;
}

.card-text span,
.card-text em {
  display: block;
  color: var(--cream);
  font-size: .96rem;
  line-height: 1.32;
  font-style: normal;
}

.card-text em {
  color: var(--muted);
  margin-top: .4rem;
}

.arrow {
  margin-top: .2rem;
  color: var(--gold);
  font-size: 1.35rem;
}

.interior-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 2rem;
}

.page-hero { max-width: 56rem; }

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
}

.page-hero h1 { font-size: clamp(4rem, 8vw, 8rem); }

.page-hero p {
  color: var(--muted);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.35;
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
}

@media (max-width: 1000px) {
  .site-header { align-items: flex-start; height: auto; }
  .menu-button { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 6.8rem;
    right: 2rem;
    left: 2rem;
    padding: 1.2rem;
    background: rgba(5,4,3,.96);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero {
    height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    min-height: 30rem;
    margin-top: -1rem;
  }

  .quote-band { height: auto; padding: 2.2rem 1.5rem; }

  .pathways {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    width: calc(100% - 3rem);
  }

  .path-card {
    min-height: auto;
    grid-template-columns: 5rem 1fr 2rem;
    align-items: center;
    justify-items: start;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid rgba(201,139,59,.22);
    padding: 1.7rem 1.5rem;
  }

  .path-card:last-child { border-bottom: 0; }
  .arrow { justify-self: end; margin: 0; }
}

@media (max-width: 560px) {
  .site-header { padding: 1.3rem 1.2rem; }
  .brand { gap: .7rem; }
  .brand-mark { font-size: 2.4rem; }
  .brand-name { font-size: 1.15rem; letter-spacing: .12em; }
  .brand-role { font-size: .72rem; letter-spacing: .28em; }

  .hero { padding: 2.5rem 1.4rem 2rem; }
  h1 {
    font-size: clamp(3.1rem, 14vw, 4.35rem);
    max-width: 8ch;
  }

  .tagline {
    max-width: 19rem;
    font-size: 1.15rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .button { width: 100%; }
  .hero-stage { min-height: 24rem; }

  .theatre-seat {
    left: 42%;
    width: 46%;
    bottom: 6%;
  }

  .rehearsal-room {
    right: 0;
    top: 0;
    width: 55%;
    height: 62%;
  }

  .quote-band { padding: 2.5rem 1.5rem; }
  .pathways { width: calc(100% - 2rem); }

  .path-card {
    grid-template-columns: 4.5rem 1fr 1.5rem;
    padding: 1.5rem 1.2rem;
  }

  .icon { font-size: 2.3rem; }
  .card-text strong { font-size: 1.05rem; }
  .card-text span, .card-text em { font-size: 1rem; }
}

/* Plays landing page — Gold Master Build 1 */
.plays-page { background: #f1ebdf; color: #172018; }
.plays-page .site-header { width: 100%; max-width: none; color: var(--cream); background: #050806; border-bottom: 1px solid rgba(201,139,59,.28); }
.plays-page .nav-links .active { color: var(--gold); }
.plays-hero { min-height: 640px; position: relative; isolation: isolate; display: grid; align-items: center; overflow: hidden; padding: clamp(5rem, 10vw, 9rem) max(2rem, calc((100vw - 1180px) / 2)); color: #f4eee4; background: radial-gradient(circle at 75% 40%, rgba(201,139,59,.18), transparent 25%), linear-gradient(115deg,#08100b 0%,#101912 60%,#071009 100%); border-bottom: 4px solid #b9913d; }
.plays-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .34; background: repeating-linear-gradient(90deg, transparent 0 13.9%, rgba(255,255,255,.035) 14%, transparent 14.1%), linear-gradient(180deg, transparent 70%, rgba(0,0,0,.45)); }
.plays-hero-copy { max-width: 850px; }
.plays-kicker, .collection-heading > p, .play-meta { margin: 0 0 1rem; color: #bd9a4c; font-family: Arial, sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.plays-hero h1 { max-width: 12ch; font-size: clamp(4rem, 8vw, 8rem); line-height: .88; }
.plays-rule { display: block; width: 68px; height: 2px; margin: 2rem 0; background: #b9913d; }
.plays-hero-copy > p:last-child { max-width: 660px; margin: 0; color: #cbc4b8; font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.55; }
.plays-hero-note { position: absolute; right: max(2rem, calc((100vw - 1180px) / 2)); bottom: 2.2rem; margin: 0; color: #8f9b90; font-size: .72rem; font-style: italic; letter-spacing: .08em; }

.collection { padding: clamp(5rem, 10vw, 9rem) max(1.5rem, calc((100vw - 1180px) / 2)); }
.collection-stage { background: #f1ebdf; }
.collection-mtu { color: #eef0e9; background: #102118; border-top: 4px solid #b9913d; }
.collection-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; align-items: start; margin-bottom: clamp(3rem, 6vw, 5rem); }
.collection-heading h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 4.7rem); font-weight: 400; line-height: 1.02; }
.lead-play { display: grid; grid-template-columns: 1.35fr .65fr; min-height: 520px; margin-bottom: 1.35rem; background: #0d1710; color: #f3eee5; border: 1px solid rgba(23,32,24,.23); }
.lead-play-image { min-height: 520px; overflow: hidden; }
.lead-play-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: transform .5s ease; }
.lead-play:hover .lead-play-image img { transform: scale(1.018); }
.lead-play-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.lead-play h3, .play-card h3 { margin: 0; font-weight: 400; line-height: 1; }
.lead-play h3 { font-size: clamp(3.5rem, 6vw, 6rem); }
.lead-play-copy > p:not(.play-meta) { color: #b9beb7; font-size: 1.08rem; }
.text-link { display: inline-flex; gap: .7rem; align-items: center; margin-top: auto; color: #bd9a4c; font: 700 .68rem Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.text-link:hover, .text-link:focus-visible { color: #f0cb74; }

.play-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }
.play-card { display: grid; grid-template-columns: minmax(180px,.82fr) minmax(0,1.18fr); min-height: 300px; background: #f8f3ea; border: 1px solid rgba(23,32,24,.18); }
.collection-mtu .play-card { background: #0a1610; border-color: rgba(238,240,233,.17); }
.card-image { min-height: 300px; overflow: hidden; background: #111; }
.card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .45s ease, filter .45s ease; }
.play-card:hover .card-image img { transform: scale(1.025); filter: saturate(.92); }
.play-card > div { display: flex; flex-direction: column; padding: 1.6rem; }
.play-card h3 { font-size: clamp(1.75rem, 3vw, 2.7rem); }
.play-card > div > p:not(.play-meta) { color: #5f675f; font-size: .92rem; }
.collection-mtu .play-card > div > p:not(.play-meta) { color: #aeb8af; }
.collection-mtu .play-meta { color: #d0aa55; }
.play-card .text-link { margin-top: auto; }

.plays-closing { padding: clamp(5rem, 10vw, 8rem) 1.5rem; text-align: center; color: #f4eee4; background: #050806; border-top: 1px solid rgba(201,139,59,.3); }
.plays-closing blockquote { max-width: 980px; margin: 0 auto 2.5rem; font-size: clamp(2.4rem, 5vw, 5rem); line-height: 1.08; }
.plays-closing a { color: #bd9a4c; font: 700 .7rem Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.plays-footer { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; color: #a9a89f; background: #050806; border-top: 1px solid rgba(255,255,255,.08); }
.plays-footer p { margin: 0; }
.plays-footer p:last-child { text-align: right; }
.plays-footer > span { color: #bd9a4c; font-size: 1.6rem; font-style: italic; }

@media (max-width: 980px) {
  .collection-heading { grid-template-columns: 1fr; gap: .5rem; }
  .lead-play { grid-template-columns: 1fr; }
  .lead-play-image { min-height: 420px; }
  .play-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .plays-hero { min-height: 590px; padding-inline: 1.3rem; }
  .plays-hero h1 { max-width: 9ch; font-size: clamp(3.5rem, 16vw, 5rem); }
  .plays-hero-note { right: 1.3rem; }
  .collection { padding-inline: 1rem; }
  .lead-play-image { min-height: 300px; }
  .play-card { grid-template-columns: 1fr; }
  .card-image { min-height: 250px; }
  .plays-footer { grid-template-columns: 1fr; text-align: center; }
  .plays-footer p:last-child { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .lead-play-image img, .card-image img { transition: none; }
}
