/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }

/* === DESIGN TOKENS === */
:root {
  --paper:       #F2EDE3;
  --paper-light: #FAF7F0;
  --ink:         #1A1716;
  --graphite:    #6B6660;
  --line:        #D8D2C6;
  --green-oxide: #355E3B;
  --rust:        #B0451E;
  --brass:       #9B7A3D;

  --font: 'Montserrat', system-ui, sans-serif;

  --container: 1100px;
  --gap:       20px;
}

/* === GLOBAL === */
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

a { color: inherit; }
svg { display: block; }

/* === CONTAINER === */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gap);
  padding-right: var(--gap);
}

/* === TYPOGRAPHY === */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  line-height: 1.4;
}

.eyebrow-rust {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  line-height: 1.4;
}

h1.display {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2.section-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
}

.body-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
}

.meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--graphite);
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  height: 56px;
}

.header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  clip-path: polygon(50% 8%, 92% 92%, 8% 92%);
  flex-shrink: 0;
}

.logo-mark span { margin-top: 5px; }

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.logo-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  line-height: 1;
  margin-top: 3px;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Desktop nav — hidden on mobile */
.header-nav {
  display: none;
  gap: 28px;
  align-items: center;
}

.header-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.header-nav a:hover { border-bottom-color: var(--ink); }
.header-nav a.nav-active { border-bottom-color: var(--ink); border-bottom-width: 2px; padding-bottom: 3px; }

.header-nav a.nav-reviews { color: var(--green-oxide); }

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0;
}

.icon-btn svg { width: 16px; height: 16px; }

/* === SECTION === */
.section { padding: 56px 0; }

.section-light { background: var(--paper-light); }

.section-marker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--graphite);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-marker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--line);
  flex-shrink: 0;
}

.section-marker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--graphite);
  text-transform: uppercase;
}

/* === PHOTO PLACEHOLDERS === */
.photo {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1; /* умолчание — квадрат; переопределяется модификаторами */
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 8px
    );
}

.photo-3-2  { aspect-ratio: 3/2; }
.photo-4-3  { aspect-ratio: 4/3; }
.photo-4-5  { aspect-ratio: 4/5; }
.photo-1-1  { aspect-ratio: 1/1; }
.photo-16-9 { aspect-ratio: 16/9; }

.photo-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.35);
  text-align: center;
  line-height: 1.7;
  padding: 0 20px;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-caption {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
  line-height: 1.5;
  margin-top: 10px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-primary   { background: var(--ink); color: var(--paper); }
.btn-primary:hover   { background: transparent; color: var(--ink); }
.btn-secondary { background: transparent; color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-block { display: flex; width: 100%; }

.text-link {
  color: var(--green-oxide);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover { color: var(--ink); }

/* === HERO === */
.hero { padding: 40px 0 56px; }

.hero .wrap { display: flex; flex-direction: column; gap: 0; }

.hero-content { margin-bottom: 32px; }

.hero-eyebrow { margin-bottom: 20px; }

.hero h1 { margin-bottom: 20px; }

.hero-sub {
  color: var(--graphite);
  margin-top: 20px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-visual { width: 100%; }

/* === NUMBERS === */
.numbers {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.numbers .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
}

.number-cell { text-align: center; }

.number-big {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.number-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
}

/* === TEAM === */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 36px;
}

.team-card .photo { margin-bottom: 16px; }

.team-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 10px;
}

.team-bio { font-size: 15px; line-height: 1.65; }

/* === REVIEWS === */
.reviews-statement {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.reviews-text { margin-bottom: 20px; }

.review-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 28px 20px;
  margin-bottom: 24px;
  text-align: center;
}

.review-rating {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.review-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 20px;
}

.reviews-extra {
  font-size: 14px;
  font-weight: 400;
  color: var(--graphite);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* === PRICES === */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.price-row:first-of-type { border-top: 1px solid var(--line); }

.price-label {
  font-size: 15px;
  font-weight: 400;
  flex: 1;
  line-height: 1.4;
}

.price-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--graphite);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.service-card { text-decoration: none; color: var(--ink); }
.service-card .photo { margin-bottom: 10px; }

.service-number {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--graphite);
  margin-bottom: 3px;
  text-transform: uppercase;
}

.service-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* === PRINCIPLES === */
.principles-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 36px;
}

