/* ============================================================
   La Gelateria Italiana — B2B Site
   Design system: editorial monochrome + single accent
   ============================================================ */

:root {
  /* Mono palette — strict B/W system */
  --c-ink:        #0A0A0A;
  --c-paper:      #FAFAFA;
  --c-paper-pure: #FFFFFF;
  --c-mute-1:     #6B6B6B;
  --c-mute-2:     #B5B5B5;
  --c-line:       #E5E5E5;
  --c-fill:       #F2F2F2;

  /* Single brand accent — used in ≤3 places per screen */
  --c-accent:     #DC4405;

  /* Type system */
  --f-display:    'Fraunces', 'Times New Roman', serif;
  --f-body:       'Inter', system-ui, sans-serif;
  --f-mono:       'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Scale */
  --t-xs:   12px;
  --t-sm:   14px;
  --t-base: 16px;
  --t-md:   18px;
  --t-lg:   22px;
  --t-xl:   28px;
  --t-2xl:  42px;
  --t-3xl:  64px;
  --t-4xl:  96px;
  --t-hero: clamp(56px, 9vw, 132px);

  --gutter:  clamp(20px, 4vw, 56px);
  --section: clamp(80px, 12vw, 160px);
  --max-w:   1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: var(--t-base);
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ============ TYPE PRIMITIVES ============ */
.mono       { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }
.mono-ink   { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-ink); }
.serif      { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
.serif-light{ font-family: var(--f-display); font-weight: 300; letter-spacing: -0.015em; line-height: 1.1; }

/* ============ LAYOUT ============ */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }

/* ============ HEADER ============ */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 250, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.nav {
  display: flex; align-items: center;
  padding: 16px var(--gutter); max-width: var(--max-w); margin: 0 auto;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; filter: brightness(0); }

/* Catalog wrapper — for dropdown */
.nav-catalog-wrapper { position: relative; flex-shrink: 0; }

/* Dropdown panel */
.nav-catalog-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  width: 380px;
  background: var(--c-paper-pure);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.12);
  padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}
/* Invisible hover-bridge so cursor doesn't lose :hover when moving from button to panel */
.nav-catalog-dropdown::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.nav-catalog-wrapper:hover .nav-catalog-dropdown,
.nav-catalog-wrapper:focus-within .nav-catalog-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}

.nav-cat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px;
  border-radius: 8px;
  color: var(--c-ink);
  transition: background 0.2s ease;
}
.nav-cat-item:hover { background: var(--c-fill); }
.nav-cat-item:hover .nav-cat-arrow { color: var(--c-accent); transform: translateX(4px); }
.nav-cat-thumb {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--c-fill);
  border-radius: 8px; overflow: hidden;
}
.nav-cat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nav-cat-text {
  flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.nav-cat-text strong {
  font-family: var(--f-body); font-size: var(--t-sm);
  font-weight: 600; color: var(--c-ink);
}
.nav-cat-text span {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.06em; color: var(--c-mute-1);
}
.nav-cat-arrow {
  width: 16px; height: 16px;
  color: var(--c-mute-2);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
/* Nested structure: Морозиво parent + 3 subs */
.nav-cat-parent { /* base style same as .nav-cat-item, kept for clarity */ }
.nav-cat-arrow-down { transform: rotate(0deg); }
.nav-cat-subitems {
  margin: 2px 0 10px 32px;
  padding-left: 14px;
  border-left: 1px solid var(--c-line);
  display: flex; flex-direction: column; gap: 2px;
}
.nav-cat-sub {
  padding: 8px 10px !important;
  border-radius: 6px;
}
.nav-cat-sub .nav-cat-thumb {
  width: 36px; height: 36px; border-radius: 6px;
}
.nav-cat-sub .nav-cat-text strong { font-size: 13px; }
.nav-cat-sub .nav-cat-text span { font-size: 9px; }

.nav-cat-all {
  display: block; text-align: center;
  margin-top: 8px; padding: 12px;
  background: var(--c-ink); color: var(--c-paper);
  border-radius: 8px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  transition: background 0.2s ease;
}
.nav-cat-all:hover { background: var(--c-accent); }

@media (max-width: 980px) {
  .nav-catalog-dropdown { display: none; } /* hide on mobile, drawer takes over */
}

/* Orange Catalog CTA — primary action with subtle pulse */
.nav-catalog-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--c-accent); color: var(--c-paper);
  padding: 12px 22px; border-radius: 6px;
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700;
  flex-shrink: 0; cursor: pointer; user-select: none;
  animation: nav-cta-pulse 2.6s ease-in-out infinite;
  transition: background 0.2s ease;
  border: none;
}
.nav-catalog-cta:hover { animation-play-state: paused; background: var(--c-ink); }
.nav-catalog-cta-icon { font-size: 18px; line-height: 1; }
@keyframes nav-cta-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 68, 5, 0.45); }
  50%      { transform: scale(1.035); box-shadow: 0 0 0 10px rgba(220, 68, 5, 0); }
}

/* Main nav — clean text links (no background, just labels) */
.nav-menu {
  display: flex; gap: 28px; list-style: none;
  margin: 0 auto; /* push lang/icons to the right */
  flex-wrap: nowrap;
}
.nav-menu a {
  display: inline-block;
  background: transparent; color: var(--c-ink);
  padding: 8px 0;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--c-accent); }
.nav-menu a.active { color: var(--c-ink); }
.nav-menu a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--c-accent);
}

/* Secondary CTA — orange request-price button, same style as КАТАЛОГ but without pulse */
.nav-request-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--c-accent); color: var(--c-paper);
  padding: 12px 22px; border-radius: 6px;
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700;
  flex-shrink: 0; white-space: nowrap;
  transition: background 0.2s ease;
  border: none;
}
.nav-request-cta:hover { background: var(--c-ink); }
.nav-request-cta-icon { display: inline-flex; }
.nav-request-cta-icon svg { width: 16px; height: 16px; }

/* Language switcher */
.nav-lang {
  display: inline-flex; gap: 2px; flex-shrink: 0;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-lang button {
  padding: 8px 10px; color: var(--c-mute-2);
  border-radius: 4px; font-weight: 500;
  transition: all 0.2s ease;
}
.nav-lang button:hover { color: var(--c-ink); }
.nav-lang button.active { color: var(--c-ink); background: var(--c-fill); }

/* Utility icons (search · favorites · cart) */
.nav-icons {
  display: inline-flex; gap: 4px; align-items: center; flex-shrink: 0;
  padding-left: 12px; border-left: 1px solid var(--c-line);
}
.nav-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-ink); transition: color 0.2s ease;
  position: relative; cursor: pointer;
  background: none; border: none;
}
.nav-icon:hover { color: var(--c-accent); }
.nav-icon svg { width: 19px; height: 19px; }
.nav-icon-count, .cart-count, .wishlist-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--c-accent); color: var(--c-paper);
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.cart-count.is-empty, .wishlist-count.is-empty {
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}
.nav-icon-cart, .nav-icon-wishlist { position: relative; }
/* active heart on nav and on cards */
.nav-icon-wishlist.is-active svg, [data-wishlist-toggle].is-active svg {
  fill: var(--c-accent);
  stroke: var(--c-accent);
}
[data-wishlist-toggle] {
  transition: transform .15s ease;
}
[data-wishlist-toggle].is-active { transform: scale(1.1); }
[data-wishlist-toggle].is-bump { animation: heartBump .4s ease; }
@keyframes heartBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.4); }
  100% { transform: scale(1.1); }
}
/* "pulse" коли число змінилося */
.cart-count.is-bump { animation: cartBump 0.4s ease; }
@keyframes cartBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.menu-toggle { display: none; font-size: 24px; padding: 6px; color: var(--c-ink); }

/* Mobile menu drawer */
.mobile-drawer {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0; width: min(85vw, 380px);
  background: var(--c-paper); z-index: 200;
  padding: 80px 40px 40px; transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--c-line);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-close {
  position: absolute; top: 24px; right: 24px; font-size: 24px;
}
.mobile-drawer nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-drawer nav a {
  font-family: var(--f-display); font-size: 32px; font-weight: 300;
  letter-spacing: -0.02em; color: var(--c-ink);
}
.mobile-drawer nav a:hover { color: var(--c-accent); }
.mobile-drawer .nav-cta-mobile {
  margin-top: 40px; padding: 18px 28px; background: var(--c-accent); color: var(--c-paper);
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center; border-radius: 6px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.mobile-drawer-utility {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--c-line);
  display: flex; gap: 12px; align-items: center;
}
.mobile-drawer-utility .nav-icon { width: 44px; height: 44px; border: 1px solid var(--c-line); border-radius: 6px; }
.mobile-drawer-lang {
  margin-top: 16px;
  display: flex; gap: 4px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.mobile-drawer-lang button {
  padding: 8px 14px; color: var(--c-mute-2);
  border: 1px solid var(--c-line); border-radius: 4px;
}
.mobile-drawer-lang button.active { color: var(--c-ink); border-color: var(--c-ink); background: var(--c-fill); }
.mobile-backdrop {
  display: none;
  position: fixed; inset: 0; background: rgba(10, 10, 10, 0.4);
  z-index: 150; backdrop-filter: blur(2px);
}
.mobile-backdrop.open { display: block; }

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 16px 28px;
  border: 1px solid var(--c-ink);
  transition: all 0.25s ease;
  display: inline-flex; align-items: center; gap: 12px; cursor: pointer;
}
.btn-primary { background: var(--c-ink); color: var(--c-paper); }
.btn-primary:hover { background: var(--c-accent); border-color: var(--c-accent); }
.btn-ghost { background: transparent; color: var(--c-ink); }
.btn-ghost:hover { background: var(--c-ink); color: var(--c-paper); }
.btn-on-dark { background: var(--c-paper); color: var(--c-ink); border-color: var(--c-paper); }
.btn-on-dark:hover { background: var(--c-accent); color: var(--c-paper); border-color: var(--c-accent); }
.btn-arrow {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-ink);
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 0;
  border-bottom: 1px solid var(--c-ink); transition: gap 0.25s ease;
}
.btn-arrow:hover { gap: 18px; }

