@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-latin-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/fraunces-latin-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   DESIGN TOKENS — Brass palette, Fraunces + Inter
   ============================================================ */
:root {
  /* Palette — WCAG-AA validated */
  --bone:        #F5F1EA;   /* main background */
  --bone-soft:   #FBF8F1;   /* alternating section bg (1-2% lighter shift) */
  --bone-deep:   #F0EBE2;   /* deeper surface for cards/wraps */
  --forest:      #1F2A24;   /* primary text + dark sections */
  --wood:        #8B6F47;   /* secondary accents, borders */
  --brass:       #8C6A2E;   /* primary CTA bg — 4.95:1 on soft-white */
  --brass-warm:  #A8854B;   /* hover state — gilded lift */
  --brass-light: #C9A86A;   /* stat-num on Forest sections */
  --stone:       #6B6A66;   /* eyebrows, captions — AA on Bone Deep */
  --brass-ink:   #876427;   /* small brass text — AA on Bone */
  --soft-white:  #FBF9F5;   /* text on Brass buttons */

  /* Surfaces */
  --line:        rgba(31, 42, 36, 0.10);
  --line-dark:   rgba(245, 241, 234, 0.16);

  /* Type families */
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans:  'Inter', -apple-system, system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter-d:  64px;
  --gutter-m:  24px;
  --section-pad-d: 128px;
  --section-pad-m: 72px;

  /* Framed-artifact shadow — applied to heritage + federal photos */
  --frame-shadow:
    0 1px 0 rgba(31, 42, 36, 0.04),
    0 18px 40px -16px rgba(139, 111, 71, 0.32),
    0 4px 12px -4px rgba(31, 42, 36, 0.18);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
  width: 100%;
  max-width: 100vw;
}
body {
  background: var(--bone);
  color: var(--forest);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100vw;
}
img, video, iframe { max-width: 100%; display: block; }
.responsive-picture { display: contents; }
a { color: inherit; }

::selection {
  background: var(--brass);
  color: var(--soft-white);
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter-d);
}
.section {
  padding: var(--section-pad-d) 0;
  background: var(--bone);
  border-bottom: none;
}
/* Alternating Bone tonality replaces line dividers */
.section:nth-of-type(even) { background: var(--bone-soft); }
.section--dark {
  background: var(--forest);
  color: var(--bone);
}
.section--dark:nth-of-type(even) { background: var(--forest); }

@media (max-width: 900px) {
  .container { padding: 0 var(--gutter-m); }
  .section { padding: var(--section-pad-m) 0; }
}

/* ============================================================
   TYPOGRAPHY — Fraunces variable + Inter
   ============================================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}
.section--dark .eyebrow { color: rgba(245, 241, 234, 0.6); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 550;
  color: var(--forest);
  letter-spacing: 0;          /* CRITICAL: no letter-spacing on Cyrillic serif */
  font-variation-settings: "opsz" 96, "SOFT" 30;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--bone); }

h1 {
  font-size: clamp(48px, 7.5vw, 92px);
  line-height: 1.04;
  font-weight: 380;
  font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 30;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
}
h1 em {
  font-style: italic;
  font-weight: 380;
  font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 50;
  color: inherit;
}
h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  margin-bottom: 28px;
}
h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  margin-bottom: 16px;
}

p { margin-bottom: 16px; max-width: 64ch; }
.lede {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--forest);
  max-width: 60ch;
}
.section--dark p { color: rgba(245, 241, 234, 0.88); }
.section--dark .lede { color: rgba(245, 241, 234, 0.92); }

.cite {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  font-weight: 450;
  font-variation-settings: "opsz" 36, "wght" 450, "SOFT" 20;
  color: var(--forest);
  border-left: 2px solid var(--brass);
  padding: 12px 0 12px 28px;
  max-width: 60ch;
}
.cite--centered {
  border-left: none;
  padding: 0;
  text-align: center;
  margin: 0 auto;
}
.cite-attr {
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  color: var(--stone);
  margin-top: 16px;
  padding-left: 28px;
}
.cite--centered + .cite-attr { padding-left: 0; text-align: center; }
.section--dark .cite { color: var(--bone); }
.section--dark .cite-attr { color: rgba(245, 241, 234, 0.7); }

