/* GİMSHEY — цвета из логотипа PDF #08294b */
:root {
  --brand-navy: #08294b;
  --brand-navy-dark: #061e38;
  --brand-navy-soft: #0c3458;
  --brand-cream: #f4f0ea;
  --brand-sand: #e5ddd2;
  --brand-warm: #ddd4c8;
  --brand-ink: #08294b;
  --brand-muted: #6b7280;
  --brand-line: rgba(8, 41, 75, 0.14);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Libre Franklin", system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max: 1280px;
  --header-h: 72px;
  --mobile-bar-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--brand-ink);
  background: var(--brand-cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(var(--max), 100% - 48px); margin-inline: auto; }

/* ── HEADER ── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  padding-top: env(safe-area-inset-top, 0);
  transition: background 0.4s, border-color 0.4s;
}
.site-header--light {
  background: rgba(244, 240, 234, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brand-line);
}
.site-header--hero {
  background: linear-gradient(180deg, rgba(244,240,234,0.55) 0%, transparent 100%);
  border-bottom: 1px solid transparent;
}
.site-header--hero.scrolled {
  background: rgba(244, 240, 234, 0.97);
  border-bottom-color: var(--brand-line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand-logo img { height: 36px; width: auto; }
.site-header--hero .brand-logo img { height: 38px; }

.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop > a, .nav-drop-trigger {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-muted);
  transition: color 0.25s;
}
.nav-desktop > a:hover, .nav-drop-trigger:hover,
.nav-desktop > a.active { color: var(--brand-navy); }
.nav-desktop > a.active { border-bottom: 1px solid var(--brand-navy); padding-bottom: 2px; }

.nav-drop { position: relative; }
.nav-drop-trigger { display: flex; align-items: center; gap: 5px; }
.nav-drop-trigger svg { width: 8px; opacity: 0.5; }
.nav-drop-panel {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--brand-cream);
  border: 1px solid var(--brand-line);
  padding: 12px 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}
.nav-drop:hover .nav-drop-panel,
.nav-drop.open .nav-drop-panel {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-panel a {
  display: block; padding: 8px 24px;
  font-size: 12px; color: var(--brand-muted);
}
.nav-drop-panel a:hover { color: var(--brand-navy); background: var(--brand-sand); }

.menu-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px 0 12px;
  border: 1px solid var(--brand-navy);
  background: var(--brand-navy);
  color: var(--brand-cream);
  border-radius: 2px;
  z-index: 110;
}
.menu-toggle__label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.menu-toggle__icon {
  position: relative;
  width: 18px;
  height: 14px;
  flex-shrink: 0;
}
.menu-toggle__icon span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle__icon span:nth-child(1) { top: 0; }
.menu-toggle__icon span:nth-child(2) { top: 6px; }
.menu-toggle__icon span:nth-child(3) { top: 12px; }
.menu-toggle.open .menu-toggle__icon span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-toggle.open .menu-toggle__icon span:nth-child(2) { opacity: 0; }
.menu-toggle.open .menu-toggle__icon span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Полоска быстрых ссылок — всегда видна на телефоне */
.nav-mobile-bar {
  display: none;
  position: fixed;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0));
  left: 0; right: 0;
  z-index: 95;
  background: var(--brand-sand);
  border-bottom: 1px solid var(--brand-line);
}
.nav-mobile-bar__scroll {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.nav-mobile-bar__scroll::-webkit-scrollbar { display: none; }
.nav-mobile-bar a {
  flex-shrink: 0;
  padding: 13px 18px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  border-right: 1px solid var(--brand-line);
  white-space: nowrap;
}
.nav-mobile-bar a.active {
  background: var(--brand-navy);
  color: var(--brand-cream);
}

.nav-mobile-backdrop {
  position: fixed; inset: 0; z-index: 180;
  background: rgba(8, 41, 75, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
  pointer-events: none;
}
.nav-mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Полноэкранное меню — вне header, чтобы работало на iOS */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--brand-cream);
  padding:
    calc(var(--header-h) + env(safe-area-inset-top, 0) + 8px)
    24px
    calc(32px + env(safe-area-inset-bottom, 0));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}