/* ============ SECTION HEAD ============ */
.section-head {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px); align-items: start;
  margin-bottom: clamp(60px, 8vw, 100px);
  padding-bottom: 32px; border-bottom: 1px solid var(--c-line);
}
.section-num {
  font-family: var(--f-mono); font-size: var(--t-sm); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-mute-1);
}
.section-title {
  font-family: var(--f-display); font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.025em;
}
.section-title em { font-style: italic; font-weight: 400; }

/* ============ PAGE HEADER (for inner pages) ============ */
.page-head {
  padding: clamp(60px, 10vw, 140px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--c-line);
}
.page-head .wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
}
.page-head .crumbs {
  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 28px;
}
.page-head .crumbs a:hover { color: var(--c-ink); }
.page-head h1 {
  font-family: var(--f-display); font-size: clamp(48px, 7vw, 96px);
  font-weight: 300; line-height: 1; letter-spacing: -0.03em;
}
.page-head h1 em { font-style: italic; font-weight: 400; }
.page-head .lede {
  font-size: var(--t-md); line-height: 1.6; color: var(--c-mute-1);
  max-width: 50ch;
}

/* ============ HERO ============ */
.hero { padding: clamp(60px, 10vw, 120px) 0 var(--section); border-bottom: 1px solid var(--c-line); }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: end; }
.hero-content { display: flex; flex-direction: column; gap: 36px; }
.hero-tagline {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-mute-1);
}
.hero-tagline::before { content: ''; width: 32px; height: 1px; background: var(--c-ink); }
.hero-title {
  font-family: var(--f-display); font-size: var(--t-hero);
  font-weight: 300; line-height: 0.98; letter-spacing: -0.035em; color: var(--c-ink);
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-sub { font-size: var(--t-md); line-height: 1.55; color: var(--c-mute-1); max-width: 50ch; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.hero-visual { position: relative; aspect-ratio: 4/5; background: var(--c-fill); overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-label {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-paper);
  background: rgba(10, 10, 10, 0.7); padding: 8px 12px; backdrop-filter: blur(8px);
}

/* ============ META BAR (legacy thin) ============ */
.meta-bar { border-bottom: 1px solid var(--c-line); }
.meta-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; flex-wrap: wrap; gap: 20px;
  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-ink);
}
.meta-bar-inner span { display: flex; align-items: center; gap: 8px; }
.meta-bar-inner span::before {
  content: ''; width: 6px; height: 6px; background: var(--c-accent); border-radius: 50%;
}
.meta-bar-inner span:not(:first-child)::before { background: var(--c-mute-2); }

/* ============ HERO — FULL-BLEED SLIDER ============ */
.hero-fullbleed { padding: 0; border-bottom: 1px solid var(--c-line); }
.hero-slider { position: relative; }

.hero-slides-container {
  position: relative;
  height: calc(100vh - 72px); /* full viewport minus sticky header */
  min-height: 560px;
  overflow: hidden;
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
              visibility 0.6s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; visibility: visible; pointer-events: auto; }

/* Dark gradient overlay on left for text readability */
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(10, 10, 10, 0.72) 0%,
    rgba(10, 10, 10, 0.55) 30%,
    rgba(10, 10, 10, 0.15) 55%,
    rgba(10, 10, 10, 0) 70%);
  z-index: 1;
}

.hero-slide .wrap {
  position: relative; z-index: 2;
  width: 100%;
}
.hero-slide-content {
  max-width: 580px;
  color: var(--c-paper);
  display: flex; flex-direction: column; gap: 28px;
}
.hero-slide-tagline {
  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-paper); opacity: 0.85;
}
.hero-slide-title {
  font-family: var(--f-display);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 300; line-height: 0.98; letter-spacing: -0.035em;
  color: var(--c-paper);
}
.hero-slide-title em { font-style: italic; font-weight: 400; }
.hero-slide-sub {
  font-size: var(--t-md); line-height: 1.55;
  color: rgba(250, 250, 250, 0.88);
  max-width: 50ch;
}
.hero-slide-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* Orange CTA button (primary) */
.btn-orange {
  display: inline-flex; align-items: center;
  background: var(--c-accent); color: var(--c-paper);
  padding: 18px 32px; border-radius: 6px;
  font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700;
  transition: background 0.25s ease;
  white-space: nowrap; border: none; cursor: pointer;
}
.btn-orange:hover { background: var(--c-paper); color: var(--c-ink); }

/* Arrow button on dark backgrounds */
.btn-arrow-light {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-paper);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--c-paper);
  transition: gap 0.25s ease, border-color 0.25s ease;
}
.btn-arrow-light::after { content: '→'; }
.btn-arrow-light:hover { gap: 18px; border-color: var(--c-accent); }

/* Nav arrows — light style for full-bleed */
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; z-index: 30;
  background: rgba(250, 250, 250, 0.15);
  border: 1px solid rgba(250, 250, 250, 0.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 18px; color: var(--c-paper);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease;
  border-radius: 4px;
}
.hero-nav:hover { background: var(--c-paper); color: var(--c-ink); border-color: var(--c-paper); }
.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }

/* Progress bar — overlaid on the bottom of the hero slide */
.hero-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 25;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px var(--gutter) 28px;
  gap: 32px; flex-wrap: wrap;
  max-width: var(--max-w); margin: 0 auto;
  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0) 100%);
}
.hero-progress-info { display: flex; align-items: baseline; gap: 20px; }
.hero-progress-num {
  font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 300;
  letter-spacing: -0.02em; color: var(--c-paper);
}
.hero-progress-num em { color: rgba(250,250,250,0.5); font-style: normal; font-weight: 300; margin: 0 4px; }
.hero-progress-name {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(250,250,250,0.85);
}
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 40px; height: 2px; background: rgba(250,250,250,0.3);
  cursor: pointer; padding: 0; transition: all 0.3s ease;
  position: relative; border: none;
}
.hero-dot::before { content: ''; position: absolute; inset: -10px 0; }
.hero-dot:hover { background: rgba(250,250,250,0.6); }
.hero-dot.active { background: var(--c-accent); }

/* ============ META BAR STRONG (4-cell stat row) ============ */
.meta-bar-strong { border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); background: var(--c-paper); }
.meta-strong-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.meta-strong-cell {
  padding: 44px 32px; border-right: 1px solid var(--c-line);
  display: flex; align-items: baseline; gap: 24px;
}
.meta-strong-cell:last-child { border-right: none; }
.meta-strong-num {
  font-family: var(--f-display); font-size: clamp(48px, 6vw, 84px);
  font-weight: 300; line-height: 1; letter-spacing: -0.03em; color: var(--c-ink);
}
.meta-strong-num em { font-style: italic; color: var(--c-accent); }
.meta-strong-lbl {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-mute-1); line-height: 1.4;
}

/* ============ HERO STACK (3-photo composition) ============ */
.hero-strong { align-items: stretch; }
.hero-stack {
  position: relative;
  min-height: 560px;
}
.hero-stack-item {
  position: absolute;
  overflow: hidden;
  background: var(--c-fill);
  border: 1px solid var(--c-line);
  box-shadow: 0 0 0 1px transparent;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hero-stack-item img { width: 100%; height: 100%; object-fit: cover; }
.hero-stack-label {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-paper);
  background: rgba(10, 10, 10, 0.78); padding: 6px 10px;
  backdrop-filter: blur(8px);
}
.hero-stack-1 { top: 0; right: 0; width: 65%; aspect-ratio: 4/5; z-index: 3; }
.hero-stack-2 { top: 18%; left: 0; width: 40%; aspect-ratio: 1/1; z-index: 2; }
.hero-stack-3 { bottom: 0; right: 12%; width: 35%; aspect-ratio: 1/1; z-index: 4; }
.hero-stack-item:hover { transform: translateY(-6px); z-index: 5; }