/* ============================================================
   BUTTONS — radius 0 across the board
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  white-space: nowrap;
  min-height: 48px;
  border-radius: 0;
}
.btn-primary {
  background: var(--brass);
  color: var(--soft-white);
  padding: 16px 28px;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-variant-numeric: lining-nums tabular-nums;
}
.btn-primary:hover { background: var(--brass-warm); }
.btn-primary:focus-visible { outline: 2px solid var(--brass-warm); outline-offset: 3px; }

.btn-secondary {
  background: transparent;
  color: var(--forest);
  padding: 14px 0;
  border-bottom: 1px solid var(--forest);
  min-height: 44px;
}
.btn-secondary:hover { color: var(--brass); border-color: var(--brass); }

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(245, 241, 234, 0.45);
  padding: 14px 22px;
}
.btn-ghost:hover { border-color: var(--bone); background: rgba(245, 241, 234, 0.06); }

.section--dark .btn-secondary { color: var(--bone); border-bottom-color: var(--bone); }
.section--dark .btn-secondary:hover { color: var(--brass-light); border-color: var(--brass-light); }

.cta-row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cta-row.center { justify-content: center; }

.microcopy {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--stone);
  margin-top: 16px;
  max-width: 56ch;
}
.section--dark .microcopy { color: rgba(245, 241, 234, 0.6); }

/* ============================================================
   HEADER + BRAND WORDMARK
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 42, 36, 0.06);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 14px;
  text-decoration: none;
  color: var(--forest);
  line-height: 1;
}
.brand-logo {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  font-variation-settings: "opsz" 48, "wght" 600;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--forest);
}
.brand-tagline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.25;
  border-left: 1px solid rgba(31, 42, 36, 0.18);
  padding-left: 12px;
  height: 40px;
}
.brand:hover .brand-logo { color: var(--brass); }
.brand:hover .brand-tagline { color: var(--brass); border-left-color: var(--brass); }
.brand-tagline span { display: block; }
.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--forest);
  text-decoration: none;
  transition: color 200ms;
  font-weight: 400;
}
.nav a:hover { color: var(--brass); }

.header-phone {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.01em;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--forest);
  text-decoration: none;
  font-variation-settings: "opsz" 24, "wght" 500;
  transition: color 200ms;
}
.header-phone:hover { color: var(--brass); }

@media (max-width: 900px) {
  .header-inner { padding: 9px 0; }
  .nav a:not(.header-phone) { display: none; }
  .header-phone { font-size: 17px; }
  .brand { gap: 10px; }
  .brand-logo { font-size: 32px; }
  .brand-tagline { font-size: 8px; height: 32px; padding-left: 10px; letter-spacing: 0.14em; }
}
@media (max-width: 480px) {
  .brand-logo { font-size: 26px; }
  .brand-tagline { font-size: 7px; height: 26px; padding-left: 8px; }
  .header-phone { font-size: 15px; }
  /* Allow long CTA labels to wrap rather than overflow */
  .btn { white-space: normal; line-height: 1.2; text-align: center; }
}

