/* ============================================
   ПРИНЦИП NOVO — DESIGN SYSTEM v2
   PT Sans · 2026
   ============================================ */

/* TOKENS — см. tokens.css (единственный источник). Здесь только компонентные правила. */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s, color .3s; }

button { font-family: inherit; }

/* TYPE PRIMITIVES */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.eyebrow-lite { color: rgba(250, 248, 243, 0.55); }

/* Re-purpose <em> globally: NO italic. Bumped weight = the new emphasis. */
em { font-style: normal; font-weight: 500; color: var(--ink); }

h1, h2, h3, h4 { font-weight: 500; color: var(--ink); letter-spacing: -0.025em; }

.h-display {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.035em;
}
.h-section {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.h-sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.h-tag {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

/* CONTAINERS */
.container { max-width: var(--max-w); margin: 0 auto; }
.container-narrow { max-width: var(--narrow); margin: 0 auto; }
.container-reading { max-width: var(--reading); margin: 0 auto; }

section { position: relative; }
.spacious { padding: var(--pad-y) var(--pad-x); }

/* ============================================
   HEADER
   ============================================ */

.site-header.over-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--line);
}



.menu-toggle {
  background: none; border: none; cursor: pointer;
  color: inherit;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  display: flex; align-items: center; gap: 12px;
}
.menu-toggle .icon {
  display: inline-block; width: 20px; height: 1.5px;
  background: currentColor; position: relative;
}
.menu-toggle .icon::before, .menu-toggle .icon::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 1.5px;
  background: currentColor;
}
.menu-toggle .icon::before { top: -5px; }
.menu-toggle .icon::after { top: 5px; }

/* Brand mark "Принцип ● NOVO" — accent dot before NOVO */
.brand-mark {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.01em;
  text-transform: none;
  text-align: center;
  white-space: nowrap;
}
.brand-mark em {
  font-style: normal;
  font-weight: 600;
  color: inherit;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.brand-mark em::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 2px;
  transform: translateY(-1px);
}

.contact-link {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
  font-weight: 500;
}

/* slide-out menu panel */
.menu-panel {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--warm);
  z-index: 200;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px 40px 40px;
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.7,0,.2,1);
}
.menu-panel.open { transform: translateY(0); }
.menu-panel-top {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.menu-panel-top .brand-mark { color: var(--warm); }

.menu-list {
  list-style: none;
  align-self: center;
  display: grid; gap: 8px;
}
.menu-list a {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--warm);
  display: inline-block;
}
.menu-list a:hover { color: var(--accent); opacity: 1; }
.menu-list a em { font-weight: 600; color: var(--warm); font-style: normal; }
.menu-foot {
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250, 248, 243, 0.5);
  font-weight: 500;
}

/* ============================================
   HERO
   ============================================ */

.hero--mid { height: 70vh; min-height: 460px; }

.hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 80px;
  padding: 0 40px;
  color: #fff;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero h1 em { color: inherit; font-weight: 600; }

.hero-meta {
  position: absolute; right: 40px; bottom: 80px;
  text-align: right; color: #fff;
  font-size: 11px; letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.85;
  z-index: 2;
}
.hero-scroll-hint {
  position: absolute; left: 50%; bottom: 28px;
  transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.3em;
  color: #fff; text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
  z-index: 2;
}

.page-hero {
  padding: 200px 40px 100px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.page-hero .eyebrow { margin-bottom: 28px; }
.page-hero h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 1100px;
}
.page-hero h1 em { font-weight: 600; }
.page-hero .lede {
  margin-top: 40px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto {
  padding: var(--pad-y) 40px;
  text-align: center;
  background: var(--paper);
}
.manifesto .eyebrow { margin-bottom: 36px; }
.manifesto p {
  font-family: var(--sans);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.35;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-wrap: pretty;
  max-width: 880px;
  margin: 0 auto;
}
.manifesto p em { font-weight: 500; }
.manifesto .sig {
  margin-top: 48px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

/* ============================================
   WORKS
   ============================================ */


.works-header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 80px 40px 48px;
  border-top: 1px solid var(--line);
}
/* Общая база h2-семьи секций (6 из 7 делят 5 свойств, .conversation отличается цветом) */
.works-header h2,
.approach h2,
.studio-text h2,
.conversation h2,
.service-stages h2,
.team h2,
.timeline h2,
.h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: -0.025em;
  color: var(--ink);
}

.works-header h2 { color: var(--ink); }
.works-header h2 em { font-weight: 600; }
.works-header .nav {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mute);
  white-space: nowrap;
  font-weight: 500;
}

.works-grid-asym {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.works-grid-asym > .work-card.hero {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.work-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  display: block;
}
.work-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card:hover { opacity: 1; }
.work-card:hover .img { transform: scale(1.04); }

.work-card .info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 32px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s, transform .5s;
}
.work-card:hover .info { opacity: 1; transform: translateY(0); }
.work-card .name {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: #fff;
}
.work-card.hero .name { font-size: 30px; }
.work-card .meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}


.btn-link {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  font-weight: 500;
}
.btn-link.on-dark {
  color: var(--warm);
  border-bottom-color: var(--warm);
}

/* ============================================
   APPROACH
   ============================================ */
.approach { padding: var(--pad-y) 40px; background: var(--paper); }
.approach h2 {
  color: var(--ink);
  margin-bottom: 72px;
  max-width: 880px;
  text-wrap: pretty;
  line-height: 1.1;
}
.approach h2 em { font-weight: 600; }
.approach-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 64px;
}


.approach-step .num em { font-weight: 500; font-style: normal; }
.approach-step .body {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.approach-step h3 {
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.approach-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
  text-wrap: pretty;
}

/* ============================================
   STUDIO BLOCK
   ============================================ */
.studio { padding: var(--pad-y) 40px; background: var(--paper-soft); }
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.studio-text { padding-right: 32px; }
.studio-text .eyebrow { margin-bottom: 24px; }
.studio-text h2 {
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 28px;
}
.studio-text h2 em { font-weight: 600; }
.studio-text p {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.studio-stats {
  display: flex; gap: 56px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-item .num {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.stat-item .label {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mute);
  font-weight: 500;
}

/* ============================================
   CONVERSATION FORM
   ============================================ */
.conversation {
  padding: var(--pad-y) 40px;
  background: var(--ink);
  color: #d8d4c8;
}
.conv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.conversation .eyebrow { color: rgba(250,248,243,0.55); margin-bottom: 24px; }
.conversation h2 {
  line-height: 1.1;
  color: var(--warm);
  margin-bottom: 28px;
}
.conversation h2 em { font-weight: 600; }
.conversation p.intro {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(250, 248, 243, 0.7);
  margin-bottom: 40px;
  max-width: 480px;
  text-wrap: pretty;
}

.conv-meta {
  display: grid; gap: 18px;
  font-size: 14px;
  font-weight: 400;
}
.conv-meta a { color: var(--warm); }
.conv-meta .label {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
  font-weight: 500;
}

.conv-form { display: grid; gap: 24px; }
.field label {
  display: block;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.6);
  margin-bottom: 10px;
  font-weight: 500;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 248, 243, 0.25);
  color: var(--warm);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding: 8px 0 12px;
  resize: none;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(250, 248, 243, 0.3);
  font-weight: 400;
}
.field textarea { min-height: 80px; }

.btn-submit {
  justify-self: start;
  margin-top: 16px;
  background: transparent;
  border: 1px solid var(--warm);
  color: var(--warm);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: background-color .3s, color .3s, border-color .3s;
}
.btn-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

/* ============================================
   FOOTER
   ============================================ */




.footer-grid p, .footer-grid a {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(250, 248, 243, 0.65);
  font-weight: 400;
}
.footer-grid a:hover { color: var(--accent); opacity: 1; }


/* ============================================
   PROJECT-PAGE
   ============================================ */
.project-hero {
  position: relative;
  height: 100vh; min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}
.project-hero .hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; }
.project-hero .hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.55) 100%);
}
.project-hero .title-block {
  position: absolute; left: 40px; right: 40px; bottom: 80px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  z-index: 2;
}
.project-hero h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: inherit;
}
.project-hero h1 em { font-weight: 600; }
.project-hero .meta-mini {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
  display: grid; gap: 6px;
  opacity: 0.85;
  font-weight: 500;
}

.project-essay {
  padding: 140px 40px;
  background: var(--paper);
}
.project-essay p.lead {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-wrap: pretty;
  max-width: 880px;
}
.project-essay p.lead em { font-weight: 500; }
.project-essay p.lead + p.lead { margin-top: 24px; }