.nav-mobile.open {
  transform: translateX(0);
  pointer-events: auto;
}
.nav-mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--brand-line);
}
.nav-mobile__title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--brand-navy);
}
.nav-mobile__close {
  width: 44px; height: 44px;
  font-size: 32px; line-height: 1;
  color: var(--brand-navy);
  display: flex; align-items: center; justify-content: center;
}
.nav-mobile-label {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-muted); margin: 28px 0 4px;
}
.nav-mobile a {
  display: block; padding: 16px 0;
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-navy);
  border-bottom: 1px solid var(--brand-line);
}
.nav-mobile a.is-active {
  font-weight: 500;
  padding-left: 12px;
  border-left: 3px solid var(--brand-navy);
}
.nav-mobile a:active { opacity: 0.6; }

body.menu-open { overflow: hidden; }

main { padding-top: var(--header-h); }
main.main-home { padding-top: 0; }

/* ── TYPOGRAPHY ── */
.caps {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brand-muted);
}
.headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; line-height: 1.15;
  color: var(--brand-navy);
}
.body-text {
  font-size: 15px; line-height: 1.85;
  color: var(--brand-muted); max-width: 42em;
}
.link-underline {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-navy);
  border-bottom: 1px solid var(--brand-navy);
  padding-bottom: 3px;
  transition: opacity 0.25s;
}
.link-underline:hover { opacity: 0.55; }
.link-underline--light { color: #fff; border-color: rgba(255,255,255,0.7); }
.link-underline--hero { color: var(--brand-navy); border-color: var(--brand-navy); }

/* ── HERO EDITORIAL (MUZZO-style) ── */
.hero-editorial {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--mobile-bar-h));
  min-height: calc(100dvh - var(--header-h) - var(--mobile-bar-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #c9c9c9;
  padding: 24px 0 48px;
}
.hero-editorial__typo {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 32px);
  padding: 0 clamp(8px, 2vw, 24px);
  pointer-events: none;
  user-select: none;
}
.hero-editorial__word {
  font-family: "Bebas Neue", Impact, "Arial Narrow Bold", sans-serif;
  font-size: clamp(64px, 13.5vw, 220px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-editorial__spacer {
  flex: 0 0 clamp(120px, 20vw, 360px);
}
.hero-editorial__model {
  position: relative;
  z-index: 2;
  height: min(88vh, 920px);
  max-width: min(520px, 58vw);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: calc(var(--header-h) * 0.15);
}
.hero-editorial__model img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 28px rgba(8, 41, 75, 0.12));
}
.hero-editorial__footer {
  position: absolute;
  bottom: clamp(24px, 4vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: min(100% - 48px, 480px);
}
.hero-editorial__tagline {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(8, 41, 75, 0.55);
  margin-bottom: 16px;
}
.hero-editorial__actions {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── HERO BANNER (legacy) ── */
.hero-banner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 100vh;
  background: var(--brand-cream);
}
.hero-banner__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 48px 48px;
  background: var(--brand-cream);
}
.hero-banner__brand img {
  width: min(340px, 75%);
  height: auto;
  margin-bottom: 28px;
}
.hero-banner__tagline {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 36px;
}
.hero-banner__photo {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.hero-banner__photo img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center 15%;
}
.hero-banner__actions {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section + .section { border-top: 1px solid var(--brand-line); }
.section-sand { background: var(--brand-sand); }
.section-navy { background: var(--brand-navy); color: rgba(255,255,255,0.75); }
.section-navy .headline { color: #fff; }
.section-navy .caps { color: rgba(255,255,255,0.45); }

.section-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.section-row__text .caps { margin-bottom: 16px; }
.section-row__text .headline { margin-bottom: 20px; }
.section-row__text .body-text { margin-bottom: 28px; }
.section-row__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.section-intro { max-width: 520px; margin-bottom: 48px; }
.section-intro .caps { margin-bottom: 12px; }
.section-intro .headline { margin-bottom: 16px; }

.values-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--brand-line);
}
.value-item {
  padding: 40px 36px 40px 0;
  border-right: 1px solid var(--brand-line);
}
.value-item:last-child { border-right: none; padding-right: 0; padding-left: 36px; }
.value-item:nth-child(2) { padding-left: 36px; padding-right: 36px; }
.value-item .caps { margin-bottom: 12px; color: var(--brand-navy); opacity: 0.5; }
.value-item h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--brand-navy); margin-bottom: 10px;
}
.value-item p { font-size: 14px; color: var(--brand-muted); line-height: 1.8; }