.principle-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--graphite);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.principle-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 10px;
}

.principle-text { font-size: 15px; line-height: 1.65; }

/* === WARNING BLOCK === */
.warning-block {
  background: var(--paper-light);
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* === REPAIR TRACKING === */
.tracking-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 20px;
  margin: 28px 0;
}

.tracking-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tracking-row {
  display: flex;
  gap: 12px;
  margin-bottom: 6px;
}

.tracking-row:last-child { margin-bottom: 0; }

.tracking-row strong {
  font-size: 10px;
  font-weight: 600;
  color: var(--graphite);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 80px;
  padding-top: 3px;
  flex-shrink: 0;
}

.tracking-row span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

/* === EQUALITY BLOCK === */
.equality-quote {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  text-align: center;
}

.equality-text p { margin-bottom: 14px; }

.equality-call {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.7;
}

/* === TIMELINE === */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.timeline-point {
  position: relative;
  padding: 14px 0;
}

.timeline-point::before {
  content: '';
  position: absolute;
  left: -23px;
  top: 19px;
  width: 11px;
  height: 11px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.timeline-year {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-event {
  font-size: 14px;
  font-weight: 400;
  color: var(--graphite);
  margin-top: 3px;
  line-height: 1.55;
}

/* === BLOG === */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 32px;
}

.blog-card { text-decoration: none; color: var(--ink); display: block; }
.blog-card .photo { margin-bottom: 14px; }

.blog-meta { margin-bottom: 8px; }

.blog-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 8px;
}

.blog-lead {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--graphite);
}

/* === CONTACTS === */
.contact-address {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.contact-hours {
  font-size: 12px;
  font-weight: 500;
  color: var(--graphite);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.contact-phone {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact-messengers {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.messenger-btn {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--ink);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.messenger-btn:hover { background: var(--ink); color: var(--paper); }

.map-placeholder {
  aspect-ratio: 16/10;
  background: var(--paper-light);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.closing-line {
  font-style: italic;
  font-weight: 400;
  text-align: center;
  color: var(--graphite);
  margin-top: 32px;
  line-height: 1.65;
}

/* === FOOTER === */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0 32px;
}

.footer .logo-mark {
  background: var(--paper);
  color: var(--ink);
  width: 48px;
  height: 48px;
  font-size: 22px;
}

.footer .logo-name { color: var(--paper); font-size: 14px; }
.footer .logo-tag  { color: rgba(242,237,227,0.6); font-size: 10px; }

.footer-lockup { margin-bottom: 36px; }

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
  margin-bottom: 36px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.5);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 4px 0;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.footer-col a:hover { opacity: 1; }

.footer-stamp {
  border-top: 1px solid rgba(242,237,227,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-stamp-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.5);
  line-height: 1.7;
}

.stamp {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(242,237,227,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.6);
  text-align: center;
  line-height: 1.4;
  transform: rotate(-8deg);
}

.stamp-g {
  font-size: 18px;
  font-weight: 800;
  color: rgba(242,237,227,0.7);
  margin: 2px 0;
}

/* === STICKY BAR (mobile) === */
.sticky-bar {
  position: sticky;
  bottom: 0;
  background: var(--paper);
  border-top: 1px solid var(--ink);
  display: flex;
  z-index: 50;
}

.sticky-btn {
  flex: 1;
  padding: 13px 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  transition: background 0.1s;
}

.sticky-btn:last-child { border-right: none; }
.sticky-btn:active { background: var(--ink); color: var(--paper); }
.sticky-btn svg { width: 14px; height: 14px; }

.sticky-btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border-top: 1.5px solid var(--ink);
}

/* ============================================================
   SELF-DIAGNOSTIC (хаб услуг — «что у вас сломалось»)
   ============================================================ */
.diagnostic-list {
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.diagnostic-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.1s;
}

.diagnostic-symptom {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.diagnostic-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-oxide);
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
  padding-top: 2px;
}

.diagnostic-link::after { content: ' →'; }

.diagnostic-item:hover .diagnostic-link { color: var(--ink); }
.diagnostic-item:hover .diagnostic-symptom { color: var(--green-oxide); }

.diagnostic-note {
  font-style: italic;
  font-size: 14px;
  color: var(--graphite);
  margin-top: 20px;
  line-height: 1.65;
}

/* ============================================================
   SERVICE CARD — описание (используется на хабе услуг)
   ============================================================ */
.service-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--graphite);
  margin-top: 4px;
}