.project-gallery {
  display: grid;
  gap: 4px;
  background: var(--paper);
  padding: 0 0 64px;
}
.project-gallery figure { margin: 0; position: relative; }
.project-gallery figure .img {
  width: 100%; aspect-ratio: 16/10;
  background-size: cover; background-position: center;
}
.project-gallery figure.tall .img { aspect-ratio: 4/5; }
.project-gallery figure.wide .img { aspect-ratio: 21/9; }
.project-gallery figcaption {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 16px 8px 0;
  font-weight: 500;
}
.project-gallery .pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.spec-table {
  padding: 120px 40px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.spec-table .container { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; }
.spec-table h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
}
.spec-table h2 em { font-weight: 600; }
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.spec-row:last-child { border-bottom: 1px solid var(--line); }
.spec-row dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.spec-row dd {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.spec-row dd em { font-weight: 600; }

.related-works {
  padding: 120px 40px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.related-works .related-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 48px;
}
.related-works h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.025em;
  color: var(--ink);
}
.related-works h3 em { font-weight: 600; }

/* ============================================
   SERVICE PAGE — STAGES
   ============================================ */
.service-stages { padding: var(--pad-y) 40px; background: var(--paper); }
.service-stages h2 {
  color: var(--ink);
  margin-bottom: 64px;
  max-width: 720px;
  line-height: 1.1;
}
.service-stages h2 em { font-weight: 600; }
.stage-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.stage-row:last-child { border-bottom: 1px solid var(--line); }
.stage-row .stage-num {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stage-row h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.stage-row .stage-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 10px;
  font-weight: 500;
}
.stage-row p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text);
  text-wrap: pretty;
}

/* services nav — clean horizontal rows */
.services-nav {
  padding: var(--pad-y) 40px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.services-nav .container { display: grid; gap: 0; }
.services-nav h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 48px);
  color: var(--ink);
  margin-bottom: 56px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.services-nav h3 em { font-weight: 600; }
.services-nav .eyebrow { margin-bottom: 20px; }
.services-list { list-style: none; }
.services-list li {
  border-top: 1px solid var(--line);
}
.services-list li:last-child { border-bottom: 1px solid var(--line); }
.services-list a {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 32px;
  padding: 32px 0;
  align-items: center;
  font-family: var(--sans);
  color: var(--ink);
  letter-spacing: -0.025em;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.services-list a:hover {
  opacity: 1;
  transform: translateX(8px);
}
.services-list a:hover .arrow {
  transform: translateX(4px);
}
.services-list .num {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  color: var(--mute);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.services-list .num em { font-style: normal; font-weight: 500; color: var(--mute); }
.services-list .svc-title {
  display: block;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.2;
}
.services-list .svc-desc {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-top: 10px;
  line-height: 1.55;
  max-width: 720px;
}
.services-list .arrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--mute);
  font-weight: 500;
  white-space: nowrap;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

/* ============================================
   ABOUT
   ============================================ */
.about-manifesto {
  padding: 200px 40px 160px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.about-manifesto .eyebrow { margin-bottom: 40px; }
.about-manifesto p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 1100px;
}
.about-manifesto p em { font-weight: 500; }
.about-manifesto p + p { margin-top: 28px; }

.team {
  padding: var(--pad-y) 40px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.team h2,
.timeline h2 {
  color: var(--ink);
  margin-bottom: 64px;
  max-width: 760px;
  line-height: 1.1;
}
.team h2 em { font-weight: 600; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.team-card .portrait {
  aspect-ratio: 3/4;
  background: var(--paper-soft) repeating-linear-gradient(135deg, transparent 0 18px, rgba(0,0,0,0.04) 18px 19px);
  background-size: cover; background-position: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.team-card .portrait .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mute);
  text-transform: uppercase;
  font-weight: 500;
}
.team-card .name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.team-card .role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
  font-weight: 500;
}
.team-card .bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
  max-width: 320px;
  text-wrap: pretty;
}

.timeline {
  padding: var(--pad-y) 40px;
  background: var(--paper-soft);
}
/* .timeline h2 — см. правило ниже (.team h2, .timeline h2) */
.timeline h2 em { font-weight: 600; }
.timeline-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.timeline-item .year {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(32px, 3vw, 44px);
  font-style: normal;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.timeline-item .label {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 14px;
  font-weight: 500;
}
.timeline-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
}

