/* cinema.css — Cinema theme for Alex site */

:root {
  --bg:   #060606;
  --bg-2: #0C0C0C;
  --bg-3: #131313;
  --ink:  #F2EFE8;
  --ink-2:#B8B2A6;
  --ink-3:#6E6A62;
  --ink-4:#3E3B36;
  --rule: #1E1C18;
  --accent:      #E8C471;
  --accent-warm: #D96F3D;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== SCROLL CONTAINER ===== */
.cn-scroll {
  width: 100%; height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  position: relative;
}
.cn-scroll::-webkit-scrollbar { width: 4px; }
.cn-scroll::-webkit-scrollbar-track { background: transparent; }
.cn-scroll::-webkit-scrollbar-thumb { background: var(--ink-4); }

/* ===== SCENE BASE ===== */
.cn-scene {
  position: relative;
  width: 100%;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* ===== FIXED CHROME ===== */
.cn-chrome {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 22px 40px;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
  mix-blend-mode: difference;
}
.cn-chrome__brand {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  pointer-events: auto;
}
.cn-chrome__brand em { font-style: italic; font-weight: 300; }
.cn-chrome__book {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: auto;
}
.cn-chrome__book b { font-weight: 400; color: #fff; }

/* ===== PROGRESS RAIL ===== */
.cn-rail {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 10px;
}
.cn-rail__dot {
  width: 26px;
  height: 1px;
  background: rgba(255,255,255,.15);
  transition: all .4s;
  cursor: pointer;
  position: relative;
  border: none;
  padding: 6px 0;
}
.cn-rail__dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 100%; height: 1px;
  background: currentColor;
  transition: all .4s;
}
.cn-rail__dot:hover { color: rgba(255,255,255,.4); width: 36px; }
.cn-rail__dot--on { color: var(--accent); width: 46px; }
.cn-rail__label {
  position: absolute;
  right: 40px;
  top: -6px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all .3s;
  pointer-events: none;
}
.cn-rail__dot:hover .cn-rail__label,
.cn-rail__dot--on .cn-rail__label { opacity: 1; transform: translateX(0); }
.cn-rail__dot--on .cn-rail__label { color: var(--accent); }

/* ===== FIXED CTA ===== */
.cn-stickcta {
  position: fixed;
  bottom: 28px;
  left: 40px;
  z-index: 25;
}
.cn-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #000;
  transition: all .25s;
}
.cn-btn:hover { background: transparent; color: var(--accent); }
.cn-btn--ghost { background: transparent; color: var(--ink); border-color: rgba(255,255,255,.3); }
.cn-btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.cn-btn__arrow { font-family: var(--serif); font-size: 14px; font-style: italic; }

/* ===== SCENE 1 — OVERTURE ===== */
.cn-sc1 { background: #000; color: #fff; }
.cn-sc1__inner { text-align: center; }
.cn-sc1__kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 32px;
}
.cn-sc1__kicker .cn-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--accent);
  margin: 0 8px;
  vertical-align: middle;
  animation: cn-blink 1.6s infinite;
}
@keyframes cn-blink { 0%,100%{opacity:1}50%{opacity:.2} }
.cn-sc1__title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  opacity: 0;
  animation: cn-fadeUp 2s .3s cubic-bezier(.2,.7,.3,1) forwards;
}
.cn-sc1__title b { font-weight: 500; font-style: normal; color: var(--accent); }
.cn-sc1__sub {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink-2);
  max-width: 38ch;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0;
  animation: cn-fadeUp 2s 1.2s cubic-bezier(.2,.7,.3,1) forwards;
}
.cn-sc1__scroll {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: cn-fadeUp 2s 2s cubic-bezier(.2,.7,.3,1) both;
}
.cn-sc1__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: cn-line 2s infinite;
}
@keyframes cn-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes cn-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SCENE 2 — PORTRAIT ===== */
.cn-sc2 { background: var(--bg); padding: 0; }
.cn-sc2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%; height: 100%;
}
.cn-sc2__photo {
  position: relative;
  background: linear-gradient(155deg, #2a2721 0%, #13110d 55%, #080705 100%);
  overflow: hidden;
}
.cn-sc2__photo::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(232,196,113,.14) 0%, transparent 55%);
}
.cn-sc2__photo::after {
  content: '';
  position: absolute; inset: 40px;
  border: 1px solid rgba(232,196,113,.12);
}
.cn-sc2__badge {
  position: absolute; top: 40px; left: 40px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); z-index: 2;
}
.cn-sc2__plate {
  position: absolute; bottom: 60px; left: 60px; right: 60px; z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: var(--ink-2); font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.cn-sc2__text {
  padding: 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.cn-sc2__kicker {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.cn-sc2__kicker::before { content: ''; width: 36px; height: 1px; background: var(--accent); }
.cn-sc2__h {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 80px);
  font-weight: 300; line-height: 1;
  letter-spacing: -0.015em; margin-bottom: 20px;
}
.cn-sc2__h em { font-style: italic; color: var(--accent); }
.cn-sc2__role {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--ink-2);
  font-weight: 300; margin-bottom: 36px;
  max-width: 30ch; line-height: 1.3;
}
.cn-sc2__sep {
  display: flex;
  gap: 40px;
  margin: 28px 0 20px;
}
.cn-sc2__sep span {
  flex: 1;
  height: 1px;
  background: var(--accent);
  opacity: .4;
}
.cn-sc2__detail {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.cn-sc2__meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.cn-sc2__meta-item dt {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 4px;
}
.cn-sc2__meta-item dd { font-family: var(--serif); font-size: 18px; color: var(--ink); }

/* ===== SCENE 3 — STATS ===== */
.cn-sc3 { background: var(--bg-2); text-align: center; }
.cn-sc3__inner { max-width: 900px; }
.cn-sc3__eyebrow {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 56px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.cn-sc3__eyebrow::before,
.cn-sc3__eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--accent); }
.cn-sc3__numbers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-bottom: 64px;
}
.cn-sc3__num { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.cn-sc3__big {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(80px, 11vw, 180px);
  line-height: 0.9; letter-spacing: -0.03em;
}
.cn-sc3__big em { font-style: italic; color: var(--accent); }
.cn-sc3__small {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); max-width: 18ch; line-height: 1.5;
}
.cn-sc3__caption {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--ink-2);
  font-weight: 300; max-width: 48ch; margin: 0 auto;
  line-height: 1.5; padding-top: 40px;
  border-top: 1px solid var(--rule);
}