/* ============================================================
   SERVICE CTA CARD (восьмая карточка в сетке хаба)
   ============================================================ */
.service-cta-card {
  border: 1px solid var(--ink);
  padding: 16px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  min-height: 200px;
  transition: background 0.15s, color 0.15s;
}

.service-cta-card:hover {
  background: var(--ink);
  color: var(--paper);
}

.service-cta-card .service-number { margin-bottom: 8px; }

.service-cta-card .cta-card-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

.service-cta-card .cta-card-phone {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================================
   PRINCIPLE ITEM (хаб услуг — строчный вариант с flex)
   ============================================================ */
.principle-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* ============================================================
   WHAT WE DON'T DO
   ============================================================ */
.not-list {
  border-top: 1px solid var(--ink);
  margin-top: 24px;
}

.not-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 400;
}

.not-item .mark {
  font-size: 11px;
  font-weight: 600;
  color: var(--rust);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.not-redirect {
  font-style: italic;
  font-size: 14px;
  color: var(--graphite);
  margin-top: 20px;
  line-height: 1.65;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
}

.breadcrumbs a {
  color: var(--graphite);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumbs a:hover { color: var(--ink); }

.breadcrumbs .sep {
  margin: 0 8px;
  color: var(--line);
}

.breadcrumbs .current { color: var(--ink); }

/* ============================================================
   SERVICE LIST (страница услуги — список работ)
   ============================================================ */
.group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 32px 0 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
}

.service-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.service-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-item-header {
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
  align-items: baseline;
}

.service-item-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--graphite);
  flex-shrink: 0;
  min-width: 28px;
  letter-spacing: 0.04em;
}

.service-item-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-item-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--graphite);
  padding-left: 42px;
}

/* ============================================================
   COMPLEX CASES BLOCK
   ============================================================ */
.complex-block {
  background: var(--paper-light);
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.complex-quote {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 24px;
}

.complex-text p { margin-bottom: 14px; }

.complex-photo { margin: 28px 0 12px; }

/* ============================================================
   BRANDS
   ============================================================ */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.brand-tag {
  border: 1px solid var(--ink);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ============================================================
   HOW WE WORK — STEPS
   ============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  line-height: 0.9;
  min-width: 50px;
  padding-top: 4px;
  letter-spacing: -0.02em;
}

.step-content { flex: 1; }

.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.step-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--graphite);
}

/* ============================================================
   PRICE NOTE
   ============================================================ */
.price-note {
  font-style: italic;
  font-size: 14px;
  color: var(--graphite);
  margin-top: 24px;
  line-height: 1.65;
}

/* ============================================================
   WARRANTY CARD
   ============================================================ */
.warranty-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 4px 20px;
  margin-top: 28px;
}

.warranty-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.warranty-row:last-child { border-bottom: none; }

.warranty-row strong {
  font-size: 11px;
  font-weight: 600;
  color: var(--graphite);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.warranty-row span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

/* ============================================================
   RELATED ARTICLES (блок «По теме» на странице услуги)
   ============================================================ */
.related-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}

.related-card {
  text-decoration: none;
  color: var(--ink);
  display: block;
}

.related-card .photo { margin-bottom: 12px; }