/* ============ MANIFESTO ============ */
.manifesto-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px); align-items: start;
}
.manifesto-image { aspect-ratio: 4/5; background: var(--c-fill); overflow: hidden; }
.manifesto-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.manifesto-text { font-size: var(--t-md); line-height: 1.6; color: var(--c-ink); display: flex; flex-direction: column; gap: 24px; }
.manifesto-text p:first-child {
  font-family: var(--f-display); font-size: var(--t-xl); font-weight: 300;
  line-height: 1.3; letter-spacing: -0.015em; color: var(--c-ink);
}
.manifesto-text p { color: var(--c-mute-1); }
.manifesto-text strong { color: var(--c-ink); font-weight: 500; }

/* ============ AUDIENCE LIST ============ */
.audience-list { display: flex; flex-direction: column; }
.audience-row {
  display: grid; grid-template-columns: 80px 1.2fr 2fr 1fr;
  gap: 40px; padding: 40px 0; border-bottom: 1px solid var(--c-line);
  align-items: center; transition: padding 0.3s ease; cursor: pointer;
}
.audience-row:first-child { border-top: 1px solid var(--c-line); }
.audience-row:hover { padding-left: 16px; }
.audience-num { font-family: var(--f-mono); font-size: var(--t-sm); letter-spacing: 0.08em; color: var(--c-mute-1); }
.audience-name {
  font-family: var(--f-display); font-size: clamp(24px, 3vw, 40px);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1;
}
.audience-desc { color: var(--c-mute-1); font-size: var(--t-sm); line-height: 1.6; }
.audience-link {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; text-align: right; color: var(--c-ink);
}
.audience-link::after { content: ' →'; margin-left: 6px; transition: margin 0.25s ease; }
.audience-row:hover .audience-link::after { margin-left: 14px; }

/* ============ CATALOG 2026 BLOCK (mantinga-style banner + categories) ============ */
.catalog-banner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--c-ink);
  border-radius: clamp(20px, 3vw, 36px);
  overflow: hidden;
  min-height: 380px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.catalog-banner-text {
  padding: clamp(40px, 5vw, 64px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  gap: 40px;
  color: var(--c-paper);
}
.catalog-banner-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--c-paper);
}
.catalog-banner-title em { font-style: italic; font-weight: 400; }
.catalog-banner-cta {
  display: inline-block;
  background: var(--c-accent); color: var(--c-paper);
  padding: 18px 44px; border-radius: 999px;
  font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700;
  transition: all 0.25s ease;
}
.catalog-banner-cta:hover { background: var(--c-paper); color: var(--c-ink); }
.catalog-banner-image {
  position: relative; overflow: hidden;
  background: var(--c-fill);
}
.catalog-banner-image img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Categories strip */
.catalog-categories {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.cat-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 0; transition: transform 0.25s ease;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card-img {
  aspect-ratio: 1/1; background: var(--c-fill); overflow: hidden;
  border-radius: clamp(12px, 1.5vw, 20px);
}
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; backface-visibility: hidden; -webkit-backface-visibility: hidden; transform: translate3d(0, 0, 0); }
.cat-card:hover .cat-card-img img { transform: scale(1.04); }
.cat-card-name {
  font-family: var(--f-display); font-size: var(--t-lg);
  font-weight: 400; letter-spacing: -0.015em; line-height: 1.15;
  color: var(--c-ink);
  padding: 0 4px;
}
.cat-card-meta {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1);
  padding: 0 4px;
}

@media (max-width: 980px) {
  .catalog-banner { grid-template-columns: 1fr; min-height: 0; }
  .catalog-banner-image { aspect-ratio: 16/10; order: -1; }
  .catalog-categories { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 560px) {
  .catalog-categories { grid-template-columns: 1fr; }
}

/* ============ НОВИНКИ — carousel with tabs ============ */
.news-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: clamp(24px, 3vw, 32px); gap: 20px; flex-wrap: wrap;
}
.news-title {
  font-family: var(--f-display); font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; line-height: 1; letter-spacing: -0.025em; color: var(--c-ink);
}
.news-all {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-ink);
  border-bottom: 1px solid var(--c-ink); padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.news-all:hover { color: var(--c-accent); border-color: var(--c-accent); }

.news-tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--c-line);
}
.news-tabs button {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 14px 20px; color: var(--c-mute-1);
  border: none; background: transparent;
  position: relative; transition: color 0.2s ease;
}
.news-tabs button:hover { color: var(--c-ink); }
.news-tabs button.active { color: var(--c-ink); }
.news-tabs button.active::after {
  content: ''; position: absolute; bottom: -1px; left: 16px; right: 16px;
  height: 2px; background: var(--c-accent);
}

.news-carousel {
  position: relative;
}
.news-track {
  display: flex; gap: 24px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--gutter);
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.news-track::-webkit-scrollbar { display: none; }
.news-card {
  flex: 0 0 calc((100% - 24px * 3) / 4); /* 4 cards visible */
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: var(--c-paper-pure);
  border: 1px solid var(--c-line);
  border-radius: clamp(12px, 1.5vw, 18px);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--c-ink); }
.news-img {
  position: relative; aspect-ratio: 4/5;
  background: var(--c-fill); overflow: hidden;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; backface-visibility: hidden; -webkit-backface-visibility: hidden; transform: translate3d(0, 0, 0); }
.news-card:hover .news-img img { transform: scale(1.04); }
.news-img-label {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-paper);
  background: rgba(10,10,10,0.78); padding: 6px 10px;
  backdrop-filter: blur(8px);
}
.news-body {
  padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.news-cat {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-mute-1);
}
.news-name {
  font-family: var(--f-display); font-size: var(--t-lg);
  font-weight: 400; letter-spacing: -0.015em; line-height: 1.2;
  min-height: 2.4em;
}
.news-price {
  font-size: var(--t-sm); color: var(--c-mute-1);
  padding-top: 8px; margin-top: auto;
}
.news-price strong { color: var(--c-ink); font-weight: 500; }
.news-actions {
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--c-line);
}
.news-buy {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-accent); color: var(--c-paper);
  padding: 12px 18px; border-radius: 6px;
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase; font-weight: 700;
  transition: background 0.2s ease;
}
.news-buy:hover { background: var(--c-ink); }
.news-buy-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-paper-pure); color: var(--c-ink);
  border: 1px solid var(--c-ink);
  padding: 12px 14px; border-radius: 6px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 500; white-space: nowrap;
  transition: all 0.2s ease;
}
.news-buy-secondary:hover { background: var(--c-ink); color: var(--c-paper); }

/* Carousel nav arrows */
.news-nav {
  position: absolute; top: 35%; transform: translateY(-50%);
  width: 48px; height: 48px; z-index: 10;
  background: var(--c-paper-pure); border: 1px solid var(--c-ink);
  border-radius: 50%;
  font-size: 18px; color: var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.news-nav:hover { background: var(--c-ink); color: var(--c-paper); }
.news-prev { left: -16px; }
.news-next { right: -16px; }

@media (max-width: 1280px) {
  .news-card { flex: 0 0 calc((100% - 24px * 2) / 3); } /* 3 visible */
}
@media (max-width: 980px) {
  .news-card { flex: 0 0 calc((100% - 24px) / 2); } /* 2 visible */
  .news-nav { width: 40px; height: 40px; }
  .news-prev { left: 4px; }
  .news-next { right: 4px; }
}
@media (max-width: 560px) {
  .news-card { flex: 0 0 78%; } /* 1.2 visible — peek next */
}

/* ============ CONTACTS page (mantinga-style) ============ */
.contacts-info-section { padding: clamp(40px, 5vw, 80px) 0; }
.contacts-info-section .crumbs {
  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 20px;
}
.contacts-info-section .crumbs a:hover { color: var(--c-accent); }
.contacts-info-section h1 {
  font-family: var(--f-display); font-size: clamp(40px, 5vw, 64px);
  font-weight: 400; line-height: 1; letter-spacing: -0.025em;
  color: var(--c-ink); margin-bottom: clamp(32px, 4vw, 56px);
}

.contacts-info-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: stretch;
}

.contacts-info-text { display: flex; flex-direction: column; gap: 24px; }
.contact-block { display: flex; flex-direction: column; gap: 6px; }
.contact-block h4 {
  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-mute-1); margin: 0;
}
.contact-block-icon {
  display: flex; align-items: center; gap: 8px;
  color: var(--c-accent);
}
.contact-block-icon svg { width: 14px; height: 14px; }
.contact-block p {
  font-size: var(--t-md); line-height: 1.55; color: var(--c-ink); margin: 0;
}
.contact-phone {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-size: var(--t-xl); font-weight: 500;
  letter-spacing: -0.01em; color: var(--c-ink);
  margin: 4px 0;
  transition: color 0.2s ease;
}
.contact-phone:hover { color: var(--c-accent); }
.contact-line {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: var(--t-sm);
  color: var(--c-mute-1); margin: 2px 0;
  transition: color 0.2s ease;
}
.contact-icon {
  width: 18px; height: 18px;
  color: var(--c-accent); flex-shrink: 0;
}
.contact-phone .contact-icon { width: 20px; height: 20px; }
.contact-block-icon {
  display: inline-flex; align-items: center; gap: 10px;
}
.contact-block-icon svg { width: 16px; height: 16px; color: var(--c-accent); flex-shrink: 0; }
.contact-address.contact-block-icon { font-size: var(--t-md); }
.contact-line:hover { color: var(--c-accent); }
.contact-address {
  font-family: var(--f-display); font-size: var(--t-md);
  font-weight: 500; color: var(--c-ink);
}