/* ============================================================
   HERO — responsive poster + one viewport-appropriate video
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--bone);
  background-color: var(--forest);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-poster,
.hero-poster img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video {
  opacity: 0;
  transition: opacity 240ms ease-out;
}
.hero-video.is-ready {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(31, 42, 36, 0.42) 0%,
    rgba(31, 42, 36, 0.58) 100%
  );
  /* лёгкое затемнение без размытия — чёткость картинки сохраняется (правка 25 мая) */
}
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 18% 78%,
    rgba(31, 42, 36, 0.45) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 88px;
  padding-top: 24px;
  max-width: 880px;
}
.hero .eyebrow {
  color: var(--bone);
  opacity: 0.85;
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--bone);
  margin-bottom: 28px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  overflow-wrap: anywhere;
  hyphens: auto;
}
.hero-sub {
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.5;
  font-weight: 350;
  color: var(--bone);
  opacity: 0.95;
  max-width: 620px;
  margin-bottom: 44px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.hero-sub span { display: block; }
.hero-sub span + span { margin-top: 6px; opacity: 0.86; }
.hero .cta-row { margin-top: 0; }
.hero .btn-secondary { color: var(--bone); border-bottom-color: var(--bone); }
.hero .btn-secondary:hover { color: var(--brass-light); border-color: var(--brass-light); }

.hero-tier-strip {
  margin-top: 32px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(245, 241, 234, 0.82);
  max-width: 720px;
  line-height: 1.5;
}
.hero-tier-strip .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--brass-light);
  border-radius: 50%;
  vertical-align: middle;
}
.hero-banks {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(245, 241, 234, 0.72);
  max-width: 720px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-poster img,
  .hero-video { object-position: center; }
}
@media (max-width: 768px) {
  .hero {
    min-height: 580px;
    align-items: flex-start;
  }
  .hero-content { padding-bottom: 32px; padding-top: 100px; }
  .hero h1 {
    font-size: clamp(32px, 8vw, 40px);
    hyphens: manual;
    overflow-wrap: normal;
    margin-bottom: 20px;
  }
  .hero .eyebrow { margin-bottom: 16px; }
  .hero-sub { margin-bottom: 28px; }
  /* Phone CTA в Hero скрыт — sticky-bar внизу его покрывает (правка 25 мая, mobile UX) */
  .hero .cta-row .btn-primary { display: none; }
  .hero-tier-strip { font-size: 12px; gap: 10px; }
}

/* ============================================================
   FOUNDER + HERITAGE PHOTO
   ============================================================ */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
}
.heritage-frame {
  position: relative;
  padding: 18px;
  background: linear-gradient(180deg, var(--bone-soft) 0%, var(--bone) 100%);
  box-shadow: var(--frame-shadow);
  border: 1px solid var(--line);
}
.heritage-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bone-deep);
  overflow: hidden;
}
.heritage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-caption {
  font-size: 14px;
  color: var(--stone);
  margin-top: 18px;
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  max-width: 50ch;
  line-height: 1.5;
}
.photo-caption strong {
  font-weight: 500;
  font-style: normal;
  color: var(--forest);
}

/* ============================================================
   TEAM
   ============================================================ */
.team-section { margin-top: 96px; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; gap: 24px; }
}
.team-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--forest);
  margin-bottom: 0;
}
.team-body { color: var(--forest); }
.team-body p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.team-body p:last-child { margin-bottom: 0; }

/* ============================================================
   ACTIVE CONSTRUCTION SITE
   ============================================================ */
.onsite {
  margin-top: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  background: var(--forest);
  color: var(--bone);
  position: relative;
}
@media (max-width: 900px) {
  .onsite { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
}
.onsite h3 { color: var(--bone); margin-bottom: 16px; }
.onsite p { color: rgba(245, 241, 234, 0.88); }

.onsite-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a221d;
}
.onsite-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.onsite-link {
  color: var(--brass-light);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid var(--brass-light);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 20px;
  transition: color 200ms, border-color 200ms;
}
.onsite-link:hover { color: var(--bone); border-color: var(--bone); }

/* ============================================================
   FEDERAL RECOGNITION
   ============================================================ */
.federal {
  margin-top: 96px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 0;
}
@media (max-width: 900px) {
  .federal { grid-template-columns: 1fr; gap: 40px; }
}
.federal-photo-frame {
  position: relative;
  padding: 18px;
  background: linear-gradient(180deg, var(--bone-soft) 0%, var(--bone) 100%);
  box-shadow: var(--frame-shadow);
  border: 1px solid var(--line);
}
.federal-photo {
  background: var(--bone-deep);
  overflow: hidden;
}
.federal-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.federal h3 { margin-bottom: 20px; }
.federal-body { font-size: 17px; line-height: 1.6; color: var(--forest); }
.heritage-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: var(--stone);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 50ch;
  font-variation-settings: "opsz" 14, "wght" 400;
}

