/* ============================================================
   BOSFOR — homepage
   Card-flip showcase · centered slogan · news teaser
   ============================================================ */

/* ---------- INTRO SPLASH ---------- */
/* vector bosfor-loader: hard-cut positions at ~60fps, soft overlay dissolve */
.splash {
  position: fixed; inset: 0; z-index: 2000; background: #000; display: grid; place-items: center;
  transition: opacity 2.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.splash__logo {
  display: block;
  width: min(72vmin, 640px); height: min(72vmin, 640px);
  color: #fff;
}
.splash.is-out { opacity: 0; pointer-events: none; }

/* ---------- SHOWCASE ---------- */
.sc { position: relative; }
.sc__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; background: #000; }
/* soft wide gradient wash on the RIGHT side of the banner (~20%) */
.sc__sticky::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(270deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 22%, rgba(0,0,0,0) 55%);
  opacity: 0.2; }

/* photo cards that turn like leaves — JS drives transform/opacity per frame */
.sc__stage { position: absolute; inset: 0; perspective: 1150px; perspective-origin: 50% 50%; }
.sc__card { position: absolute; inset: 0; transform-origin: 50% 100%; backface-visibility: hidden; opacity: 0; will-change: transform, opacity; }
.sc__card .art { position: absolute; inset: 0; }

/* scrim so white overlay text reads over any still */
.sc__scrim { position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.34) 34%, rgba(0,0,0,0) 64%),
    linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 26%, rgba(0,0,0,0) 46%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 22%);
}

