/* ============================================================
   Yokefit — Prototype 01 — Urban Product Monument
   Опора: SPLITS59. Модульная композиция, продукт как монумент,
   крупная полупрозрачная типографика, быстрые hover.
   Desktop only: 1440 target, min 1280.
   ============================================================ */

:root {
  --ink: #101010;
  --paper: #ffffff;
  --grey-bg: #f2f0ed;
  --grey-mid: #6e6a66;
  --grey-line: #e3e0dc;
  --orange: #f4611e;
  --orange-dark: #d64f12;
  --fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 1280px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.wrap { padding-left: 48px; padding-right: 48px; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--ink);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.logo svg { display: block; }

.main-nav { display: flex; gap: 36px; }

.main-nav a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--fast), color var(--fast);
}

.main-nav a:hover { border-color: var(--orange); color: var(--orange-dark); }
.main-nav a.active { border-color: var(--ink); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 880px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 72px 48px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--grey-mid);
  margin-bottom: 20px;
}

.eyebrow .dot { color: var(--orange); }

.hero-copy h1 {
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-copy p {
  font-size: 17px;
  color: var(--grey-mid);
  max-width: 440px;
  margin-bottom: 40px;
}

.cta-row { display: flex; align-items: center; gap: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background var(--fast), color var(--fast), border-color var(--fast);
}

.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.btn-orange { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--ink); border-color: var(--ink); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

.link-plain {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: color var(--fast), border-color var(--fast);
}

.link-plain:hover { color: var(--orange-dark); border-color: var(--orange); }

.hero-media { position: relative; overflow: hidden; }

.hero-media a { display: block; height: 100%; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 400ms ease;
}

.hero-media:hover img { transform: scale(1.015); }

.hero-media .media-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(16, 16, 16, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--fast);
}

.hero-media a:hover .media-tag { background: var(--orange); }

/* гигантская полупрозрачная типографика поверх фото — приём SPLITS59 */
.hero-watermark {
  position: absolute;
  top: 28px;
  left: 48px;
  right: 0;
  z-index: 5;
  font-size: 172px;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.09);
  pointer-events: none;
  white-space: nowrap;
}

.hero-watermark span { color: rgba(16, 16, 16, 0.05); }

/* ---------- ticker ---------- */

.ticker {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 62px;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticker .dot { color: var(--orange); font-size: 16px; }

/* ---------- sections ---------- */

.section { padding-top: 96px; padding-bottom: 96px; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-head .side-note {
  font-size: 14px;
  color: var(--grey-mid);
  max-width: 420px;
  text-align: right;
}

/* ---------- product worlds ---------- */

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
}

.world-card {
  position: relative;
  border-right: 1px solid var(--ink);
  background: var(--paper);
}

.world-card:last-child { border-right: none; }

.world-main { grid-column: span 7; }

.world-main .world-media { aspect-ratio: 7 / 6.4; }

.world-side {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
}

.world-media {
  position: relative;
  overflow: hidden;
  background: var(--grey-bg);
}

.world-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

/* быстрый hover-swap: front -> back */
.world-media .img-swap {
  opacity: 0;
  transition: opacity var(--fast);
}

a.world-link:hover .img-swap,
a.world-link:focus-visible .img-swap { opacity: 1; }

.world-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-top: 1px solid var(--ink);
  background: #fff;
  position: relative;
  z-index: 2;
}

.world-meta .num {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.16em;
  margin-right: 16px;
}

.world-meta .name {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.world-meta .desc {
  font-size: 13px;
  color: var(--grey-mid);
  margin-top: 4px;
}

.world-meta .arrow {
  font-size: 22px;
  transition: transform var(--fast), color var(--fast);
}

a.world-link { display: flex; flex-direction: column; height: 100%; }

a.world-link:hover .arrow { transform: translateX(6px); color: var(--orange); }
a.world-link:hover .name { color: var(--orange-dark); }

.badge-soon {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  border: 1px solid var(--grey-line);
  background: var(--grey-bg);
  padding: 6px 12px;
}

.world-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--ink);
}

.world-half:last-child { border-bottom: none; }

.world-half .world-media { flex: 1; min-height: 0; }

.world-half .world-meta { padding: 16px 24px; }

.world-half .name { font-size: 16px; }

/* ---------- city band ---------- */

.city-band {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border: 1px solid var(--ink);
  border-top: none;
}

.city-cell {
  border-right: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.city-cell:last-child { border-right: none; }

.city-statement {
  grid-column: span 4;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--grey-bg);
  min-height: 460px;
}

.city-statement h3 {
  font-size: 36px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.city-statement h3 em { font-style: normal; color: var(--orange); }

.city-statement p { font-size: 15px; color: var(--grey-mid); max-width: 320px; }

.city-photo { grid-column: span 4; }

.city-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.city-photo:hover img { transform: scale(1.02); }

.photo-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
}

/* ---------- scenarios ---------- */

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ink);
}

.scenario-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid var(--ink);
  transition: background var(--fast), color var(--fast);
}

.scenario-tile:last-child { border-right: none; }

.scenario-tile .num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
  transition: color var(--fast);
}

.scenario-tile .label {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.scenario-tile .sub {
  display: block;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--grey-mid);
  margin-top: 6px;
  transition: color var(--fast);
}

.scenario-tile:hover { background: var(--orange); color: #fff; }
.scenario-tile:hover .num,
.scenario-tile:hover .sub { color: rgba(255, 255, 255, 0.85); }

/* ---------- telegram band ---------- */

.tg-band {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid var(--ink);
}

.tg-band-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  padding-top: 88px;
  padding-bottom: 88px;
  align-items: center;
}

