@import url("/assets/shared/common.css");

:root {
  --paper: #eadbbd;
  --paper-light: #f6ead0;
  --ink: #261213;
  --muted: #6d5550;
  --accent: #f5b942;
  --accent-dark: #b9322d;
  --teal: #397e7a;
  --line: #cdb990;
  --white: #fff7e4;
  --shadow: 0 28px 70px rgba(38, 18, 19, 0.2);
  --radius: 6px;
}

body {
  background: var(--paper-light);
}

.site-header {
  color: #fff5da;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(38, 18, 19, 0.97);
}

.brand {
  font-size: 1.55rem;
  letter-spacing: -0.055em;
}

.brand span {
  color: var(--accent);
}

.nav-list a {
  color: #e7d7bd;
}

.nav-list a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.nav-list a[aria-current="page"] {
  color: var(--ink);
  background: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff7e4;
  background:
    linear-gradient(90deg, rgba(245, 185, 66, 0.06) 1px, transparent 1px) 0 0 / 56px 100%,
    linear-gradient(#321719, #1c1112);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 34px, var(--accent-dark) 34px 68px);
  content: "";
}

.hero-grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-block: clamp(4.2rem, 8vw, 7rem);
}

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

.hero .eyebrow {
  color: var(--accent);
}

.hero-title {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 6.9rem);
  line-height: 0.94;
}

.hero-title span,
.hero-title em {
  display: block;
}

.hero-title em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 56ch;
  margin: 1.6rem 0 0;
  color: #dccbb4;
  font-size: 1.06rem;
}

.hero .button-primary {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent);
}

.hero .button-secondary {
  color: #fff7e4;
  border-color: #fff7e4;
}

.hero-art {
  position: relative;
  transform: rotate(1.5deg);
}

.hero-art img {
  border: 1px solid rgba(245, 185, 66, 0.5);
  border-radius: 28px 8px 28px 8px;
  box-shadow: 24px 24px 0 #8e2926, var(--shadow);
}

.hero-ticket {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  width: min(300px, 70%);
  padding: 1rem 1.2rem;
  transform: rotate(-6deg);
  color: var(--ink);
  border: 2px dashed var(--ink);
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-ticket strong,
.hero-ticket span {
  display: block;
}

.hero-ticket strong {
  font-family: "Lora", serif;
  font-size: 1.25rem;
}

.hero-ticket span {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 0.8rem 0;
  animation: marquee 24s linear infinite;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee-track span::after {
  margin-left: 2rem;
  color: var(--accent-dark);
  content: "✦";
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.program-section {
  background:
    linear-gradient(rgba(38, 18, 19, 0.045) 1px, transparent 1px) 0 0 / 100% 32px,
    var(--paper-light);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 6rem);
  margin-bottom: 3rem;
}

.section-heading h2,
.craft-copy h2,
.history-copy h2,
.rights-card h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.section-heading > p,
.craft-copy > p:last-child,
.history-copy > p:last-child {
  color: var(--muted);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.program-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 10px 10px 0 rgba(38, 18, 19, 0.13);
}

.program-card:nth-child(2) { transform: translateY(1.8rem); }
.program-card:nth-child(3) { transform: rotate(1.2deg); }

.program-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-bottom: 1px solid var(--ink);
}

.program-card-copy {
  padding: 1.4rem;
}

.program-card-copy span {
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0.5rem 0;
  font-family: "Lora", serif;
  font-size: 1.55rem;
}

.program-card p {
  margin: 0;
  color: var(--muted);
}

.program-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-dark);
  font-weight: 800;
  text-underline-offset: 0.25rem;
}

.craft-section {
  color: #fff7e4;
  background: var(--accent-dark);
}

.craft-layout,
.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.craft-section .eyebrow {
  color: var(--accent);
}

.craft-copy > p:last-child {
  color: #ead3bd;
}

.beat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beat-list li {
  min-height: 185px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(38, 18, 19, 0.18);
}

.beat-list strong,
.beat-list span {
  display: block;
}

.beat-list strong {
  color: var(--accent);
  font-family: "Lora", serif;
  font-size: 1.6rem;
}

.beat-list span {
  margin-top: 2rem;
  color: #efdccc;
}

.history-section {
  background: var(--paper);
}