.sc__inner {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  display: grid; grid-template-rows: 1fr auto;
  padding: calc(var(--topbar-h) + var(--navx-h)) var(--pad) clamp(36px, 5vh, 64px);
  color: var(--on, #fff);
}
.sc__bottom { display: grid; grid-template-columns: 1fr 1.18fr; gap: 24px; align-items: end; }

/* the film titles — anchored to the bottom-left corner */
.sc__list {
  display: flex; flex-direction: column; gap: 0;
  pointer-events: auto; isolation: isolate;
}
.sc__item {
  font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em;
  /* чуть плотнее визуально; хитбокс держим за счёт z-index (JS) */
  line-height: 1;
  padding: 0.01em 0;
  font-size: clamp(30px, 5vw, 80px); cursor: pointer; position: relative; width: max-content; max-width: 80vw;
  color: var(--on-dim, rgba(255,255,255,0.32));
}
.anim-ready .sc__item { transition: color .5s var(--ease), transform .55s var(--ease); }
.sc__item.is-active { color: #fff; transform: translateX(0); }

/* active film meta — bottom-right */
.sc__meta { justify-self: end; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; max-width: 52ch; pointer-events: auto; }
.sc__status { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.sc__status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.sc__shortdesc { font-family: var(--serif); font-style: italic; font-size: clamp(16px, 1.6vw, 23px); line-height: 1.3; }

/* status tag beside each left-list title (shown only in layout 04) */
.sc__item-st { display: none; }

/* link-style CTA (used by layouts 02 & 04) */
.sc__link { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; white-space: nowrap; }
.sc__link .ar { display: inline-block; transition: transform .4s var(--ease); }
.sc__link:hover .ar { transform: translateX(5px); }

/* ---- layout switcher (top-center of the showcase) ---- */
.sc__switch { position: absolute; top: calc(var(--topbar-h) + var(--navx-h) + 14px); left: 50%; transform: translateX(-50%); z-index: 6;
  display: inline-flex; align-items: center; gap: 4px; padding: 4px 4px 4px 14px; border: 1px solid rgba(255,255,255,0.2); border-radius: 100px;
  background: rgba(0,0,0,0.28); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); pointer-events: auto; }
.sc__switch-lbl { font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-right: 6px; }
.sc__switch button { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); padding: 6px 10px; border-radius: 100px; cursor: pointer; background: none; border: none; transition: background .3s var(--ease), color .3s var(--ease); }
.sc__switch button.is-on { background: #fff; color: #000; }
.sc__switch button:hover:not(.is-on) { color: #fff; }

/* critic-quote stack — click anywhere to advance */
.sc__qbox { display: flex; flex-direction: column; align-items: flex-end; width: 100%; }
.sc__qbox.is-clickable { cursor: pointer; }
.sc__quotes { display: grid; width: 100%; align-items: end; }
.sc__quote {
  grid-area: 1 / 1; align-self: end; z-index: 0;
  opacity: 0; transform: none;
  transition: opacity 1.85s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s; pointer-events: none;
}
.sc__quote.is-on { opacity: 1; z-index: 1; transition-delay: .55s; }
.sc__quote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 1.9vw, 27px); line-height: 1.34; letter-spacing: -0.01em; }
.sc__quote figcaption { margin-top: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-60); }
.sc__row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.72; }
.sc__row span { display: inline-flex; align-items: center; }
.sc__row span:not(:first-child)::before { content: "\2022"; margin-right: 14px; font-size: 1.35em; line-height: 0; font-weight: 700; opacity: 0.85; }
.sc__btn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 13px 24px; border: 1px solid currentColor; border-radius: 100px; transition: background .45s var(--ease), color .45s var(--ease); }
.sc__btn:hover { background: var(--on, #fff); color: var(--on-inv, #000); }

/* ============================================================
   LAYOUT VARIANTS (right-side meta) — data-v on .sc__inner
   ============================================================ */

/* 01 — frosted glass panel: quote, divider, status+meta left / button right */
[data-v="1"] .sc__meta { background: rgba(14,14,18,0.42); backdrop-filter: blur(14px) saturate(1.1); -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; padding: 26px 28px; gap: 18px; align-items: flex-start; text-align: left; max-width: 440px; box-shadow: 0 16px 50px rgba(0,0,0,0.35); }
[data-v="1"] .sc__qbox { align-items: flex-start; }
[data-v="1"] .sc__quotes { align-items: end; }
[data-v="1"] .sc__quote blockquote { font-size: clamp(17px, 1.6vw, 23px); }
[data-v="1"] .scv-div { width: 100%; height: 1px; background: var(--line); }
[data-v="1"] .scv-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; }
[data-v="1"] .scv-foot-l { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
[data-v="1"] .sc__row { justify-content: flex-start; }
[data-v="1"] .sc__status { color: #fff; }
[data-v="1"] .sc__btn { flex: none; }

/* 02 — big quote + one bottom utility line */
[data-v="2"] .sc__meta { gap: 22px; max-width: 54ch; }
[data-v="2"] .sc__quote blockquote { font-size: clamp(20px, 2.1vw, 30px); }
[data-v="2"] .scv-util { display: flex; align-items: center; gap: 18px; justify-content: flex-end; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 16px; width: 100%; }
[data-v="2"] .scv-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); }
[data-v="2"] .sc__status { color: #fff; }

/* 03 — two zones, gold edge groups the facts */
[data-v="3"] .sc__meta { gap: 26px; }
[data-v="3"] .sc__quote blockquote { font-size: clamp(18px, 1.9vw, 25px); }
[data-v="3"] .scv-info { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; border-right: 2px solid rgba(255,255,255,0.55); padding-right: 18px; }
[data-v="3"] .scv-info .sc__status { color: #fff; }

/* 04 — status lives beside each film title on the left */
[data-v="4"] .sc__meta { gap: 20px; max-width: 48ch; }
[data-v="4"] .scv-foot4 { display: flex; align-items: center; gap: 20px; justify-content: flex-end; border-top: 1px solid var(--line); padding-top: 16px; width: 100%; }
[data-v="4"] .sc__list .sc__item,
[data-v="5"] .sc__list .sc__item { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
[data-v="4"] .sc__item-st,
[data-v="5"] .sc__item-st { display: inline-flex; align-items: center; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-40); white-space: nowrap; align-self: center; }
[data-v="4"] .sc__item.is-active .sc__item-st,
[data-v="5"] .sc__item.is-active .sc__item-st { color: #fff; }

/* 05 \u2014 short film info on one line, real button below */
[data-v="5"] .sc__meta { gap: 22px; max-width: 50ch; }
[data-v="5"] .sc__quote blockquote { font-size: clamp(18px, 1.9vw, 26px); }
[data-v="5"] .scv5 { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; width: 100%; border-top: 1px solid var(--line); padding-top: 18px; }
[data-v="5"] .scv5-line { display: flex; align-items: center; gap: 14px; flex-wrap: nowrap; justify-content: flex-end; white-space: nowrap; }
[data-v="5"] .scv5-line .sc__row { flex-wrap: nowrap; }
/* статус рядом с годом — только мобиль (показ в mobile.css); на десктопе статус живёт у названия */
.scv5-st { display: none; }

.sc__cue { position: absolute; left: var(--pad); top: calc(var(--topbar-h) + var(--navx-h) + 14px); z-index: 4; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on, #fff); opacity: 0.6; }

@media (max-width: 820px) {
  .sc__bottom { grid-template-columns: 1fr; gap: 20px; }
  .sc__meta { justify-self: start; text-align: left; align-items: flex-start; order: -1; }
  .sc__row { justify-content: flex-start; }
  .sc__item.is-active { transform: translateX(0); }
}

/* ---------- SLOGAN ---------- */
.slogan { min-height: 86vh; display: grid; place-items: center; padding: clamp(80px,14vh,200px) var(--pad); border-top: 1px solid var(--line); }
.slogan p {
  font-family: var(--serif); font-weight: 500; text-align: center;
  font-size: clamp(30px, 5vw, 80px); line-height: 1.1; letter-spacing: -0.01em;
  max-width: 19ch; text-wrap: balance;
}
.slogan em { font-style: italic; color: var(--ink-60); }

/* ============================================================
   FEED — товар · клуб (узкая полоса) · товары шахматкой · фильм (узкая полоса) · товар
   Отступ только сверху у каждого блока, одинаковый (как у первой карточки).
   ============================================================ */
.feed { --feed-gap: clamp(56px, 9vh, 120px); padding: 0 0 var(--feed-gap); }
#feedList > * { margin-top: var(--feed-gap); }

/* ---- товарный ряд: название + кнопка слева, крупное фото справа; --flip зеркалит ---- */
.prow { display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; gap: clamp(24px, 4vw, 72px);
  max-width: 1320px; margin-inline: auto; padding: 0 var(--pad); }
.prow__body { grid-column: 1 / 6; display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.prow__pic { grid-column: 6 / 13; position: relative; display: block; width: 100%; aspect-ratio: 5 / 4;
  border-radius: clamp(26px, 3.2vw, 48px); overflow: hidden;
  background: linear-gradient(165deg, #eeeeec 0%, #d7d7d3 100%); }
/* wonky rectangle: наклон зашит в саму форму — стороны разной длины, все углы скруглены (defs в home.js) */
.prow--s1 .prow__pic { clip-path: url(#pshape1); }
.prow--s2 .prow__pic { clip-path: url(#pshape2); aspect-ratio: 4 / 3; }
.prow--s3 .prow__pic { clip-path: url(#pshape3); aspect-ratio: 21 / 16; }
.prow--s4 .prow__pic { clip-path: url(#pshape4); aspect-ratio: 4 / 3; }
.prow__pic::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 90px rgba(0,0,0,0.07); }
.prow--flip .prow__pic { grid-column: 1 / 8; }
.prow--flip .prow__body { grid-column: 8 / 13; order: 2; }
.prow__pic img,
.prow__pic .prow__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply;
}
.prow__img--main { z-index: 1; }
.prow__img--hover {
  z-index: 2; opacity: 0;
  transition: opacity .45s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .prow--has-hover:hover .prow__img--hover { opacity: 1; }
}
.prow__kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-40); margin-bottom: clamp(15px, 1.6vw, 22px); }
.prow__name { font-family: var(--sans); font-weight: 400; font-size: clamp(34px, 4vw, 62px); line-height: 0.98; letter-spacing: -0.022em; color: var(--ink-90); text-wrap: balance; }
.prow__name b { font-weight: 800; }
.prow__name i { font-style: italic; }
.prow__name u { text-decoration: underline; text-underline-offset: 0.12em; text-decoration-thickness: 0.06em; }
/* CTA — тонкая длинная стрелка + подпись капслоком (вместо pill); ховер только на самом CTA */
.prow__cta { display: inline-flex; align-items: center; gap: 15px; margin-top: clamp(24px, 2.8vw, 40px);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-90); }
.prow__arrow { flex: none; overflow: visible; transition: transform .45s var(--ease); }
.prow__cta-t { transition: color .35s var(--ease); }
.prow__cta:hover { color: #fff; }
.prow__cta:hover .prow__arrow { transform: translateX(7px); }
.band__btn .ar, .band__link .ar { display: inline-block; transition: transform .4s var(--ease); }

/* ---- узкие полосы (клуб / фильм) ---- */
.band { position: relative; display: block; width: 100%; overflow: hidden; background: #0a0a0b;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
button.band.band--waitlist {
  font: inherit; color: inherit; text-align: left; cursor: pointer;
  appearance: none; -webkit-appearance: none; padding: 0; margin: 0;
}
.band__inner { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 20px 40px; flex-wrap: wrap;
  max-width: 1320px; margin-inline: auto; padding: clamp(34px, 6vh, 64px) var(--pad); }
.band__lead { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.band__kicker { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.62); transition: color .4s var(--ease); }
.band--club:hover .band__kicker { color: rgba(255,255,255,0.85); }
.band__title { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 2.9vw, 46px); line-height: 1.04; letter-spacing: -0.01em; color: #fff; text-wrap: balance; }
.band__btn { display: inline-flex; align-items: center; gap: 11px; flex: none;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff;
  padding: 15px 28px; border: 1px solid var(--ink-40); border-radius: 100px;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease); }
.band:hover .band__btn { background: #fff; color: #000; border-color: #fff; }
.band:hover .band__btn .ar { transform: translateX(5px); }
.band__link { display: inline-flex; align-items: center; gap: 9px; flex: none;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.72); transition: color .4s var(--ease); }
.band:hover .band__link { color: #fff; }
.band:hover .band__link .ar { transform: translateX(5px); }

/* фото-полосы (клуб / фильм): кадр на фоне, затемнение под текст */
.band--photo { border: none; }
.band--photo .band__inner { height: 100%; }
.band__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transition: transform 1.2s var(--ease); }
.band--club .band__bg { object-position: 50% 62%; }   /* лошадь в кадре */
.band--film .band__bg { object-position: 50% 40%; }   /* лицо в кадре */
.band--photo:hover .band__bg { transform: scale(1.025); }
.band__scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.14) 52%, rgba(0,0,0,0.34) 100%), linear-gradient(0deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 34%); }

/* клуб — под кадр высотой ~500px; постерный локап */
.band--club { height: clamp(540px, 70vh, 680px); }
.band__inner--club { flex-direction: column; align-items: flex-start; justify-content: center; gap: 16px; }
.club__lockup { display: flex; flex-direction: column; align-items: flex-start; color: #fff; }
.club__lockup em { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(26px, 2.6vw, 44px); line-height: 1.05; letter-spacing: 0; }
.club__lockup strong { font-family: var(--sans); font-weight: 900; font-size: clamp(54px, 6.8vw, 116px); line-height: 0.94; letter-spacing: -0.015em; text-transform: uppercase; margin-left: -0.045em; }
.club__ex { font-size: clamp(13px, 1.05vw, 15px); line-height: 1.55; color: rgba(255,255,255,0.74); max-width: 44ch; text-wrap: pretty; }
.band--club .band__btn { margin-top: 12px; }
/* клуб — текстовая плашка «Скоро» вместо кнопки вступления */
.band__soon { display: inline-flex; align-items: center; margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,0.34); border-radius: 100px; padding: 10px 20px; }

/* конструкторский баннер — поля фильма в 4 углах */
.band--banner { height: clamp(420px, 56vh, 620px); display: block; cursor: pointer; }
.band__scrim--banner {
  background: linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.08) 40%, rgba(0,0,0,.08) 55%, rgba(0,0,0,.55) 100%);
}
.bband__corner {
  position: absolute; z-index: 3; max-width: min(42%, 520px);
  display: flex; flex-direction: column; gap: 10px; color: #fff;
  padding: clamp(22px, 3.2vw, 44px) var(--pad);
}
.bband__corner--tl { top: 0; left: 0; align-items: flex-start; text-align: left; }
.bband__corner--tr { top: 0; right: 0; align-items: flex-end; text-align: right; }
.bband__corner--bl { bottom: 0; left: 0; align-items: flex-start; text-align: left; }
.bband__corner--br { bottom: 0; right: 0; align-items: flex-end; text-align: right; }
.bband__f--status { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; }
.bband__f--title { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4.8vw, 72px); line-height: 1.02; letter-spacing: -0.01em; text-wrap: balance; }
.bband__f--year, .bband__f--genre, .bband__f--format {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.78);
}

/* фильм — высокая полоса, контент к нижней кромке */
.band--film { height: clamp(540px, 70vh, 680px); }
.band--film .band__inner { align-items: flex-end; padding-block: clamp(36px, 6vh, 60px); }
.band--film .band__title { font-size: clamp(34px, 4.6vw, 72px); }
.band--film .band__lead { gap: 10px; max-width: min(42rem, 62%); }
.band__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
}
.band__meta span { display: inline-flex; align-items: center; }
.band__meta span:not(:first-child)::before {
  content: "\2022"; margin-right: 14px; font-size: 1.35em; line-height: 0;
  font-weight: 700; opacity: 0.85;
}
.band__shortdesc {
  margin: 2px 0 0; max-width: 36ch;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(15px, 1.45vw, 20px); line-height: 1.35;
  color: rgba(255,255,255,0.88);
}
.band--film-top .band__inner { align-items: flex-start; }
.band--promo-bottom { height: clamp(540px, 70vh, 680px); }
.band--promo-bottom .band__inner { align-items: flex-end; padding-block: clamp(36px, 6vh, 60px); }
.band--promo-bottom .band__title { font-size: clamp(34px, 4.6vw, 72px); }
.band--promo-bottom .club__ex { color: rgba(255,255,255,0.78); margin-top: 10px; }
/* стриминг-ссылки поверх кадра фильма — моно-капслок с подчёркиванием по ховеру */
/* правая колонка: кнопка «О фильме»; статус + жанр над ссылками на просмотр */
.band__filmcta { display: flex; flex-direction: column; align-items: flex-end; gap: clamp(16px, 1.9vw, 24px); flex: none; }
.band__watch { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.band__watch .band__meta { justify-content: flex-end; }
.bandstream { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 11px 22px; max-width: 340px; }
.bandstream__lnk { position: relative; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.82); transition: color .3s var(--ease); }
.bandstream__lnk::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: rgba(255,255,255,0.55); transform: translateY(0); transition: background .3s var(--ease), transform .35s var(--ease); }
.bandstream__lnk:hover { color: #fff; }
.bandstream__lnk:hover::after { background: #fff; transform: translateY(-3px); }
@media (max-width: 760px) { .band__filmcta { align-items: flex-start; } .bandstream { justify-content: flex-start; } }

@media (max-width: 760px) {
  .prow, .prow--flip .prow__body { order: 0; }
  .prow { grid-template-columns: 1fr; gap: 22px; padding: 0 var(--pad); }
  .prow__pic, .prow--flip .prow__pic, .prow__body, .prow--flip .prow__body { grid-column: 1; }
  .prow__pic { order: -1; aspect-ratio: 4 / 3; }
  .band__inner { flex-direction: column; align-items: flex-start; }
  .band--club { height: auto; min-height: 440px; }
  .band--film { height: auto; min-height: 440px; }
  .band--promo-bottom { height: auto; min-height: 440px; }
  .band--banner { height: auto; min-height: 360px; }
  .bband__corner { max-width: 85%; padding-block: 24px; }
  .bband__f--title { font-size: clamp(28px, 9vw, 44px); }
  .band--club .band__inner, .band--film .band__inner { align-items: flex-start; justify-content: flex-end; gap: 18px; padding-block: 30px; }
  /* Шурале (фильм) на мобиле — вся типографика в правый нижний угол */
  .band--film .band__inner { align-items: flex-end; text-align: right; }
  .band--film .band__lead { align-items: flex-end; text-align: right; max-width: 100%; }
  .band--film .band__shortdesc { max-width: 32ch; }
  .band--film .band__filmcta { align-items: flex-end; }
  .band--film .band__watch { align-items: flex-end; }
  .band--film .bandstream { justify-content: flex-end; }
}

/* ---------- NEWS (alternating image+text rows, lots of air) ---------- */
.hn { padding: clamp(70px,12vh,150px) var(--pad) clamp(80px,12vh,160px); }
.hn__list { display: flex; flex-direction: column; gap: clamp(90px, 17vh, 230px); max-width: 1180px; margin-inline: auto; }

.hn-row { display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; gap: clamp(28px, 5vw, 90px); }
.hn-row__media { position: relative; grid-column: 1 / 8; aspect-ratio: 16 / 11; border-radius: 4px; overflow: hidden; }
.hn-row__body { grid-column: 9 / 13; display: flex; flex-direction: column; gap: 20px; }
/* alternate: text left, image right + vertical offsets for an airy, chaotic rhythm */
.hn-row:nth-child(even) .hn-row__media { grid-column: 6 / 13; order: 2; aspect-ratio: 5 / 6; }
.hn-row:nth-child(even) .hn-row__body { grid-column: 1 / 5; text-align: left; }
.hn-row:nth-child(odd) { margin-left: clamp(0px, 4vw, 70px); }
.hn-row:nth-child(even) { margin-right: clamp(0px, 4vw, 70px); }
.hn-row:nth-child(3n) .hn-row__media { aspect-ratio: 4 / 3; }

.hn-row__media .art { position: absolute; inset: 0; transition: transform .9s var(--ease); }
.hn-row:hover .hn-row__media .art { transform: scale(1.05); }
.hn-row__idx { position: absolute; top: 16px; left: 18px; z-index: 4; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-90); mix-blend-mode: difference; }

.hn-row__top { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-40); max-width: 30ch; }
.hn-row__tag { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-90); }
.hn-row__tag .dot { width: 7px; height: 7px; border-radius: 50%; }
.hn-row__title { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3vw, 46px); line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance; transition: transform .5s var(--ease); }
.hn-row:hover .hn-row__title { transform: translateX(8px); }
.hn-row__ex { font-size: 14px; line-height: 1.6; color: var(--ink-60); max-width: 40ch; }
.hn-row__cta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-60); display: inline-flex; gap: 10px; align-items: center; margin-top: 6px; }
.hn-row:hover .hn-row__cta { color: #fff; }

@media (max-width: 760px) {
  .hn__list { gap: clamp(60px, 10vh, 110px); }
  .hn-row, .hn-row:nth-child(even) { grid-template-columns: 1fr; gap: 22px; margin: 0; }
  .hn-row__media, .hn-row:nth-child(even) .hn-row__media { grid-column: 1; order: 0; aspect-ratio: 16 / 10; }
  .hn-row__body, .hn-row:nth-child(even) .hn-row__body { grid-column: 1; }
}

/* ---------- PRODUCT CARD (same block grammar as news) ---------- */
.hn-row__slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.shop__price { display: flex; align-items: baseline; gap: 14px; margin-top: 2px; }
.shop__now { font-family: var(--sans); font-weight: 800; font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -0.01em; color: #fff; }
.shop__old { font-family: var(--mono); font-size: 14px; color: var(--ink-40); text-decoration: line-through; }
.shop__off { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #0b0b0b; background: #c9a25a; padding: 4px 9px; border-radius: 100px; }
.shop__specs { display: flex; flex-direction: column; gap: 8px; margin: 2px 0 4px; max-width: 42ch; }
.shop__specs > div { display: grid; grid-template-columns: 96px 1fr; gap: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.shop__specs dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-40); }
.shop__specs dd { font-size: 14px; color: var(--ink-90); line-height: 1.4; }
.shop__cta { color: #c9a25a; }
.hn-row--shop:hover .shop__cta { color: #e3c886; }

/* product card — minimal re-layout: name + image + button */
.shop__body { justify-content: center; gap: clamp(22px, 2.6vw, 34px); }
.shop__btn { align-self: flex-start; display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; text-decoration: none;
  padding: 15px 28px; border: 1px solid var(--ink-40); border-radius: 100px; cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease); }
.shop__btn:hover { background: #fff; color: #000; border-color: #fff; }
.shop__arrow { display: inline-block; transition: transform .4s var(--ease); }
.shop__btn:hover .shop__arrow { transform: translateX(5px); }
/* the product title keeps still on row-hover (it has its own button) */
.hn-row--shop:hover .hn-row__title { transform: none; }

/* ---------- CLUB MEMBERSHIP (variant 1 — photo left, info + gold button right) ---------- */
.hn-row--club .club__body { justify-content: center; gap: 18px; }
.club__media { background: #0c0c0e; }
.club__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.hn-row--club:hover .club__img { transform: scale(1.05); }
.club__media::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 32%), linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 45%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); border-radius: 4px; }
.club__edge { position: absolute; bottom: 16px; left: 18px; z-index: 3; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.62); mix-blend-mode: difference; }
.club__btn { align-self: flex-start; margin-top: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #242931; text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  background: linear-gradient(180deg, #f6f8fb 0%, #e3e7ec 46%, #d0d6de 54%, #eceff3 100%); border: none; border-radius: 100px; padding: 15px 28px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 12px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), inset 0 0 0 1px rgba(255,255,255,0.25), inset 0 -2px 3px rgba(40,46,55,0.16), 0 6px 18px rgba(18,22,28,0.3); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.club__btn .club__arrow { display: inline-block; transition: transform .4s var(--ease); }
.club__btn:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), inset 0 -2px 3px rgba(40,46,55,0.2), 0 11px 28px rgba(18,22,28,0.42); }
.club__btn:hover .club__arrow { transform: translateX(5px); }
/* keep the club title from sliding on row-hover (it has its own button now) */
.hn-row--club:hover .hn-row__title { transform: none; }
