:root {
  --red: #b3142a;
  --red-bright: #e0273c;
  --cream: #f5ecd8;
  --paper: #fbf6e8;
  --ink: #1c1410;
  --gold: #c4a256;
  --shadow: 0 6px 28px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #1a0d0a;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
}

/* Cream-backed containers flip the default back to dark ink so all their
   descendants are legible without needing per-element color overrides. */
.film, .bio-article, .film-article, .not-found, .bio-card,
.bio-faq, .bts-faq, .countdown-card {
  color: var(--ink);
}
.countdown-card { color: var(--cream); }  /* this one keeps a dark bg */

/* Selection style — also helps when the user does highlight text */
::selection { background: var(--red); color: #fff; }

/* ---- Background montage (sepia film stills tiled at low opacity) ---- */
.bg-montage {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(ellipse at center, #2a1410 0%, #0e0606 75%);
}
.bg-montage .bg {
  position: absolute;
  width: 38vmin;
  height: 38vmin;
  background-size: cover;
  background-position: center;
  filter: sepia(.85) contrast(1.05) brightness(.55);
  opacity: .28;
  border-radius: 4px;
  box-shadow: 0 0 60px #000;
}
.bg1 { background-image: url('images/bg1.jpg'); top: -4vmin; left: -4vmin; transform: rotate(-6deg); }
.bg2 { background-image: url('images/bg2.jpg'); top: 8vmin; right: -6vmin; transform: rotate(5deg); }
.bg3 { background-image: url('images/bg3.jpg'); top: 38vmin; left: 10vmin; transform: rotate(3deg); }
.bg4 { background-image: url('images/bg4.jpg'); top: 60vmin; right: 6vmin; transform: rotate(-4deg); }
.bg5 { background-image: url('images/bg5.jpg'); bottom: 4vmin; left: -4vmin; transform: rotate(7deg); }
.bg6 { background-image: url('images/bg6.jpg'); bottom: -6vmin; right: 12vmin; transform: rotate(-3deg); }

.vignette {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,.75) 100%);
}

/* ---- Hero ---- */
.hero {
  text-align: center;
  padding: 6vh 1rem 2vh;
}
.title {
  font-family: "Pinyon Script", "Allura", cursive;
  font-weight: 400;
  color: var(--red-bright);
  font-size: clamp(3.2rem, 9vw, 7rem);
  margin: 0;
  line-height: .95;
  text-shadow:
    0 2px 0 #6a0010,
    0 4px 24px rgba(224, 39, 60, .45),
    0 0 60px rgba(255, 80, 100, .25);
  letter-spacing: .01em;
}
.tagline {
  color: var(--cream);
  font-style: italic;
  font-size: 1.15rem;
  margin: .5rem auto 0;
  max-width: 36rem;
  text-shadow: 0 2px 12px #000;
}
.title a { color: inherit; text-decoration: none; }
.title a:hover { filter: brightness(1.1); }

