/* ════════════════════════════════════════════════════════════════════
   Cinema-grade additions — hero, ticker, bento, dates, animations.
   Loads after styles.css and overrides where needed.
   ════════════════════════════════════════════════════════════════════ */

/* ─── TICKER ────────────────────────────────────────────────── */
.ticker {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid #1f1c18;
  overflow: hidden;
  padding: 10px 0;
}
.ticker__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 48s linear infinite;
  width: max-content;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.ticker__k {
  color: var(--accent-3);
  text-transform: uppercase;
  font-weight: 500;
}
.ticker__v {
  color: rgba(241, 237, 226, 0.85);
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 12px;
}
.ticker__sep {
  color: rgba(241, 237, 226, 0.25);
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── CINEMA HERO ───────────────────────────────────────────── */
.ch-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  min-height: 92vh;
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(40px, 6vw, 80px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
}
.ch-hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.ch-hero__beam {
  position: absolute;
  top: -30%; left: 60%;
  width: 80%; height: 160%;
  background: radial-gradient(ellipse at center, rgba(139, 44, 26, 0.35) 0%, transparent 55%);
  filter: blur(40px);
  animation: beam-drift 18s ease-in-out infinite alternate;
}
@keyframes beam-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-8%, 4%) scale(1.1); }
}
.ch-hero__grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(241, 237, 226, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(241, 237, 226, 0.03) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.ch-hero__meta {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 8px;
}
.ch-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
  padding: 8px 14px;
  border: 1px solid rgba(194, 65, 12, 0.4);
  align-self: flex-start;
  border-radius: 100px;
}
.ch-hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 0 0 var(--accent-3);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(194, 65, 12, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0); }
}
.ch-hero__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(241, 237, 226, 0.4);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: flex-start;
  padding: 0 0 8px 4px;
}

.ch-hero__title-wrap {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.ch-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ch-hero__line {
  display: block;
  font-size: clamp(80px, 16vw, 240px);
  opacity: 0;
  transform: translateY(40px);
  animation: line-in 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.ch-hero__line--1 { animation-delay: 0.1s; }
.ch-hero__line--2 { animation-delay: 0.25s; padding-left: 0.5em; }
.ch-hero__line--3 { animation-delay: 0.4s; padding-left: 1.5em; }
.ch-hero__line em {
  font-style: italic;
  color: var(--accent-3);
}
@keyframes line-in {
  to { opacity: 1; transform: translateY(0); }
}

.ch-hero__poster {
  position: absolute;
  top: 14%;
  right: clamp(40px, 8vw, 130px);
  width: clamp(180px, 22vw, 340px);
  z-index: 3;
  --py: 0px; --pr: 0deg;
  transform: translateY(var(--py)) rotate(calc(-3deg + var(--pr)));
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.7));
  animation: poster-in 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s backwards;
  transition: transform 0.4s ease;
}
.ch-hero__poster:hover { transform: translateY(var(--py)) rotate(calc(0deg + var(--pr))) scale(1.03); }
.ch-hero__poster .ph { aspect-ratio: 3/4; }
@keyframes poster-in {
  from { opacity: 0; transform: translateY(80px) rotate(-8deg); }
}

.ch-hero__bottom {
  grid-column: 1 / -1;
  grid-row: 3;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-top: 32px;
  border-top: 1px solid rgba(241, 237, 226, 0.18);
  align-items: end;
}
.ch-hero__quotes {
  display: grid;
  gap: 10px;
  max-width: 760px;
}
.ch-hero__quote {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.4;
  color: rgba(241, 237, 226, 0.82);
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
  animation: quote-in 0.6s ease 0.9s forwards;
}
.ch-hero__quote:nth-child(2) { animation-delay: 1.05s; }
.ch-hero__quote:nth-child(3) { animation-delay: 1.2s; }
@keyframes quote-in { to { opacity: 1; transform: none; } }
.ch-hero__qm {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent-3);
  font-style: normal;
  padding-top: 4px;
}