/* ── CATEGORIES (главная) ── */
.category-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--brand-line);
  border: 1px solid var(--brand-line);
  margin-bottom: 56px;
}
.category-nav a {
  background: var(--brand-cream);
  padding: 28px 24px;
  transition: background 0.25s;
}
.category-nav a:hover { background: var(--brand-sand); }
.category-nav__name {
  font-family: var(--serif);
  font-size: 18px; color: var(--brand-navy);
  margin-bottom: 6px;
}
.category-nav__count {
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--brand-muted);
}

/* ── CATALOG PAGE ── */
.catalog-page { padding-bottom: 100px; }
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding-top: 32px;
}
.catalog-sidebar h2 {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-muted); margin-bottom: 20px;
}
.catalog-sidebar ul { list-style: none; }
.catalog-sidebar li { border-bottom: 1px solid var(--brand-line); }
.catalog-sidebar button {
  width: 100%; text-align: left;
  padding: 14px 0;
  font-size: 13px; color: var(--brand-muted);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  transition: color 0.2s;
}
.catalog-sidebar button:hover,
.catalog-sidebar button.active { color: var(--brand-navy); }
.catalog-sidebar button.active { font-weight: 500; }
.catalog-sidebar .cat-count {
  font-size: 11px; color: var(--brand-muted); opacity: 0.7;
}

.catalog-main { min-width: 0; padding-top: 32px; }
.catalog-main__head {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--brand-line);
}
.catalog-main__head h2 {
  font-family: var(--serif);
  font-size: 28px; font-weight: 400;
  color: var(--brand-navy);
}
.catalog-main__count {
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--brand-muted);
}

.catalog-toolbar-mobile {
  display: none;
  flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 14px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--brand-line);
  color: var(--brand-muted);
  background: var(--brand-cream);
}
.filter-btn.active {
  background: var(--brand-navy); color: var(--brand-cream); border-color: var(--brand-navy);
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.product-grid--home { grid-template-columns: repeat(4, 1fr); }
.product-card { display: block; }
.product-card-img-wrap {
  overflow: hidden; background: var(--brand-sand);
  margin-bottom: 16px;
}
.product-card-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-img { transform: scale(1.02); }
.product-card-code {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-muted); margin-bottom: 4px;
}
.product-card-name {
  font-family: var(--serif);
  font-size: 18px; color: var(--brand-navy); margin-bottom: 2px;
}
.product-card-cat { font-size: 11px; letter-spacing: 0.06em; color: var(--brand-muted); }

/* ── INNER PAGES ── */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--brand-line);
  background: var(--brand-sand);
}
.page-hero .caps { margin-bottom: 12px; }
.page-hero .headline { font-size: clamp(36px, 5vw, 52px); }