/* ---- Navigation tabs (12 chips, horizontally scrollable on small screens) ---- */
.tabs {
  margin: 1.4rem auto 0;
  max-width: 100%;
}
.tabs-list {
  list-style: none;
  margin: 0;
  padding: .35rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem .5rem;
  max-width: 1100px;
  margin-inline: auto;
}
.tab {
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(245, 236, 216, .08);
  border: 1px solid rgba(196, 162, 86, .35);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: .92rem;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.tab:hover { background: rgba(245, 236, 216, .18); border-color: var(--gold); }
.tab.is-active {
  background: var(--red);
  border-color: var(--red-bright);
  color: #fff;
  box-shadow: 0 0 14px rgba(224, 39, 60, .5);
}
.tab-year {
  font-family: "Special Elite", monospace;
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.tab.is-active .tab-year { color: #fff5b8; }
@media (max-width: 700px) {
  .tabs-list {
    flex-wrap: wrap;
    padding-bottom: .6rem;
  }
}

/* ---- BTS dropdown ---- */
.tabs-list { position: relative; }
.has-dropdown { position: relative; }
.dropdown-toggle {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}
.dropdown-toggle .caret {
  display: inline-block;
  margin-left: .2rem;
  font-size: .7em;
  transform: translateY(-1px);
  transition: transform .15s;
}
.has-dropdown:hover .dropdown-toggle .caret,
.has-dropdown:focus-within .dropdown-toggle .caret,
.has-dropdown.is-open .dropdown-toggle .caret { transform: rotate(180deg) translateY(1px); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + .4rem);
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  margin: 0;
  padding: .4rem;
  background: #1a0d0a;
  border: 1px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .7);
  min-width: 240px;
  max-height: 60vh;
  overflow-y: auto;
  z-index: 100;
  display: none;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.is-open .dropdown-menu { display: block; }

/* A small invisible bridge so the menu doesn't disappear when moving
   the cursor from the button to the menu. */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -.5rem; left: 0; right: 0;
  height: .5rem;
}

.dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  padding: .4rem .7rem;
  color: var(--cream);
  text-decoration: none;
  border-radius: 4px;
  font-size: .95rem;
  transition: background .12s, color .12s;
}
.dropdown-item:hover { background: rgba(245, 236, 216, .12); }
.dropdown-item.is-active { background: var(--red); color: #fff; }
.dropdown-year {
  font-family: "Special Elite", monospace;
  font-size: .7rem;
  color: var(--gold);
}
.dropdown-item.is-active .dropdown-year { color: #fff5b8; }

/* ---- Shop page ---- */
.shop {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}
.shop-hero {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--cream);
}
.shop-title {
  font-family: "Pinyon Script", cursive;
  color: var(--red-bright);
  font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  margin: 0;
  font-weight: 400;
  text-shadow: 0 2px 0 #6a0010, 0 0 30px rgba(255, 80, 100, .3);
}
.shop-lede {
  max-width: 38rem;
  margin: .5rem auto 1rem;
  font-style: italic;
  font-size: 1.1rem;
}
.shop-shipping {
  display: inline-block;
  padding: .35rem .9rem;
  border: 1px dashed var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .03em;
}
.shop-banner {
  margin-top: 1rem;
  padding: .65rem 1rem;
  background: rgba(196, 162, 86, .15);
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-size: .9rem;
  max-width: 36rem;
  margin-inline: auto;
}

.boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 0 0 3rem;
}

.box {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid #d8c79a;
  border-radius: 8px;
  padding: 1.5rem 1.4rem 1.4rem;
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.box::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid #c9a85a;
  border-radius: 5px;
  pointer-events: none;
}
.box--bronze { border-top: 4px solid #b87333; }
.box--silver { border-top: 4px solid #9ea0a0; }
.box--gold   { border-top: 4px solid #d4a93a; }

.box-badge {
  position: absolute;
  top: -.7rem;
  right: 1rem;
  background: var(--red);
  color: #fff;
  font-family: "Special Elite", monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
}
.box-head { margin-bottom: .75rem; }
.box-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--red);
  margin: 0;
  line-height: 1.05;
}
.box-tagline {
  font-style: italic;
  color: #6a4a1a;
  margin: .25rem 0 0;
  font-size: .95rem;
}
.box-contents {
  list-style: none;
  padding: 0;
  margin: .85rem 0;
  border-top: 1px dotted #c9a85a;
  border-bottom: 1px dotted #c9a85a;
  padding: .65rem 0;
}
.box-contents li {
  padding: .2rem 0;
  color: #2a1f17;
  font-size: 1.02rem;
}
.box-qty {
  display: inline-block;
  min-width: 1.7em;
  font-family: "Special Elite", monospace;
  color: var(--red);
  font-weight: 700;
}
.box-blurb {
  color: #3a2f27;
  flex: 1;
  font-size: .95rem;
}
.box-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 1rem;
}
.box-price {
  font-family: "Special Elite", monospace;
  font-size: 2rem;
  color: var(--red);
}
.buy-btn {
  display: inline-block;
  padding: .7rem 1.4rem;
  background: var(--red);
  color: #fff;
  border: 1px solid #6a0010;
  border-radius: 999px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(224, 39, 60, .35);
  transition: transform .12s, box-shadow .12s, background .12s;
}
.buy-btn:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(224, 39, 60, .55);
}
.buy-btn:active { transform: translateY(0); }
.buy-btn--disabled {
  background: #6a5e4a;
  border-color: #2a1f17;
  cursor: not-allowed;
  box-shadow: none;
  opacity: .85;
}
.buy-btn--disabled:hover { background: #6a5e4a; transform: none; box-shadow: none; }
.buy-btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: none;
}
.buy-btn--ghost:hover { background: rgba(245, 236, 216, .12); }