.ch-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  opacity: 0;
  animation: quote-in 0.6s ease 1.3s forwards;
}
.ch-hero__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--paper);
}
.ch-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.ch-hero__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-3);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 0;
}
.ch-hero__btn:hover::after { transform: translateX(0); }
.ch-hero__btn:hover { color: var(--paper); }
.ch-hero__btn > span { position: relative; z-index: 1; }
.ch-hero__btn-arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
}
.ch-hero__btn:hover .ch-hero__btn-arrow { transform: translateX(4px); }

.ch-hero__scroll {
  position: absolute;
  bottom: clamp(20px, 3vw, 32px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 237, 226, 0.4);
  z-index: 3;
  cursor: pointer;
  transition: color 0.2s ease;
}
.ch-hero__scroll:hover { color: var(--paper); }
.ch-hero__scroll-arrow {
  display: inline-block;
  animation: bounce-y 2.2s ease-in-out infinite;
  font-size: 14px;
}
@keyframes bounce-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* Hide původní hero */
.hero { display: none; }

/* ─── FINDOU FEATURED — refined ─────────────────────────────── */
.findou-feat__title { font-size: clamp(64px, 9vw, 132px); margin: 16px 0 28px; }
.findou-feat__dates {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  border-top: 1px solid rgba(241, 237, 226, 0.18);
}
.fdate {
  display: grid;
  grid-template-columns: 48px 56px 60px 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(241, 237, 226, 0.12);
  font-family: var(--font-display);
  transition: padding 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.fdate:hover {
  padding-left: 10px;
  padding-right: 10px;
  background: rgba(241, 237, 226, 0.04);
}
.fdate__day {
  font-size: 28px;
  font-style: italic;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.fdate__mo {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-3);
  font-style: normal;
}
.fdate__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(241, 237, 226, 0.7);
  font-style: normal;
  letter-spacing: 0.04em;
}
.fdate__city {
  font-size: 17px;
  color: rgba(241, 237, 226, 0.85);
}
.fdate__avail {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: normal;
  padding: 4px 8px;
  border-radius: 0;
}
.fdate__avail--volno {
  background: rgba(58, 107, 48, 0.25);
  color: #9bc788;
}
.fdate__avail--posledni {
  background: rgba(194, 65, 12, 0.25);
  color: #f0a875;
}

.findou-feat__poster { position: relative; }
.findou-feat__poster .ph { aspect-ratio: 3/4; }
.findou-feat__poster-cap {
  position: absolute;
  top: -12px; left: -12px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

/* ─── BENTO FILMS — POSTER (2:3) layout, refined boxes ────── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.8vw, 40px);
}
.bento__cell {
  position: relative;
  cursor: pointer;
  background: transparent;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease var(--delay, 0ms),
              transform 0.6s ease var(--delay, 0ms);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.filmgrid.is-shown .bento__cell { opacity: 1; transform: translateY(0); }
.filmpage .bento__cell { opacity: 1; transform: none; }

.bento__media {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    0 1px 0 rgba(241, 237, 226, 0.5) inset,
    0 20px 40px -20px rgba(10, 8, 8, 0.4),
    0 6px 12px -8px rgba(10, 8, 8, 0.3);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.bento__cell:hover .bento__media {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(241, 237, 226, 0.5) inset,
    0 36px 60px -24px rgba(10, 8, 8, 0.55),
    0 12px 20px -10px rgba(139, 44, 26, 0.3);
}
.bento__media .ph {
  width: 100%; height: 100%;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.bento__cell:hover .bento__media .ph { transform: scale(1.05); }

/* Subtle hover overlay so the poster reads as clickable */
.bento__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 8, 0.18) 0%, transparent 35%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.bento__cell:hover .bento__media::after { opacity: 1; }

.bento__caption {
  background: transparent;
  position: relative;
  padding: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.bento__year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.bento__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 400;
  font-style: italic;
  transition: color 0.18s ease;
}
.bento__cell:hover .bento__title { color: var(--accent); }