/* ===== SCENE 4 — MANIFESTO ===== */
.cn-sc4 { background: var(--bg); }
.cn-sc4__inner { max-width: 1000px; text-align: left; padding: 0 40px; }
.cn-sc4__marker {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 40px;
  display: flex; align-items: center; gap: 14px;
}
.cn-sc4__marker b { color: var(--accent); font-weight: 400; }
.cn-sc4__marker::before { content: ''; width: 36px; height: 1px; background: var(--ink-3); }
.cn-sc4__quote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.2; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 36px; font-style: italic;
}
.cn-sc4__quote .hl { font-style: normal; color: var(--accent); }
.cn-sc4__bullets {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding-top: 36px; border-top: 1px solid var(--rule);
}
.cn-sc4__bullet { display: flex; flex-direction: column; gap: 10px; }
.cn-sc4__bullet-num {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--accent); font-weight: 400;
}
.cn-sc4__bullet-text {
  font-family: var(--serif); font-size: 17px;
  line-height: 1.5; color: var(--ink-2); font-weight: 400;
}

/* ===== SCENE 5 — SERVICES ===== */
.cn-sc5 { background: var(--bg-3); padding: 0; overflow: hidden; }
.cn-sc5__wrap {
  display: flex; flex-direction: column;
  width: 100%; height: 100%;
  padding: 56px 64px 40px;
}
.cn-sc5__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 1px solid var(--rule); flex-shrink: 0;
}
.cn-sc5__head-l h2 {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 60px);
  font-weight: 300; line-height: 1; letter-spacing: -0.015em;
}
.cn-sc5__head-l h2 em { font-style: italic; color: var(--accent); }
.cn-sc5__kick {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.cn-sc5__head-r {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); display: flex; align-items: center; gap: 18px;
}
.cn-arrow-pair { display: flex; gap: 6px; }
.cn-sc5__head-r button {
  width: 40px; height: 40px;
  border: 1px solid var(--ink-4); color: var(--ink-2);
  font-family: var(--serif); font-size: 16px; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.cn-sc5__head-r button:hover { border-color: var(--accent); color: var(--accent); }
.cn-sc5__track {
  flex: 1; display: flex; gap: 20px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 16px; min-height: 0;
}
.cn-sc5__track::-webkit-scrollbar { height: 4px; }
.cn-sc5__track::-webkit-scrollbar-track { background: var(--rule); }
.cn-sc5__track::-webkit-scrollbar-thumb { background: var(--accent); }
.cn-card {
  flex: 0 0 340px; background: var(--bg);
  border: 1px solid var(--rule);
  padding: 32px 28px; display: flex; flex-direction: column;
  scroll-snap-align: start; transition: border-color .3s, transform .3s;
  position: relative; overflow: hidden;
}
.cn-card:hover { border-color: var(--accent); }
.cn-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.cn-card__num { font-family: var(--serif); font-style: italic; font-size: 42px; font-weight: 300; color: var(--accent); line-height: 1; }
.cn-card__tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); padding: 4px 10px; border: 1px solid var(--rule);
}
.cn-card__name { font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.15; margin-bottom: 12px; }
.cn-card__desc {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; line-height: 1.4; color: var(--ink-2);
  margin-bottom: auto; padding-bottom: 28px; font-weight: 400;
}
.cn-card__bottom {
  display: flex; flex-direction: column;
  padding-top: 18px; border-top: 1px solid var(--rule); gap: 10px;
}
.cn-card__price { font-family: var(--serif); font-size: 26px; font-weight: 400; }
.cn-card__book {
  align-self: flex-end;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); padding: 8px 0;
  border-bottom: 1px solid var(--accent); transition: gap .2s;
  display: flex; gap: 6px; align-items: center;
}
.cn-card__book:hover { gap: 10px; }
.cn-sc5__hint {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); text-align: center;
  padding-top: 12px; flex-shrink: 0;
}