.contacts-info-map {
  border-radius: 16px; overflow: hidden;
  background: var(--c-fill);
  min-height: 480px;
  border: 1px solid var(--c-line);
  display: block;
  position: relative;
}
.contacts-info-map iframe { width: 100%; height: 100%; min-height: 480px; display: block; }
.map-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 32px;
  gap: 12px;
  /* subtle map-like grid */
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-marker {
  width: 56px; height: 56px;
  color: var(--c-accent);
  filter: drop-shadow(0 4px 12px rgba(220, 68, 5, 0.4));
}
.map-label {
  font-family: var(--f-display); font-size: var(--t-xl);
  font-weight: 500; color: var(--c-ink);
  margin-top: 4px;
}
.map-address {
  font-size: var(--t-sm); color: var(--c-mute-1);
}
.map-cta {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-accent); font-weight: 600;
  margin-top: 12px;
  padding: 8px 16px;
  border: 1px solid var(--c-accent); border-radius: 999px;
}

.contacts-info-cta {
  display: flex; justify-content: center;
  margin-top: clamp(48px, 6vw, 80px);
}

/* Orange pill CTA (used on contacts) */
.btn-orange-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-accent); color: var(--c-paper);
  padding: 22px 60px; border-radius: 999px;
  font-family: var(--f-mono); font-size: 15px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 800;
  transition: all 0.25s ease; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(220, 68, 5, 0.25);
}
.btn-orange-pill:hover { background: var(--c-ink); box-shadow: 0 4px 20px rgba(10,10,10,0.25); }

/* Form section */
.contacts-form-head {
  text-align: center; margin-bottom: clamp(32px, 4vw, 56px);
}
.contacts-form-head h2 {
  font-family: var(--f-display); font-size: clamp(36px, 4vw, 56px);
  font-weight: 400; line-height: 1; letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.contacts-form-head h2 em { font-style: italic; }
.contacts-form-head p {
  font-size: var(--t-md); color: var(--c-mute-1); line-height: 1.55;
  max-width: 60ch; margin: 0 auto;
}

.contacts-form {
  max-width: 760px; margin: 0 auto;
  padding: clamp(32px, 4vw, 56px);
  background: var(--c-paper-pure);
  border: 1px solid var(--c-line);
  border-radius: 16px;
}
.form-submit-btn { margin: 16px auto 0; }

@media (max-width: 980px) {
  .contacts-info-grid { grid-template-columns: 1fr; gap: 32px; }
  .contacts-info-map { min-height: 320px; }
  .contacts-info-map iframe { min-height: 320px; }
}

/* ============ DELIVERY & PAYMENT page (cooperation.html) ============ */
.delivery-title-section { padding: clamp(40px, 5vw, 80px) 0 clamp(28px, 3vw, 48px); }
.delivery-title-section .wrap { text-align: center; }
.delivery-title-section .crumbs {
  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 20px;
}
.delivery-title-section .crumbs a:hover { color: var(--c-accent); }
.delivery-title-section h1 {
  font-family: var(--f-display); font-size: clamp(40px, 5vw, 72px);
  font-weight: 400; line-height: 1; letter-spacing: -0.025em;
  color: var(--c-ink);
}

.delivery-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 36px);
}
.delivery-card {
  background: var(--c-paper-pure);
  border: 1px solid #d4b896; /* warm cream border like on sketch */
  border-radius: 16px;
  padding: clamp(40px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
  display: flex; flex-direction: column; gap: 20px;
}
.delivery-icon {
  width: 56px; height: 56px;
  margin: 0 auto;
  background: var(--c-fill);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
}
.delivery-icon svg { width: 28px; height: 28px; }
.delivery-card-title {
  font-family: var(--f-display); font-size: var(--t-xl);
  font-weight: 400; letter-spacing: -0.015em; line-height: 1.2;
  text-align: center; color: var(--c-ink);
}
.delivery-card-body {
  display: flex; flex-direction: column; gap: 12px;
  font-size: var(--t-sm); line-height: 1.6; color: var(--c-ink);
}
.delivery-card-body p { margin: 0; }
.delivery-card-body strong { font-weight: 600; color: var(--c-ink); }
.delivery-subtitle {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-ink); font-weight: 600;
  padding-bottom: 8px; border-bottom: 1px solid var(--c-line);
  margin-bottom: 4px;
}
.delivery-block-title {
  font-family: var(--f-display); font-size: var(--t-md);
  font-weight: 600; color: var(--c-ink);
  margin: 12px 0 4px;
}

/* Payment single card centered */
.payment-card-wrap {
  display: flex; justify-content: center;
}
.payment-card {
  background: var(--c-paper-pure);
  border: 1px solid #d4b896;
  border-radius: 16px;
  padding: clamp(32px, 4vw, 48px) clamp(48px, 6vw, 80px);
  display: flex; flex-direction: column; gap: 20px;
  align-items: center; text-align: center;
  max-width: 580px;
}
.payment-icon {
  width: 56px; height: 56px;
  background: var(--c-fill); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
}
.payment-icon svg { width: 28px; height: 28px; }
.payment-card-title {
  font-family: var(--f-display); font-size: var(--t-lg);
  font-weight: 400; letter-spacing: -0.015em; line-height: 1.3;
  color: var(--c-ink);
}

/* Delivery info block — image + dark panel */
.delivery-info-block {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; gap: 0;
}
.delivery-info-photo {
  overflow: hidden; min-height: 460px;
  border-radius: 0;
}
.delivery-info-photo img { width: 100%; height: 100%; object-fit: cover; }
.delivery-info-panel {
  background: var(--c-ink); color: var(--c-paper);
  padding: clamp(40px, 5vw, 72px);
  border-top-right-radius: 16px; border-bottom-right-radius: 16px;
  display: flex; flex-direction: column; gap: 16px;
}
.info-line {
  font-size: var(--t-md); line-height: 1.5;
  color: var(--c-paper);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(250,250,250,0.15);
}
.info-prices { display: flex; flex-direction: column; gap: 4px; }
.info-prices p { font-size: var(--t-sm); color: rgba(250,250,250,0.85); margin: 0; }
.delivery-info-panel h4 {
  font-family: var(--f-display); font-size: var(--t-md);
  font-weight: 500; color: var(--c-paper);
  margin: 16px 0 4px;
}
.info-list {
  list-style: none; padding-left: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.info-list li {
  font-size: var(--t-sm); line-height: 1.5;
  color: rgba(250,250,250,0.85);
  padding-left: 24px; position: relative;
}
.info-list li::before {
  content: '•'; position: absolute; left: 4px;
  color: var(--c-accent); font-size: 16px; top: -3px;
}
.info-warning {
  font-size: var(--t-md); color: var(--c-accent);
  font-weight: 600; margin-top: 12px;
  padding-top: 12px; border-top: 1px solid rgba(250,250,250,0.15);
}

@media (max-width: 980px) {
  .delivery-cards { grid-template-columns: 1fr; }
  .delivery-info-block { grid-template-columns: 1fr; }
  .delivery-info-panel { border-radius: 0 0 16px 16px; }
  .delivery-info-photo { min-height: 280px; border-radius: 16px 16px 0 0; }
}

/* ============ ABOUT US — mantinga-style page ============ */
.about-title {
  padding: clamp(40px, 5vw, 80px) 0 clamp(32px, 4vw, 64px);
  text-align: center;
}
.about-title h1 {
  font-family: var(--f-display); font-size: clamp(48px, 6vw, 96px);
  font-weight: 300; line-height: 1; letter-spacing: -0.03em;
  color: var(--c-ink);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: flex-start;
}

/* Sticky video column */
.about-video-col {
  position: sticky; top: 88px;
  align-self: start;
}
.about-video {
  background: var(--c-fill);
  border-radius: 12px;
  overflow: hidden;
}
.about-video-frame {
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  overflow: hidden;
}
.about-video-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.about-video-frame:hover img { transform: scale(1.03); }
.about-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  padding: 20px;
}
.about-video-badge {
  align-self: flex-start;
  display: flex; align-items: center; gap: 8px;
  background: rgba(220, 68, 5, 0.95);
  padding: 6px 12px; border-radius: 4px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-paper); font-weight: 600;
}
.about-video-play {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(220, 68, 5, 0.95);
  border: none; color: var(--c-paper);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; margin: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}
