/* =========================================================
   呪いのヴァイオリン LP
   ゴシック×クラシック（オペラ座の怪人イメージ）配色
   ========================================================= */

:root{
  --bg:        #16110f;
  --bg-alt:    #16110f;
  --bg-card:   #1c1512;
  --red:       #5c0f18;
  --red-light: #8c1f28;
  --red-glow:  #3a1418;
  --gold:      #c9a961;
  --gold-light:#e8d19b;
  --gold-dim:  #8a6d34;
  --text:      #ece6da;
  --text-muted:#b8ab94;

  --font-mincho: "Shippori Mincho", serif;
  --font-serif:  "Noto Serif JP", serif;
  --font-en:     "Cinzel", serif;

  --page-max:    1440px;   /* サイト全体（背景を含む）の最大幅 */
  --content:     1000px;   /* 本文コンテンツの基本幅 */
  --content-wide:1100px;   /* 出演者グリッドなど、少し広く使いたい箇所 */
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

/* サイト全体を1440pxで中央寄せするラッパー */
.page{
  max-width: var(--page-max);
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }

.sp-only{ display: none; }
@media (max-width: 640px){
  .sp-only{ display: inline; }
}

.section-eyebrow{
  font-family: var(--font-en);
  letter-spacing: 0.35em;
  color: var(--gold);
  font-size: 1rem;
  text-align: center;
  margin: 0 0 0.5rem;
}
.section-title{
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 2.3rem;
  text-align: center;
  margin: 0;
  color: var(--text);
  letter-spacing: 0.1em;
}
.section-divider{
  width: 90px;
  height: 1px;
  margin: 1.4rem auto 3rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}
.section-divider::after{
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: translate(-50%,-50%) rotate(45deg);
}

.btn{
  display: inline-block;
  padding: 1.1rem 2.4rem;
  border-radius: 2px;
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(180deg, var(--red-light), var(--red));
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 4px 18px rgba(140,31,40,0.45);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 8px 22px rgba(140,31,40,0.6); }
.btn-outline{
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  margin-top: 1rem;
}
.btn-outline:hover{ background: rgba(201,169,97,0.1); }

/* ---------------- HEADER ---------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red);
  border-bottom: 1px solid rgba(201,169,97,0.25);
}
.header-inner{
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-inner-nologo{
  justify-content: flex-end;
}
.main-nav{
  display: flex;
  gap: 2.4rem;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}
.main-nav a:hover{ color: var(--gold); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  background: var(--gold-light);
}

/* ---------------- FILMSTRIP ---------------- */
.filmstrip{
  height: 130px;
  margin-top: 0;
  overflow: hidden;
  background-color: #000;
  border-top: 1px solid rgba(201,169,97,0.3);
  border-bottom: 1px solid rgba(201,169,97,0.3);
  --slide-w: 248px;
}
.filmstrip-track{
  display: flex;
  height: 100%;
  width: max-content;
  animation: filmCycle 42s ease-in-out infinite;
}
.filmstrip-track img{
  flex: 0 0 auto;
  width: var(--slide-w);
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes filmCycle{
  0%   { transform: translateX(0); }
  10%  { transform: translateX(0); }
  15%  { transform: translateX(calc(var(--slide-w) * -1)); }
  25%  { transform: translateX(calc(var(--slide-w) * -1)); }
  30%  { transform: translateX(calc(var(--slide-w) * -2)); }
  40%  { transform: translateX(calc(var(--slide-w) * -2)); }
  45%  { transform: translateX(calc(var(--slide-w) * -3)); }
  55%  { transform: translateX(calc(var(--slide-w) * -3)); }
  60%  { transform: translateX(calc(var(--slide-w) * -4)); }
  70%  { transform: translateX(calc(var(--slide-w) * -4)); }
  75%  { transform: translateX(calc(var(--slide-w) * -5)); }
  85%  { transform: translateX(calc(var(--slide-w) * -5)); }
  90%  { transform: translateX(calc(var(--slide-w) * -6)); }
  100% { transform: translateX(calc(var(--slide-w) * -6)); }
}

@media (max-width: 640px){
  .filmstrip{ height: 90px; --slide-w: 171px; }
}

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

/* ---------------- HERO ---------------- */
.hero{
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(11,9,8,0.96) 0%, rgba(11,9,8,0.88) 30%, rgba(11,9,8,0.5) 55%, rgba(11,9,8,0.15) 78%, rgba(11,9,8,0.05) 100%),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  padding: 1.75rem 1.5rem 2.25rem;
  text-align: left;
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-left: clamp(1.5rem, 7vw, 5rem);
}

.hero-badge{
  display: inline-block;
  background: rgba(92,15,24,0.85);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-mincho);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  margin: 0 0 0.9rem;
  opacity: 0;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.1s;
}