.product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; padding: 64px 0 100px;
}
.product-gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--brand-sand); }
.product-info .caps { margin-bottom: 10px; }
.product-info h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400; color: var(--brand-navy); margin-bottom: 16px;
}
.product-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; padding: 24px 0; margin: 24px 0;
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}
.product-meta dt {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-muted); margin-bottom: 4px;
}
.store-buttons { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; }
.store-btn {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-navy);
  border-bottom: 1px solid var(--brand-navy); padding-bottom: 2px;
}
.store-btn:hover { opacity: 0.5; }

.wholesale-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px; margin-top: 40px;
}
.wholesale-item h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--brand-navy); margin-bottom: 8px;
}
.wholesale-item p { font-size: 14px; color: var(--brand-muted); line-height: 1.8; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--brand-navy);
  transform: scaleX(0); transform-origin: left;
  z-index: 120; pointer-events: none;
}

.caps-light { color: rgba(255,255,255,0.45); }

/* ── B2B WHOLESALE ── */
.b2b-page .section { padding: 100px 0; }

.b2b-hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 48px) 0 80px;
  background: var(--brand-navy-dark);
  color: rgba(255,255,255,0.85);
  overflow: hidden;
}
.b2b-hero__mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  pointer-events: none;
  transition: transform 0.2s ease-out;
}
.b2b-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: end;
}
.b2b-hero__title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400; line-height: 1.05;
  color: #fff; margin: 16px 0 24px;
}
.b2b-hero__lead {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,0.58);
  max-width: 36em; margin-bottom: 36px;
}
.btn-b2b {
  display: inline-block;
  padding: 14px 32px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  background: #fff; color: var(--brand-navy);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.btn-b2b:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.btn-b2b--dark { background: var(--brand-navy); color: #fff; width: 100%; margin-top: 8px; }
.btn-b2b--dark:hover { background: var(--brand-navy-soft); }

.b2b-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.b2b-stat {
  background: rgba(6, 30, 56, 0.6);
  backdrop-filter: blur(8px);
  padding: 28px 24px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px;
}
.b2b-stat__num {
  font-family: var(--serif);
  font-size: 42px; font-weight: 400;
  color: #fff; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.b2b-stat__num--sm { font-size: 32px; }
.b2b-stat__suffix, .b2b-stat__sep { font-size: 24px; color: rgba(255,255,255,0.35); }
.b2b-stat__text { font-size: 36px; font-weight: 500; letter-spacing: 0.12em; color: #fff; }
.b2b-stat__label {
  width: 100%;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 8px;
}

.b2b-audience {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.b2b-card {
  padding: 36px 28px;
  border: 1px solid var(--brand-line);
  background: var(--brand-cream);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.b2b-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-navy);
  box-shadow: 0 24px 48px rgba(8,41,75,0.08);
}
.b2b-card__idx {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--brand-muted); display: block; margin-bottom: 20px;
}
.b2b-card h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--brand-navy); margin-bottom: 12px;
}
.b2b-card p { font-size: 14px; color: var(--brand-muted); line-height: 1.75; }

.b2b-timeline {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--brand-line);
}
.b2b-step {
  padding: 40px 28px 0 0;
  border-right: 1px solid var(--brand-line);
  position: relative;
}
.b2b-step:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.b2b-step:nth-child(2), .b2b-step:nth-child(3) { padding-left: 28px; padding-right: 28px; }
.b2b-step__num {
  font-family: var(--serif);
  font-size: 48px; color: var(--brand-sand);
  display: block; line-height: 1; margin-bottom: 16px;
}
.b2b-step h3 {
  font-family: var(--serif); font-size: 20px;
  color: var(--brand-navy); margin-bottom: 8px;
}
.b2b-step p { font-size: 13px; color: var(--brand-muted); line-height: 1.7; }

.b2b-capabilities__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.b2b-capabilities__img {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover; margin-top: 32px;
}
.b2b-checklist { list-style: none; }
.b2b-checklist li {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--brand-line);
  font-size: 14px; color: var(--brand-ink);
  transition: padding-left 0.3s var(--ease);
}
.b2b-checklist li:hover { padding-left: 8px; }
.b2b-checklist li span {
  font-size: 10px; letter-spacing: 0.12em;
  color: var(--brand-muted); min-width: 24px;
}