.about-video-play:hover { background: var(--c-accent); transform: scale(1.08); }
.about-video-play svg { width: 32px; height: 32px; margin-left: 4px; }
.about-video-caption {
  font-family: var(--f-display); font-size: clamp(28px, 3vw, 44px);
  font-weight: 600; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--c-paper); text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  align-self: stretch;
}

/* Right text column */
.about-text-col { display: flex; flex-direction: column; gap: clamp(48px, 6vw, 80px); }
.about-section {
  display: flex; flex-direction: column; gap: 20px;
}
.about-section h2 {
  font-family: var(--f-display); font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--c-ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}
.about-section h3 {
  font-family: var(--f-display); font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500; letter-spacing: -0.015em;
  color: var(--c-ink); margin-top: 16px;
}
.about-section p {
  font-size: var(--t-md); line-height: 1.65; color: var(--c-ink);
}
.about-section strong { color: var(--c-ink); font-weight: 600; }
.about-section em { font-style: italic; color: var(--c-mute-1); }

.about-principles {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 8px;
}
.about-principles dt {
  font-family: var(--f-display); font-size: var(--t-md);
  font-weight: 500; color: var(--c-ink);
  padding-top: 16px; border-top: 1px solid var(--c-line);
  position: relative; padding-left: 28px;
}
.about-principles dt::before {
  content: '—'; position: absolute; left: 0; color: var(--c-accent); font-weight: 600;
}
.about-principles dd {
  font-size: var(--t-sm); line-height: 1.55; color: var(--c-mute-1);
  margin-left: 28px; margin-top: 4px;
}

.about-mission {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4;
  color: var(--c-ink); padding: 24px 28px;
  border-left: 3px solid var(--c-accent);
  background: var(--c-fill);
  margin-top: 8px;
}

/* Big orange CTA */
.about-cta {
  display: inline-flex; align-self: flex-start;
  background: var(--c-accent); color: var(--c-paper);
  padding: 22px 60px; border-radius: 999px;
  font-family: var(--f-mono); font-size: 15px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 800;
  transition: all 0.25s ease;
  margin-top: 16px;
  box-shadow: 0 4px 20px rgba(220, 68, 5, 0.25);
}
.about-cta:hover { background: var(--c-ink); box-shadow: 0 4px 20px rgba(10, 10, 10, 0.25); }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-video-col { position: static; }
}

/* ============ ПЕРЕВАГИ ПРОДУКЦІЇ ============ */
.benefits-head {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 100px); align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: 32px; border-bottom: 1px solid var(--c-line);
}
.benefits-head h2 {
  font-family: var(--f-display); font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.025em;
}
.benefits-head h2 em { font-style: italic; font-weight: 400; }
.benefits-lede {
  font-size: var(--t-md); line-height: 1.6; color: var(--c-mute-1);
  max-width: 60ch;
}

.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 56px) clamp(40px, 5vw, 80px);
}
.benefit-block {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 28px; border-top: 2px solid var(--c-ink);
}
.benefit-title {
  font-family: var(--f-display); font-size: var(--t-xl);
  font-weight: 400; letter-spacing: -0.02em; line-height: 1.15;
}
.benefit-block p {
  font-size: var(--t-base); line-height: 1.6; color: var(--c-ink);
}
.benefit-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  padding-left: 0; margin-top: 4px;
}
.benefit-list li {
  font-size: var(--t-sm); line-height: 1.5; color: var(--c-mute-1);
  padding-left: 24px; position: relative;
}
.benefit-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--c-accent); font-weight: 600;
}

@media (max-width: 980px) {
  .benefits-head { grid-template-columns: 1fr; gap: 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============ НАШІ ПАРТНЕРИ — marquee strip ============ */
.partners-marquee {
  padding: clamp(48px, 6vw, 96px) 0 clamp(40px, 5vw, 72px);
  background: var(--c-paper);
  overflow: hidden;
  position: relative;
}
.partners-marquee-title {
  font-family: var(--f-display); font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300; line-height: 1; letter-spacing: -0.025em;
  text-align: center; color: var(--c-ink);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.partners-marquee-title em { font-style: italic; font-weight: 400; }

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* fade edges so logos slide in/out softly */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  width: max-content;
  animation: marquee-slide 60s linear infinite;
  will-change: transform;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-slide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.m-logo {
  flex: 0 0 auto;
  height: 56px;
  min-width: 110px;
  display: flex; align-items: center; justify-content: center;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.m-logo img {
  max-height: 100%; max-width: 180px;
  width: auto; height: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.m-logo:hover img {
  opacity: 1;
  transform: scale(1.08);
}
.m-logo-text {
  font-family: var(--f-display); font-size: 22px;
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--c-mute-1); white-space: nowrap;
  padding: 0 8px;
}
.m-logo-text:hover { color: var(--c-ink); }

/* ============ QTY CONTROL (used on cart, product, etc) ============ */
.qty-control {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--c-line); border-radius: 8px;
  overflow: hidden; background: var(--c-paper-pure);
}
.qty-btn {
  width: 36px; height: 40px; padding: 0;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--f-mono); font-size: 18px;
  color: var(--c-ink);
  transition: background 0.15s ease;
}
.qty-btn:hover { background: var(--c-fill); }
.qty-btn:disabled { color: var(--c-mute-2); cursor: not-allowed; }

.qty-input {
  width: 52px; height: 40px;
  border: none;
  border-left: 1px solid var(--c-line); border-right: 1px solid var(--c-line);
  text-align: center;
  font-family: var(--f-mono); font-size: 15px; font-weight: 600;
  color: var(--c-ink);
  background: var(--c-paper-pure);
  -moz-appearance: textfield;
  appearance: textfield;
}
/* Прибрати native spinner arrows у Webkit/Blink/Safari */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.qty-input:focus { outline: none; }

/* ============ LGI MODAL (custom confirm) ============ */
.lgi-modal-root {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 10000;
}
.lgi-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: auto;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lgi-modal-backdrop.is-in { opacity: 1; }
.lgi-modal-backdrop.is-out { opacity: 0; }

.lgi-modal {
  background: var(--c-paper-pure);
  border-radius: 16px;
  padding: 32px 32px 24px;
  max-width: 440px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: scale(0.95) translateY(8px);
  transition: transform 0.2s ease;
}
.lgi-modal-backdrop.is-in .lgi-modal { transform: scale(1) translateY(0); }

.lgi-modal-title {
  font-family: var(--f-display); font-size: 24px;
  font-weight: 500; letter-spacing: -0.015em; line-height: 1.2;
  color: var(--c-ink); margin-bottom: 10px;
}
.lgi-modal-text {
  font-size: 15px; color: var(--c-mute-1); line-height: 1.5;
  margin-bottom: 24px;
}

.lgi-modal-actions {
  display: flex; gap: 10px; justify-content: flex-end;
  flex-wrap: wrap;
}
.lgi-modal-btn {
  padding: 12px 22px; border-radius: 10px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent;
  transition: all 0.2s ease;
  min-width: 120px;
}
.lgi-modal-cancel {
  background: transparent; color: var(--c-mute-1);
  border-color: var(--c-line);
}
.lgi-modal-cancel:hover {
  color: var(--c-ink); border-color: var(--c-ink);
  background: var(--c-fill);
}
.lgi-modal-confirm {
  background: var(--c-accent); color: var(--c-paper);
  box-shadow: 0 4px 14px rgba(220, 68, 5, 0.25);
}
.lgi-modal-confirm:hover {
  background: var(--c-ink);
  box-shadow: 0 4px 14px rgba(10,10,10,0.2);
}
.lgi-modal-danger {
  background: #e74c3c; color: #fff;
  box-shadow: 0 4px 14px rgba(231, 76, 60, 0.3);
}
.lgi-modal-danger:hover {
  background: #c0392b;
}
.lgi-modal-btn:focus { outline: 2px solid var(--c-accent); outline-offset: 2px; }

@media (max-width: 480px) {
  .lgi-modal-actions { flex-direction: column-reverse; }
  .lgi-modal-btn { width: 100%; }
}

/* ============ TOAST (cart confirmations) ============ */
.lgi-toast-root {
  position: fixed; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 9999; pointer-events: none;
}
.lgi-toast {
  pointer-events: auto;
  display: flex; align-items: center; gap: 12px;
  background: var(--c-ink); color: var(--c-paper);
  padding: 14px 22px; border-radius: 12px;
  font-family: var(--f-body); font-size: 14px; font-weight: 500;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  opacity: 0; transform: translateY(10px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
  min-width: 260px; max-width: 380px;
}
.lgi-toast.is-in { opacity: 1; transform: translateY(0) scale(1); }
.lgi-toast.is-out { opacity: 0; transform: translateY(-6px) scale(0.96); }
.lgi-toast svg {
  width: 20px; height: 20px; flex: 0 0 20px;
  color: var(--c-accent);
}
.lgi-toast-action {
  margin-left: auto;
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-accent); white-space: nowrap;
  padding: 6px 10px; border: 1px solid var(--c-accent); border-radius: 6px;
  transition: all 0.2s ease;
}
.lgi-toast-action:hover { background: var(--c-accent); color: var(--c-paper); }
@media (max-width: 600px) {
  .lgi-toast-root { left: 16px; right: 16px; bottom: 16px; }
  .lgi-toast { min-width: 0; width: 100%; }
}

/* Плашка-візитка для PNG з блакитним/світлим фоном (AllMall, Лоток тощо).
   Темна плашка створює контрастну рамку, в якій кольоровий фон логотипа
   виглядає інтегрованим, а не "артефактом скріншоту". */
.m-logo-tile {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 12px 22px;
  height: 72px;
  min-width: 140px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.m-logo-tile:hover {
  background: #2a2a2a;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.m-logo-tile img {
  max-height: 100%; max-width: 160px;
  opacity: 1;
}
.m-logo-tile:hover img { transform: none; opacity: 1; }

/* Slower / smaller on mobile */
@media (max-width: 768px) {
  .marquee-track { gap: 40px; animation-duration: 45s; }
  .m-logo { height: 44px; min-width: 90px; }
  .m-logo img { max-width: 140px; }
  .m-logo-text { font-size: 18px; }
}
/* @media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: translate3d(0,0,0); }
  .marquee-wrap { overflow-x: auto; }
} */

/* ============ PRODUCT LINES ============ */
.lines-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--c-line); border: 1px solid var(--c-line);
}
.line-card {
  background: var(--c-paper-pure); padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 480px; transition: background 0.25s ease; cursor: pointer;
}
.line-card:hover { background: var(--c-paper); }
.line-image { aspect-ratio: 1/1; background: var(--c-fill); overflow: hidden; }
.line-image img { width: 100%; height: 100%; object-fit: cover; }
.line-meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }
.line-name { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
.line-desc { font-size: var(--t-sm); line-height: 1.55; color: var(--c-mute-1); margin-top: auto; }
.line-spec {
  display: flex; gap: 24px; padding-top: 16px; border-top: 1px solid var(--c-line);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--c-ink);
}
.line-spec span { display: flex; flex-direction: column; gap: 2px; }
.line-spec span small { color: var(--c-mute-1); font-size: 10px; }