/* Arrow indikátor — diskrétně, jen na hover */
.bento__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px; height: 36px;
  border: 1px solid rgba(241, 237, 226, 0.6);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-size: 13px;
  background: rgba(10, 8, 8, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  z-index: 3;
}
.bento__cell:hover .bento__arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--accent-3);
  border-color: var(--accent-3);
}

@media (max-width: 880px) {
  .bento { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   FILM DETAIL
   ════════════════════════════════════════════════════════════════════ */
.film-hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 7vw, 96px) var(--gutter);
}
.film-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.film-hero__poster {
  position: relative;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}
.film-hero__poster .ph { aspect-ratio: 2/3; }
.film-hero__crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 16px;
}
.film-hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 12px;
}
.film-hero__year {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: rgba(241, 237, 226, 0.6);
  margin-bottom: 32px;
}
.film-hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin: 0 0 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(241, 237, 226, 0.18);
  border-bottom: 1px solid rgba(241, 237, 226, 0.18);
}
.film-hero__meta > div { display: flex; flex-direction: column; gap: 4px; }
.film-hero__meta dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 237, 226, 0.5);
}
.film-hero__meta dd {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--paper);
  margin: 0;
}
.film-hero__meta dd.is-placeholder {
  color: rgba(241, 237, 226, 0.5);
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 14px;
}
.film-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.film-hero .btn--ghost {
  color: var(--paper);
  border-color: rgba(241, 237, 226, 0.4);
}
.film-hero .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.film-body {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
}
.film-body__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.film-synopsis {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 56ch;
}
.film-synopsis.is-placeholder {
  color: var(--ink-mute);
  font-family: var(--font-sans);
  font-size: 17px;
}
.film-body__side {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.film-body__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 16px 0 8px;
}
.film-body__sub:first-child { margin-top: 0; }
.film-cast {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.4;
}
.film-cast.is-placeholder {
  color: var(--ink-mute);
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: italic;
}
.film-awards { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.film-awards li {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  line-height: 1.4;
}
.film-awards li:last-child { border-bottom: 0; }
.film-awards li.is-placeholder {
  color: var(--ink-mute);
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: italic;
}

.film-nav {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: clamp(40px, 5vw, 60px) var(--gutter);
}
.film-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.film-nav__side {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.film-nav__side:hover { background: var(--paper-2); border-color: var(--ink); }
.film-nav__side--next { text-align: right; }
.film-nav__hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.film-nav__big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.film-nav__year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}

@media (max-width: 880px) {
  .film-hero__inner { grid-template-columns: 1fr; }
  .film-hero__poster { max-width: 320px; }
  .film-body__inner { grid-template-columns: 1fr; }
  .film-nav__inner { grid-template-columns: 1fr; }
  .film-nav__side--next { text-align: left; }
  .film-hero__meta { grid-template-columns: 1fr; }
}

/* ─── Ocenění — by film ─────────────────────────────────── */
.awards { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px); }
.award-group {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.award-group:last-child { border-bottom: 0; }
.award-group__poster {
  position: sticky;
  top: 120px;
  align-self: start;
  aspect-ratio: 2/3;
  box-shadow: 0 20px 40px -20px rgba(10, 8, 8, 0.4);
  overflow: hidden;
}
.award-group__head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.award-group__year {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.award-group__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  font-weight: 400;
}
.award-group__list { list-style: none; padding: 0; margin: 0; }
.award-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.award-item:last-child { border-bottom: 0; }
.award-item__year {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.award-item__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.25;
}
.award-item.is-placeholder-row .award-item__year,
.award-item.is-placeholder-row .award-item__name {
  color: var(--ink-mute);
  font-style: italic;
}

@media (max-width: 720px) {
  .award-group { grid-template-columns: 1fr; }
  .award-group__poster { position: static; max-width: 220px; }
}
/* Scroll-reveal animace JEN pro Cloude Design .shop wrapper.
   POZOR: .product je generická WC class na všech WC produktech (.pcard.product) —
   bez .shop scope by se WC shop /obchod/ schoval s opacity:0. */
.shop .product { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease var(--delay, 0ms), transform 0.6s ease var(--delay, 0ms); }
.shop.is-shown .product { opacity: 1; transform: none; }
.product__media { position: relative; }
.product__hover {
  position: absolute;
  inset: auto 0 0 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product:hover .product__hover { transform: translateY(0); }
.product:hover .product__media { transform: translateY(-3px); }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(194, 65, 12, 0.22) 0%, transparent 60%);
  filter: blur(40px);
}
.cta-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-band .eyebrow { color: var(--accent-3); margin-bottom: 28px; display: block; }
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  color: var(--paper);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.cta-band__title em { font-style: italic; color: var(--accent-3); }
.cta-band__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn--ghost-light {
  color: var(--paper);
  border: 1px solid rgba(241, 237, 226, 0.4);
}
.btn--ghost-light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* ─── REVEALS for section heads ─────────────────────────── */
.filmgrid__head,
.shop__head { animation: fade-up 0.6s ease backwards; }
.filmgrid.is-shown .filmgrid__head,
.shop.is-shown .shop__head { animation-play-state: running; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
}