.b2b-catalog-teaser__inner {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 32px;
}
.b2b-catalog-teaser .headline { color: #fff; margin: 12px 0 16px; }

.b2b-form-split {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: start;
}
.b2b-form-split__logo { height: 48px; width: auto; margin-bottom: 32px; }
.b2b-form-card {
  padding: 48px 40px;
  background: var(--brand-sand);
  border: 1px solid var(--brand-line);
}
.b2b-form-card .form-row input,
.b2b-form-card .form-row textarea,
.b2b-form-card .form-row select {
  background: var(--brand-cream);
  padding: 12px 14px;
  border: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}

/* stagger reveal */
.reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 560ms; }
.reveal-stagger.visible > * {
  opacity: 1; transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .b2b-card { transition: none !important; transform: none !important; opacity: 1 !important; }
}

.form-block { max-width: 480px; margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--brand-line); }
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-muted); margin-bottom: 8px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 10px 0;
  border: none; border-bottom: 1px solid var(--brand-line);
  background: transparent; font: inherit; color: var(--brand-navy);
}
.form-row textarea { min-height: 90px; resize: vertical; }

.store-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; padding-top: 40px;
}
.store-card {
  text-align: center; padding: 40px 24px;
  border: 1px solid var(--brand-line); background: var(--brand-cream);
}
.store-card-logo { font-family: var(--serif); font-size: 28px; color: var(--brand-navy); margin-bottom: 12px; }
.store-card p { font-size: 14px; color: var(--brand-muted); margin: 12px 0 24px; }

.editorial-block { margin-bottom: 40px; }
.editorial-block h3 { font-family: var(--serif); font-size: 22px; color: var(--brand-navy); margin-bottom: 10px; }