/* ============ FEATURED PRODUCTS ============ */
.featured-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.feat {
  background: var(--c-paper-pure); border: 1px solid var(--c-line);
  display: flex; flex-direction: column; transition: border-color 0.25s ease;
}
.feat:hover { border-color: var(--c-ink); }
.feat-img { aspect-ratio: 1/1; background: var(--c-fill); overflow: hidden; }
.feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feat:hover .feat-img img { transform: scale(1.03); }
.feat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.feat-meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mute-1); }
.feat-name { font-family: var(--f-display); font-size: var(--t-lg); font-weight: 400; letter-spacing: -0.015em; line-height: 1.15; }
.feat-spec {
  font-family: var(--f-mono); font-size: 11px; color: var(--c-ink);
  padding-top: 12px; margin-top: auto; border-top: 1px solid var(--c-line);
  display: flex; justify-content: space-between; align-items: center;
}
.feat-spec button {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--c-ink);
  padding: 6px 10px; border: 1px solid var(--c-ink); transition: all 0.2s ease;
}
.feat-spec button:hover { background: var(--c-ink); color: var(--c-paper); }
.feat-3 { grid-column: span 3; }
.feat-4 { grid-column: span 4; }
.feat-6 { grid-column: span 6; }

/* ============ CATALOG (sidebar + grid layout) ============ */
.cat-title-section { padding: clamp(40px, 5vw, 80px) 0 clamp(32px, 4vw, 60px); }
.cat-title-section .wrap { text-align: center; }
.cat-title-section .crumbs {
  font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 20px;
}
.cat-title-section .crumbs a:hover { color: var(--c-accent); }
.cat-title-section h1 {
  font-family: var(--f-display); font-size: clamp(48px, 6vw, 88px);
  font-weight: 400; line-height: 1; letter-spacing: -0.025em;
  color: var(--c-ink);
}

.cat-layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: clamp(32px, 4vw, 56px); align-items: start;
}

/* Sidebar */
.cat-sidebar {
  position: sticky; top: 88px;
  padding: 24px; border: 1px solid var(--c-line);
  border-radius: 16px; background: var(--c-paper-pure);
}
.cat-sidebar-title {
  font-family: var(--f-display); font-size: var(--t-xl);
  font-weight: 400; letter-spacing: -0.015em;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-line);
}
.cat-tree { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.cat-tree-parent {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 8px;
  font-family: var(--f-body); font-size: var(--t-sm);
  font-weight: 500; color: var(--c-ink);
  cursor: pointer; transition: background 0.2s ease;
}
.cat-tree-parent:hover { background: var(--c-fill); }
.cat-tree-parent.active { background: var(--c-ink); color: var(--c-paper); }
.cat-tree-parent.active .cat-tree-count { background: var(--c-accent); color: var(--c-paper); }
.cat-tree-count {
  font-family: var(--f-mono); font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 99px;
  background: var(--c-fill); color: var(--c-mute-1);
}
.cat-tree-sub { list-style: none; margin: 4px 0 8px 12px; padding: 0; display: flex; flex-direction: column; gap: 2px; border-left: 1px solid var(--c-line); padding-left: 12px; }
.cat-tree-sub a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-radius: 6px;
  font-size: var(--t-sm); color: var(--c-mute-1);
  cursor: pointer; transition: all 0.2s ease;
}
.cat-tree-sub a:hover { background: var(--c-fill); color: var(--c-ink); }
.cat-tree-sub a.active { background: var(--c-fill); color: var(--c-ink); font-weight: 500; }
.cat-tree-sub a.active .cat-tree-count { color: var(--c-accent); font-weight: 700; }

/* Main */
.cat-main { min-width: 0; }
.cat-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.cat-toolbar-left { font-size: var(--t-sm); color: var(--c-mute-1); }
.cat-toolbar-left strong { color: var(--c-ink); font-weight: 600; font-size: var(--t-md); }
.cat-toolbar-right { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.cat-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--c-fill);
  padding: 10px 16px; border-radius: 8px;
  min-width: 240px;
}
.cat-search svg { width: 16px; height: 16px; color: var(--c-mute-1); }
.cat-search input {
  background: transparent; border: none; outline: none;
  font-size: var(--t-sm); flex: 1;
}
.cat-sort {
  padding: 10px 16px; border-radius: 8px;
  border: 1px solid var(--c-line); background: var(--c-paper-pure);
  font-family: var(--f-body); font-size: var(--t-sm); color: var(--c-ink);
  cursor: pointer;
}

/* Product grid */
.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.prod-card {
  background: var(--c-paper-pure);
  border: 1px solid var(--c-line);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.prod-card:hover { border-color: var(--c-ink); transform: translateY(-3px); }
.prod-card-img {
  position: relative; aspect-ratio: 1/1;
  background: var(--c-fill); overflow: hidden;
}
.prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; backface-visibility: hidden; -webkit-backface-visibility: hidden; transform: translate3d(0, 0, 0); }
.prod-card:hover .prod-card-img img { transform: scale(1.04); }
.prod-card-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--c-paper-pure); border: 1px solid var(--c-line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-mute-1); cursor: pointer;
  transition: all 0.2s ease;
}
.prod-card-wishlist:hover { color: var(--c-accent); border-color: var(--c-accent); }
.prod-card-wishlist svg { width: 16px; height: 16px; }

.prod-card-body {
  padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.prod-card-line {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-mute-1);
}
.prod-card-name {
  font-family: var(--f-display); font-size: var(--t-lg);
  font-weight: 400; line-height: 1.2; letter-spacing: -0.015em;
  color: var(--c-ink); cursor: pointer; min-height: 2.4em;
  margin: 0;
}
.prod-card-name:hover { color: var(--c-accent); }
.prod-card-spec {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--c-mute-1); letter-spacing: 0.04em;
  padding-bottom: 8px;
}
.prod-card-price {
  font-size: var(--t-sm); color: var(--c-mute-1);
  padding-top: 8px; margin-top: auto;
  border-top: 1px solid var(--c-line);
}
.prod-card-price strong { color: var(--c-ink); font-weight: 600; }
.prod-card-actions {
  display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 12px;
}
.prod-buy {
  background: var(--c-accent); color: var(--c-paper);
  padding: 12px 18px; border: none; border-radius: 8px;
  font-family: var(--f-mono); font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700;
  cursor: pointer; transition: background 0.2s ease;
}
.prod-buy:hover { background: var(--c-ink); }
.prod-details {
  background: var(--c-paper-pure); color: var(--c-ink);
  border: 1px solid var(--c-line);
  width: 40px; padding: 0; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s ease;
}
.prod-details:hover { background: var(--c-ink); color: var(--c-paper); border-color: var(--c-ink); }
.prod-details svg { width: 16px; height: 16px; }