/* ===== SCENE PRODUCTS ===== */
.cn-sc-products { background: var(--bg-3); padding: 0; overflow: hidden; }
.cn-sc-products .cn-sc5__wrap { padding-top: 10px; }
.cn-prod-card .cn-card__photo { margin-bottom: 15px; }
.cn-prod-card .cn-card__name  { margin-bottom: 15px; }
.cn-prod-card .cn-card__name span { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cn-prod-card .cn-card__desc  { display: none; }
.cn-prod-card .cn-card__bottom { padding-top: 0; border-top: none; flex-direction: row; align-items: center; justify-content: space-between; gap: 0; }
.cn-prod-card .cn-card__book { align-self: auto; }
.cn-card__photo {
  margin: -32px -28px 20px;
  width: calc(100% + 56px);
  padding-bottom: calc(100% + 56px);
  height: 0; overflow: hidden; background: var(--bg-2);
  position: relative;
}
.cn-card__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cn-card__photo-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; color: var(--ink-4); font-size: 13px;
}
.cn-card__photo-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-family: var(--serif); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.cn-card__photo-prev { left: 6px; }
.cn-card__photo-next { right: 6px; }

/* ===== LIGHTBOX ===== */
.cn-lb {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.96);
  display: none; flex-direction: column;
}
.cn-lb.open { display: flex; }
.cn-lb__scroll {
  flex: 1; overflow-y: auto;
  display: flex; flex-direction: column; align-items: center;
  padding: 74px 24px 40px; gap: 20px;
}
.cn-lb__close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px;
  border: 1px solid var(--ink-4); color: var(--ink-2);
  font-family: var(--serif); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.cn-lb__close:hover { border-color: var(--accent); color: var(--accent); }
.cn-lb__img-wrap { position: relative; max-width: 90vw; max-height: 80vh; display: flex; }
.cn-lb__img-wrap img { max-width: 90vw; max-height: 80vh; object-fit: contain; display: block; }
.cn-lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.15); color: #fff;
  font-family: var(--serif); font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.cn-lb__nav:hover { border-color: rgba(255,255,255,.5); }
.cn-lb__prev { left: 12px; }
.cn-lb__next { right: 12px; }
.cn-lb__footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  width: min(90vw, 600px); gap: 20px;
}
.cn-lb__name {
  font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink);
}
.cn-lb__desc {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--ink-2); margin-top: 4px; line-height: 1.4;
}
.cn-lb__counter {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  color: var(--ink-3); white-space: nowrap; flex-shrink: 0;
}
/* Service mode */
.cn-lb--svc .cn-lb__img-wrap { display: none; }
.cn-lb--svc .cn-lb__footer { width: min(90vw, 520px); }
.cn-lb--svc .cn-lb__name { font-size: 26px; margin-bottom: 12px; }
.cn-lb__tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.cn-lb__svc-bottom {
  display: none; align-items: center; justify-content: space-between;
  margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1);
}
.cn-lb__svc-price {
  font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--ink);
}
.cn-lb__svc-book {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); padding: 8px 0;
  border-bottom: 1px solid var(--accent);
}