/* Bigger marquee */
.marquee__item { font-size: 36px; }
.marquee__sep { color: var(--accent-3); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .ch-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    min-height: auto;
  }
  .ch-hero__meta {
    grid-row: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .ch-hero__num { writing-mode: horizontal-tb; transform: none; padding: 0; }
  .ch-hero__title-wrap { grid-row: 2; grid-column: 1; }
  .ch-hero__line--1 { padding-left: 0; }
  .ch-hero__line--2 { padding-left: 0.3em; }
  .ch-hero__line--3 { padding-left: 0.6em; }
  .ch-hero__poster {
    position: relative;
    top: 0;
    right: 0;
    margin: 24px 0;
    width: 240px;
  }
  .ch-hero__bottom { grid-template-columns: 1fr; grid-row: 4; }
  .ch-hero__cta { align-items: flex-start; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell, .bento--xl, .bento--w { grid-column: span 1; grid-row: auto; }
}

/* Language switcher */
.hdr__lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.hdr__lang-btn {
  background: transparent;
  color: var(--ink-mute);
  padding: 6px 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.18s ease;
  cursor: pointer;
}
.hdr__lang-btn:hover { color: var(--ink); }
.hdr__lang-btn.is-active { color: var(--accent); font-weight: 600; }
.hdr__lang-sep { color: var(--ink-mute); }

@media (max-width: 1080px) {
  .hdr__lang { display: none; }
}
.hdr__social {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 4px;
  padding-right: 8px;
  border-right: 1px solid var(--line);
}
.hdr__soc {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.hdr__soc:hover {
  color: var(--accent);
  background: var(--paper-2);
  transform: translateY(-1px);
}

/* Sticky social rail — removed (icons already in header) */
.socrail { display: none !important; }
.socrail__link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  position: relative;
  transition: color 0.18s ease, background 0.18s ease, width 0.25s ease;
  overflow: hidden;
}
.socrail__link:hover {
  background: var(--accent);
  color: var(--paper);
}
.socrail__lbl {
  position: absolute;
  left: 100%;
  margin-left: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.socrail__link:hover .socrail__lbl {
  opacity: 1;
  transform: translateX(0);
}
.socrail__line {
  display: block;
  width: 1px;
  height: 28px;
  background: var(--line);
  margin: 4px 0;
}
.socrail__txt {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 4px 0;
}

/* Footer social — real icons */
.ftr__social a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 237, 226, 0.2);
  color: rgba(241, 237, 226, 0.75);
  transition: all 0.2s ease;
}
.ftr__social a:hover {
  background: var(--accent-3);
  border-color: var(--accent-3);
  color: var(--paper);
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .socrail { display: none; }
}
@media (max-width: 720px) {
  .hdr__social { display: none; }
}