/* ============================================================
   DESIGN APPROACH
   ============================================================ */
.diff-grid {
  max-width: 1080px;
  margin: 0 auto;
}
.diff-intro {
  margin: 0 0 40px;
}
.diff-intro-text { max-width: 72ch; margin-bottom: 32px; }
.diff-paragraph {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--forest);
  margin: 0 0 18px;
  max-width: 72ch;
}
.diff-paragraph:last-child { margin-bottom: 0; }
.diff-contrast {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--forest);
  max-width: 62ch;
  padding: 18px 0 18px 24px;
  border-left: 2px solid var(--wood);
  margin: 28px 0 32px;
}
.diff-contrast strong {
  font-weight: 500;
  color: var(--forest);
}
.diff-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 0;
  max-width: none;
  text-align: left;
}
@media (max-width: 600px) {
  .diff-comparison { grid-template-columns: 1fr; gap: 24px; }
}
.diff-comparison-col {
  padding-left: 20px;
  border-left: 2px solid var(--wood);
}
.diff-comparison-col + .diff-comparison-col {
  border-left-color: var(--brass);
}
.diff-comparison-head {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 14px;
}
.diff-comparison-col + .diff-comparison-col .diff-comparison-head {
  color: var(--brass-ink);
}
.diff-comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.diff-comparison-list li {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--forest);
  padding: 6px 0;
  border-bottom: 1px solid rgba(31, 42, 36, 0.08);
}
.diff-comparison-list li:last-child { border-bottom: none; }

.diff-photo {
  aspect-ratio: 16/9;
  position: relative;
  margin: 48px -64px;
  overflow: hidden;
  background: var(--forest);
}
@media (max-width: 900px) {
  .diff-photo { margin: 32px -24px; aspect-ratio: 4/3; }
}
.diff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.diff-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .diff-bottom { grid-template-columns: 1fr; gap: 24px; }
}
.diff-bottom .diff-paragraph { max-width: none; margin: 0; }

/* ============================================================
   CONSTRUCTION PROCESS
   ============================================================ */
.process-opener {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
  max-width: 60ch;
  margin-bottom: 64px;
  color: var(--forest);
}
.process-list {
  display: grid;
  gap: 56px;
  max-width: 920px;
}
.process-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .process-item { grid-template-columns: 1fr; gap: 14px; }
}
.process-number {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  color: var(--brass);
  line-height: 0.9;
  font-variation-settings: "opsz" 96, "wght" 400;
}
.process-item h3 { margin-bottom: 12px; }
.process-item p { font-size: 17px; color: var(--forest); max-width: 56ch; }

.ladder-metrics {
  margin-top: 28px;
  padding: 28px 32px;
  background: var(--bone-deep);
  border-left: 3px solid var(--brass);
  display: grid;
  gap: 16px;
  max-width: 56ch;
}
.ladder-row { display: flex; gap: 14px; align-items: baseline; }
.ladder-num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 550;
  color: var(--brass);
  font-variation-settings: "opsz" 36, "wght" 550;
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
}
.ladder-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--forest);
}
.ladder-text em {
  color: var(--stone);
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 14, "wght" 400;
  font-size: 13px;
  display: block;
  margin-top: 6px;
  line-height: 1.45;
}