.tg-band .eyebrow { color: rgba(255, 255, 255, 0.55); }

.tg-band blockquote {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.tg-band blockquote em { font-style: normal; color: var(--orange); }

.tg-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.tg-thumbs figure { position: relative; overflow: hidden; aspect-ratio: 4 / 5; }

.tg-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  transition: transform 400ms ease;
}

.tg-thumbs figure:hover img { transform: scale(1.03); }

.tg-thumbs figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(16, 16, 16, 0.78);
  padding: 6px 10px;
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 2fr 2fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 40px;
}

.footer-grid h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 18px;
}

.footer-grid ul { list-style: none; }

.footer-grid li { margin-bottom: 10px; font-size: 15px; }

.footer-grid a { border-bottom: 1px solid transparent; transition: color var(--fast), border-color var(--fast); }
.footer-grid a:hover { color: var(--orange-dark); border-color: var(--orange); }

.footer-note {
  font-size: 13px;
  color: var(--grey-mid);
  max-width: 420px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid var(--grey-line);
  font-size: 12px;
  color: var(--grey-mid);
  letter-spacing: 0.06em;
}

.muted { color: var(--grey-mid); }
.fine-print { font-size: 12px; color: var(--grey-mid); line-height: 1.55; }

/* ============================================================
   product page
   ============================================================ */

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 56px;
  border-bottom: 1px solid var(--grey-line);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a { color: var(--grey-mid); transition: color var(--fast); }
.breadcrumbs a:hover { color: var(--orange-dark); }
.breadcrumbs .sep { color: var(--grey-line); }

.pdp-hero {
  display: grid;
  grid-template-columns: 44% 56%;
  border-bottom: 1px solid var(--ink);
}

.pdp-info {
  padding: 72px 56px 72px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 64px;
  align-self: start;
}

.pdp-info h1 {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 18px;
}

.pdp-info h1 .v { color: var(--orange); }

.pdp-tagline {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 28px;
  max-width: 420px;
}

.pdp-desc { font-size: 15px; color: var(--grey-mid); max-width: 420px; margin-bottom: 36px; }

.spec-list { list-style: none; border-top: 1px solid var(--ink); margin-bottom: 40px; max-width: 460px; }

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--grey-line);
  font-size: 14px;
}

.spec-list .k {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--grey-mid);
}

.pdp-media { position: relative; overflow: hidden; border-left: 1px solid var(--ink); }

.pdp-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }

.pdp-media .hero-watermark {
  top: 20px;
  left: 36px;
  font-size: 210px;
  color: rgba(255, 255, 255, 0.34);
}

/* proof grid */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
}

.proof-cell {
  position: relative;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  background: var(--grey-bg);
}

.proof-cell:nth-child(3n) { border-right: none; }
.proof-cell:nth-last-child(-n + 3) { border-bottom: none; }

.proof-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.proof-cell:hover img { transform: scale(1.025); }

.proof-label {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.93);
  border-top: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-label .num { color: var(--orange); }

.placeholder-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(16, 16, 16, 0.04) 14px 15px),
    var(--grey-bg);
}

.placeholder-cell .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grey-mid);
  padding: 6px 10px;
}

.placeholder-cell p { font-size: 14px; color: var(--grey-mid); line-height: 1.6; }

.placeholder-cell strong { color: var(--ink); }

/* scenarios pdp */

.scene-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--ink); }

.scene-card { border-right: 1px solid var(--ink); position: relative; }

.scene-card:last-child { border-right: none; }

.scene-card .scene-media { aspect-ratio: 3 / 3.4; overflow: hidden; position: relative; }

.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.scene-card:hover img { transform: scale(1.03); }

.scene-card .scene-meta { padding: 18px 20px 22px; border-top: 1px solid var(--ink); }

.scene-card .label {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.scene-card .label .num { color: var(--orange); margin-right: 8px; font-size: 12px; letter-spacing: 0.12em; }

.scene-card p { font-size: 13px; color: var(--grey-mid); }

/* size section */

.size-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--ink); }

.size-table-cell { padding: 44px 48px; border-right: 1px solid var(--ink); }

.size-table-cell h3, .size-helper h3 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

table.sizes { width: 100%; border-collapse: collapse; margin-bottom: 18px; }

table.sizes th, table.sizes td {
  border: 1px solid var(--grey-line);
  padding: 12px 16px;
  font-size: 14px;
  text-align: left;
}

table.sizes th {
  background: var(--grey-bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

table.sizes td:first-child { font-weight: 700; }

.size-helper {
  padding: 44px 48px;
  background: var(--grey-bg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.size-helper p { font-size: 15px; color: var(--grey-mid); max-width: 460px; }

.helper-slot {
  border: 1px dashed var(--grey-mid);
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.helper-slot .tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 6px 10px;
}

.helper-slot p { font-size: 14px; }

/* cta band */

.cta-band { background: var(--ink); color: #fff; }

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 76px;
  padding-bottom: 76px;
}

.cta-band h2 {
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
}

.cta-band h2 em { font-style: normal; color: var(--orange); }

.cta-band .btn-ghost { border-color: #fff; color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--ink); }

.cta-col { display: flex; flex-direction: column; gap: 16px; min-width: 380px; }

.back-strip {
  display: block;
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--fast), color var(--fast);
}

.back-strip:hover { background: var(--orange); color: #fff; }