.related-meta { margin-bottom: 6px; }

.related-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ============================================================
   FINAL CTA (тёмный блок в конце страницы услуги)
   ============================================================ */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.final-cta p {
  color: rgba(242, 237, 227, 0.7);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.final-cta .cta-address {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.final-cta .cta-hours {
  font-size: 12px;
  font-weight: 500;
  color: rgba(242, 237, 227, 0.6);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.final-cta .cta-phone {
  font-size: 26px;
  font-weight: 800;
  color: var(--paper);
  text-decoration: none;
  display: block;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.final-cta .btn-inv {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.final-cta .btn-inv:hover {
  background: transparent;
  color: var(--paper);
}

/* ============================================================
   ОТЗЫВЫ — компоненты страницы
   ============================================================ */

/* Карточка рейтинга */
.rating-card {
  background: var(--paper-light);
  border: 1px solid var(--ink);
  padding: 36px 24px;
  text-align: center;
}

.rating-stars {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.rating-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 16px;
}

.rating-badge {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Виджет Яндекс.Карт */
.widget-frame-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.widget-frame-header .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--rust);
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.widget-container {
  width: 100%;
  height: 680px;
  border: 1px solid var(--ink);
  border-top: none;
  background: #fff;
  overflow: hidden;
}

.widget-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.widget-source-line {
  text-align: center;
  padding: 11px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
  border: 1px solid var(--ink);
  border-top: none;
}

.widget-source-line a {
  color: var(--green-oxide);
  text-decoration: none;
}

.widget-source-line a:hover { color: var(--ink); }

/* Блок одной звезды */
.one-star-callout {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.one-star-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}

.one-star-quote {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 2px solid var(--rust);
}

@media (min-width: 768px) {
  .rating-card { padding: 48px 40px; }
  .rating-stars { font-size: 52px; }
  .widget-container { height: 780px; }
}

/* ============================================================
   О НАС — компоненты страницы
   ============================================================ */

/* Полноширинное фото в хиро (О нас) */
.hero-about-photo { margin-top: 36px; }



/* Выделяющий тезис (не франшиза) */
.differentiator-statement {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.differentiator-statement em { font-style: italic; color: var(--green-oxide); }

/* Цитата с зелёной левой полосой */
.section-quote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  padding: 4px 0 4px 20px;
  border-left: 2px solid var(--green-oxide);
  color: var(--ink);
  margin: 28px 0;
}

/* Timeline — заголовок события */
.timeline-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 4px;
}

/* История — блоки текста */
.history-block { margin-bottom: 40px; }
.history-block:last-child { margin-bottom: 0; }
.history-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 14px;
  margin-top: 6px;
}

/* Расширенная карточка команды (О нас) */
.about-team-list {
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.about-team-card {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-team-photo { max-width: 220px; flex-shrink: 0; }
.team-quote {
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  padding: 4px 0 4px 16px;
  border-left: 2px solid var(--green-oxide);
  margin-top: 20px;
}
.team-quote-attr {
  display: block;
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-top: 8px;
}

/* Сложные периоды */
.hard-times-list { margin-top: 32px; }
.hard-times-card {
  border-left: 2px solid var(--rust);
  padding: 4px 0 4px 20px;
  margin-bottom: 28px;
}
.hard-times-card:last-child { margin-bottom: 0; }
.hard-times-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.hard-times-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--graphite);
}

/* Логотип-печать (финальный блок О нас) */
.stamp-closer {
  padding: 72px 0;
  background: var(--paper-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.big-stamp {
  width: 180px;
  height: 180px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto 32px;
  transform: rotate(-6deg);
  position: relative;
}
.big-stamp::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.big-stamp-g {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin: 4px 0;
  letter-spacing: -0.02em;
}
.stamp-closer-text {
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--graphite);
  max-width: 340px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-team-card { flex-direction: row; gap: 56px; align-items: flex-start; }
  .about-team-photo { width: 220px; }
  .about-team-content { flex: 1; }
}

/* ============================================================
   MOBILE NAV (бургер-меню)
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  z-index: 99;
  flex-direction: column;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
  padding: 15px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background 0.1s, color 0.1s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active { background: var(--ink); color: var(--paper); }
.mobile-nav a.nav-reviews { color: var(--green-oxide); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 22, 0.45);
  z-index: 98;
  cursor: pointer;
}

.nav-overlay.is-open { display: block; }

/* ============================================================
   CHISTKA — симптомы и расписание профилактики
   ============================================================ */
.symptom-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.symptom-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.symptom-icon {
  font-size: 16px;
  font-weight: 700;
  color: var(--rust);
  flex-shrink: 0;
  width: 20px;
  margin-top: 2px;
}

.symptom-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.symptom-item p {
  font-size: 14px;
  color: var(--graphite);
  margin: 0;
  line-height: 1.55;
}

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.schedule-item {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-period {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-oxide);
  flex: 0 0 160px;
  letter-spacing: 0.01em;
}

.schedule-desc {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .symptom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
  .symptom-item { border-right: none; }
}

/* ============================================================
   TABLET — 768px+
   ============================================================ */
@media (min-width: 768px) {
  :root { --gap: 32px; }

  h1.display       { font-size: 44px; }
  h2.section-title { font-size: 30px; }
  .equality-quote  { font-size: 36px; }
  .number-big      { font-size: 34px; }

  .numbers .wrap { grid-template-columns: repeat(4, 1fr); }

  .team-list { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }

  .blog-list { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }

  .sticky-bar { display: none; }

  .header-nav { display: flex; }
  .icon-btn.mobile-only { display: none; }
  .mobile-nav, .nav-overlay { display: none !important; }

  .contacts-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Связанные статьи — 3 колонки */
  .related-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  /* Шаги — 2 колонки */
  .steps { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 48px; }

  /* Самодиагностика — 2 колонки */
  .diagnostic-list { display: grid; grid-template-columns: 1fr 1fr; }
  .diagnostic-item { border-right: none; }
  .diagnostic-item:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; }
  .diagnostic-item:nth-child(even) { padding-left: 24px; }
}

/* ============================================================
   DESKTOP — 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  :root { --gap: 40px; }

  h1.display { font-size: 54px; }

  .hero { padding: 64px 0 72px; }

  .hero .wrap { flex-direction: row; align-items: flex-start; gap: 60px; }

  .hero-content { flex: 1; margin-bottom: 0; padding-top: 8px; }

  .hero-visual { flex: 0 0 46%; }

  .team-list { grid-template-columns: repeat(3, 1fr); }

  .principles-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px; }

  .footer-cols { grid-template-columns: repeat(4, 1fr); }
  .footer-cols .footer-col:first-child { grid-column: span 2; }
}

/* ============================================================
   LARGE — 1280px+
   ============================================================ */
@media (min-width: 1280px) {
  h1.display { font-size: 60px; }
}

/* ============================================================
   ЦЕНЫ — якорная навигация
   ============================================================ */
.anchor-nav {
  position: sticky;
  top: 56px;
  z-index: 90;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  border-top: 1px solid var(--line);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.anchor-nav::-webkit-scrollbar { display: none; }

.anchor-nav-inner {
  display: inline-flex;
  gap: 0;
  padding: 0;
}

.anchor-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  transition: background 0.1s;
}
.anchor-link:last-child { border-right: none; }
.anchor-link:hover { background: var(--paper-light); }
.anchor-link .num {
  font-size: 9px;
  color: var(--graphite);
  font-weight: 500;
}

/* ============================================================
   ЦЕНЫ — секции категорий
   ============================================================ */
.category-section {
  padding: 48px 0;
  scroll-margin-top: 112px; /* sticky header (56px) + anchor nav (~56px) */
}
.category-section.alt { background: var(--paper-light); }

.category-marker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--graphite);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-marker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--line);
  flex-shrink: 0;
}
.category-marker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.category-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.category-intro {
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 28px;
}