.process-amplifier {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.relief-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .relief-grid { grid-template-columns: 1fr; gap: 28px; }
}
.relief-grid h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-style: italic;
  font-weight: 450;
  font-variation-settings: "opsz" 36, "wght" 450, "SOFT" 50;
  margin-bottom: 18px;
}
.relief-grid p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--forest);
  max-width: 52ch;
}
.relief-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bone-deep);
}
.relief-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process-closer {
  margin: 80px 0 56px;
  display: flex;
  justify-content: center;
}
.process-closer--paced { margin-top: 56px; }
.process-closer .cite {
  max-width: 56ch;
  text-align: center;
  border-left: none;
  padding: 0;
}
.process-closer .cite-attr { padding-left: 0; text-align: center; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section { background: var(--forest); color: var(--bone); }
.portfolio-section h2,
.portfolio-section h3 { color: var(--bone); }
.portfolio-section .eyebrow { color: rgba(245, 241, 234, 0.72); }

.portfolio-cite {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  font-weight: 450;
  font-variation-settings: "opsz" 36, "wght" 450, "SOFT" 20;
  color: var(--bone);
  max-width: 56ch;
  margin: 36px 0 64px;
  opacity: 0.96;
}

.portfolio-grid { display: grid; gap: 80px; }
.portfolio-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.portfolio-card:nth-child(even) {
  grid-template-columns: 1fr 1.3fr;
}
.portfolio-card:nth-child(even) .portfolio-photo {
  grid-column: 2;
  grid-row: 1;
}
.portfolio-card:nth-child(even) .portfolio-body {
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 900px) {
  .portfolio-card,
  .portfolio-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .portfolio-card:nth-child(even) .portfolio-photo,
  .portfolio-card:nth-child(even) .portfolio-body {
    grid-column: 1;
    grid-row: auto;
  }
}

.portfolio-photo {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: #11181a;
}
.portfolio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Low-res cap for Belaya Loshad */
.portfolio-photo.is-lowres {
  max-width: 600px;
  margin: 0 auto;
}
.portfolio-card-meta {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(245, 241, 234, 0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.portfolio-card h3 { margin-bottom: 10px; }
.portfolio-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  color: rgba(245, 241, 234, 0.78);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 24, "wght" 400, "SOFT" 50;
  letter-spacing: 0.01em;
}
.portfolio-body-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.85);
  margin-bottom: 18px;
  max-width: 52ch;
}
.portfolio-anchor-cite {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  font-weight: 450;
  color: var(--bone);
  opacity: 0.92;
  border-left: 2px solid var(--brass-light);
  padding-left: 20px;
  margin: 20px 0 0;
  font-variation-settings: "opsz" 24, "wght" 450, "SOFT" 20;
}

.portfolio-cta {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--line-dark);
}
.portfolio-cta h3 {
  text-align: center;
  margin-bottom: 12px;
}
.portfolio-cta .microcopy {
  margin: 0 auto 32px;
  color: rgba(245, 241, 234, 0.7);
  text-align: center;
  max-width: 56ch;
}

/* Contextual contact block after the portfolio */
.portfolio-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  max-width: 800px;
  margin: 0 auto;
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid rgba(245, 241, 234, 0.16);
}
.portfolio-contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 32px 36px;
}
.portfolio-contact-divider {
  width: 1px;
  height: calc(100% - 48px);
  align-self: center;
  background: rgba(245, 241, 234, 0.16);
}
.portfolio-contact-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin: 0 0 14px;
}
.portfolio-contact-phone,
.portfolio-contact-email {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 241, 234, 0.32);
  transition: color 200ms, border-color 200ms;
  font-variant-numeric: lining-nums tabular-nums;
}
.portfolio-contact-phone { font-size: clamp(24px, 2.4vw, 30px); }
.portfolio-contact-email { font-size: clamp(20px, 2vw, 25px); }
.portfolio-contact-phone:hover,
.portfolio-contact-email:hover {
  color: var(--brass-light);
  border-color: var(--brass-light);
}
.portfolio-contact-note {
  margin: 16px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.58);
}
.portfolio-contact-more {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(245, 241, 234, 0.72);
  text-underline-offset: 5px;
}
.portfolio-contact-more:hover { color: var(--brass-light); }
@media (max-width: 650px) {
  .portfolio-contact { grid-template-columns: 1fr; }
  .portfolio-contact-item { padding: 28px 24px; }
  .portfolio-contact-divider {
    width: calc(100% - 48px);
    height: 1px;
  }
}

.cta-row--process { margin-top: 64px; }

/* ============================================================
   PRICING
   ============================================================ */