.cta-block {
  text-align: center; padding: 88px 24px;
  background: var(--brand-navy);
}
.cta-block .headline { color: #fff; margin: 12px 0 20px; }
.cta-block .body-text { margin-inline: auto; text-align: center; color: rgba(255,255,255,0.55); }
.cta-block__links { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ── FOOTER ── */
.site-footer {
  padding: 72px 0 36px;
  border-top: 1px solid var(--brand-line);
  background: var(--brand-sand);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--brand-muted); line-height: 1.8; max-width: 260px; }
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-muted); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 13px; margin-bottom: 8px; color: var(--brand-navy); }
.footer-col a:hover { opacity: 0.55; }
.footer-bottom {
  padding-top: 20px; border-top: 1px solid var(--brand-line);
  font-size: 11px; color: var(--brand-muted);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

.reveal {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  :root { --header-h: 64px; --mobile-bar-h: 46px; }

  .container { width: min(var(--max), 100% - 32px); }

  /* Шапка всегда читаемая — бургер не теряется на фото */
  .site-header--hero,
  .site-header--hero.scrolled {
    background: rgba(244, 240, 234, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--brand-line);
  }

  .header-inner { gap: 16px; }
  .brand-logo img { height: 32px !important; }

  .nav-desktop { display: none; }
  .nav-mobile-bar { display: block; }
  .menu-toggle { display: flex; }

  main { padding-top: calc(var(--header-h) + var(--mobile-bar-h)); }
  main.main-home { padding-top: 0; }

  .hero-editorial {
    min-height: calc(100dvh - var(--header-h) - var(--mobile-bar-h));
    padding: 16px 0 120px;
  }
  .hero-editorial__word {
    font-size: clamp(48px, 16vw, 88px);
  }
  .hero-editorial__spacer {
    flex-basis: clamp(72px, 24vw, 140px);
  }
  .hero-editorial__model {
    height: min(72vh, 640px);
    max-width: min(340px, 78vw);
    margin-top: 8px;
  }
  .hero-editorial__footer {
    bottom: 20px;
  }
  .hero-editorial__actions { gap: 20px; }

  .hero-banner { grid-template-columns: 1fr; min-height: auto; }
  .hero-banner__photo {
    order: -1;
    min-height: auto;
    aspect-ratio: 4 / 5;
    max-height: min(560px, 72vh);
  }
  .hero-banner__photo img {
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    object-position: center 6%;
  }
  .hero-banner__brand {
    padding: calc(var(--header-h) + var(--mobile-bar-h) + 20px) 0 56px;
  }
  .hero-banner__brand img { width: min(240px, 72%); margin-bottom: 20px; }
  .hero-banner__tagline { margin-bottom: 28px; letter-spacing: 0.22em; }
  .hero-banner__actions { gap: 24px; }

  .section { padding: 64px 0; }
  .section-row { gap: 40px; }
  .section-row__media img { aspect-ratio: 4/3; }

  .catalog-layout { grid-template-columns: 1fr; gap: 0; }
  .catalog-sidebar { display: none; }
  .catalog-toolbar-mobile {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-bottom: 28px;
  }
  .catalog-toolbar-mobile::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; white-space: nowrap; }

  .catalog-main { padding-top: 16px; }
  .catalog-main__head { margin-bottom: 24px; padding-bottom: 16px; }
  .catalog-main__head h2 { font-size: 24px; }

  .product-grid, .product-grid--home { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .product-card-name { font-size: 16px; }
  .category-nav { grid-template-columns: repeat(2, 1fr); }

  .page-hero { padding: 40px 0 32px; }
  .product-layout { gap: 40px; padding: 40px 0 64px; }
  .product-meta { grid-template-columns: 1fr 1fr; gap: 16px; }

  .section-row, .values-row, .product-layout, .store-cards, .wholesale-grid, .footer-grid,
  .b2b-hero__inner, .b2b-audience, .b2b-timeline, .b2b-capabilities__grid, .b2b-form-split { grid-template-columns: 1fr; }

  .b2b-hero { min-height: auto; padding: calc(var(--header-h) + 32px) 0 56px; }
  .b2b-hero__inner { gap: 40px; }
  .b2b-hero__title { font-size: clamp(36px, 9vw, 52px); }
  .b2b-hero__lead { font-size: 15px; margin-bottom: 28px; }
  .b2b-step { border-right: none; border-bottom: 1px solid var(--brand-line); padding: 28px 0 !important; }
  .b2b-stats { grid-template-columns: 1fr 1fr; }
  .b2b-stat { padding: 20px 16px; }
  .b2b-stat__num { font-size: 32px; }
  .b2b-form-card { padding: 32px 24px; }
  .b2b-form-split { gap: 40px; }

  .value-item, .value-item:nth-child(2), .value-item:last-child {
    border: none; padding: 24px 0; border-bottom: 1px solid var(--brand-line);
  }

  .footer-grid { gap: 32px; }
  .cta-block { padding: 64px 20px; }
  .cta-block__links { gap: 24px; }
  .form-block { margin-top: 40px; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), 100% - 24px); }

  .category-nav { grid-template-columns: 1fr; }
  .category-nav a { padding: 20px 18px; }

  .product-grid, .product-grid--home { grid-template-columns: 1fr; gap: 32px; }
  .product-card-img-wrap { margin-bottom: 12px; }

  .product-meta { grid-template-columns: 1fr; }
  .store-cards { gap: 16px; }
  .store-card { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 4px; }

  .b2b-stats { grid-template-columns: 1fr; }
  .b2b-audience { gap: 16px; }
  .b2b-card { padding: 28px 22px; }

  .hero-banner__photo img { object-position: center 4%; }
  .hero-banner__actions { flex-direction: column; align-items: center; gap: 16px; }

  .headline { font-size: clamp(28px, 7vw, 40px); }
  .section-intro { margin-bottom: 32px; }
}