/* ===== SCENE 6 — PORTFOLIO ===== */
.cn-sc6 { background: #000; padding: 0; display: block; overflow: hidden; position: relative; }
.cn-sc6__bg {
  position: absolute; inset: 0;
  transition: background .9s cubic-bezier(.4,0,.2,1);
  background: linear-gradient(150deg, #3a332a 0%, #1a1610 60%, #000 100%);
}
.cn-sc6__bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,196,113,.08) 0%, transparent 60%);
}
.cn-sc6__overlay {
  position: absolute; inset: 0; z-index: 2;
  padding: 56px 64px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.cn-sc6__top { display: flex; justify-content: space-between; align-items: flex-start; }
.cn-sc6__kicker {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
}
.cn-sc6__counter {
  font-family: var(--serif); font-style: italic;
  font-size: 20px; color: var(--ink-2); font-variant-numeric: tabular-nums;
}
.cn-sc6__counter b { color: var(--accent); font-weight: 400; }
.cn-sc6__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.cn-sc6__caption { display: flex; flex-direction: column; }
.cn-sc6__caption h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5vw, 80px); line-height: 1; margin-bottom: 12px;
}
.cn-sc6__caption h3 em { font-style: italic; color: var(--accent); }
.cn-sc6__caption p {
  font-family: var(--serif); font-style: italic;
  font-size: 17px; color: var(--ink-2); max-width: 34ch; font-weight: 400; line-height: 1.4;
}
.cn-sc6__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cn-sc6__read {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); border-bottom: 1px solid var(--accent);
  padding-bottom: 2px; margin-top: 10px;
  align-self: flex-end;
  transition: opacity .2s;
}
.cn-sc6__read:hover { opacity: .7; }
.cn-sc6__thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.cn-sc6__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; z-index: 3;
  background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-family: var(--serif); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s;
}
.cn-sc6__arrow:hover { border-color: var(--accent); }
.cn-sc6__prev { left: 20px; }
.cn-sc6__next { right: 20px; }
.cn-thumb {
  width: 64px; height: 80px;
  border: 1px solid rgba(255,255,255,.15);
  background-color: #1a1610;
  background-size: contain; background-position: center; background-repeat: no-repeat;
  cursor: pointer; opacity: .5; transition: all .3s; position: relative;
}
.cn-thumb::after { content: ''; position: absolute; inset: 4px; border: 1px solid rgba(232,196,113,.15); }
.cn-thumb:hover { opacity: .85; }
.cn-thumb--on { opacity: 1; border-color: var(--accent); transform: translateY(-4px); }