.offer-statement {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 24px 0 48px;
  padding: 36px 44px;
  border-left: 3px solid var(--brass);
  background: var(--bone-soft);
}
@media (max-width: 900px) {
  .offer-statement { grid-template-columns: 1fr; gap: 24px; padding: 28px 28px; }
}
.offer-cite-block { display: flex; flex-direction: column; }
.offer-cite {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  font-weight: 450;
  font-variation-settings: "opsz" 36, "wght" 450, "SOFT" 20;
  color: var(--forest);
  margin: 0 0 12px;
  max-width: none;
}
.offer-cite-attr {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--stone);
  margin: 0;
}
.team-line {
  font-size: 16px;
  line-height: 1.55;
  color: var(--forest);
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(31, 42, 36, 0.18);
  max-width: none;
}
@media (max-width: 900px) {
  .team-line { padding-left: 0; padding-top: 20px; border-left: none; border-top: 1px solid rgba(31, 42, 36, 0.10); }
}

.price-table-wrap { margin-bottom: 16px; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.price-table th {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--forest);
}
.price-table th:last-child { padding-right: 0; text-align: right; }
.price-table td {
  padding: 22px 16px 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  color: var(--forest);
  font-variant-numeric: lining-nums tabular-nums;
  vertical-align: middle;
}
.price-table td:last-child { padding-right: 0; text-align: right; }
.price-table td:first-child { font-weight: 500; }
.price-table tr:last-child td { border-bottom: none; }

@media (max-width: 650px) {
  .price-table {
    display: block;
    min-width: 0;
  }
  .price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .price-table tbody {
    display: grid;
    gap: 14px;
  }
  .price-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px 20px;
    padding: 20px 18px;
    background: var(--bone-soft);
    border: 1px solid var(--line);
  }
  .price-table td,
  .price-table td:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    min-width: 0;
    padding: 0;
    border: 0;
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
  }
  .price-table td::before {
    content: attr(data-label);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
  }
}

.status-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--brass);
  color: var(--soft-white);
  padding: 5px 10px;
  border-radius: 0;
  white-space: nowrap;
}
.status-quiet {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.02em;
}

.price-formula {
  font-size: 14px;
  color: var(--stone);
  margin: 24px 0 16px;
  font-style: italic;
  max-width: 60ch;
  font-family: var(--serif);
  font-variation-settings: "opsz" 14, "wght" 400;
}
.price-formula strong {
  font-style: normal;
  font-weight: 500;
  color: var(--forest);
  font-family: var(--sans);
  font-variant-numeric: lining-nums tabular-nums;
}
.price-disclaimer {
  font-size: 14px;
  color: var(--stone);
  max-width: 64ch;
  margin: 16px 0 48px;
  line-height: 1.55;
}

.offer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin: 0 0 48px;
}
@media (max-width: 900px) {
  .offer-bottom-grid { grid-template-columns: 1fr; gap: 28px; }
}
.banks-badge {
  background: var(--bone-deep);
  border: 1px solid var(--line);
  padding: 28px 32px;
  border-left: 3px solid var(--brass);
  max-width: none;
  margin: 0;
}
.banks-badge-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--forest);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.banks-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--brass);
  color: var(--soft-white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.banks-list {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--forest);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 24, "wght" 500;
  font-weight: 500;
}
.banks-line {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--stone);
  line-height: 1.5;
}

.track-record {
  background: var(--soft-white);
  padding: 28px 32px;
  border-left: 3px solid var(--brass);
  max-width: none;
  margin: 0 0 40px;
}
.track-record--solo {
  max-width: 72ch;
  margin: 0 auto 40px;
}
.track-record p {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 17px;
  line-height: 1.6;
}
.track-record p:last-child { margin-bottom: 0; }

/* ============================================================
   FREQUENTLY ASKED QUESTIONS
   ============================================================ */