.shop-policy {
  margin: 3rem 0;
  padding: 1.5rem;
  background: rgba(245, 236, 216, .06);
  border: 1px solid rgba(196, 162, 86, .35);
  border-radius: 6px;
  color: var(--cream);
}
.shop-policy h3, .shop-faq h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--red-bright);
  font-size: 1.6rem;
  margin: 0 0 .5rem;
}
.shop-policy ol { padding-left: 1.4rem; }
.shop-policy ol li { margin: .35rem 0; }
.policy { margin-top: 1rem; font-style: italic; font-size: .9rem; color: #d4c7a8; }

.shop-faq {
  margin: 2rem 0 0;
  color: var(--cream);
}
.shop-faq details {
  margin: .35rem 0;
  padding: .65rem .9rem;
  background: rgba(245, 236, 216, .06);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.shop-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
}
.shop-faq p { margin: .4rem 0 0; color: #e6dcc4; }
.shop-faq a { color: var(--red-bright); }

/* ---- Shop result pages (success / cancel / unavailable) ---- */
.shop-result {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}
.result-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid #d8c79a;
  border-radius: 8px;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.result-card::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid #c9a85a;
  border-radius: 5px; pointer-events: none;
}
.result-card--success { border-top: 4px solid #2e7d32; }
.result-card--cancel  { border-top: 4px solid #b3142a; }
.result-card h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--red);
  margin: 0 0 .75rem;
  font-size: 1.8rem;
}
.result-card p { color: #2a1f17; margin: .55rem 0; }
.result-actions {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.result-card .buy-btn--ghost {
  color: var(--ink);
  border-color: var(--ink);
}

/* ---- Retro counter bar ---- */
.counter-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem auto 3rem;
}
.counter {
  background: #0a0a0a;
  border: 2px solid #2a2a2a;
  border-radius: 6px;
  padding: .5rem .85rem .65rem;
  box-shadow: inset 0 0 18px rgba(0,0,0,.85), 0 0 0 1px #000, 0 4px 14px rgba(0,0,0,.5);
  text-align: center;
  min-width: 200px;
}
.counter-label {
  display: block;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: .72rem;
  color: #b89a4e;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.counter-digits {
  font-family: "Courier New", monospace;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .12em;
  color: #ffba2a;
  text-shadow: 0 0 10px rgba(255, 186, 42, .65), 0 0 2px #fff3a8;
  background: linear-gradient(180deg, #000 0%, #1a1108 50%, #000 100%);
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 3px;
}

/* ---- Film cards ---- */
.films {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.film {
  background: var(--paper);
  border: 1px solid #d8c79a;
  border-radius: 6px;
  padding: 1.4rem 1.4rem 1.1rem;
  box-shadow: var(--shadow);
  position: relative;
}
.film::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid #c9a85a;
  border-radius: 4px;
  pointer-events: none;
}
.film-head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  align-items: baseline;
  margin-bottom: .35rem;
}
.year {
  grid-row: 1 / span 2;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 2.2rem;
  color: var(--red);
  letter-spacing: .02em;
  align-self: center;
}
.film-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.85rem;
  color: var(--ink);
  line-height: 1.05;
}
.series {
  font-style: italic;
  font-size: .85rem;
  color: #6a4a1a;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.desc {
  margin: .55rem 0 1rem;
  color: #2a1f17;
}
.player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #000, 0 4px 16px rgba(0,0,0,.4);
}
.play-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  position: relative;
}
.poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
  transition: opacity .25s, transform .35s;
}
.play-btn:hover .poster { opacity: 1; transform: scale(1.02); }
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 0 24px rgba(0,0,0,.8);
  pointer-events: none;
}
.player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.credit {
  font-size: .8rem;
  color: #4a3010;
  margin: .6rem 0 0;
  font-style: italic;
}
.credit a { color: var(--red); text-decoration: none; }
.credit a:hover { text-decoration: underline; }
.credit .sep { color: #c9a85a; margin: 0 .25rem; }
.credit .bts-link { font-weight: 600; }
.film-title a { color: inherit; text-decoration: none; }
.film-title a:hover { color: var(--red); }

/* ---- Biography page ---- */
.bio {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}
.bio-article {
  background: var(--paper);
  border: 1px solid #d8c79a;
  border-radius: 6px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}
.bio-article::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid #c9a85a;
  border-radius: 4px;
  pointer-events: none;
}
.bio-head { text-align: center; margin-bottom: 1.5rem; }
.bio-title {
  font-family: "Pinyon Script", cursive;
  color: var(--red);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin: 0;
  font-weight: 400;
  line-height: 1;
}
.bio-life {
  font-family: "Special Elite", monospace;
  color: #6a4a1a;
  font-size: 1rem;
  letter-spacing: .12em;
  margin: .25rem 0 1rem;
}
.bio-lede {
  font-style: italic;
  color: #2a1f17;
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.1rem;
}
.bio-card {
  background: #fff7e2;
  border: 1px solid #c9a85a;
  border-radius: 4px;
  padding: 1rem 1.2rem;
  margin: 1.25rem 0 2rem;
}
.bio-card h3 {
  font-family: "Special Elite", monospace;
  color: var(--red);
  font-size: .9rem;
  letter-spacing: .12em;
  margin: 0 0 .55rem;
  text-transform: uppercase;
}
.bio-card dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: .25rem 1rem; }
.bio-card dt { font-weight: 600; color: #2a1f17; }
.bio-card dd { margin: 0; color: #2a1f17; }
.bio-section { margin: 2rem 0; }
.bio-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--red);
  border-bottom: 1px solid #c9a85a;
  padding-bottom: .25rem;
  margin: 1rem 0 .75rem;
}
.bio-section p { color: #2a1f17; margin: .75rem 0; }

/* FAQ (used by bio + film pages) */
.bio-faq, .bts-faq {
  margin: 2rem 0;
  background: #fff7e2;
  border: 1px solid #c9a85a;
  border-radius: 4px;
  padding: 1rem 1.25rem;
}
.bio-faq h3, .bts-faq h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--red);
  margin: 0 0 .75rem;
}
.bio-faq details, .bts-faq details {
  border-top: 1px dotted #c9a85a;
  padding: .5rem 0;
}
.bio-faq details:first-of-type, .bts-faq details:first-of-type { border-top: 0; }
.bio-faq summary, .bts-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #2a1f17;
  font-size: 1.05rem;
}
.bio-faq p, .bts-faq p { margin: .35rem 0 0; color: #3a2f27; }

.bio-sources {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #c9a85a;
  font-size: .85rem;
  color: #6a4a1a;
}
.bio-sources h4 {
  font-family: "Special Elite", monospace;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 .35rem;
  color: var(--red);
}
.bio-sources ul { margin: 0; padding-left: 1.2rem; }
.bio-sources a { color: var(--red); word-break: break-all; }

/* ---- Per-film BTS page ---- */
.film-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}
.film-article {
  background: var(--paper);
  border: 1px solid #d8c79a;
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.film-article::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid #c9a85a; border-radius: 4px;
  pointer-events: none;
}
.film-page-head { text-align: center; margin-bottom: 1.25rem; }
.crumbs {
  font-family: "Special Elite", monospace;
  font-size: .75rem;
  letter-spacing: .08em;
  color: #4a3010;
  margin: 0 0 .5rem;
}
.crumbs a { color: var(--red); text-decoration: none; }
.film-page-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
}
.film-page-meta {
  font-family: "Special Elite", monospace;
  color: #4a3010;
  font-size: .85rem;
  letter-spacing: .06em;
  margin: .3rem 0 .25rem;
}
.film-page-lede { font-style: italic; color: #2a1f17; margin: .5rem auto 1rem; max-width: 40rem; }
.film-page-player { margin: 1rem 0; }
.bts-section { margin: 1.75rem 0; }
.bts-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--red);
  border-bottom: 1px solid #c9a85a;
  padding-bottom: .25rem;
  margin: 0 0 .65rem;
}
.bts-section p { color: #2a1f17; margin: .65rem 0; }
.cc-list { list-style: none; padding: 0; margin: 0; }
.cc-list li { padding: .15rem 0; color: #2a1f17; }
.cc-role { font-weight: 600; color: var(--red); margin-right: .35rem; }
.facts { padding-left: 1.2rem; }
.facts li { margin: .3rem 0; color: #2a1f17; }
.film-page-credit { text-align: center; margin-top: 1.5rem; }

/* ---- 404 ---- */
.not-found {
  max-width: 520px;
  margin: 3rem auto;
  background: var(--paper);
  padding: 2rem;
  text-align: center;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

/* ---- Upcoming / countdown ---- */
.upcoming {
  max-width: 920px;
  margin: 0 auto 4rem;
  padding: 2rem 1rem;
  color: var(--cream);
}
.upcoming-title {
  text-align: center;
  font-family: "Pinyon Script", cursive;
  color: var(--red-bright);
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin: 0 0 .5rem;
  text-shadow: 0 2px 0 #6a0010, 0 0 30px rgba(255,80,100,.3);
}
.upcoming-blurb {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-style: italic;
  color: #e6dcc4;
  text-shadow: 0 1px 6px #000;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.countdown-card {
  background: rgba(10, 6, 4, .78);
  border: 1px solid #6a4a1a;
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(2px);
}
.cd-year {
  font-family: "Special Elite", monospace;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .12em;
}
.cd-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--cream);
  margin: .15rem 0 .1rem;
}
.cd-studio {
  font-size: .8rem;
  font-style: italic;
  color: #b89a4e;
  margin-bottom: .6rem;
}
.cd-timer {
  font-family: "Courier New", monospace;
  font-size: 1.05rem;
  color: #ffba2a;
  text-shadow: 0 0 8px rgba(255,186,42,.5);
  letter-spacing: .05em;
}
.cd-num { font-weight: 700; }
.cd-unit { color: var(--gold); margin-right: .35rem; font-size: .8em; }
.cd-eta {
  margin-top: .4rem;
  font-size: .75rem;
  color: #9a8c66;
  font-style: italic;
}
.upcoming-footnote {
  margin-top: 1.5rem;
  font-size: .8rem;
  color: #9a8c66;
  font-style: italic;
  text-align: center;
}

/* ---- Disclaimer ---- */
.disclaimer {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  color: var(--cream);
  text-align: center;
  font-size: .95rem;
}
.disclaimer h2 {
  font-family: "Pinyon Script", cursive;
  color: var(--red-bright);
  font-size: 2.4rem;
  margin: 0 0 .5rem;
  font-weight: 400;
}
.disclaimer a { color: var(--red-bright); }
.contact { margin-top: 1.2rem; font-size: 1rem; }
.tiny { font-size: .75rem; color: #8c7c5e; margin-top: 2rem; font-style: italic; }

@media (max-width: 600px) {
  body { font-size: 17px; }
  .film { padding: 1rem 1rem .85rem; }
  .film-head { grid-template-columns: 1fr; }
  .year { grid-row: auto; font-size: 1.6rem; }
  .counter-digits { font-size: 1.6rem; }
}