/* ===== SCENE 7 — VOICES ===== */
.cn-sc7 {
  background: #000;
  padding: 0;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  overflow: hidden;
}
.cn-sc7__chrome {
  display: flex; justify-content: space-between; align-items: center;
  padding: 48px 64px 28px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cn-sc7__kick {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.cn-sc7__nav { display: flex; align-items: center; gap: 16px; }
.cn-sc7__cnt {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.12em;
  min-width: 52px; text-align: center;
}
.cn-sc7__arr {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.15); background: transparent;
  color: #fff; font-family: var(--serif); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, opacity .2s;
}
.cn-sc7__arr:hover { border-color: var(--accent); }
.cn-sc7__rail-wrap { flex: 1; overflow: hidden; width: 100%; }
.cn-sc7__rail {
  display: flex; height: 100%;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.cn-rv-card {
  flex-shrink: 0; width: 100vw; height: 100%;
  padding: 56px 64px 64px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.cn-rv__quote {
  font-family: var(--serif); font-style: italic;
  font-size: 220px; line-height: 0.7;
  color: var(--accent); opacity: 0.12;
  position: absolute; top: 32px; left: 52px;
  pointer-events: none; user-select: none;
}
.cn-rv__text {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.6vw, 42px);
  line-height: 1.45; color: #e8e4dc;
  max-width: 820px; flex: 1;
  display: flex; align-items: center;
  position: relative; z-index: 1;
}
.cn-rv__author {
  display: flex; align-items: center; gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.cn-rv__av {
  width: 52px; height: 52px; border-radius: 50%;
  background: #1a1611;
  border: 1px solid rgba(232,196,113,.3);
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--accent);
}
.cn-rv__av img { width: 100%; height: 100%; object-fit: cover; }
.cn-rv__name {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); display: block; margin-bottom: 6px;
}
.cn-rv__stars { color: var(--accent); letter-spacing: 3px; font-size: 12px; }

/* ===== SCENE 8 — BOOKING ===== */
.cn-sc8 {
  background: #000;
  flex-direction: column; padding: 0; justify-content: flex-start;
  height: 100vh; overflow: hidden; align-items: stretch;
}
.cn-sc8__top {
  padding: 40px 64px 28px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cn-sc8__top h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(32px, 4vw, 60px); line-height: 1;
  letter-spacing: -0.02em; color: #e8e4dc;
}
.cn-sc8__media {
  flex: 1; overflow: hidden; position: relative;
  background: #0a0905;
}
.cn-sc8__media iframe { width: 100%; height: 100%; border: none; display: block; }
.cn-sc8__strip {
  flex-shrink: 0;
  padding: 16px 64px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.7);
}
.cn-sc8__contacts {
  display: flex; align-items: flex-start; gap: 40px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.cn-sc8__ci { display: flex; flex-direction: column; gap: 3px; }
.cn-sc8__cl {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
}
.cn-sc8__cv {
  font-family: var(--serif); font-size: 16px; color: #e8e4dc; line-height: 1.3;
}
.cn-sc8__map-links { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.cn-sc8__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-4);
}
.cn-sc8__footer .cn-end {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--accent); letter-spacing: 0; text-transform: none;
}