.section--faq { background: var(--bone-deep); }
.faq-list {
  display: grid;
  gap: 32px;
  margin-top: 40px;
  max-width: 960px;
}
.faq-list > div {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.faq-list > div:last-child { border-bottom: none; padding-bottom: 0; }
.faq-list dt {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.25;
  font-variation-settings: "opsz" 36, "wght" 500, "SOFT" 30;
}
.faq-list dd {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--forest);
  margin: 0;
}
@media (max-width: 768px) {
  .faq-list > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ============================================================
   FINAL CALL TO ACTION
   ============================================================ */
.cta-final-section {
  background: var(--forest);
  color: var(--bone);
  text-align: center;
  padding: 128px 0;
}
.cta-final-section h2 { color: var(--bone); margin-bottom: 32px; }
.cta-final-section .eyebrow { color: rgba(245, 241, 234, 0.65); }

.cta-final-anchor {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.45;
  font-weight: 450;
  color: var(--bone);
  opacity: 0.96;
  max-width: 56ch;
  margin: 0 auto 16px;
  font-variation-settings: "opsz" 36, "wght" 450, "SOFT" 20;
}
.cta-final-attr {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(245, 241, 234, 0.65);
  margin: 0 auto 56px;
}

.cta-final-section .cta-row { justify-content: center; }
.cta-final-section .btn-secondary {
  color: var(--bone);
  border-bottom-color: var(--bone);
}
.cta-final-section .btn-secondary:hover {
  color: var(--brass-light);
  border-color: var(--brass-light);
}
.cta-microcopy {
  font-size: 14px;
  color: rgba(245, 241, 234, 0.6);
  letter-spacing: 0.02em;
  margin: 36px auto 0;
  max-width: 56ch;
}

/* ============================================================
   CONTACTS
   ============================================================ */
.contacts-section { padding-bottom: 96px; }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .contacts-grid { grid-template-columns: 1fr; gap: 48px; }
}
.contact-block + .contact-block { margin-top: 48px; }
.contact-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
.contact-line {
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 8px;
  font-variant-numeric: lining-nums tabular-nums;
}
.contact-line.phone {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  font-variation-settings: "opsz" 24, "wght" 500;
  letter-spacing: 0.01em;
}
.contact-line a {
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 200ms, border-color 200ms;
}
.contact-line a:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}
.contact-meet {
  font-size: 16px;
  color: var(--forest);
  line-height: 1.6;
  max-width: 42ch;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bone-deep);
  color: var(--forest);
  padding: 80px 0 40px;
  font-family: var(--sans);
  text-align: center;
  border-top: 1px solid rgba(31, 42, 36, 0.08);
}
.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 6.4vw, 72px);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.05;
  margin-bottom: 56px;
  letter-spacing: 0;
  font-variation-settings: "opsz" 144, "wght" 400, "SOFT" 50;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  text-align: left;
  padding-top: 40px;
  border-top: 1px solid rgba(31, 42, 36, 0.10);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-col-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