.partners {
  padding: 120px 40px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.partners .lead {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 1000px;
  margin-bottom: 64px;
  text-wrap: pretty;
}
.partners .lead em { font-weight: 600; }
.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.partner-mark {
  font-family: var(--sans);
  font-weight: 500;
  font-style: normal;
  color: var(--mute);
  font-size: 16px;
  letter-spacing: -0.01em;
}

/* ============================================
   CONTACTS PAGE
   ============================================ */
.contacts-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--paper);
}
.contacts-photo {
  background: var(--paper-soft) repeating-linear-gradient(135deg, transparent 0 24px, rgba(0,0,0,0.03) 24px 25px);
  background-size: cover; background-position: center;
  position: relative;
  min-height: 600px;
}
.contacts-photo .ph-tag {
  position: absolute; left: 28px; bottom: 28px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mute);
  text-transform: uppercase;
  background: rgba(255,255,255,0.85);
  padding: 8px 12px;
  font-weight: 500;
}
.contacts-info {
  padding: 180px 56px 100px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.contacts-info .eyebrow { margin-bottom: 24px; }
.contacts-info h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 48px;
}
.contacts-info h1 em { font-weight: 600; }
.contacts-blocks {
  display: grid;
  gap: 28px;
}
.contacts-blocks h4 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
  font-weight: 500;
}
.contacts-blocks .addr {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.contacts-blocks .addr em { font-weight: 400; color: var(--mute); }
.contacts-blocks a.bigtel {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.map-block {
  background: var(--paper-soft) repeating-linear-gradient(135deg, transparent 0 20px, rgba(0,0,0,0.04) 20px 21px);
  height: 480px;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.map-block .ph-tag {
  position: absolute; left: 28px; top: 28px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mute);
  text-transform: uppercase;
  background: rgba(255,255,255,0.9);
  padding: 8px 12px;
  font-weight: 500;
}

/* ============================================
   ARCHIVE PAGE
   ============================================ */
.archive-head {
  padding: 200px 40px 64px;
  background: var(--paper);
}
.archive-head h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 1100px;
}
.archive-head h1 em { font-weight: 600; }
.archive-head .eyebrow { margin-bottom: 28px; }

.archive-filter {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 40px;
  display: flex;
  gap: 28px;
  align-items: center;
  z-index: 50;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.archive-filter button {
  background: none; border: none; cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  font-family: inherit;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
}
.archive-filter button:hover { color: var(--ink); }
.archive-filter button.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.archive-filter .count {
  margin-left: auto;
  color: var(--mute);
  font-size: 11px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px 0 0;
  background: var(--paper);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .approach-list, .studio-grid, .conv-grid, .contacts-split, .spec-table .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stage-row { grid-template-columns: 64px 1fr; }
  .stage-row p { grid-column: 1 / -1; }
  .services-list a { grid-template-columns: 40px 1fr auto; gap: 20px; }
}
@media (max-width: 960px) {
  /* --pad-y/--pad-x responsive override теперь в tokens.css (был ошибочно задублирован весь :root) */
  .site-header { padding: 18px 20px; }
  .hero-content, .hero-meta { padding: 0 20px; }
  .hero-meta { right: 20px; }
  .manifesto, .approach, .studio, .conversation, .service-stages, .team, .timeline, .partners, .services-nav {
    padding-left: 20px; padding-right: 20px;
  }
  .works-header { padding: 56px 20px 32px; }
  .works-grid, .works-grid-asym, .archive-grid { grid-template-columns: 1fr; }
  .approach-list { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .footer-bottom { padding: 28px 20px 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-link, .menu-toggle span:not(.icon) { display: none; }
  .studio-image { aspect-ratio: 16 / 10; }
  .spec-list { grid-template-columns: 1fr; }
  .archive-head { padding: 120px 20px 48px; }
  .archive-filter { padding: 14px 20px; gap: 16px; flex-wrap: wrap; }
  .contacts-info { padding: 100px 20px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .studio-stats { gap: 24px; }
  .stat-item .num { font-size: 36px; }
  .team-grid { grid-template-columns: 1fr; }
  .stage-row { grid-template-columns: 1fr; gap: 12px; }
}

/* ─── MENU OVERLAY ─── */




















@media (max-width: 760px) {
  .menu-overlay { padding: 60px 24px 40px; align-items: flex-start; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .menu-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-aside { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 32px; }
  .menu-nav a { font-size: 22px; }
  .menu-close { position: fixed; top: 16px; right: 20px; }
}


/* ─── HEADER ALIGN FIX ─── */




/* кнопка «Меню» — компактная, не растягивать */




/* brand-mark — центрирован */


/* контакт справа */


@media (max-width: 760px) {
  .site-header .header-contact { display: none; }
}


/* ─── PARTIALS STYLES (CTA, Footer) — FROM assets/styles.css ─── */

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 36px;
}

.footer-grid .brand-mark {
  color: #fafaf6;
  font-size: 17px;
  text-align: left;
}
.footer-brand .desc {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(216, 214, 207, 0.5);
  line-height: 1.6;
}
.footer-grid p { line-height: 1.7; }
.footer-grid .small {
  margin-top: 10px; font-size: 12px;
  color: rgba(216, 214, 207, 0.5);
}
.footer-grid .tel { margin-top: 8px; font-weight: 500; color: rgba(216, 214, 207, 0.7); transition: color 0.2s; }
.footer-grid .tel:hover { color: var(--accent); }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-grid ul a { transition: color 0.2s; }
.footer-grid ul a:hover { color: var(--accent); }
.footer-license {
  max-width: 1280px; margin: 0 auto 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(216,214,207,0.08);
  border-bottom: 1px solid rgba(216,214,207,0.08);
  font-size: 12px;
  color: rgba(216, 214, 207, 0.4);
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(216, 214, 207, 0.3);
  text-transform: uppercase;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 248, 243, 0.08);
  max-width: 1280px;
  margin: 0 auto;
  font-weight: 500;
}

/* ─────────── SECTION HELPERS ─────────── */

.section-eyebrow::before { content: "— "; }



.section-h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section-h2.on-dark { color: #fafaf6; }

/* Sticks-out CTA forms used across pages */
.dark-form-row {
  display: flex; flex-direction: column; gap: 6px;
}
.dark-form-row label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; color: rgba(216, 214, 207, 0.5);
}
.dark-form-row input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(216,214,207,0.2);
  color: #fafaf6;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 6px 0 12px;
  outline: none;
  transition: border-color 0.25s;
}
.dark-form-row input::placeholder { color: rgba(216,214,207,0.35); }




/* ─────────── DS TYPOGRAPHY ATOMS ─────────── */
.h1 {
  font-family: var(--sans);
  font-size: var(--text-h1-size);
  font-weight: var(--text-h1-weight);
  line-height: var(--text-h1-line);
  letter-spacing: var(--text-h1-tracking);
  color: var(--ink);
  margin: 0;
}
.h1--home {
  font-size: clamp(48px, 6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #2b2b2b;
  animation: heroFade .9s ease both;
}
.h1--hero {
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 16px 0 0;
  color: #fff;
}
.h1--invert {
  color: #fff;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.05;
}
.h1--article {
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 14px 0 24px;
}
.h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}

/* ─────────── PAGE HEADER (inner pages) ─────────── */
.page-head {
  padding: 120px 40px 60px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-head .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.page-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 24px;
  font-weight: 500;
}
.page-head .subtitle {
  font-size: 18px;
  color: var(--text);
  margin-top: 16px;
  max-width: 720px;
}
.page-head-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-head .crumbs {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 28px;
  display: flex; gap: 12px; align-items: center;
}
.page-head .crumbs a { color: var(--mute); transition: color 0.2s; }
.page-head .crumbs a:hover { color: var(--ink); }
.page-head .crumbs .sep { width: 12px; height: 1px; background: var(--line); }
.page-head .lead {
  margin-top: 32px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 720px;
  font-weight: 400;
}

/* ─────────── SHARED CTA STRIP (dark) ─────────── */
.cta-strip {
  background: var(--ink);
  color: rgba(216, 214, 207, 0.7);
  padding: 120px 40px;
}
.cta-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-strip h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fafaf6;
  margin-top: 28px;
  max-width: 480px;
}
.cta-strip .intro {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.65;
  max-width: 460px;
}

.cta-phone .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(216,214,207,0.5);
  font-weight: 500;
}
.cta-phone .num {
  display: block;
  font-size: 26px;
  font-weight: 500;
  color: #fafaf6;
  letter-spacing: -0.02em;
  margin-top: 12px;
  transition: color 0.2s;
}
.cta-phone .num:hover { color: var(--accent); }
.cta-phone .hint {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(216,214,207,0.6);
}
.cta-strip .form-head {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(216,214,207,0.7);
  margin-bottom: 36px;
}
.cta-strip form {
  display: flex; flex-direction: column; gap: 32px;
  max-width: 460px;
}

@media (max-width: 1100px) {
  .cta-strip-inner { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 760px) {
  .page-head { padding: 80px 20px 40px; }
  .cta-strip { padding: 80px 20px; }
  .h1--home { font-size: 46px; }
  .h1--article { font-size: clamp(22px, 7vw, 34px); }
  .h1--invert { font-size: 24px; }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .site-header { padding: 16px 20px; }
  .header-contact { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .site-footer { padding: 40px 20px 24px; }
}


/* ─── MENU OVERLAY ─── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--paper, #ffffff);
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 0.4s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  overflow-y: auto;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.menu-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink, #0e0e0c);
  font-family: 'PT Sans', sans-serif;
  font-size: 36px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  position: absolute;
  top: 28px;
  right: 40px;
  width: 48px;
  height: 48px;
  line-height: 1;
  z-index: 102;
}
.menu-close:hover {
  color: var(--accent);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-nav a {
  font-family: 'PT Sans', sans-serif;
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink, #0e0e0c);
  text-decoration: none;
  line-height: 1.05;
  padding: 4px 0;
  transition: color 0.2s, transform 0.2s;
}


.menu-aside {
  border-left: 1px solid var(--line, #e2e2dd);
  padding-left: 56px;
}
.menu-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute, #6e6e6a);
  font-weight: 500;
  margin-bottom: 24px;
}
.menu-group-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.menu-group-list li {
  margin-bottom: 14px;
}
.menu-group-list a {
  font-size: 17px;
  color: var(--ink, #0e0e0c);
  text-decoration: none;
  font-weight: 400;
}
.menu-group-list a:hover {
  color: var(--accent);
}
.menu-contacts {
  padding-top: 24px;
  border-top: 1px solid var(--line, #e2e2dd);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-phone {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink, #0e0e0c);
  text-decoration: none;
  letter-spacing: -0.015em;
}
.menu-email {
  font-size: 14px;
  color: var(--mute, #6e6e6a);
  text-decoration: none;
}
.menu-phone:hover, .menu-email:hover {
  color: var(--accent);
}

@media (max-width: 760px) {
  .menu-overlay { padding: 60px 24px 40px; align-items: flex-start; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .menu-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-aside { border-left: none; border-top: 1px solid var(--line, #e2e2dd); padding-left: 0; padding-top: 32px; }
  .menu-nav a { font-size: 22px; }
  .menu-close { position: fixed; top: 16px; right: 20px; }
}


/* ─── HEADER ALIGN FIX ─── */
.site-header > .header-menu {
  justify-self: start;
  align-self: center;
}
.site-header > .brand-mark {
  justify-self: center;
  align-self: center;
}
.site-header > .header-contact {
  justify-self: end;
  align-self: center;
}

/* кнопка «Меню» — компактная, не растягивать */
.site-header .header-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  font-family: 'PT Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  color: inherit;
}
.site-header .header-menu .bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.site-header .header-menu .bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  width: 100%;
}

/* brand-mark — центрирован */
.site-header .brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* контакт справа */
.site-header .header-contact {
  font-size: 13px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  letter-spacing: -0.005em;
}

@media (max-width: 760px) {
  .site-header .header-contact { display: none; }
}


/* ═══════════════════════════════════════════════
   EDITORIAL PROJECT PAGE — v1-*
   ═══════════════════════════════════════════════ */
.project-editorial {
  background: var(--paper, #fafaf6);
  font-family: 'PT Sans', sans-serif;
}

/* HERO */

.v1-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.85) 100%);
}
.v1-hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; width: 100%;
}
.v1-hero .h1--hero,
.v1-hero h1.h1--hero {
  color: #fff;
}
.v1-breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; opacity: 0.8;
}
.v1-breadcrumb a { color: #fff; text-decoration: none; }
.v1-breadcrumb a:hover { opacity: 0.65; }
.v1-breadcrumb span { opacity: 0.5; }

/* META BAR */
.v1-meta {
  background: var(--paper, #fafaf6);
  border-bottom: 1px solid var(--line, #e2e2dd);
  padding: 32px 60px;
}
.v1-meta-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.v1-meta-item { display: flex; flex-direction: column; }
.v1-meta-lbl {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute, #6e6e6a);
  font-weight: 500; margin-bottom: 6px;
}
.v1-meta-val {
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.015em; color: var(--ink, #0e0e0c);
}

/* LEAD */
.v1-lead {
  padding: 100px 60px;
  background: var(--paper, #fafaf6);
}
.v1-lead-inner { max-width: 880px; margin: 0 auto; }
.v1-lead p {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4; letter-spacing: -0.02em;
  color: var(--ink, #0e0e0c); font-weight: 400;
  margin: 0;
}

/* MOSAIC GALLERY */
.v1-mosaic {
  padding: 0 0 80px;
  background: var(--paper, #fafaf6);
}
.v1-mosaic-grid {
  max-width: 1440px; margin: 0 auto;
  padding: 0 8px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}
.v1-mosaic-cell { overflow: hidden; background: var(--line, #e2e2dd); }
.v1-mosaic-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.v1-mosaic-cell--hero { grid-column: span 8; grid-row: span 2; }
.v1-mosaic-grid > .v1-mosaic-cell:not(.v1-mosaic-cell--hero) { grid-column: span 4; }

/* SECTIONS */
.v1-section {
  padding: 100px 60px;
  border-top: 1px solid var(--line, #e2e2dd);
  background: var(--paper, #fafaf6);
}
.v1-section-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.v1-section--reverse .v1-section-grid {
  grid-template-columns: 1.4fr 1fr;
}
.v1-section--reverse .v1-section-text { order: 2; }
.v1-section--reverse .v1-section-img { order: 1; }

.v1-eyebrow {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute, #6e6e6a);
  font-weight: 500; margin-bottom: 16px;
}
.v1-section h2 {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--ink, #0e0e0c);
  margin: 0 0 24px;
}
.v1-section p {
  font-size: 17px; line-height: 1.65;
  color: var(--text, #2a2a26); margin-bottom: 14px;
}
.v1-section-img img {
  width: 100%; height: 560px;
  object-fit: cover; display: block;
}

/* MASTER PLAN */
.v1-plan {
  padding: 100px 60px;
  background: var(--paper-soft, #f3f1ea);
  text-align: center;
  border-top: 1px solid var(--line, #e2e2dd);
}
.v1-plan-inner { max-width: 1200px; margin: 0 auto; }
.v1-plan h2 {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 500; letter-spacing: -0.03em;
  margin: 16px 0 48px; color: var(--ink, #0e0e0c);
}
.v1-plan-img {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--line, #e2e2dd);
}
.v1-plan-img img { width: 100%; display: block; }

/* TEAM */
.v1-team {
  padding: 100px 60px;
  border-top: 1px solid var(--line, #e2e2dd);
  background: var(--paper, #fafaf6);
}
.v1-team-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.v1-team h3 {
  font-size: clamp(28px, 3vw, 40px); font-weight: 500;
  letter-spacing: -0.025em; line-height: 1.1;
  color: var(--ink, #0e0e0c); margin: 8px 0 0;
}
.v1-team-list { display: flex; flex-direction: column; }
.v1-team-item {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 20px; align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line, #e2e2dd);
}
.v1-team-item:last-child { border-bottom: 1px solid var(--line, #e2e2dd); }
.v1-team-avatar {
  width: 72px; height: 72px;
  background: var(--paper-soft, #f3f1ea);
  border: 1px solid var(--line, #e2e2dd);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--ink, #0e0e0c);
  flex-shrink: 0;
}
.v1-team-name {
  font-size: 17px; font-weight: 500;
  color: var(--ink, #0e0e0c); letter-spacing: -0.015em;
}
.v1-team-role {
  font-size: 13px; color: var(--mute, #6e6e6a); margin-top: 4px;
}

/* RELATED PROJECTS */
.v1-related {
  padding: 100px 60px;
  background: var(--paper, #fafaf6);
  border-top: 1px solid var(--line, #e2e2dd);
}
.v1-related-inner { max-width: 1440px; margin: 0 auto; }
.v1-related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: 28px;
}
.v1-related-card {
  display: flex; align-items: flex-end;
  aspect-ratio: 4/5; padding: 24px;
  background-color: #1a1a18;
  background-size: cover; background-position: center;
  text-decoration: none; color: #fff;
  position: relative;
}
.v1-related-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.68) 100%);
}
.v1-related-name {
  position: relative; z-index: 1;
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.015em; line-height: 1.2;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .v1-hero, .v1-meta, .v1-lead, .v1-section,
  .v1-plan, .v1-team, .v1-related { padding-left: 30px; padding-right: 30px; }
  .v1-section-grid,
  .v1-section--reverse .v1-section-grid { grid-template-columns: 1fr; gap: 40px; }
  .v1-section--reverse .v1-section-text { order: 1; }
  .v1-section--reverse .v1-section-img { order: 2; }
  .v1-team-inner { grid-template-columns: 1fr; gap: 40px; }
  .v1-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .v1-related-grid { grid-template-columns: repeat(2, 1fr); }
  .v1-section-img img { height: 380px; }
}
@media (max-width: 640px) {
  .v1-hero { padding: 40px 20px; }
  .v1-meta, .v1-lead, .v1-section, .v1-plan, .v1-team, .v1-related {
    padding-left: 20px; padding-right: 20px;
  }
  .v1-meta-grid { grid-template-columns: 1fr; gap: 16px; }
  .v1-mosaic-grid > .v1-mosaic-cell { grid-column: span 12; grid-row: span 1; }
  .v1-related-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══ CONTENT PAGES: manifesto / cards / contact ═══ */

/* Hero variant — 50vh for content pages */
.v1-hero--sm {
  height: 50vh; min-height: 380px;
}
.v1-hero--sm h1 {
  font-size: clamp(36px, 5vw, 72px);
}
.v1-hero--plain {
  background: var(--paper, #fafaf6);
  color: var(--ink, #0e0e0c);
}
.v1-hero--plain .v1-hero-overlay {
  display: none;
}
.v1-hero--plain .v1-breadcrumb a,
.v1-hero--plain .v1-breadcrumb span,
.v1-hero--plain h1 {
  color: var(--ink, #0e0e0c);
}
.v1-hero--plain .v1-breadcrumb a:hover {
  opacity: 0.7;
}
.v1-hero--plain .v1-breadcrumb span {
  opacity: 0.55;
}

/* Stats row */
.v1-stats {
  padding: 64px 60px;
  background: var(--ink, #0e0e0c);
}
.v1-stats-row {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0;
}
.v1-stats-item {
  flex: 1 1 200px;
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.v1-stats-item:last-child { border-right: none; }
.v1-stats-val {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500; line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent, #5b8c5a);
}
.v1-stats-lbl {
  font-size: 14px; margin-top: 8px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Checklist */
.v1-check {
  padding: 64px 60px;
  background: var(--paper, #fafaf6);
}
.v1-check-inner { max-width: 880px; margin: 0 auto; }
.v1-checklist {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.v1-checklist li {
  padding: 20px 24px 20px 56px;
  position: relative;
  border: 1px solid var(--line, #e2e2dd);
  font-size: 16px; line-height: 1.5;
  color: var(--ink, #0e0e0c);
}


/* Jurnal tabs */
.jurnal-tab {
  padding: 10px 24px;
  font-size: 14px; color: var(--mute); text-decoration: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.jurnal-tab:hover { color: var(--ink); }
.jurnal-tab--active { color: var(--ink); border-bottom-color: var(--ink); font-weight: 500; }

/* Cards grid */
.v1-cards {
  padding: 80px 60px;
  background: var(--paper, #fafaf6);
}
.v1-cards-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}
.v1-card {
  background: #fff;
  padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--line, #e2e2dd);
}
.v1-card-title {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink, #0e0e0c);
  margin: 0;
}
.v1-card-desc {
  font-size: 15px; line-height: 1.6;
  color: var(--mute, #6e6e6a);
  margin: 0; flex: 1;
}
.v1-card-links {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto;
}
.v1-card-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--ink, #0e0e0c);
  color: #fff;
  font-size: 13px; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.06em;
  text-align: center;
  transition: background 0.15s;
}
.v1-card-btn:hover { background: var(--accent, #5b8c5a); }
.v1-card-img { margin: -40px -40px 0; overflow: hidden; }
.v1-card-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.v1-card-eyebrow { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute, #6e6e6a); }
.v1-card-salary { font-size: 14px; color: var(--ink, #0e0e0c); font-weight: 500; }

/* Vacancy groups */
.v1-groups {
  padding: 80px 60px;
  background: var(--paper, #fafaf6);
}
.v1-groups-inner { max-width: 1280px; margin: 0 auto; }
.v1-group { margin-bottom: 64px; }
.v1-group:last-child { margin-bottom: 0; }
.v1-group-title {
  font-size: 13px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--mute, #6e6e6a);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line, #e2e2dd);
}
.v1-group-list { display: flex; flex-direction: column; }
.v1-vac-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line, #e2e2dd);
  display: flex; flex-direction: column; gap: 10px;
}
.v1-vac-head {
  display: flex; align-items: baseline;
  flex-wrap: wrap; gap: 16px;
}
.v1-vac-title {
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink, #0e0e0c);
  text-decoration: none;
}
a.v1-vac-title:hover { color: var(--accent, #5b8c5a); }
.v1-vac-salary {
  font-size: 14px; color: var(--accent, #5b8c5a);
  font-weight: 500;
}
.v1-vac-desc {
  font-size: 15px; line-height: 1.6;
  color: var(--mute, #6e6e6a);
  margin: 0;
}
.v1-vac-more {
  font-size: 13px; color: var(--ink, #0e0e0c);
  text-decoration: none; letter-spacing: 0.04em;
  align-self: flex-start;
}
.v1-vac-more:hover { color: var(--accent, #5b8c5a); }

/* Contact cards */
.v1-contacts {
  padding: 80px 60px;
  background: var(--paper, #fafaf6);
}
.v1-contacts-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.v1-contact-card {
  background: #fff;
  padding: 40px;
  border: 1px solid var(--line, #e2e2dd);
  display: flex; flex-direction: column; gap: 12px;
}
.v1-contact-title {
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink, #0e0e0c);
  margin: 0 0 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line, #e2e2dd);
}
.v1-contact-row {
  font-size: 15px; line-height: 1.5;
  color: var(--ink, #0e0e0c);
  text-decoration: none; margin: 0;
}
.v1-contact-phone {
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink, #0e0e0c);
}
.v1-contact-phone:hover, .v1-contact-email:hover {
  color: var(--accent, #5b8c5a);
}
.v1-contact-hours { color: var(--mute, #6e6e6a); font-size: 13px; }

/* Responsive adjustments */
@media (max-width: 760px) {
  .v1-hero--sm { height: 40vh; min-height: 280px; padding: 24px 20px; }
  .v1-stats { padding: 48px 20px; }
  .v1-stats-item { padding: 24px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); flex-basis: 100%; }
  .v1-stats-item:last-child { border-bottom: none; }
  .v1-check { padding: 48px 20px; }
  .v1-cards { padding: 48px 20px; }
  .v1-cards-grid { grid-template-columns: 1fr; }
  .v1-groups { padding: 48px 20px; }
  .v1-contacts { padding: 48px 20px; }
  .v1-contacts-grid { grid-template-columns: 1fr; }
}

/* ─── LOGO VARIANTS + HAS-HERO-PHOTO ─── */
.header-logo--inverted { display: none; }
body.has-hero-photo .site-header {
  background: transparent;
  color: #fafaf6;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.has-hero-photo .header-logo--default { display: none; }
body.has-hero-photo .header-logo--inverted { display: block; }

/* ─── KEN BURNS ─── */
@keyframes kenburns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.v1-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  background-color: #1a1a18;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.v1-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 30s ease-in-out infinite alternate;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .v1-hero-bg { animation: none; }
}

/* ============================================================
   SERVICE TEMPLATE
   ============================================================ */
.svc-hero { padding: 140px 40px 100px; background: var(--paper); }
.svc-hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.svc-hero-title { font-size: clamp(36px, 5vw, 64px); font-weight: 500; line-height: 1.05; letter-spacing: -0.035em; color: var(--ink); margin: 16px 0 24px; }
.svc-hero-lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; color: var(--mute); margin-bottom: 36px; max-width: 540px; }
.svc-hero-cta, .svc-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--ink); border-radius: 999px; font-weight: 500; text-decoration: none; transition: transform 0.2s; }
.svc-hero-cta { padding: 14px 28px; font-size: 15px; }
.svc-hero-cta:hover { transform: translateX(4px); }
.svc-hero-cover { aspect-ratio: 16/11; overflow: hidden; border-radius: 4px; }
.svc-hero-cover img { width: 100%; height: 100%; object-fit: cover; }

.svc-section-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
section.svc-included, section.svc-pricing, section.svc-case, section.svc-faq, section.svc-other { padding: 100px 0; background: var(--paper); }
section.svc-stages, section.svc-cta { padding: 100px 0; background: var(--ink); color: #fafaf6; }

.svc-checklist { list-style: none; padding: 0; margin: 48px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 48px; }
.svc-checklist li { display: flex; gap: 16px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--ink); }
.svc-check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px; background: var(--accent); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }

.svc-stages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.svc-stage { padding: 32px 28px; background: rgba(255,255,255,0.04); border-radius: 4px; border: 1px solid rgba(255,255,255,0.08); }
.svc-stage-num { font-size: 13px; color: rgba(216,214,207,0.5); font-weight: 500; letter-spacing: 0.08em; margin-bottom: 24px; }
.svc-stage-title { font-size: 20px; font-weight: 500; color: #fafaf6; letter-spacing: -0.02em; margin-bottom: 12px; }
.svc-stage-desc { font-size: 15px; line-height: 1.55; color: rgba(216,214,207,0.7); }

.svc-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; padding: 48px; background: var(--paper-soft); border-radius: 4px; }
.svc-pricing-cell { text-align: left; }
.svc-pricing-val { font-size: clamp(28px, 3.5vw, 44px); font-weight: 500; line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 8px; }
.svc-pricing-lbl { font-size: 13px; color: var(--mute); letter-spacing: 0.06em; text-transform: uppercase; }
.svc-pricing-note { margin-top: 24px; font-size: 14px; color: var(--mute); }

.svc-case-card { display: grid; grid-template-columns: 60% 1fr; gap: 48px; margin-top: 48px; align-items: center; padding: 32px; background: var(--paper-soft); border-radius: 4px; text-decoration: none; color: inherit; transition: background 0.2s; }
.svc-case-card:hover { background: #ececec; }
.svc-case-img { aspect-ratio: 16/10; overflow: hidden; border-radius: 6px; }
.svc-case-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-case-eyebrow { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); font-weight: 500; margin-bottom: 12px; }
.svc-case-title { font-size: 28px; font-weight: 500; line-height: 1.15; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 12px; }
.svc-case-desc { font-size: 16px; line-height: 1.55; color: var(--mute); margin-bottom: 16px; }
.svc-case-arrow { font-size: 20px; color: var(--ink); }

.svc-faq-list { margin-top: 48px; border-top: 1px solid var(--line); }
.svc-faq-item { border-bottom: 1px solid var(--line); }
.svc-faq-item summary { padding: 24px 0; font-size: 18px; font-weight: 500; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.svc-faq-item summary::-webkit-details-marker { display: none; }
.svc-faq-item summary::after { content: '+'; font-size: 22px; color: var(--mute); transition: transform 0.2s; }
.svc-faq-item[open] summary::after { transform: rotate(45deg); }
.svc-faq-ans { padding: 0 0 24px; font-size: 16px; line-height: 1.6; color: var(--mute); max-width: 880px; }

.svc-cta-inner { max-width: 880px; margin: 0 auto; padding: 0 40px; text-align: center; }
.svc-cta-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 500; line-height: 1.15; letter-spacing: -0.025em; color: #fafaf6; margin-bottom: 16px; }
.svc-cta-text { font-size: 17px; color: rgba(216,214,207,0.7); margin-bottom: 32px; }
.svc-cta-btn { padding: 16px 32px; font-size: 16px; }
.svc-cta-btn:hover { transform: translateX(4px); }

.svc-other-list { display: flex; flex-direction: column; margin-top: 32px; }
.svc-other-row { display: grid; grid-template-columns: 56px 1fr 24px; gap: 32px; padding: 24px 0; border-top: 1px solid var(--line); color: var(--ink); text-decoration: none; align-items: center; transition: padding-left 0.2s; }
.svc-other-row:last-child { border-bottom: 1px solid var(--line); }
.svc-other-row:hover { padding-left: 12px; }
.svc-other-num { font-size: 13px; color: var(--mute); font-weight: 500; }
.svc-other-title { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; }
.svc-other-arrow { color: var(--mute); }

@media (max-width: 960px) {
  .svc-hero { padding: 100px 24px 60px; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-hero-cover { order: -1; aspect-ratio: 16/10; }
  .svc-section-inner { padding: 0 24px; }
  section.svc-included, section.svc-pricing, section.svc-case, section.svc-faq, section.svc-other,
  section.svc-stages, section.svc-cta { padding: 60px 0; }
  .svc-checklist { grid-template-columns: 1fr; gap: 16px; }
  .svc-stages-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .svc-pricing-grid { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .svc-case-card { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .svc-cta-inner { padding: 0 24px; }
}
@media (max-width: 560px) {
  .svc-stages-grid { grid-template-columns: 1fr; }
}

/* === RESTORED FIXES from session 10.05 === */
.section-manifesto { display: none; }

.section-ba { padding-left: 0; padding-right: 0; }
.section-ba-inner { max-width: none; width: 100%; padding: 0; }
.section-ba .ba-header { max-width: 1280px; margin-left: auto; margin-right: auto; padding: 0 40px; }
.section-ba .ba-slider { width: 100%; border-radius: 0; border-left: none; border-right: none; }



.site-header.over-light .hdr-logo--light { display: none; }
.site-header.over-light .hdr-logo--dark { display: block; }

.section-name-logo { width: clamp(180px, 22vw, 300px); height: auto; display: block; }

/* === Home: Свежие статьи (restored 11.05.2026) === */
.home-recent-posts {
  padding: 96px 40px;
  background: var(--paper);
}
.home-recent-posts .recent-posts-inner { max-width: 1280px; margin: 0 auto; }
.home-recent-posts .recent-posts-eyebrow {
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 16px;
}
.home-recent-posts .recent-posts-title {
  font-family: var(--sans); font-size: clamp(40px, 5vw, 72px);
  font-weight: 600; line-height: 1.05; color: var(--ink);
  margin: 0 0 64px 0; letter-spacing: -0.02em;
}
.home-recent-posts .recent-posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-bottom: 48px;
}
.home-recent-posts .rp-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: 4px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-recent-posts .rp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.home-recent-posts .rp-card__img {
  aspect-ratio: 16/10; overflow: hidden; background: var(--paper-soft);
}
.home-recent-posts .rp-card__img img,
.home-recent-posts .rp-card__img picture img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.home-recent-posts .rp-card__body {
  padding: 24px 28px 28px 28px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.home-recent-posts .rp-card__date {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mute);
}
.home-recent-posts .rp-card__title {
  font-family: var(--sans); font-size: 22px; font-weight: 600;
  line-height: 1.25; color: var(--ink); margin: 0; letter-spacing: -0.01em;
}
.home-recent-posts .rp-card__excerpt {
  font-size: 15px; line-height: 1.6; color: var(--mute); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-recent-posts .recent-posts-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--accent); text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 4px;
  transition: opacity 0.2s ease;
}
.home-recent-posts .recent-posts-link:hover { opacity: 0.7; }

@media (max-width: 960px) {
  .home-recent-posts { padding: 64px 24px; }
  .home-recent-posts .recent-posts-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .home-recent-posts .recent-posts-grid { grid-template-columns: 1fr; }
  .home-recent-posts .recent-posts-title { margin-bottom: 40px; }
}

/* === BLOG: listing /blog/ === */

/* .page-head layout — см. DS atoms выше; здесь только blog-специфика */
.page-head__eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 16px;
}
.page-head__title {
  font-family: var(--sans);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}
.page-head__lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--mute);
  max-width: 760px;
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto 96px;
  padding: 0 40px;
}

.blog-card,
.bp-related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-soft);
}
.blog-card__img img,
.blog-card__img picture,
.blog-card__img picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}
.blog-card__meta > * + *::before {
  content: "·";
  margin-right: 12px;
  color: var(--line);
}
.blog-card__title {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.blog-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mute);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.blog-card__tags > * {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

@media (max-width: 960px) {
  .page-head { padding: 64px 24px 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 0 24px; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .page-head__title { font-size: clamp(36px, 8vw, 56px); }
}

/* === BLOG POST: страница статьи /blog/<slug>/ === */

.bp-hero {
  width: 100%;
  background: var(--paper-soft);
  margin-bottom: 56px;
}
.bp-hero picture,
.bp-hero img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

.bp-header {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.bp-header__eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 16px;
}
.bp-header__title {
  font-family: var(--sans);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.bp-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}
.bp-meta > * + *::before {
  content: "·";
  margin-right: 12px;
  color: var(--line);
}

.article-prose {
  max-width: 720px;
  margin: 0 auto 96px;
  padding: 0 24px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.article-prose > * + * { margin-top: 24px; }
.article-prose p { margin: 0; }
.article-prose h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  margin: 56px 0 16px;
  letter-spacing: -0.01em;
}
.article-prose h3 {
  font-family: var(--sans);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  margin: 40px 0 12px;
}
.article-prose ul,
.article-prose ol {
  padding-left: 24px;
}
.article-prose li + li { margin-top: 8px; }
.article-prose strong { font-weight: 600; }
.article-prose em { font-style: italic; }
.article-prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 8px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--mute);
  background: var(--paper-soft);
  border-radius: 0 8px 8px 0;
}
.article-prose img {
  width: 100%;
  border-radius: 4px;
  margin: 32px 0;
}
.article-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Читайте также */
.bp-related {
  max-width: 1280px;
  margin: 0 auto 96px;
  padding: 0 40px;
}
.bp-related__title {
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}
.bp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* .bp-related-card — см. правило ниже (.blog-card, .bp-related-card) */
.bp-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.bp-related-card__img {
  aspect-ratio: 16/10;
  background: var(--paper-soft);
}
.bp-related-card__img img,
.bp-related-card__img picture,
.bp-related-card__img picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bp-related-card__body {
  padding: 16px 20px 20px;
}
.bp-related-card__date {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.bp-related-card__title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}

@media (max-width: 960px) {
  .bp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-related { padding: 0 24px; }
}
@media (max-width: 640px) {
  .bp-related-grid { grid-template-columns: 1fr; }
  .bp-hero img { max-height: 50vh; }
}

/* === BRAND OUTRO: "Каждый проект для нас, важный" (restored 11.05.2026) === */
/* section.brand-outro для перекрытия inline <style> в head */

section.brand-outro {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  display: block;
  padding: 120px 40px;
  overflow: hidden;
  border-top: none;
}

section.brand-outro .brand-outro-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  margin: 0;
  padding: 0;
  pointer-events: none;
  display: block;
}
section.brand-outro .brand-outro-mark img {
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 0.06;
  filter: invert(1) brightness(2);
  display: block;
}

section.brand-outro .brand-outro-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.brand-outro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-outro-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}










.bo-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}





@media (max-width: 960px) {
  section.brand-outro {
  background: var(--paper);
  color: var(--ink); padding: 80px 24px; }
  .brand-outro-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .brand-outro-stats {
    padding-left: 0;
    border-left: none;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 560px) {
  .brand-outro-stats { grid-template-columns: 1fr; gap: 32px; }
}


/* brand-outro: возврат к светлой палитре (revert от 11.05.2026) */
.brand-outro { background: var(--paper); color: var(--ink); }
.brand-outro h1, .brand-outro h2, .brand-outro h3 { color: var(--ink); }
.brand-outro p, .brand-outro .subtitle, .brand-outro__lead { color: var(--mute); }
.brand-outro .num, .brand-outro__num, .brand-outro__stat-value { color: var(--ink); }
.brand-outro .label, .brand-outro__stat-label { color: var(--mute); }
.brand-outro .watermark, .brand-outro__bg, .brand-outro::before {
  color: rgba(0,0,0,0.04);
  opacity: 1;
}


/* brand-outro fix-2: реальные селекторы 11.05.2026 */
.brand-outro-title {
  font-family: var(--sans);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-outro-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--mute);
  margin: 0 0 40px;
  max-width: 560px;
}
.bo-stat-num {
  font-family: var(--sans);
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.bo-stat-label {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.4;
}
.brand-outro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-left: 56px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-left-color: var(--line);
}



/* ─── person-quote (ESG страница) ─── */

.person-quote h1,
.person-quote h2 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--ink, #1a1a18);
}

/* widget below mobile menu when open */
body.menu-open #pn-chat-btn,
body.menu-open #pn-chat-box { z-index: 10; }


/* ═══════════════════════════════════════════════
   Слито из principnovo-override.css при консолидации 2026-06-30.
   Был отдельным прод-only файлом (не синхронился через build.py) —
   теперь единый источник, единый pipeline. !important пока оставлены
   как есть (снятие — отдельная проверка каждого правила, не сегодня).
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   ПРИНЦИП НОВО — Design Override v3.0 (Тренды 2026)
   Подключать последним после styles.css
   HTML не трогать — только визуал
   ═══════════════════════════════════════════════ */

/* ─── ШРИФТ — все элементы ─── */
* { font-family: 'PT Sans', -apple-system, sans-serif !important; }

/* ─── СВЕТЛЫЕ СЕКЦИИ → БЕЛЫЙ ─── */
body,
.section-name,
.section-manifesto,
.works,
.section-approach,
.section-services,
.section-group,
.section-team,
.section-studio,
.home-recent-posts,
.section-ba,
.brand-outro,
.v1-cards,
.v1-check,
.v1-section,
.v1-lead,
.v1-plan,
.v1-team,
.v1-related {
  background: #ffffff;
}

/* ─── ТЁПЛЫЙ ФОН — акцентные секции ─── */
.section-group {
  background: #f5f2ec;
}

/* ─── ТЁМНЫЕ СЕКЦИИ → FOREST ─── */
.section-school,
.section-contact,
.cta-strip,
.v1-stats,
[data-bg="dark"],
[data-bg="forest"],
.on-forest {
  background: #005a4e;
  color: #ffffff;
}

/* Текст внутри тёмных секций */
.section-school *,
.section-contact *,
.cta-strip *,
.v1-stats *,
[data-bg="dark"] h2,
[data-bg="dark"] h3,
.on-forest * {
  color: #ffffff;
}

/* Кроме ссылок-кнопок и accent-элементов */
.section-school .section-eyebrow,
.section-contact .section-eyebrow,
.cta-strip .section-eyebrow {
  color: rgba(159, 204, 65, 0.9);
}

/* Цвета мутного текста на тёмных секциях */
.section-school .body p,
.section-contact .intro,
.section-contact .hint,
.cta-strip .intro,
.cta-phone .label,
.cta-phone .hint,
.contact-phone .label,
.contact-phone .hint,
.contact-meta .item .label {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── ФУТЕР → FOREST ─── */
.site-footer {
  padding: 56px 40px 28px;
  background: #005a4e;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  font-weight: 400;
}

.footer-grid h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
  font-weight: 500;
}

.footer-grid .brand-mark,
.footer-grid .tel {
  color: rgba(255, 255, 255, 0.88) !important;
}

.footer-grid ul a,
.footer-grid p,
.footer-brand .desc {
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid ul a:hover,
.footer-grid .tel:hover {
  color: var(--accent);
}

.footer-license,
.footer-bottom {
  color: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ─── HERO — forest + фото-overlay ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}


.hero-eyebrow,
.hero-eyebrow span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-eyebrow .dot {
  background: var(--accent);
}

.hero h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  max-width: 1100px;
  color: #ffffff;
}

.hero-stat-num {
  color: var(--accent);
}

.hero-stat-lbl {
  color: rgba(255, 255, 255, 0.6);
}

/* ─── ТИПОГРАФИКА ─── */
/* h1,h2,h3 убраны отсюда 2026-07-01: конфликтовали с канон-правилом
   'h1,h2,h3,h4{color:var(--ink)}' (выше по файлу) той же специфичности —
   побеждали по порядку, красили заголовки в #005a4e на страницах без
   .page-head обёртки (kontakty и др). Точечные модификаторы оставлены —
   это осознанные контекстные исключения, не баг. */
.section-h2,
.v1-hero h1,
.v1-section h2,
.v1-plan h2 {
  color: #005a4e;
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* Заголовки на тёмных секциях */
.section-school h2,
.section-contact h2,
.section-contact .section-h2,
.cta-strip h2 {
  color: #ffffff;
}

/* ─── EYEBROW ─── */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-block;
}

.section-eyebrow.on-dark {
  color: rgba(159, 204, 65, 0.8);
}

/* ─── ОТСТУПЫ СЕКЦИЙ ─── */
.section-name,
.section-manifesto,
.section-approach,
.section-services,
.section-group,
.section-team,
.section-studio,
.section-school,
.section-contact,
.home-recent-posts {
  padding-top: 96px;
  padding-bottom: 96px;
}

/* ─── НАВБАР — floating pill ─── */
.site-header {
  position: sticky;
  top: 12px;
  left: unset;
  right: unset;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 24px;
  transition: color .35s ease, background-color .35s ease, border-color .35s ease;
  color: #1a1617;
  border-bottom: 1px solid transparent;
  margin: 12px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  border: 1px solid rgba(26, 22, 23, 0.09);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

/* Убираем прозрачный фон при at-top — пилюля всегда видна */
.site-header.at-top {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(26, 22, 23, 0.09);
}

.site-header.over-dark {
  color: #1a1617;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-contact {
  color: #005a4e;
  font-weight: 500;
}

.header-contact:hover {
  color: var(--accent);
}

/* ─── КНОПКИ — pill ─── */
.dark-btn {
  background: var(--accent);
  border: none;
  color: #1a1617;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: opacity 0.2s;
  align-self: flex-start;
  border-radius: 100px;
}

.dark-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1617;
  opacity: 0.85;
}

/* Вторичная кнопка на тёмных секциях */
.section-school .dark-btn,
.cta-strip .dark-btn {
  background: var(--accent);
  color: #1a1617;
}

/* ─── КАРТОЧКИ — radius 16px ─── */
.work-card,
.group-card,
.v1-card,
.rp-card {
  border-radius: 16px;
  overflow: hidden;
}

.work-card.feature {
  border-radius: 16px;
}

/* ─── ШАГ ПОДХОДА — radius 8px ─── */
.approach-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  border-radius: 8px;
}

.group-card {
  border: 0.5px solid rgba(26, 22, 23, 0.08);
  transition: transform 0.2s;
}

.group-card:hover {
  transform: translateY(-4px);
}

/* ─── СТАТИСТИКА — accent ─── */
.studio-stat .num,
.v1-stats-val,
.hero-stat-num,
.bo-stat-num {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* ─── SERVICES ─── */
.service-row {
  border-bottom: 0.5px solid rgba(26, 22, 23, 0.08);
  transition: background 0.15s;
}

.service-row:hover {
  background: #f0f6f4;
}

.service-row .num {
  color: var(--accent);
}

.service-row .arrow {
  color: var(--accent);
}

/* ─── ПОДХОД ─── */
.approach-step .num {
  font-family: var(--sans);
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 1;
  color: var(--accent);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  letter-spacing: -0.04em;
}

/* ─── ФОРМА ─── */
.dark-form-row input:focus {
  border-bottom-color: var(--accent);
}

.cta-phone {
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--accent);
  max-width: 460px;
  border-left-color: var(--accent);
}

.cta-phone .num:hover,
.contact-phone .num:hover {
  color: var(--accent);
}

/* ─── ССЫЛКИ ─── */
a:hover {
  opacity: .65;
  color: var(--accent);
}

.all-link,
.works-footer a,
.recent-posts-link {
  color: #005a4e;
  font-weight: 500;
}

.all-link:hover,
.works-footer a:hover,
.recent-posts-link:hover {
  color: var(--accent);
}

/* ─── WORKS FOOTER кнопка — pill ─── */
.works-footer a {
  border-radius: 100px;
  border: 1.5px solid #005a4e;
  transition: background 0.2s, color 0.2s;
}

.works-footer a:hover {
  background: #005a4e;
  color: #ffffff;
}

/* ─── МЕНЮ ОВЕРЛЕЙ ─── */
.menu-nav a:hover {
  color: var(--accent);
  transform: translateX(8px);
}

.menu-nav a.active {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  width: fit-content;
  border-bottom-color: var(--accent);
}

/* ─── БЛОГ КАРТОЧКИ ─── */
.rp-card {
  border: 0.5px solid rgba(26, 22, 23, 0.08);
  transition: transform 0.2s;
}

.rp-card:hover {
  transform: translateY(-4px);
}

.rp-card__date {
  color: var(--accent);
}

/* ─── SCHOOL SECTION ─── */
.school-quote {
  border-left-color: var(--accent);
}

/* ─── PERSON QUOTE ─── */
.person-quote {
  background: #f0f6f4;
  border-left: 3px solid var(--accent);
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  border-radius: 2px;
  border-left-color: var(--accent);
}

/* ─── ЧЕКСЛИСТ ─── */
.v1-checklist li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* ─── BRAND OUTRO ─── */
.brand-outro-cta {
  display: inline-block;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--accent);
  color: #1a1617;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  transition: opacity 0.2s;
}

.brand-outro-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  opacity: 0.85;
  color: #1a1617;
}

/* ─── СТРЕЛКИ И SVG на тёмных блоках ─── */
.on-forest .arr,
.on-forest .arrow,
.on-forest svg,
[data-bg="dark"] .arrow,
[data-bg="dark"] svg {
  color: var(--accent);
  fill: var(--accent);
}

/* ─── ФОТО в секциях ─── */
.studio-image,
.school-image,
.ba-slider {
  border-radius: 16px;
  overflow: hidden;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 760px) {
  .site-header {
    margin: 8px 12px;
    padding: 8px 16px;
    top: 8px;
  }

  .section-name,
  .section-manifesto,
  .section-approach,
  .section-services,
  .section-group,
  .section-team,
  .section-studio,
  .section-school,
  .section-contact,
  .home-recent-posts {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* ─── ЛОГОТИП: белый навбар → тёмный логотип ─── */
.site-header .hdr-logo--light {
  display: none;
}
.site-header .hdr-logo--dark {
  display: block;
}

/* ─── BRAND OUTRO — фоновый логотип ─── */
.brand-outro-mark img {
  filter: none;
  opacity: 0.06;
  max-width: 400px;
}

/* ─── ЗАГЛУШКИ ФОТО ─── */
.founder-photo,
.lead-photo,
.council-photo {
  background: linear-gradient(135deg, #005a4e 0%, #2d7a5e 50%, var(--accent) 100%);
  color: #ffffff;
  border: none;
}

.studio-image {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center top;
  min-height: 400px;
}

/* ─── Убираем лишний отступ после works ─── */
.works {
  padding: 0;
  background: var(--paper);
  padding-bottom: 0;
}

.works-footer {
  text-align: center;
  padding: 32px 40px;
}


/* ═══════════════════════════════════════════════
   ГЛАВНАЯ — hero + svc + works (атомы, 2026-07-02)
   ═══════════════════════════════════════════════ */
.hero-sec {
  position: relative;
  background: rgb(244, 244, 242);
  padding: 0;
  min-height: 460px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 40px 0;
  position: relative;
  z-index: 3;
}
.hero-head {
  margin-top: 110px; /* внутренние стр.; на главной переопределено .page-home */
  position: relative;
  z-index: 3;
}
/* Главная: один хедер из base, без двойной серой полосы */
.page-home header {
  background: rgb(244, 244, 242);
  border-bottom: none;
}
.page-home .hero-sec {
  margin-top: 0;
}
.page-home .hero-inner {
  padding-top: 20px;
}
.page-home .hero-head {
  margin-top: 24px;
}
.page-home .hero-illu {
  top: 100px;
}
.hero-sub {
  margin-top: 14px;
  font-size: 18px;
  color: rgb(138, 138, 134);
}
.hero-illu {
  position: absolute;
  left: 0;
  right: 0;
  top: 160px;
  z-index: 1;
  pointer-events: none;
  display: block;
  line-height: 0;
}
.hero-illu img {
  width: 100%;
  display: block;
}

.svc-sec {
  background: #fff;
  padding: 8px 40px 44px;
}
.svc-sec > .svc-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.svc-sec .svc-grid > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  color: rgb(43, 43, 43);
}
.svc-icon {
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.svc-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.svc-chevron {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.home-works {
  background: rgb(243, 243, 241);
  padding: 74px 40px 80px;
}
.home-works__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.home-works__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.home-works__eyebrow {
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0;
}
.home-works__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.home-works__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* work-row layout: inline on index; hover — только внутри overflow:hidden */
/* ═══════════════════════════════════════════════
   ГЛАВНАЯ — прочие стили (2026-07-01)
   ═══════════════════════════════════════════════ */
::selection{background:#cfe89a}
[style*="overflow: hidden"]{border-radius:8px}
.price-band{border-radius:0 !important}
div[style*="border: 1px solid #ececea"]{border-radius:8px;overflow:hidden}
a[style*="var(--accent)"],a[style*="1px solid rgb(205, 214, 184)"],a[style*="rgb(90, 138, 38)"]{border-radius:6px}
input,textarea{border-radius:6px}
.srv-card,.usl-card,.prod-card,.akcii-card,.works-head,.stats-block,.stats-text,.uhero-list,.ak-banner,.ak-side a,article{border-radius:8px}
.hamb{display:none}
@keyframes heroFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes heroFade{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}
.hero-illu img{animation:heroFloat 7s ease-in-out infinite}
.hero-sub{animation:heroFade .9s ease .15s both}
@media(max-width:1024px){
  .svc-grid{grid-template-columns:repeat(3,1fr) !important;gap:46px 14px !important}
  .prod-grid{grid-template-columns:1fr 1fr !important}
  .process-grid{grid-template-columns:1fr 1fr !important}
  .gk-grid{grid-template-columns:1fr !important}
  .art-grid{grid-template-columns:1fr !important}
}
@media(max-width:720px){
  .hamb{display:flex !important}
  .desk-nav{display:none !important}
  .top-phone{display:none !important}
  .hero-sec{min-height:0 !important}.svc-sec{padding:16px 20px 28px !important}
  .hero-head{margin-top:54px !important}
  .page-home .hero-head{margin-top:16px !important}
  .page-home .hero-inner{padding-top:12px !important}
  .h1--home{font-size:46px !important}
  .hero-sub{font-size:18px !important;margin-top:18px !important}
  .hero-illu{position:relative !important;width:100% !important;left:auto !important;right:auto !important;bottom:auto !important;top:0 !important;margin-top:8px !important;display:block;max-height:200px !important;overflow:hidden !important}
  .hero-pad{padding-bottom:0 !important}
  .svc-grid{grid-template-columns:1fr 1fr !important;gap:20px 12px !important}
  .usl-sec{flex-direction:column !important;padding-left:20px !important;padding-right:20px !important}
  .usl-photo{width:100% !important;height:220px !important}
  .usl-card{position:static !important;width:100% !important;top:auto !important;right:auto !important;margin-top:-30px !important;padding:32px 26px !important}
  .sec-pad{padding-left:20px !important;padding-right:20px !important}
  .works-head{width:auto !important}
  .work-row{height:170px !important}
  .work-title{font-size:24px !important}
  .work-inner{right:24px !important}
  .stats-grid{grid-template-columns:1fr !important}
  .stats-block{flex-wrap:wrap !important;gap:24px 30px !important;padding:40px 24px !important}
  .stats-text{padding:40px 24px !important}
  .prod-sec{flex-direction:column !important}
  .prod-photo{width:100% !important;height:240px !important}
  .prod-card{position:static !important;width:100% !important;top:auto !important;left:auto !important;margin-top:-30px !important;padding:32px 26px !important}
  .prod-grid{grid-template-columns:1fr 1fr !important;gap:14px !important}.prod-card .price-row{flex-wrap:wrap !important;gap:6px !important}
  .akcii-sec{flex-direction:column !important}
  .akcii-photo{width:100% !important;height:200px !important}
  .akcii-card{width:100% !important;margin-left:0 !important;margin-top:-24px !important;padding:34px 26px !important}
  .akcii-star{left:24px !important;top:-32px !important}
  .akcii-h3{font-size:24px !important}
  .events-grid{grid-template-columns:1fr !important;gap:40px !important}
  .cta-grid{grid-template-columns:1fr !important;gap:30px !important}
  .footer-grid{grid-template-columns:1fr !important;gap:20px !important}
  .process-grid{grid-template-columns:1fr !important}
  .gk-grid{grid-template-columns:1fr !important}
  .wwd-row{flex-direction:column !important;gap:6px !important;padding:22px 0 !important}
  .wwd-title{width:auto !important}
  .ba-halves{height:240px !important}
  .art-grid{grid-template-columns:1fr !important}
  .about-grid{grid-template-columns:1fr !important}[data-dc-tpl="152"]{gap:24px !important}[data-dc-tpl="155"]{font-size:34px !important}[data-dc-tpl="152"]{padding-top:20px !important;margin-top:24px !important}
}

/* ЖИВАЯ КАРТИНКА — дрейф камеры при наведении */
@keyframes livecam {
  0%   { transform: scale(1.08) translate(0%,    0%);    filter: brightness(1)    saturate(1); }
  25%  { transform: scale(1.12) translate(-1.2%, -0.6%); filter: brightness(1.06) saturate(1.08); }
  50%  { transform: scale(1.10) translate(-0.4%, -1.1%); filter: brightness(1.04) saturate(1.12); }
  75%  { transform: scale(1.13) translate( 0.6%, -0.3%); filter: brightness(1.07) saturate(1.06); }
  100% { transform: scale(1.08) translate(0%,    0%);    filter: brightness(1)    saturate(1); }
}
.work-bg { transition: transform .9s ease, filter .9s ease; will-change: transform, filter; }
.work-row:hover .work-bg { animation: livecam 9s ease-in-out infinite; }
.work-overlay { transition: opacity .7s ease; }
.work-row:hover .work-overlay { opacity: .65; }
.work-inner { transition: transform .55s cubic-bezier(.25,.46,.45,.94); }
.work-row:hover .work-inner { transform: translateY(-5px); }
.js-r [data-rv]{opacity:0;transform:translateY(28px);transition:opacity .7s cubic-bezier(.16,1,.3,1),transform .7s cubic-bezier(.16,1,.3,1);}
.js-r [data-rv].in{opacity:1;transform:none;}
.js-r [data-sg]>*{opacity:0;transform:translateY(20px);transition:opacity .55s cubic-bezier(.16,1,.3,1),transform .55s cubic-bezier(.16,1,.3,1);}
.js-r [data-sg].in>*:nth-child(1){transition-delay:0s;}
.js-r [data-sg].in>*:nth-child(2){transition-delay:.08s;}
.js-r [data-sg].in>*:nth-child(3){transition-delay:.16s;}
.js-r [data-sg].in>*:nth-child(4){transition-delay:.24s;}
.js-r [data-sg].in>*:nth-child(5){transition-delay:.32s;}
.js-r [data-sg].in>*{opacity:1;transform:none;}
/* WORK-ROW HOVER — как прод */
.work-row{transition:transform .45s cubic-bezier(.16,1,.3,1),box-shadow .45s ease;}
.work-row:hover{transform:scale(1.015);box-shadow:0 14px 44px rgba(0,0,0,.22);}
.svc-sec .svc-grid{overflow:visible !important;}
.svc-sec{overflow:visible !important;}
.svc-sec .svc-grid > a{transition:transform .25s cubic-bezier(.34,1.56,.64,1);transform-origin:center bottom;will-change:transform;}
.svc-sec .svc-grid > a:hover{transform:scale(1.22) !important;}
a.scp2{transition:transform .35s cubic-bezier(.16,1,.3,1),box-shadow .35s ease !important;}
a.scp2:hover{transform:translateY(-6px) !important;box-shadow:0 16px 48px rgba(0,0,0,.1);}


/* DS-gen: partials inline->class 2026-07-02 */
.foot-1cb4b7{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;font-size:13px;font-weight:700}
.foot-29aa90{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;font-size:12px;font-weight:700}
.foot-b9d6a4{color:rgba(255,255,255,.65);font-size:14px}
.foot-cd9600{position:fixed;bottom:28px;left:28px;width:48px;height:48px;border-radius:50%;background:var(--accent);color:#fff;border:none;cursor:pointer;font-size:22px;line-height:1;box-shadow:0 4px 16px rgba(0,0,0,.18);display:none;z-index:999;align-items:center;justify-content:center;transition:opacity .2s}
.rnav-b0982d{display:flex;gap:28px;font-size:17px;color:rgb(58,58,56)}
.rnav-c50dd5{font-size:18px;color:rgb(95,95,93);letter-spacing:0.5px}
.page-09ab4a{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--accent);font-weight:700;margin-right:8px;white-space:nowrap}

.okp-link{padding:7px 16px;border-radius:8px;font-size:14px;font-weight:500;color:rgb(58,58,56);background:transparent;text-decoration:none;white-space:nowrap;transition:background .15s;}
.okp-link--active{background:rgb(31,90,58);color:#fff;}