/* ===== DRAWER ===== */
.cn-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(6px);
}
.cn-backdrop.open { opacity: 1; pointer-events: auto; }
.cn-drawer {
  position: fixed; top: 0; right: 0; height: 100%;
  width: min(460px, 100%); background: var(--bg-2); z-index: 100;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.3,0,.2,1);
  display: flex; flex-direction: column; border-left: 1px solid var(--ink-4);
}
.cn-drawer.open { transform: translateX(0); }
.cn-drawer__head {
  padding: 32px 32px 22px; border-bottom: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: flex-start;
}
.cn-drawer__kicker {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.cn-drawer__title {
  font-family: var(--serif); font-size: 34px;
  font-weight: 300; line-height: 1; letter-spacing: -0.01em;
}
.cn-drawer__title em { font-style: italic; color: var(--accent); }
.cn-drawer__close {
  width: 36px; height: 36px; border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; color: var(--ink-2); transition: all .2s;
}
.cn-drawer__close:hover { border-color: var(--accent); color: var(--accent); }
.cn-drawer__body { padding: 24px 32px 36px; overflow-y: auto; flex: 1; }
.cn-drawer__lead {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--ink-2);
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid var(--rule); line-height: 1.5;
}
.cn-fld { margin-bottom: 20px; }
.cn-fld label {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3); display: block; margin-bottom: 8px;
}
.cn-fld input, .cn-fld select, .cn-fld textarea {
  width: 100%; font-family: var(--serif); font-size: 17px;
  padding: 10px 0; background: transparent; border: none;
  border-bottom: 1px solid var(--rule); color: var(--ink); outline: none; transition: border-color .2s;
}
.cn-fld input::placeholder, .cn-fld textarea::placeholder { color: var(--ink-4); }
.cn-fld input:focus, .cn-fld select:focus, .cn-fld textarea:focus { border-bottom-color: var(--accent); }
.cn-fld textarea { min-height: 70px; resize: vertical; border: 1px solid var(--rule); padding: 12px; }
.cn-fld select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg,transparent 50%,var(--accent) 50%),linear-gradient(-45deg,transparent 50%,var(--accent) 50%);
  background-position: right 4px top 20px, right 0 top 20px;
  background-size: 5px 5px; background-repeat: no-repeat;
}
.cn-fld select option { background: var(--bg-2); }
.cn-channel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.cn-ch {
  padding: 11px; text-align: center;
  border: 1px solid var(--rule);
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; color: var(--ink-2); transition: all .2s;
}
.cn-ch:hover { border-color: var(--ink-4); color: var(--ink); }
.cn-ch--on { background: var(--accent); color: #000; border-color: var(--accent); }
.cn-submit {
  width: 100%; margin-top: 8px; padding: 16px;
  background: var(--accent); color: #000; border: 1px solid var(--accent);
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: all .2s;
}
.cn-submit:hover { background: transparent; color: var(--accent); }
.cn-legal { font-family: var(--mono); font-size: 10px; color: var(--ink-4); margin-top: 14px; line-height: 1.5; }
.cn-success { padding: 20px 0; }
.cn-success__seal {
  width: 96px; height: 96px; border: 1px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 9px; color: var(--accent);
  text-align: center; margin-bottom: 24px; transform: rotate(-6deg); line-height: 1.3;
  letter-spacing: 0.1em;
}
.cn-success h3 { font-family: var(--serif); font-size: 34px; font-weight: 300; margin-bottom: 12px; }
.cn-success h3 em { font-style: italic; color: var(--accent); }
.cn-success p { font-family: var(--serif); font-style: italic; color: var(--ink-2); margin-top: 12px; line-height: 1.5; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .cn-chrome { padding: 14px 20px; }
  .cn-chrome__brand { font-size: 14px; }
  .cn-chrome__book { font-size: 9px; }
  .cn-rail { display: none; }
  .cn-stickcta { left: auto; bottom: 20px; right: 20px; }
  .cn-stickcta .cn-btn { width: auto; justify-content: center; padding: 13px 20px; }
  .cn-scene { padding: 80px 24px 100px; }

  .cn-sc1__title { font-size: 52px; }
  .cn-sc1__sub { font-size: 16px; }
  .cn-sc1__scroll { left: 0; right: 0; transform: none; align-items: center; }

  .cn-sc2 { padding: 0; }
  .cn-sc2__grid { grid-template-columns: 1fr; grid-template-rows: 100vw 1fr; }
  .cn-sc2__text { padding: 20px 24px 16px; justify-content: flex-start; text-align: center; }
  .cn-sc2__kicker { margin-bottom: 12px; justify-content: center; }
  .cn-sc2__kicker::before { display: none; }
  .cn-sc2__h { font-size: 32px; margin-bottom: 8px; }
  .cn-sc2__role { font-size: 15px; margin-bottom: 16px; }
  .cn-sc2__meta { gap: 12px; padding-top: 14px; }
  .cn-sc2__meta-item dd { font-size: 15px; }
  .cn-sc2__badge { left: 24px; top: 24px; }

  .cn-sc3__numbers { grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; }
  .cn-sc3__big { font-size: 48px; }
  .cn-sc3__caption { font-size: 15px; padding-top: 24px; }

  .cn-sc4__inner { padding: 0; }
  .cn-sc4__quote { font-size: 26px; }
  .cn-sc4__bullets { grid-template-columns: 1fr; gap: 18px; }

  .cn-sc5 { padding: 0; }
  .cn-sc5__wrap { padding: 80px 24px 100px; }
  .cn-sc5__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cn-sc5__head-l h2 { font-size: 32px; }
  .cn-sc5__head-r { font-size: 10px; }
  .cn-card { flex: 0 0 280px; padding: 24px 20px; }
  .cn-card__photo { margin: -24px -20px 16px; width: calc(100% + 40px); padding-bottom: calc(100% + 40px); }
  .cn-card__name { font-size: 20px; }
  .cn-card__num { font-size: 32px; }

  .cn-sc-products { padding: 0; }

  .cn-sc6 { padding: 0; display: flex; flex-direction: column; }
  .cn-sc6__bg { position: relative; aspect-ratio: 1; width: 100%; flex-shrink: 0; }
  .cn-sc6__overlay { position: relative; inset: auto; flex: 1; padding: 20px 24px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
  .cn-sc6__top { display: none; }
  .cn-sc6__caption h3 { font-size: 22px; }
  .cn-sc6__desc { display: none; }
  .cn-sc6__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cn-thumb { width: 44px; height: 44px; transform: none !important; }

  .cn-sc7__chrome { padding: 32px 24px 20px; }
  .cn-rv-card { width: 100vw; padding: 36px 24px 40px; }
  .cn-rv__quote { font-size: 130px; left: 16px; top: 24px; }
  .cn-rv__text { font-size: 20px; }

  .cn-sc8__top { padding: 28px 24px 20px; }
  .cn-sc8__strip { padding: 14px 24px 16px; }
  .cn-sc8__contacts { gap: 20px; }
  .cn-sc8__map-links { margin-left: 0; }
  .cn-sc8__footer { flex-direction: column; gap: 6px; text-align: center; }
}