.footer-col-line {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 450;
  color: var(--forest);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 24, "wght" 450, "SOFT" 30;
  letter-spacing: 0.01em;
  line-height: 1.45;
}
.footer-col-line.phone {
  font-weight: 500;
  font-size: 22px;
  font-variation-settings: "opsz" 24, "wght" 500;
  font-variant-numeric: lining-nums tabular-nums;
}
.footer-col-line a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 42, 36, 0.20);
  transition: color 200ms, border-color 200ms;
}
.footer-col-line a:hover { color: var(--brass); border-color: var(--brass); }
.footer-col-meta {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--stone);
  line-height: 1.55;
  max-width: 36ch;
  margin-top: 12px;
}
.footer-legal {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--stone);
  margin: 32px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(31, 42, 36, 0.10);
  line-height: 1.6;
  text-align: center;
  max-width: none;
}
.footer-legal .sep { color: rgba(31, 42, 36, 0.25); margin: 0 10px; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
}
.sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  text-align: center;
  padding: 14px 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  min-height: 52px;
  transition: background 200ms;
}
.sticky-bar .sticky-call {
  background: var(--brass);
  color: var(--soft-white);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  font-variation-settings: "opsz" 24, "wght" 500;
  font-variant-numeric: lining-nums tabular-nums;
}
.sticky-bar .sticky-call:hover,
.sticky-bar .sticky-call:active { background: var(--brass-warm); }
.sticky-bar .sticky-tg {
  background: var(--forest);
  color: var(--bone);
  border-top: 1px solid rgba(245, 241, 234, 0.12);
}
.sticky-bar .sticky-tg:hover,
.sticky-bar .sticky-tg:active { background: #2a3530; }
.sticky-bar .icon { font-size: 14px; }
@media (max-width: 768px) {
  .sticky-bar { display: flex; }
  body { padding-bottom: 60px; }
  .cta-final-section { padding-bottom: 96px; }
}

/* ============================================================
   FADE-IN ON SCROLL (light)
   ============================================================ */
.fade-in {
  opacity: 1;
  transform: none;
}
.motion-ready .fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.motion-ready .fade-in.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .motion-ready .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
@media print {
  .motion-ready .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   PROOF STRIP — transitional trust-signal band (between Hero & Portfolio)
   ============================================================ */
.proof-strip {
  background: var(--bone-deep);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
}
.proof-strip-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1 1 0;
  min-width: 0;
}
.proof-strip-num {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.1;
  font-weight: 500;
  color: var(--forest);
  font-variation-settings: "opsz" 36, "wght" 500, "SOFT" 30;
  letter-spacing: -0.005em;
  font-variant-numeric: lining-nums tabular-nums;
}
.proof-strip-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.45;
}
.proof-strip-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
  flex: 0 0 auto;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .proof-strip { padding: 32px 0; }
  .proof-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
  .proof-strip-sep { display: none; }
}
@media (max-width: 560px) {
  .proof-strip-inner { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================================
   IMAGE STATUS LABELS — built · в работе · визуализация · проект
   ============================================================ */
.img-status {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(31, 42, 36, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  z-index: 2;
  pointer-events: none;
}
.img-status.is-light {
  background: rgba(245, 241, 234, 0.92);
  color: var(--forest);
}

/* ============================================================
   TEAM ROLES
   ============================================================ */
.team-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  margin-top: 32px;
}
.team-roles > div {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.team-roles dt {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.25;
  font-variation-settings: "opsz" 24, "wght" 500, "SOFT" 30;
  letter-spacing: -0.002em;
}
.team-roles dd {
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.55;
  color: var(--forest);
  margin: 0;
  max-width: 50ch;
}
.team-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--stone);
  margin-top: 28px;
  font-variation-settings: "opsz" 24, "wght" 400, "SOFT" 50;
}
@media (max-width: 768px) {
  .team-roles { grid-template-columns: 1fr; gap: 0; }
  .team-roles > div { padding: 18px 0; }
}

/* ============================================================
   CONTROL SUB-BLOCK — "Как держим стройку под контролем" (Process)
   ============================================================ */
.control-block {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.control-block h3 {
  margin-bottom: 36px;
  max-width: 32ch;
}
.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.control-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.control-item:nth-last-child(-n+2) { border-bottom: none; }
.control-item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.25;
  color: var(--forest);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 24, "wght" 500, "SOFT" 30;
  letter-spacing: -0.002em;
}
.control-item p {
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.55;
  color: var(--forest);
  margin: 0;
  max-width: 52ch;
}
@media (max-width: 768px) {
  .control-grid { grid-template-columns: 1fr; gap: 0; }
  .control-item { border-bottom: 1px solid var(--line); }
  .control-item:last-child { border-bottom: none; }
}

/* ============================================================
   PRICE — type column + cost-drivers paragraph
   ============================================================ */
.price-type {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--stone);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.price-cost-drivers {
  font-size: 16px;
  line-height: 1.6;
  color: var(--forest);
  max-width: 64ch;
  margin: 24px 0 28px;
}
.price-disclaimer-top {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--forest);
  max-width: 72ch;
  margin: 0 0 36px;
  line-height: 1.6;
  font-weight: 400;
}
.price-disclaimer-top strong {
  font-weight: 600;
  color: var(--brass-ink);
  font-variant-numeric: lining-nums tabular-nums;
}

/* ============================================================
   FOCUS STATES
   ============================================================ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