.price-table {
  border-top: 1px solid var(--ink);
  margin-bottom: 24px;
}



.price-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.price-value.free { color: var(--green-oxide); }

.category-note {
  border-left: 2px solid var(--ink);
  padding: 14px 16px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}

.category-note strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  display: block;
  margin-bottom: 6px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-oxide);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 8px;
  transition: color 0.15s;
}
.category-link:hover { color: var(--ink); }

.category-footer {
  margin-top: 32px;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  color: var(--graphite);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   ЦЕНЫ — блок методологии (тёмный фон)
   ============================================================ */
.methodology {
  padding: 56px 0;
  background: var(--ink);
  color: var(--paper);
}

.methodology .eyebrow { color: rgba(242, 237, 227, 0.6); margin-bottom: 18px; }

.methodology .section-title {
  color: var(--paper);
  margin-bottom: 14px;
}

.methodology-lead {
  color: rgba(242, 237, 227, 0.85);
  font-size: 15px;
  line-height: 1.55;
}

.methodology-list { margin-top: 28px; }

.methodology-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(242, 237, 227, 0.15);
}
.methodology-item:last-child { border-bottom: none; }

.methodology-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(242, 237, 227, 0.6);
  margin-bottom: 8px;
}

.methodology-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--paper);
}

.methodology-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(242, 237, 227, 0.85);
}