.hero-title-img{
  display: block;
  width: clamp(360px, 42vw, 640px);
  height: auto;
  margin: 0 0 0.8rem;
  opacity: 0;
  animation: heroTitlePop 1s cubic-bezier(.22,1,.36,1) both;
  animation-delay: 0.3s;
}

.hero-author{
  font-family: var(--font-mincho);
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  margin: 0 0 1rem;
  opacity: 0;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.55s;
}

.nowrap{ white-space: nowrap; }

.hero-catch{
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(1.4rem, 4.4vw, 3.6rem);
  line-height: 1.22;
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(0,0,0,0.85);
  margin: 0 0 1.4rem;
  opacity: 0;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.75s;
}

.hero-cta{
  display: inline-block;
  width: clamp(260px, 26vw, 360px);
  margin: 0 0 1.2rem;
  transition: transform 0.25s ease, filter 0.25s ease;
  opacity: 0;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 1s;
}
.hero-cta:hover{
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.08);
}
.hero-cta img{
  animation: ticketWiggle 2.6s ease-in-out 1;
  animation-delay: 1.8s;
}

@keyframes ticketWiggle{
  0%, 100% { transform: scale(1) rotate(0deg); }
  15% { transform: scale(1.07) rotate(-2deg); }
  30% { transform: scale(1.07) rotate(2deg); }
  45% { transform: scale(1.03) rotate(-1deg); }
  60% { transform: scale(1.03) rotate(1deg); }
  75%, 100% { transform: scale(1) rotate(0deg); }
}

.hero-copy{
  margin: 0;
  color: var(--text-muted);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
  opacity: 0;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 1.2s;
}