.history-strip {
  position: relative;
  padding-left: 2.5rem;
  border-left: 5px solid var(--accent-dark);
}

.history-strip article {
  position: relative;
  padding: 0 0 2rem 1rem;
}

.history-strip article::before {
  position: absolute;
  top: 0.45rem;
  left: -3.05rem;
  width: 0.85rem;
  height: 0.85rem;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--accent-dark);
  content: "";
}

.history-strip h3,
.history-strip p {
  margin: 0;
}

.history-strip h3 {
  font-family: "Lora", serif;
  font-size: 1.45rem;
}

.history-strip p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.rights-section {
  background: var(--paper-light);
}

.rights-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  padding: clamp(2rem, 6vw, 4rem);
  border: 2px solid var(--ink);
  background: var(--accent);
  box-shadow: 14px 14px 0 var(--ink);
}

.rights-mark {
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  color: var(--accent);
  border-radius: 50%;
  background: var(--ink);
  font-family: "Lora", serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.rights-card h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.rights-card p:last-child {
  max-width: 72ch;
  margin-bottom: 0;
}

.cooperation-summary {
  background: var(--ink);
}

.cooperation-panel .eyebrow { color: var(--accent); }

.page-hero {
  color: #fff7e4;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 82% 30%, rgba(245, 185, 66, 0.24), transparent 22rem),
    linear-gradient(110deg, #261213 0 64%, #8f2926 64% 100%);
}

.page-hero .eyebrow { color: var(--accent); }
.page-hero p:last-child { color: #ead7bf; }

.content-page {
  background:
    linear-gradient(rgba(38, 18, 19, 0.04) 1px, transparent 1px) 0 0 / 100% 32px,
    var(--paper-light);
}

.content-layout {
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
}

.content-poster {
  position: sticky;
  top: 1.5rem;
  align-self: start;
  margin: 0;
}

.content-poster img {
  width: 100%;
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--accent-dark);
}

.content-poster figcaption {
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.content-copy > p:first-of-type {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.content-copy h2 {
  max-width: 18ch;
}

.content-copy h3 {
  font-family: "Lora", serif;
  font-size: 1.45rem;
}

.cue-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.cue-list li {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.cue-list strong {
  color: var(--accent-dark);
  font-family: "Lora", serif;
  font-size: 1.25rem;
}

.cue-list span {
  color: var(--muted);
}

.stage-note {
  margin: 2.3rem 0;
  padding: 1.3rem 1.5rem;
  color: #fff7e4;
  border-left: 6px solid var(--accent);
  background: var(--ink);
}

.stage-note strong {
  color: var(--accent);
}

.simple-page .cooperation-summary {
  background: var(--ink);
}

.update-box,
.article-aside,
.contact-note,
.contact-panel {
  border-radius: 2px;
  box-shadow: 8px 8px 0 rgba(38, 18, 19, 0.12);
}

.site-footer {
  color: #ead7bf;
  border-color: rgba(255, 255, 255, 0.12);
  background: #1b1011;
}

.site-footer .footer-main p,
.site-footer .footer-links a,
.site-footer .footer-bottom,
.site-footer .footer-bottom a {
  color: #bda99a;
}

.site-footer .footer-bottom {
  border-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .hero-grid,
  .section-heading,
  .craft-layout,
  .history-layout,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid { min-height: auto; }
  .hero-art { width: min(100%, 720px); margin-inline: auto; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card:nth-child(2),
  .program-card:nth-child(3) { transform: none; }
  .program-card { display: grid; grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.25fr); }
  .program-card img { height: 100%; aspect-ratio: auto; border-right: 1px solid var(--ink); border-bottom: 0; }
  .content-poster { position: static; width: min(100%, 460px); }
}

@media (max-width: 560px) {
  .hero-grid { padding-top: 3.6rem; }
  .hero-title { font-size: clamp(3rem, 17vw, 4.35rem); }
  .hero-art img { box-shadow: 10px 10px 0 #8e2926; }
  .hero-ticket { left: 0.3rem; bottom: 0.8rem; }
  .program-card { display: block; }
  .program-card img { height: auto; aspect-ratio: 4 / 4.4; border-right: 0; border-bottom: 1px solid var(--ink); }
  .beat-list,
  .rights-card { grid-template-columns: 1fr; }
  .rights-card { box-shadow: 7px 7px 0 var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