@media (max-width: 1100px) {
  .cat-layout { grid-template-columns: 220px 1fr; gap: 24px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
  .cat-layout { grid-template-columns: 1fr; }
  .cat-sidebar { position: static; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr; }
}

/* ============ CATALOG GRID (legacy — kept for compat) ============ */
.catalog-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap; padding: 28px 0;
  border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line);
  margin-bottom: 48px;
}
.catalog-tabs { display: flex; gap: 4px; list-style: none; flex-wrap: wrap; }
.catalog-tabs button {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 10px 16px; color: var(--c-mute-1);
  border: 1px solid transparent; transition: all 0.2s ease;
}
.catalog-tabs button:hover { color: var(--c-ink); }
.catalog-tabs button.active { color: var(--c-ink); border-color: var(--c-ink); }
.catalog-search {
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--c-ink); padding: 8px 0; min-width: 240px;
}
.catalog-search input {
  background: transparent; border: none; outline: none; flex: 1;
  font-size: var(--t-sm); color: var(--c-ink);
}
.catalog-search input::placeholder { color: var(--c-mute-2); }
.catalog-count { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; color: var(--c-mute-1); }

.catalog-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--c-line); border: 1px solid var(--c-line);
}
.catalog-card {
  background: var(--c-paper-pure); display: flex; flex-direction: column;
  cursor: pointer; transition: background 0.25s ease;
}
.catalog-card:hover { background: var(--c-paper); }
.catalog-card-img { aspect-ratio: 1/1; background: var(--c-fill); overflow: hidden; }
.catalog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.catalog-card:hover .catalog-card-img img { transform: scale(1.04); }
.catalog-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.catalog-card-line { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }
.catalog-card-name { font-family: var(--f-display); font-size: var(--t-md); font-weight: 400; letter-spacing: -0.01em; line-height: 1.2; }
.catalog-card-foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--c-line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 11px; color: var(--c-ink);
}
.catalog-card-foot button {
  font-family: var(--f-mono); font-size: 11px; padding: 4px 10px;
  border: 1px solid var(--c-ink); color: var(--c-ink); transition: all 0.2s;
}
.catalog-card-foot button:hover { background: var(--c-ink); color: var(--c-paper); }

/* ============ HOOK BANNERS ============ */
.hooks { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
.hook {
  background: var(--c-paper-pure); padding: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
.hook-image { aspect-ratio: 4/5; background: var(--c-fill); overflow: hidden; }
.hook-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) contrast(1.05); transition: filter 0.4s ease; }
.hook:hover .hook-image img { filter: grayscale(0) contrast(1); }
.hook-content { display: flex; flex-direction: column; gap: 20px; }
.hook-badge { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-accent); }
.hook-title { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; }
.hook-desc { color: var(--c-mute-1); font-size: var(--t-sm); line-height: 1.6; }

/* ============ CALCULATOR ============ */
.calc-wrap { border: 1px solid var(--c-ink); background: var(--c-paper-pure); }
.calc-head { padding: 40px 48px 32px; border-bottom: 1px solid var(--c-line); }
.calc-head-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mute-1); margin-bottom: 16px; }
.calc-head h3 { font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 300; letter-spacing: -0.025em; line-height: 1.1; }
.calc-body { display: grid; grid-template-columns: 1fr 1fr; }
.calc-controls { padding: 40px 48px; border-right: 1px solid var(--c-line); display: flex; flex-direction: column; gap: 36px; }
.slider-block { display: flex; flex-direction: column; gap: 14px; }
.slider-label { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-mute-1); }
.slider-label-val { font-size: var(--t-lg); color: var(--c-ink); letter-spacing: 0; }
input[type="range"] { -webkit-appearance: none; width: 100%; height: 1px; background: var(--c-ink); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; background: var(--c-ink); border-radius: 50%; cursor: pointer; transition: transform 0.2s ease; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.3); background: var(--c-accent); }
input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; background: var(--c-ink); border: none; border-radius: 50%; cursor: pointer; }
.calc-results { padding: 40px 48px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; background: var(--c-fill); }
.calc-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--c-line); }
.calc-row:last-child { border-bottom: none; padding-top: 24px; }
.calc-row-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-mute-1); }
.calc-row-val { font-family: var(--f-display); font-size: var(--t-lg); font-weight: 400; color: var(--c-ink); letter-spacing: -0.01em; }
.calc-row.highlight .calc-row-label { color: var(--c-ink); font-weight: 500; }
.calc-row.highlight .calc-row-val { font-size: var(--t-2xl); color: var(--c-accent); font-weight: 600; }
.calc-foot { padding: 20px 48px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.05em; color: var(--c-mute-1); border-top: 1px solid var(--c-line); }

/* ============ PARTNER CTA (DARK BAND) ============ */
.partner-cta { background: var(--c-ink); color: var(--c-paper); padding: var(--section) 0; }
.partner-cta .wrap { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: end; }
.partner-cta-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-mute-2); margin-bottom: 32px; }
.partner-cta h2 { font-family: var(--f-display); font-size: clamp(48px, 7vw, 96px); font-weight: 300; line-height: 1; letter-spacing: -0.03em; }
.partner-cta h2 em { font-style: italic; }
.partner-cta-right { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.partner-cta-right p { color: var(--c-mute-2); font-size: var(--t-sm); line-height: 1.6; }

/* ============ EDITORIAL TEXT PAGES (about, cooperation) ============ */
.editorial { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(40px, 6vw, 100px); margin-bottom: clamp(80px, 10vw, 140px); }
.editorial-label { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mute-1); padding-top: 12px; }
.editorial-body { display: flex; flex-direction: column; gap: 28px; max-width: 65ch; }
.editorial-body h2 { font-family: var(--f-display); font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; line-height: 1.1; letter-spacing: -0.025em; }
.editorial-body h2 em { font-style: italic; }
.editorial-body p { font-size: var(--t-md); line-height: 1.65; color: var(--c-ink); }
.editorial-body p.muted { color: var(--c-mute-1); }
.editorial-body ul { list-style: none; display: flex; flex-direction: column; gap: 14px; padding-left: 0; }
.editorial-body ul li { font-size: var(--t-md); line-height: 1.5; padding-left: 28px; position: relative; color: var(--c-ink); }
.editorial-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--c-accent); font-weight: 500; }

/* ============ STATS STRIP ============ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); margin: clamp(60px, 8vw, 100px) 0; }
.stat { padding: 40px 32px; border-right: 1px solid var(--c-line); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--f-display); font-size: clamp(48px, 6vw, 80px); font-weight: 300; line-height: 1; letter-spacing: -0.025em; }
.stat-num em { font-style: italic; color: var(--c-accent); }
.stat-label { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); margin-top: 14px; }

/* ============ TEAM / PEOPLE CARDS ============ */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--c-line); border: 1px solid var(--c-line);
}
.team-card {
  background: var(--c-paper-pure); padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 420px;
}
.team-card-photo { aspect-ratio: 4/5; background: var(--c-fill); overflow: hidden; height: 100%; }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.team-card-role { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mute-1); }
.team-card-name {
  font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.025em; color: var(--c-ink);
}
.team-card-name em { font-style: italic; }
.team-card-quote {
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: var(--t-md); line-height: 1.45; color: var(--c-ink); margin-top: auto;
  padding-top: 16px; border-top: 1px solid var(--c-line);
}
.team-card-quote::before { content: '«'; color: var(--c-accent); font-style: normal; margin-right: 2px; }
.team-card-quote::after  { content: '»'; color: var(--c-accent); font-style: normal; margin-left: 2px; }

/* ============ MANAGER CONTACT CARD (contacts page) ============ */
.manager-card {
  background: var(--c-paper-pure); border: 1px solid var(--c-ink);
  display: grid; grid-template-columns: 140px 1fr; gap: 0;
  margin-bottom: 28px;
}
.manager-card-photo { aspect-ratio: 1/1; background: var(--c-fill); overflow: hidden; }
.manager-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.manager-card-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.manager-card-role { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-accent); }
.manager-card-name { font-family: var(--f-display); font-size: var(--t-lg); font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; }
.manager-card-contacts { font-size: var(--t-sm); margin-top: auto; padding-top: 10px; border-top: 1px solid var(--c-line); display: flex; flex-direction: column; gap: 4px; }
.manager-card-contacts a { color: var(--c-ink); }
.manager-card-contacts a:hover { color: var(--c-accent); }
.manager-card-contacts .label { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }

/* ============ FORM (contacts) ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.form-aside { display: flex; flex-direction: column; gap: 32px; padding-top: 8px; }
.form-aside h3 { font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; }
.form-aside p { color: var(--c-mute-1); font-size: var(--t-md); line-height: 1.6; }
.form-contact-block { display: flex; flex-direction: column; gap: 6px; padding-top: 20px; border-top: 1px solid var(--c-line); }
.form-contact-block .label { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }
.form-contact-block .value { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 400; letter-spacing: -0.01em; }
.form-contact-block .value a:hover { color: var(--c-accent); }

form.request-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-mute-1); }
.form-field label .req { color: var(--c-accent); }
.form-field input, .form-field select, .form-field textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--c-line);
  padding: 12px 0; font-size: var(--t-md); color: var(--c-ink);
  transition: border-color 0.2s ease; outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--c-ink); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230A0A0A' fill='none' stroke-width='1.2'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }
.form-checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: var(--t-sm); color: var(--c-mute-1); line-height: 1.5; }
.form-checkbox input { width: 16px; height: 16px; margin-top: 4px; accent-color: var(--c-ink); }
.form-checkbox a { color: var(--c-ink); border-bottom: 1px solid var(--c-line); }
.form-submit { align-self: flex-start; margin-top: 8px; }

/* ============ FOOTER (dark, brand-aligned) ============ */
footer {
  background: var(--c-ink); /* brand black #0A0A0A */
  color: var(--c-paper);
  padding: 64px 0 24px;
  margin-top: clamp(60px, 8vw, 100px);
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 0.7fr 1.4fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 48px;
}
.foot-col {
  display: flex; flex-direction: column; gap: 18px;
}
.foot-col h4 {
  font-family: var(--f-display); font-size: var(--t-xl);
  font-weight: 400; letter-spacing: -0.015em;
  color: var(--c-paper); margin: 0 0 8px;
}

/* Menu — 2-column list */
.foot-menu {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 14px 20px;
  padding: 0; margin: 0;
}
.foot-menu li a {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.7);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.foot-menu li a:hover { color: var(--c-accent); }

/* Catalog column — simple link */
.foot-catalog a {
  font-family: var(--f-display); font-size: var(--t-xl);
  font-weight: 400; letter-spacing: -0.015em;
  color: rgba(250,250,250,0.75);
  transition: color 0.2s ease;
}
.foot-catalog a:hover { color: var(--c-accent); }

/* Contacts column */
.foot-contacts { display: flex; flex-direction: column; gap: 12px; }
.foot-contacts a, .foot-contacts span {
  font-size: var(--t-sm); line-height: 1.4;
  color: rgba(250,250,250,0.78);
  display: inline-flex; align-items: center; gap: 8px;
}
.foot-contacts a:hover { color: var(--c-accent); }
.foot-contacts .icon { width: 14px; height: 14px; color: var(--c-accent); flex-shrink: 0; }
.foot-contacts .phone { font-weight: 500; color: var(--c-paper); }
.foot-contacts .address {
  margin-top: 8px; font-size: var(--t-sm); line-height: 1.5;
  color: rgba(250,250,250,0.65);
  align-items: flex-start;
}
.foot-contacts .address .icon { margin-top: 2px; }

/* Questions column */
.foot-ask {
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
.foot-ask-btn {
  display: inline-flex; align-items: center;
  padding: 14px 28px; border-radius: 6px;
  border: 1px solid var(--c-accent); color: var(--c-accent);
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  background: transparent;
  transition: all 0.25s ease; cursor: pointer;
}
.foot-ask-btn:hover { background: var(--c-accent); color: var(--c-paper); }
.foot-socials { display: flex; gap: 16px; align-items: center; }
.foot-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(250,250,250,0.08);
  color: rgba(250,250,250,0.85);
  transition: all 0.2s ease;
}
.foot-socials a:hover { background: var(--c-accent); color: var(--c-paper); }
.foot-socials svg { width: 16px; height: 16px; }

/* Bottom strip */
.foot-bottom {
  padding-top: 24px; border-top: 1px solid rgba(250,250,250,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em;
  color: rgba(250,250,250,0.55);
}
.foot-bottom em {
  font-style: italic; font-family: var(--f-display);
  font-size: var(--t-sm); letter-spacing: 0;
  color: rgba(250,250,250,0.8); text-transform: none;
}
.foot-brand-mini { display: flex; align-items: center; gap: 12px; }
.foot-brand-mini img { height: 24px; filter: brightness(0) invert(1); opacity: 0.85; }

@media (max-width: 980px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ MODAL (product detail / quick view) ============ */
.modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(10,10,10,0.5); z-index: 300; backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 24px; }
.modal-backdrop.open { display: flex; }
.modal { background: var(--c-paper-pure); max-width: 920px; width: 100%; max-height: 90vh; overflow-y: auto; border: 1px solid var(--c-ink); display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.modal-img-col { background: var(--c-fill); display: flex; align-items: center; justify-content: center; padding: 32px; }
.modal-img-col img { width: 100%; max-width: 360px; height: auto; }
.modal-body { padding: 40px; display: flex; flex-direction: column; gap: 18px; }
.modal-body .mono { color: var(--c-mute-1); }
.modal-body h3 { font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; }
.modal-body .desc { color: var(--c-mute-1); font-size: var(--t-sm); line-height: 1.6; }
.modal-body .comp { font-size: var(--t-xs); color: var(--c-mute-1); line-height: 1.55; padding-top: 16px; border-top: 1px solid var(--c-line); }
.modal-body .actions { display: flex; gap: 12px; margin-top: 8px; }
.modal-close { position: absolute; top: 16px; right: 16px; font-size: 22px; padding: 8px 12px; background: var(--c-paper-pure); border: 1px solid var(--c-line); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1280px) {
  .nav-menu { gap: 20px; }
  .nav-menu a { font-size: 10px; }
  .nav-lang button { padding: 8px 8px; }
  .nav-request-cta { padding: 10px 14px; font-size: 10px; }
}
@media (max-width: 1280px) {
  .lines-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .lines-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-lang { display: none; } /* move to drawer */
  .nav-catalog-cta { padding: 10px 16px; font-size: 11px; }
  .nav-request-cta { padding: 10px 14px; font-size: 10px; }
}
@media (max-width: 980px) {
  .menu-toggle { display: block; order: 99; }
  .nav-menu { display: none; }
  .nav-request-cta { display: none; } /* move to drawer */
  .nav-icons { display: none; } /* move to drawer */
  .mobile-drawer { display: block; }
  .nav { gap: 12px; }
  .nav-catalog-cta { padding: 10px 14px; font-size: 10px; }
  .nav-catalog-cta-icon { font-size: 16px; }

  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { aspect-ratio: 4/3; }
  .hero-slides-container { min-height: 540px; height: 64vh; }
  .hero-slide-content { max-width: 480px; gap: 22px; }
  .hero-slide-title { font-size: clamp(48px, 7vw, 80px); }
  .hero-nav { width: 44px; height: 44px; }
  .hero-nav-prev { left: 16px; }
  .hero-nav-next { right: 16px; }
  .hero-progress { gap: 16px; padding: 20px var(--gutter); }
  .hero-dot { width: 30px; }
  /* darker overlay since photos take more visual space on tablets */
  .hero-slide::before {
    background: linear-gradient(to right,
      rgba(10, 10, 10, 0.78) 0%,
      rgba(10, 10, 10, 0.6) 35%,
      rgba(10, 10, 10, 0.2) 65%,
      rgba(10, 10, 10, 0) 80%);
  }
  .meta-strong-grid { grid-template-columns: repeat(2, 1fr); }
  .meta-strong-cell:nth-child(2) { border-right: none; }
  .meta-strong-cell:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
  .meta-strong-cell { padding: 32px 24px; gap: 16px; }

  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .page-head .wrap { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .audience-row { grid-template-columns: 60px 1fr; row-gap: 16px; column-gap: 16px; }
  .audience-row .audience-desc, .audience-row .audience-link { grid-column: 2; text-align: left; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feat-3, .feat-4, .feat-6 { grid-column: span 1; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .hooks { grid-template-columns: 1fr; }
  .hook { grid-template-columns: 1fr; }
  .calc-body { grid-template-columns: 1fr; }
  .calc-controls { border-right: none; border-bottom: 1px solid var(--c-line); }
  .partner-cta .wrap { grid-template-columns: 1fr; gap: 40px; }
  .editorial { grid-template-columns: 1fr; gap: 16px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-card-photo { aspect-ratio: 4/3; }
  .modal { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-img-col { padding: 24px; }
  .modal-body { padding: 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .lines-grid, .catalog-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--c-line); }
  .stat:last-child { border-bottom: none; }
  .meta-strong-grid { grid-template-columns: 1fr; }
  .meta-strong-cell { border-right: none; border-bottom: 1px solid var(--c-line); }
  .meta-strong-cell:last-child { border-bottom: none; }
  .hero-nav-prev { left: 8px; }
  .hero-nav-next { right: 8px; }
  .hero-nav { width: 38px; height: 38px; }
  .hero-slides-container { min-height: 460px; height: 56vh; }
  .hero-slide-content { max-width: 100%; gap: 18px; }
  .hero-slide-title { font-size: clamp(40px, 10vw, 56px); }
  /* on mobile: darken whole background so left text reads even on busy backgrounds */
  .hero-slide::before {
    background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.4) 0%,
      rgba(10, 10, 10, 0.8) 100%);
  }
  .hero-slide { background-position: center; }
  .hero-progress { flex-direction: column; align-items: flex-start; gap: 12px; }
}
