/* ===== MAVUL — Каталог /catalog/ ===== */
.mv-cat-host {
  position: relative; width: 100vw;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  background: #F5F1EA; color: #1A1612; isolation: isolate;
}
.mv-cat { max-width: 1440px; margin: 0 auto; padding: clamp(64px, 10vh, 120px) clamp(24px, 5vw, 80px); }
.mv-cat * { box-sizing: border-box; }

.mv-cat__hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  margin: 0 0 clamp(40px, 5vh, 64px);
  padding-bottom: clamp(40px, 5vh, 64px);
  border-bottom: 0.5px solid rgba(26, 22, 18, 0.12);
  align-items: end;
}
.mv-cat__eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #C8966B; font-weight: 500; margin: 0 0 20px;
  display: flex; align-items: center; gap: 14px;
}
.mv-cat__eyebrow::after {
  content: ''; flex: 0 0 60px; height: 0.5px;
  background: #C8966B; opacity: 0.5;
}
.mv-cat__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(56px, 10vw, 144px);
  font-weight: 500; line-height: 0.92;
  letter-spacing: -0.028em; color: #1A1612; margin: 0;
}
.mv-cat__title em { font-style: italic; font-weight: 400; color: #C8966B; }
.mv-cat__desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.1vw, 17px); line-height: 1.6;
  color: #1A1612; opacity: 0.78;
  margin: 0 0 24px; max-width: 420px;
}
.mv-cat__stats { display: flex; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap; }
.mv-cat__stat { display: flex; flex-direction: column; gap: 4px; }
.mv-cat__stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: clamp(28px, 3vw, 40px); color: #C8966B; line-height: 1;
}
.mv-cat__stat-label {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #5A3E2B; opacity: 0.75; font-weight: 500;
}


/* Навигационные карточки направлений */
.mv-cat__dir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 clamp(48px, 6vh, 80px);
}
.mv-cat__dir-card {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 28px;
  background: #FFFFFF;
  border: 0.5px solid rgba(26, 22, 18, 0.08);
  border-radius: 10px;
  text-decoration: none; color: inherit;
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.mv-cat__dir-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #C8966B, transparent);
  transform: translateX(-100%);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-cat__dir-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 150, 107, 0.4);
  box-shadow: 0 12px 32px rgba(184, 138, 79, 0.12);
}
.mv-cat__dir-card:hover::before { transform: translateX(0); }
.mv-cat__dir-card-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(36px, 3.5vw, 48px);
  color: #C8966B;
  line-height: 0.9;
  flex-shrink: 0;
}
.mv-cat__dir-card-content { flex: 1; min-width: 0; }
.mv-cat__dir-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 500;
  color: #1A1612;
  margin: 0 0 4px;
  transition: color 360ms;
}
.mv-cat__dir-card:hover .mv-cat__dir-card-title { color: #C8966B; }
.mv-cat__dir-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px; line-height: 1.4;
  color: #5A3E2B; opacity: 0.7;
  margin: 0;
}
.mv-cat__dir-card-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #C8966B; opacity: 0.5;
  transition: all 400ms;
  flex-shrink: 0;
}
.mv-cat__dir-card:hover .mv-cat__dir-card-arrow {
  opacity: 1; transform: translateX(6px);
}

@media (max-width: 960px) {
  .mv-cat__dir-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .mv-cat__dir-grid { grid-template-columns: 1fr; }
}


.mv-cat__filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 0 0 clamp(40px, 5vh, 64px);
}
.mv-cat__filter {
  font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: #FFFFFF; background: #C8966B;
  padding: 14px 26px; border: 0; border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(200, 150, 107, 0.18);
  transition: all 360ms cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex; align-items: center; gap: 10px;
}
.mv-cat__filter:hover {
  transform: translateY(-3px); background: #1A1612;
  box-shadow: 0 8px 24px rgba(26, 22, 18, 0.25);
}
.mv-cat__filter.is-active {
  background: #1A1612;
  box-shadow: 0 4px 16px rgba(26, 22, 18, 0.25);
}
.mv-cat__filter-count {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: 15px; letter-spacing: 0; text-transform: none; opacity: 0.85;
}