/* ============================================================
   ЦЕНЫ — финальный CTA (светлый)
   ============================================================ */
.final-cta-light {
  background: var(--paper-light);
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}

.final-cta-light h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.final-cta-light p {
  color: var(--graphite);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.final-cta-light .cta-phone {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.updated-stamp {
  margin-top: 32px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
}

/* ============================================================
   КОНТАКТЫ — компоненты страницы
   ============================================================ */

/* Карточка адреса */
.address-card {
  border: 1px solid var(--ink);
  background: var(--paper-light);
  padding: 36px 24px;
  margin-bottom: 16px;
}

.address-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 14px;
}

.address-line {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 28px;
}

.hours-block {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.hours-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 500;
}

.hours-row .day { color: var(--ink); }
.hours-row .time { color: var(--graphite); }
.hours-row.closed .time { color: var(--rust); }

/* Карточка телефона (тёмный фон) */
.phone-card {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 24px;
  margin-bottom: 16px;
  text-align: center;
}

.phone-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.6);
  margin-bottom: 14px;
}

.phone-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--paper);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.phone-number:hover { opacity: 0.8; }

.phone-meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.5);
}

/* Карта */
.map-frame-header {
  background: var(--ink);
  color: var(--paper);
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-iframe-wrap {
  width: 100%;
  border: 1px solid var(--ink);
  border-top: none;
  background: var(--paper-light);
  overflow: hidden;
}

.map-iframe-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.map-ext-link {
  text-align: center;
  padding: 11px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
  border: 1px solid var(--ink);
  border-top: none;
}

.map-ext-link a {
  color: var(--green-oxide);
  text-decoration: none;
}
.map-ext-link a:hover { color: var(--ink); }

/* Как добраться */
.directions-list {
  margin-top: 28px;
}

.direction-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.direction-item:first-child { border-top: 1px solid var(--line); }

.direction-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.direction-icon {
  width: 16px;
  height: 16px;
  color: var(--green-oxide);
  flex-shrink: 0;
}

.direction-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.direction-note {
  font-style: italic;
  font-size: 13px;
  color: var(--graphite);
  margin-top: 6px;
}

/* Чего у нас нет */
.nothing-list {
  border-top: 1px solid var(--ink);
  margin-top: 28px;
}

.nothing-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.4;
}

.nothing-x {
  font-size: 14px;
  font-weight: 700;
  color: var(--rust);
  flex-shrink: 0;
  min-width: 20px;
}

.nothing-good {
  background: var(--paper-light);
  border-left: 2px solid var(--green-oxide);
  padding: 16px 18px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.55;
}