@keyframes heroFadeUp{
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroTitlePop{
  0%   { opacity: 0; transform: scale(1.3); }
  60%  { opacity: 1; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce){
  .hero-cta img{ animation: none; }
  .hero-badge, .hero-title-img, .hero-author, .hero-catch, .hero-cta, .hero-copy{
    animation: none;
    opacity: 1;
  }
}

/* ---------------- MOVIE ---------------- */
.movie{
  padding: 5rem 1.5rem;
  text-align: center;
  background: var(--bg-alt);
}
.movie-player{
  max-width: 860px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,169,97,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.movie-player video{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

/* ---------------- STORY ---------------- */
.story{
  position: relative;
  padding: 5rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #120d0b 100%);
  overflow: hidden;
}
.story-candle{
  position: absolute;
  top: 50%;
  right: 6%;
  height: 90%;
  width: auto;
  max-width: none;
  opacity: 0.3;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.story-frame{
  position: absolute;
  top: -5%;
  left: -4%;
  width: 320px;
  max-width: 40%;
  height: auto;
  opacity: 0.16;
  filter: invert(1);
  transform: rotate(180deg);
  pointer-events: none;
  z-index: 0;
}
.story-inner{
  position: relative;
  z-index: 1;
}
.story-lead{
  max-width: 800px;
  margin: 0 auto 2rem;
  font-family: var(--font-mincho);
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.6rem;
  line-height: 1.6;
}
.story-text{
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.3rem;
  text-align: left;
}
.story-text:last-child{ margin-bottom: 0; }
.story-tagline{
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-family: var(--font-en);
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 1.15rem;
}

/* ---------------- ORIGIN ---------------- */
.origin{
  padding: 5rem 1.5rem;
  text-align: center;
  background-image:
    linear-gradient(180deg, var(--bg) 0%, rgba(18,13,11,0.65) 40%, rgba(18,13,11,0.78) 100%),
    url("../images/5A3C.png");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}
.origin-inner{
  max-width: 800px;
  margin: 0 auto;
}
.origin-text{
  position: relative;
  max-height: 15.5em;
  overflow: hidden;
  text-align: left;
}
.origin-text.expanded{
  max-height: none;
}
.origin-text::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5em;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  pointer-events: none;
}
.origin-text.expanded::after{
  display: none;
}
.origin-text p{
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 2;
  margin: 0 0 1.4rem;
}
.origin-text p:last-child{ margin-bottom: 0; }
.origin-figure{
  width: 200px;
  height: auto;
  margin: 0.3rem 0 1rem;
  border: 1px solid rgba(201,169,97,0.3);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.origin-figure-right{ float: right; margin-left: 1.5rem; }
.origin-figure-left{ float: left; margin-right: 1.5rem; }

.origin-figure-large{
  clear: both;
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 1rem auto 1.8rem;
  border: 1px solid rgba(201,169,97,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

@media (max-width: 640px){
  .origin-figure{ float: none; width: 55%; margin: 0.5rem auto 1.2rem; }
  .origin-figure-large{ max-width: 100%; }
}
.origin-final{
  font-family: var(--font-mincho);
  font-weight: 700;
  color: var(--gold-light) !important;
  font-size: 1.2rem !important;
}
.origin-toggle{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-mincho);
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.6rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.origin-toggle:hover{ background: rgba(201,169,97,0.1); }
.origin-toggle .origin-toggle-icon{ transition: transform 0.25s ease; }
.origin-toggle[aria-expanded="true"] .origin-toggle-icon{ transform: rotate(180deg); }

/* ---------------- STORY / PLOT ---------------- */
.plot{
  padding: 5rem 1.5rem;
  text-align: center;
  background: var(--bg-alt);
}
.plot-inner{
  max-width: 800px;
  margin: 0 auto;
}
.plot-text{
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 2;
  margin: 0 0 2.2rem;
  text-align: left;
}
.plot-text:last-of-type{ margin-bottom: 0; }
.plot-hook{
  font-family: var(--font-mincho);
  font-weight: 700;
  color: var(--gold-light);
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.9;
  margin: 2.5rem 0 0;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(201,169,97,0.25);
}

/* ---------------- CAST ---------------- */
.cast{
  padding: 5rem 1.5rem;
  background-color: var(--bg-alt);
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: min(760px, 65%) auto;
}
.cast-main{
  max-width: var(--content-wide);
  margin: 0 auto 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.cast-row{
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.cast-row-reverse{ flex-direction: row-reverse; }
.cast-row-photo{
  flex: 0 0 300px;
}
.cast-row-photo img{
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(201,169,97,0.25);
}
.cast-row-body{ flex: 1; }

.cast-role{ color: var(--gold); font-size: 0.95rem; letter-spacing: 0.1em; margin: 0 0 0.4rem; }
.cast-name{ font-family: var(--font-mincho); font-size: 1.5rem; margin: 0 0 1rem; }
.cast-bio{ color: var(--text-muted); font-size: 1.05rem; text-align: left; margin: 0; }

/* ---- string quartet ---- */
.quartet-section{ max-width: var(--content-wide); margin: 0 auto; text-align: center; }
.quartet-heading{
  font-family: var(--font-mincho);
  font-size: 1.5rem;
  color: var(--text);
  margin: 0 0 2.2rem;
}
.quartet-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.quartet-card{
  background: var(--bg-card);
  border: 1px solid rgba(201,169,97,0.18);
  border-radius: 4px;
  padding: 1.6rem 1.2rem;
  text-align: center;
}
.quartet-photo{
  width: 120px; height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-dim);
  box-shadow: 0 0 0 4px rgba(201,169,97,0.08);
}
.quartet-photo img{ width: 100%; height: 100%; object-fit: cover; }
.quartet-role{ color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em; margin: 0 0 0.3rem; }
.quartet-name{ font-family: var(--font-mincho); font-size: 1.15rem; margin: 0 0 0.8rem; }
.quartet-bio{ color: var(--text-muted); font-size: 0.9rem; text-align: left; margin: 0; }

.quartet-trigger{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.3rem;
  font-family: inherit;
  font-size: 1.1rem;
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(201,169,97,0.5);
  text-underline-offset: 3px;
  cursor: pointer;
  text-align: left;
}
.quartet-trigger:hover{ color: var(--gold); }

.quartet-modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.quartet-modal[hidden]{ display: none; }
.quartet-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(5,3,2,0.85);
}
.quartet-modal-panel{
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--bg-alt);
  border: 1px solid rgba(201,169,97,0.3);
  border-radius: 4px;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.quartet-modal-close{
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.3rem;
}
.quartet-modal-close:hover{ color: var(--gold-light); }
.quartet-modal .quartet-grid{ margin-top: 2rem; }

@media (max-width: 640px){
  .quartet-modal-panel{ padding: 2.5rem 1.2rem 2rem; }
}

.staff-grid{
  max-width: var(--content-wide);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}
.staff-card{
  border-top: 1px solid rgba(201,169,97,0.25);
  padding-top: 1.5rem;
}
.staff-card .cast-bio{ text-align: left; }

/* ---------------- OVERVIEW ---------------- */
.overview{
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #120d0b 0%, var(--bg) 100%);
  overflow: hidden;
}
.overview-frame{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  max-width: 40%;
  height: auto;
  opacity: 0.16;
  filter: invert(1);
  pointer-events: none;
  z-index: 0;
}
.performance-card{
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin: 0 auto 3rem;
}
.performance-card + .performance-card{
  padding-top: 3rem;
  border-top: 1px solid rgba(201,169,97,0.2);
}
.performance-tag{
  display: inline-block;
  font-family: var(--font-mincho);
  color: var(--gold-light);
  background: rgba(92,15,24,0.85);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
  margin: 0 0 1.6rem;
}
.overview-inner{
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 3rem;
  align-items: start;
}
.overview-table .row{
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,169,97,0.15);
}
.overview-table dt{ color: var(--gold); font-weight: 600; font-size: 1.1rem; }
.overview-table dd{ margin: 0; color: var(--text-muted); font-size: 1.1rem; }

.overview-ticket{
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,97,0.25);
  padding: 1.6rem;
  border-radius: 4px;
}
.overview-ticket-label{ color: var(--gold-light); font-size: 1.05rem; margin: 0 0 1rem; }
.qr-code{ margin: 0 auto; border: 6px solid #fff; }
.overview-ticket .btn-outline{
  white-space: normal;
  width: 100%;
  font-size: 1rem;
  padding: 0.9rem 1rem;
}

/* ---------------- FOOTER ---------------- */
.site-footer{
  position: relative;
  background: #0a0604;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  overflow: hidden;
}
.footer-inner{ max-width: 640px; margin: 0 auto; }
.footer-title{
  font-family: var(--font-mincho);
  font-size: 2rem;
  color: var(--gold-light);
  margin: 0 0 1.5rem;
}
.footer-line{ margin: 0.3rem 0; color: #f1e4c8; font-size: 1.1rem; }
.footer-tel{
  display: inline-block;
  margin: 1.2rem 0;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.footer-cta{ display: block; margin: 1.5rem auto 2rem; max-width: 320px; }
.footer-copy{ color: rgba(255,255,255,0.6); font-size: 0.75rem; margin-top: 2rem; }

/* ---------------- STICKY CTA (mobile) ---------------- */
.sticky-cta{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  text-align: center;
  padding: 1.1rem;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  background: linear-gradient(180deg, var(--red-light), var(--red));
  border-top: 1px solid var(--gold-dim);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.5);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 860px){
  .quartet-grid{ grid-template-columns: repeat(2, 1fr); }
  .cast-row, .cast-row-reverse{ flex-direction: column; }
  .cast-row-photo{ flex: 0 0 auto; width: 100%; max-width: 340px; }
  .overview-inner{ grid-template-columns: 1fr; }
  .staff-grid{ grid-template-columns: 1fr; }
  .story-candle{ right: -4%; height: 70%; opacity: 0.22; }
  .cast{ background-size: min(480px, 90%) auto; }
}

@media (max-width: 640px){
  .section-title{ font-size: 1.8rem; }
  .movie .section-title{ font-size: 1.9rem; }
  .hero{
    aspect-ratio: auto;
    min-height: 68svh;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: 65% top;
    background-image:
      linear-gradient(180deg, rgba(11,9,8,0.55) 0%, rgba(11,9,8,0.8) 55%, rgba(11,9,8,0.95) 100%),
      url("../images/hero-bg.jpg");
  }
  .hero-content{ padding-left: 0; max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  .hero-badge{ font-size: 0.95rem; padding: 0.55rem 1.2rem; }
  .hero-title-img{ margin-left: auto; margin-right: auto; width: clamp(240px, 70vw, 380px); }
  .hero-catch{ font-size: clamp(1.5rem, 7.3vw, 2rem); }
  .hero-copy{ font-size: 1rem; }
  .main-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(11,9,8,0.97);
    border-top: 1px solid rgba(201,169,97,0.2);
    padding: 1rem 1.5rem;
    gap: 0.9rem;
    display: none;
  }
  .main-nav.open{ display: flex; }
  .nav-toggle{ display: flex; }
  .quartet-grid{ grid-template-columns: 1fr; }
  .overview-table .row{ grid-template-columns: 1fr; }
  .sticky-cta{ display: block; }
  .story-text{ font-size: 1.1rem; }
  .plot-text, .plot-hook{ }
  body{ padding-bottom: 3.4rem; }
}