.mv-cat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.5vw, 48px); }
.mv-cat__card {
  display: block; text-decoration: none; color: inherit;
  cursor: pointer;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-cat__card.is-hidden { display: none; }
.mv-cat__card:hover { transform: translateY(-6px); }

.mv-cat__card-photo-wrap { position: relative; padding: 16px; margin: 0 0 24px; }
.mv-cat__card-photo-wrap::before,
.mv-cat__card-photo-wrap::after,
.mv-cat__card-photo::before,
.mv-cat__card-photo::after {
  content: ''; position: absolute;
  width: 22px; height: 22px;
  border: 1.2px solid #C8966B; opacity: 0.6;
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.mv-cat__card-photo-wrap::before { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.mv-cat__card-photo-wrap::after { top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 4px 0 0; }
.mv-cat__card-photo::before { bottom: -16px; left: -16px; border-right: none; border-top: none; border-radius: 0 0 0 4px; }
.mv-cat__card-photo::after { bottom: -16px; right: -16px; border-left: none; border-top: none; border-radius: 0 0 4px 0; }
.mv-cat__card:hover .mv-cat__card-photo-wrap::before { top: -6px; left: -6px; width: 32px; height: 32px; opacity: 1; }
.mv-cat__card:hover .mv-cat__card-photo-wrap::after { top: -6px; right: -6px; width: 32px; height: 32px; opacity: 1; }
.mv-cat__card:hover .mv-cat__card-photo::before { bottom: -22px; left: -22px; width: 32px; height: 32px; opacity: 1; }
.mv-cat__card:hover .mv-cat__card-photo::after { bottom: -22px; right: -22px; width: 32px; height: 32px; opacity: 1; }

.mv-cat__card-photo {
  aspect-ratio: 1 / 1;
  background: #FFFFFF; border-radius: 8px;
  overflow: hidden; padding: clamp(16px, 2vw, 28px);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border: 0.5px solid rgba(26, 22, 18, 0.06);
  transition: box-shadow 500ms;
}
.mv-cat__card:hover .mv-cat__card-photo { box-shadow: 0 16px 48px rgba(184, 138, 79, 0.16); }
.mv-cat__card-photo img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; display: block;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-cat__card:hover .mv-cat__card-photo img { transform: scale(1.06); }

.mv-cat__card-info { padding: 0 4px; }
.mv-cat__card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2vw, 28px); font-weight: 500;
  line-height: 1.1; letter-spacing: -0.01em;
  color: #1A1612; margin: 0 0 6px;
  transition: color 360ms;
}
.mv-cat__card:hover .mv-cat__card-title { color: #C8966B; }
.mv-cat__card-latin {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: 14px; color: #C8966B; margin: 0 0 10px; font-weight: 400;
}
.mv-cat__card-meta {
  font-family: 'Inter', sans-serif; font-size: 12px;
  line-height: 1.55; color: #5A3E2B; opacity: 0.78; margin: 0 0 14px;
}
.mv-cat__card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px;
  border-top: 0.5px solid rgba(26, 22, 18, 0.08);
}
.mv-cat__card-origin {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #C8966B; font-weight: 500;
}
.mv-cat__card-dir {
  font-family: 'Inter', sans-serif; font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #5A3E2B; opacity: 0.55;
  padding: 4px 10px;
  border: 0.5px solid rgba(26, 22, 18, 0.12);
  border-radius: 4px;
}

/* ===== Карточка породы /wood/ ===== */
.mv-w__crumb {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #C8966B; font-weight: 500; margin: 0 0 32px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.mv-w__crumb span { opacity: 0.5; }
.mv-w__hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin: 0 0 clamp(48px, 6vh, 80px);
  align-items: start;
}
.mv-w__photo-wrapper { position: relative; padding: 24px; }
.mv-w__photo {
  aspect-ratio: 1 / 1;
  background: #FFFFFF; border-radius: 12px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 48px);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border: 0.5px solid rgba(26, 22, 18, 0.06);
  transition: box-shadow 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-w__photo:hover { box-shadow: 0 20px 60px rgba(184, 138, 79, 0.18); }
.mv-w__photo img {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-w__photo:hover img { transform: scale(1.04); }
.mv-w__photo::before,
.mv-w__photo::after,
.mv-w__photo-wrapper::before,
.mv-w__photo-wrapper::after {
  content: ''; position: absolute;
  width: 32px; height: 32px;
  border: 1.5px solid #C8966B; opacity: 0.85;
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.mv-w__photo-wrapper::before { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.mv-w__photo-wrapper::after { top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
.mv-w__photo::before { bottom: -24px; left: -24px; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
.mv-w__photo::after { bottom: -24px; right: -24px; border-left: none; border-top: none; border-radius: 0 0 6px 0; }
.mv-w__photo-wrapper:hover::before { top: -8px; left: -8px; width: 44px; height: 44px; }
.mv-w__photo-wrapper:hover::after { top: -8px; right: -8px; width: 44px; height: 44px; }
.mv-w__photo-wrapper:hover .mv-w__photo::before { bottom: -32px; left: -32px; width: 44px; height: 44px; }
.mv-w__photo-wrapper:hover .mv-w__photo::after { bottom: -32px; right: -32px; width: 44px; height: 44px; }
.mv-w__hero-info { padding-top: 16px; }
.mv-w__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.mv-w__tag {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #C8966B; font-weight: 500;
  padding: 7px 16px;
  border: 0.5px solid rgba(200, 150, 107, 0.4);
  border-radius: 999px;
}
.mv-w__h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500; line-height: 0.95;
  letter-spacing: -0.025em;
  color: #1A1612; margin: 24px 0 24px;
}
.mv-w__subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #C8966B; margin: 0 0 40px; line-height: 1.4;
}
.mv-w__why {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.65;
  color: #1A1612; opacity: 0.88;
  margin: 0 0 40px; padding: 24px 28px;
  background: rgba(200, 150, 107, 0.06);
  border-left: 2px solid #C8966B;
  border-radius: 0 8px 8px 0;
}
.mv-w__cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Inter', sans-serif; font-size: 13px;
  letter-spacing: 0.06em; font-weight: 500;
  color: #FFFFFF; background: #C8966B;
  padding: 18px 32px;
  border-radius: 999px;
  text-decoration: none; border: 0; cursor: pointer;
  box-shadow: 0 4px 16px rgba(200, 150, 107, 0.25);
  transition: all 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-w__cta:hover {
  transform: translateY(-3px); background: #1A1612;
  box-shadow: 0 8px 28px rgba(26, 22, 18, 0.25);
}
.mv-w__section {
  margin: 0 0 clamp(48px, 8vh, 88px);
  padding-top: clamp(40px, 6vh, 72px);
  border-top: 0.5px solid rgba(26, 22, 18, 0.12);
}
.mv-w__eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #C8966B; font-weight: 500; margin: 0 0 16px;
  display: flex; align-items: center; gap: 14px;
}
.mv-w__eyebrow::after { content: ''; flex: 0 0 60px; height: 0.5px; background: #C8966B; opacity: 0.5; }
.mv-w__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.022em;
  color: #1A1612; margin: 0 0 32px;
}
.mv-w__title em { font-style: italic; color: #C8966B; font-weight: 400; }
.mv-w__origin-info { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin: 0 0 32px; }
.mv-w__origin-stat-label {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #5A3E2B; opacity: 0.7; font-weight: 500;
  display: block; margin: 0 0 8px;
}
.mv-w__origin-stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px); color: #1A1612; line-height: 1.3;
}
.mv-w__countries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mv-w__country {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  background: #FFFFFF;
  border: 0.5px solid rgba(26, 22, 18, 0.08);
  border-radius: 8px;
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-w__country:hover {
  transform: translateY(-3px);
  border-color: #C8966B;
  box-shadow: 0 6px 24px rgba(200, 150, 107, 0.12);
}
.mv-w__country-marker { width: 28px; height: 28px; flex-shrink: 0; }
.mv-w__country-marker svg { width: 100%; height: 100%; display: block; }
.mv-w__country-name { font-family: 'Inter', sans-serif; font-size: 14px; color: #1A1612; font-weight: 500; }

.mv-w__bars { display: flex; flex-direction: column; gap: 28px; }
.mv-w__bar-header { display: flex; justify-content: space-between; align-items: baseline; margin: 0 0 10px; }
.mv-w__bar-label {
  font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #5A3E2B; font-weight: 500;
}
.mv-w__bar-value {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: 22px; color: #C8966B;
}
.mv-w__bar-track { height: 6px; background: rgba(26, 22, 18, 0.08); border-radius: 3px; overflow: hidden; }
.mv-w__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #C8966B, #A87650);
  border-radius: 3px;
  width: 0;
  transform-origin: left;
}
.is-revealed .mv-w__bar-fill { width: var(--bar-width, 100%); transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1); }
.mv-w__bar-scale {
  display: flex; justify-content: space-between; margin-top: 6px;
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.1em; color: #5A3E2B; opacity: 0.55;
}

.mv-w__color { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center; }
.mv-w__color-swatch {
  width: 200px; height: 200px; border-radius: 12px;
  border: 0.5px solid rgba(26, 22, 18, 0.1);
  box-shadow: 0 8px 32px rgba(26, 22, 18, 0.08);
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.mv-w__color-swatch:hover { transform: scale(1.04); box-shadow: 0 16px 48px rgba(26, 22, 18, 0.15); }
.mv-w__color-table { display: flex; flex-direction: column; gap: 16px; }
.mv-w__color-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 24px;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(26, 22, 18, 0.08);
}
.mv-w__color-key {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #5A3E2B; opacity: 0.7; font-weight: 500;
}
.mv-w__color-val { font-family: 'Inter', sans-serif; font-size: 15px; color: #1A1612; }

.mv-w__apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mv-w__app {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 26px;
  background: #FFFFFF;
  border: 0.5px solid rgba(26, 22, 18, 0.08);
  border-radius: 8px;
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-w__app:hover {
  transform: translateY(-3px);
  border-color: #C8966B;
  box-shadow: 0 6px 20px rgba(200, 150, 107, 0.15);
}
.mv-w__app:hover .mv-w__app-icon { transform: scale(1.15); color: #A87650; }
.mv-w__app-icon {
  font-size: 28px; color: #C8966B;
  font-family: 'Cormorant Garamond', serif;
  width: 40px; text-align: center;
  transition: all 400ms;
}
.mv-w__app-text { font-family: 'Inter', sans-serif; font-size: 14px; color: #1A1612; font-weight: 500; }

.mv-w__tech { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mv-w__tech-card {
  padding: 28px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 0.5px solid rgba(26, 22, 18, 0.08);
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.mv-w__tech-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #C8966B, transparent);
  transform: translateX(-100%);
  transition: transform 500ms;
}
.mv-w__tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 22, 18, 0.08);
}
.mv-w__tech-card:hover::after { transform: translateX(0); }
.mv-w__tech-card:hover .mv-w__tech-value { color: #C8966B; }
.mv-w__tech-label {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #5A3E2B; opacity: 0.7; font-weight: 500;
  display: block; margin: 0 0 12px;
}
.mv-w__tech-value {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: clamp(28px, 2.5vw, 36px); color: #1A1612; line-height: 1;
  transition: color 400ms;
}
.mv-w__tech-unit {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: #5A3E2B; opacity: 0.65;
  font-style: normal; margin-left: 6px;
}

.mv-w__forwho { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mv-w__forwho-card {
  padding: 36px;
  background: rgba(200, 150, 107, 0.05);
  border-radius: 8px;
  transition: all 400ms;
}
.mv-w__forwho-card:hover {
  background: rgba(200, 150, 107, 0.12);
  transform: translateY(-4px);
}
.mv-w__forwho-label {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: 26px; color: #C8966B; margin: 0 0 16px;
}
.mv-w__forwho-text {
  font-family: 'Inter', sans-serif; font-size: 14px;
  line-height: 1.6; color: #1A1612; opacity: 0.85; margin: 0;
}

.mv-w__docs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mv-w__doc {
  padding: 28px 20px;
  background: #FFFFFF;
  border: 0.5px solid rgba(26, 22, 18, 0.08);
  border-radius: 8px;
  text-align: center;
  transition: all 400ms;
}
.mv-w__doc:hover {
  transform: translateY(-4px);
  border-color: #C8966B;
  box-shadow: 0 6px 24px rgba(200, 150, 107, 0.15);
}
.mv-w__doc:hover .mv-w__doc-icon { transform: scale(1.15) rotate(5deg); }
.mv-w__doc-icon {
  font-size: 40px; color: #C8966B;
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  transition: transform 500ms;
}
.mv-w__doc-label {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #1A1612; font-weight: 500;
  display: block; margin: 0 0 8px;
}
.mv-w__doc-value {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: #5A3E2B; opacity: 0.78; line-height: 1.4;
}

/* === ПОСТАВКА — выделенные карточки === */
.mv-w__table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mv-w__row {
  background: #FFFFFF;
  border: 0.5px solid rgba(26, 22, 18, 0.08);
  border-radius: 8px;
  padding: 28px;
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.mv-w__row::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: #C8966B;
  border-radius: 2px;
  transition: width 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-w__row:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 150, 107, 0.4);
  box-shadow: 0 8px 28px rgba(184, 138, 79, 0.12);
}
.mv-w__row:hover::before { width: 80px; }
.mv-w__row-label {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #C8966B; font-weight: 500;
  display: block; margin: 0 0 10px;
}
.mv-w__row-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px; line-height: 1.4;
  color: #1A1612;
  font-weight: 500;
}

/* === АНИМАЦИИ ПОЯВЛЕНИЯ === */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.is-revealed[data-reveal-stagger] > *:nth-child(1) { transition-delay: 0ms; }
.is-revealed[data-reveal-stagger] > *:nth-child(2) { transition-delay: 80ms; }
.is-revealed[data-reveal-stagger] > *:nth-child(3) { transition-delay: 160ms; }
.is-revealed[data-reveal-stagger] > *:nth-child(4) { transition-delay: 240ms; }
.is-revealed[data-reveal-stagger] > *:nth-child(5) { transition-delay: 320ms; }
.is-revealed[data-reveal-stagger] > *:nth-child(6) { transition-delay: 400ms; }
.is-revealed[data-reveal-stagger] > * {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .mv-cat__hero { grid-template-columns: 1fr; }
  .mv-cat__grid { grid-template-columns: repeat(2, 1fr); }
  .mv-w__hero { grid-template-columns: 1fr; }
  .mv-w__tech { grid-template-columns: repeat(2, 1fr); }
  .mv-w__forwho { grid-template-columns: 1fr; }
  .mv-w__apps { grid-template-columns: repeat(2, 1fr); }
  .mv-w__docs { grid-template-columns: repeat(2, 1fr); }
  .mv-w__color { grid-template-columns: 1fr; }
  .mv-w__color-swatch { width: 100%; }
  .mv-w__origin-info { grid-template-columns: 1fr; gap: 24px; }
  .mv-w__countries { grid-template-columns: repeat(2, 1fr); }
  .mv-w__table { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mv-cat__grid { grid-template-columns: 1fr; }
  .mv-w__tech { grid-template-columns: 1fr; }
  .mv-w__docs { grid-template-columns: 1fr; }
  .mv-w__apps { grid-template-columns: 1fr; }
  .mv-w__countries { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   БЛОКИ ГЛАВНОЙ СТРАНИЦЫ — общие классы
   ═══════════════════════════════════════════════════════ */

.mv-block-host {
  position: relative;
  width: 100vw;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  background: #F5F1EA;
  color: #1A1612;
  isolation: isolate;
}
.mv-block { max-width: 1280px; margin: 0 auto; padding: clamp(72px, 12vh, 140px) clamp(24px, 5vw, 80px); }
.mv-block * { box-sizing: border-box; }

.mv-block__eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #C8966B; font-weight: 500;
  margin: 0 0 20px;
  display: flex; align-items: center; gap: 14px;
}
.mv-block__eyebrow::after {
  content: ''; flex: 0 0 60px; height: 0.5px;
  background: #C8966B; opacity: 0.5;
}

.mv-block__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: #1A1612;
  margin: 0 0 clamp(48px, 8vh, 80px);
  max-width: 900px;
}
.mv-block__title em { font-style: italic; color: #C8966B; font-weight: 400; }


/* === БЛОК 5: ПРОЦЕСС РАБОТЫ === */
.mv-proc__steps { display: grid; grid-template-columns: 1fr; gap: 0; }
.mv-proc__step {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(32px, 4vh, 48px) 0;
  border-top: 0.5px solid rgba(26, 22, 18, 0.12);
  position: relative;
  transition: background 400ms;
}
.mv-proc__step:last-child { border-bottom: 0.5px solid rgba(26, 22, 18, 0.12); }
.mv-proc__step:hover { background: rgba(200, 150, 107, 0.04); }
.mv-proc__step:hover .mv-proc__step-num {
  color: #C8966B;
  transform: translateX(6px);
}
.mv-proc__step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(40px, 4vw, 56px);
  color: #1A1612; opacity: 0.45;
  line-height: 1;
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-proc__step-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  color: #1A1612;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.mv-proc__step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px; line-height: 1.65;
  color: #1A1612; opacity: 0.82;
  padding-top: 8px;
}


/* === БЛОК 6: ДОКУМЕНТАЦИЯ === */
.mv-block-host.is-mist { background: #E8E2D7; }
.mv-docs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mv-docs__card {
  padding: 36px 28px;
  background: #FFFFFF;
  border: 0.5px solid rgba(26, 22, 18, 0.08);
  border-radius: 10px;
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.mv-docs__card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40px; height: 2px;
  background: #C8966B;
  transition: width 400ms;
}
.mv-docs__card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 150, 107, 0.4);
  box-shadow: 0 12px 32px rgba(184, 138, 79, 0.12);
}
.mv-docs__card:hover::before { width: 80px; }
.mv-docs__card:hover .mv-docs__card-icon {
  color: #A87650;
  transform: scale(1.1) rotate(3deg);
}
.mv-docs__card-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: #C8966B;
  margin: 0 0 18px;
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-docs__card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 500;
  color: #1A1612;
  margin: 0 0 10px;
  line-height: 1.2;
}
.mv-docs__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px; line-height: 1.6;
  color: #5A3E2B; opacity: 0.85;
  margin: 0;
}


/* === БЛОК 7: ДЛЯ КОГО === */
.mv-audience__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mv-audience__card {
  padding: 48px 40px;
  background: #FFFFFF;
  border: 0.5px solid rgba(26, 22, 18, 0.08);
  border-radius: 12px;
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.mv-audience__card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #C8966B, transparent);
  transform: translateX(-100%);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-audience__card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 150, 107, 0.4);
  box-shadow: 0 16px 48px rgba(184, 138, 79, 0.14);
}
.mv-audience__card:hover::before { transform: translateX(0); }
.mv-audience__card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #C8966B; font-weight: 500;
  margin: 0 0 16px;
}
.mv-audience__card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: #1A1612;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.mv-audience__card-title em { font-style: italic; color: #C8966B; font-weight: 400; }
.mv-audience__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px; line-height: 1.65;
  color: #1A1612; opacity: 0.82;
}


/* === БЛОК 8: CTA (тёмный) === */
.mv-block-host.is-dark {
  background: #1A1612;
  color: #F5F1EA;
}
.mv-cta { padding: clamp(80px, 14vh, 160px) clamp(24px, 5vw, 80px); max-width: 1100px; margin: 0 auto; text-align: center; }
.mv-cta__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #C8966B; font-weight: 500;
  margin: 0 0 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.mv-cta__eyebrow::before,
.mv-cta__eyebrow::after {
  content: ''; width: 60px; height: 0.5px;
  background: #C8966B; opacity: 0.5;
}
.mv-cta__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: #F5F1EA;
  margin: 0 0 32px;
}
.mv-cta__title em { font-style: italic; color: #C8966B; font-weight: 400; }
.mv-cta__desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: #F5F1EA; opacity: 0.78;
  max-width: 620px;
  margin: 0 auto 56px;
}
.mv-cta__button {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #1A1612; background: #C8966B;
  padding: 22px 40px; border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200, 150, 107, 0.3);
  transition: all 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-cta__button:hover {
  transform: translateY(-3px);
  background: #F5F1EA;
  box-shadow: 0 12px 36px rgba(245, 241, 234, 0.2);
}
.mv-cta__contacts {
  margin-top: 64px;
  display: flex; justify-content: center;
  gap: clamp(32px, 5vw, 80px);
  flex-wrap: wrap;
}
.mv-cta__contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #C8966B; font-weight: 500;
  display: block;
  margin: 0 0 6px;
}
.mv-cta__contact-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: #F5F1EA;
  text-decoration: none;
  transition: color 300ms;
}
.mv-cta__contact-value:hover { color: #C8966B; }


/* === Адаптив блоков 5-8 === */
@media (max-width: 960px) {
  .mv-proc__step { grid-template-columns: 60px 1fr; }
  .mv-proc__step-desc { grid-column: 2; padding-top: 16px; }
  .mv-docs__grid { grid-template-columns: repeat(2, 1fr); }
  .mv-audience__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mv-docs__grid { grid-template-columns: 1fr; }
}



/* === Блок "Узнать больше" на главной (перед CTA) === */
.mv-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mv-explore__card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 32px;
  background: #FFFFFF;
  border: 0.5px solid rgba(26, 22, 18, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.mv-explore__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #C8966B, transparent);
  transform: translateX(-100%);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-explore__card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 150, 107, 0.4);
  box-shadow: 0 12px 32px rgba(184, 138, 79, 0.12);
}
.mv-explore__card:hover::before { transform: translateX(0); }
.mv-explore__card-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(36px, 3.5vw, 48px);
  color: #C8966B;
  line-height: 0.9;
  flex-shrink: 0;
}
.mv-explore__card-content { flex: 1; min-width: 0; }
.mv-explore__card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: #1A1612;
  margin: 0 0 6px;
  line-height: 1.15;
  transition: color 360ms;
}
.mv-explore__card:hover .mv-explore__card-title { color: #C8966B; }
.mv-explore__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #5A3E2B;
  opacity: 0.78;
  margin: 0;
}
.mv-explore__card-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #C8966B;
  opacity: 0.5;
  transition: all 400ms;
  flex-shrink: 0;
}
.mv-explore__card:hover .mv-explore__card-arrow {
  opacity: 1;
  transform: translateX(6px);
}

@media (max-width: 960px) {
  .mv-explore__grid { grid-template-columns: 1fr; }
}


@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}