/* Закрывающий блок с печатью */
.closing-section {
  padding: 64px 0;
  text-align: center;
  background: var(--paper-light);
  border-top: 1px solid var(--line);
}

.closing-stamp {
  width: 140px;
  height: 140px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  line-height: 1.5;
  margin: 0 auto 28px;
  transform: rotate(-4deg);
  position: relative;
}

.closing-stamp::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.closing-stamp-g {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin: 4px 0;
  letter-spacing: -0.02em;
}

.closing-text {
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 300px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .address-card { padding: 44px 36px; }
  .address-line { font-size: 32px; }
  .map-iframe-wrap iframe { height: 480px; }
}

/* ============================================================
   ЯКОРНАЯ НАВИГАЦИЯ — центрирование на десктопе
   ============================================================ */
@media (min-width: 768px) {
  /* Якорная навигация — центрируем на десктопе */
  .anchor-nav {
    display: flex;
    justify-content: center;
    overflow-x: visible;
  }
  .anchor-nav-inner { display: flex; }
}

@media (min-width: 1024px) {
  .price-row { padding: 16px 0; }
  .price-label { font-size: 16px; }
  .methodology-item { display: grid; grid-template-columns: 48px 1fr; column-gap: 16px; align-items: start; }
  .methodology-num { grid-row: span 3; padding-top: 2px; }
}

/* ============================================================
   УТИЛИТЫ — заменяют inline-стили
   ============================================================ */

.body-text--tight { margin-bottom: 8px; }
.body-text--lead { margin-bottom: 28px; }
.body-text--gap { margin-top: 14px; }

.eyebrow--spaced { margin-bottom: 14px; }

.spacer-28 { margin-top: 28px; }
.spacer-32 { margin-top: 32px; }
.spacer-32-center { margin-top: 32px; text-align: center; }

.note-small { margin-top: 20px; font-size: 13px; color: var(--graphite); }

.section--no-top { padding-top: 0; }
.section--no-pad { padding-top: 0; padding-bottom: 0; }
.section--compact { padding-top: 16px; padding-bottom: 32px; }
.section--top-32 { padding-top: 32px; }
.section--divided { border-top: 1px solid var(--line); }

.body-text--italic { font-style: italic; }

.team-bio--gap { margin-top: 10px; }

.stamp { font-size: 9px; }
.stamp--wide { font-size: 9px; letter-spacing: 0.2em; }
.stamp--medium { font-size: 9px; letter-spacing: 0.12em; }

.note-green { color: var(--green-oxide); }

.eyebrow--graphite { color: var(--graphite); }
.section--bottom-sm { padding-bottom: 8px; }

.construction {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--paper);
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}

.construction h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  margin: 0;
}

.construction p {
  font-size: 22px;
  color: var(--graphite);
  margin: 0;
}

.construction-img {
  max-width: 420px;
  width: 100%;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .construction h1 { font-size: 96px; }
  .construction p { font-size: 28px; }
  .construction-img { max-width: 520px; }
}

/* ═══════════════════════════════════════
   Blog article
   ═══════════════════════════════════════ */

.blog-article {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.blog-article h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-article p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: var(--ink);
}

.blog-article blockquote {
  border-left: 3px solid var(--line);
  padding: 16px 20px;
  margin: 28px 0;
  font-style: italic;
  font-size: 16px;
  line-height: 1.75;
  color: var(--graphite);
  background: var(--paper-light);
  border-radius: 0 4px 4px 0;
}

.blog-article strong {
  font-weight: 600;
}

.blog-article .article-end {
  text-align: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--graphite);
  font-style: italic;
}

.blog-article .article-hero-img {
  margin-bottom: 40px;
}

.blog-article .article-meta {
  font-size: 13px;
  color: var(--graphite);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.blog-article .article-lead {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--ink);
}

@media (min-width: 768px) {
  .blog-article h2 { font-size: 26px; }
  .blog-article h3 { font-size: 20px; }
  .blog-article p { font-size: 17px; }
  .blog-article .article-lead { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
