/* ==========================================================================
   SKYCEILING — Colors & Type
   Acoustic ceiling solutions for Russian / CIS market.
   Source of truth: brochure spreads + logo SVG.
   ========================================================================== */

/* -------- WEB FONTS (Google Fonts substitutes — see README) ----------------
   The brochures use a Roboto-family humanist sans for body and what looks
   like Roboto Slab / a heavyweight slab for product names. The logo wordmark
   is set in an italic Roboto-family weight (Bold + Black). We substitute:
     · Roboto       → primary sans (matches brochure body/UI)
     · Roboto Slab  → product name display headings
     · Roboto       → logo wordmark fallback (italic 700/900)
   If real font files are provided we drop them into /fonts and swap. */
/* Шрифты самохостируются — см. /fonts/fonts.css */

:root {
  /* ---------- BRAND COLORS -------------------------------------------- */
  /* Hero cyan from the brochure header bands & logo "SKY". The brochures
     use a single dominant cyan and very little else. */
  --sky-500: #1AB6E8;          /* primary brand cyan – headlines, headers, CTAs */
  --sky-600: #0F9FCC;          /* hover / pressed */
  --sky-700: #0A7FA3;          /* deep accent (rarely used) */
  --sky-400: #58CCF0;          /* light accent / chips */
  --sky-200: #BEE9F7;          /* surface tint */
  --sky-100: #E2F4FB;          /* faintest tint, table rows */
  --sky-050: #F2FAFD;          /* page wash */

  /* Logo "CEILING" near-black + body ink */
  --ink-900: #0E1820;          /* logo black, headings on white */
  --ink-700: #2A3942;          /* body text */
  --ink-500: #5A6873;          /* secondary text */
  --ink-400: #8694A0;          /* muted / metadata */
  --ink-300: #B8C2CC;          /* dividers, disabled */
  --ink-200: #D9DFE4;          /* hairlines */
  --ink-100: #EEF1F4;          /* surface-2 */
  --ink-050: #F7F8FA;          /* surface-1 */
  --white:   #FFFFFF;

  /* Semantic */
  --ok:      #2BAA6E;
  --warn:    #E8A317;
  --danger:  #D8413A;          /* picked from the red baffle accent */

  /* Foreground / background tokens (for components) */
  --fg-1: var(--ink-900);
  --fg-2: var(--ink-700);
  --fg-3: var(--ink-500);
  --fg-muted: var(--ink-400);
  --fg-on-sky: #FFFFFF;
  --fg-link: var(--sky-600);

  --bg-1: var(--white);
  --bg-2: var(--ink-050);
  --bg-3: var(--ink-100);
  --bg-sky: var(--sky-500);
  --bg-sky-soft: var(--sky-100);

  --border: var(--ink-200);
  --border-strong: var(--ink-300);
  --border-sky: var(--sky-500);

  /* ---------- TYPE FAMILIES ------------------------------------------- */
  --font-sans:    'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Roboto Slab', 'Roboto', Georgia, serif;
  --font-logo:    'Roboto', 'Helvetica Neue', Arial, sans-serif;  /* italic */
  --font-mono:    'JetBrains Mono', 'Roboto Mono', ui-monospace, monospace;

  /* ---------- TYPE SCALE (1.250 modular, 16px base) ------------------- */
  --t-xs:   12px;
  --t-sm:   14px;
  --t-base: 16px;
  --t-md:   18px;
  --t-lg:   20px;
  --t-xl:   24px;
  --t-2xl:  30px;
  --t-3xl:  38px;
  --t-4xl:  48px;
  --t-5xl:  64px;
  --t-6xl:  84px;

  --lh-tight:   1.10;
  --lh-snug:    1.25;
  --lh-normal:  1.45;
  --lh-relaxed: 1.6;

  --tracking-tight:  -0.01em;
  --tracking-normal:  0;
  --tracking-wide:    0.04em;
  --tracking-caps:    0.08em;

  /* ---------- SPACING (4px base) -------------------------------------- */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-7:  32px;
  --s-8:  40px;
  --s-9:  56px;
  --s-10: 72px;
  --s-11: 96px;
  --s-12: 128px;

  /* ---------- RADII ---------------------------------------------------- */
  --r-none: 0;
  --r-sm:   4px;
  --r-md:   6px;            /* default — brochures use modest radii */
  --r-lg:   10px;
  --r-xl:   16px;
  --r-pill: 999px;

  /* ---------- SHADOWS / ELEVATION ------------------------------------- */
  --shadow-1: 0 1px 2px rgba(14, 24, 32, 0.06), 0 1px 1px rgba(14, 24, 32, 0.04);
  --shadow-2: 0 4px 12px rgba(14, 24, 32, 0.08), 0 1px 2px rgba(14, 24, 32, 0.04);
  --shadow-3: 0 12px 28px rgba(14, 24, 32, 0.12), 0 2px 6px rgba(14, 24, 32, 0.06);
  --shadow-sky: 0 8px 24px rgba(26, 182, 232, 0.32);
  --ring-focus: 0 0 0 3px rgba(26, 182, 232, 0.35);
}

/* ==========================================================================
   SEMANTIC ELEMENT STYLES
   ========================================================================== */

html { font-family: var(--font-sans); color: var(--fg-2); background: var(--bg-1); }
body { margin: 0; font-size: var(--t-base); line-height: var(--lh-normal); }

/* Display & headings — brochures use bold cyan section titles in a
   slab/sans hybrid feel. h1 stays sans-bold to match the cover spreads. */
.h-display, h1 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--t-5xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg-1);
  margin: 0 0 var(--s-5);
}
h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--t-3xl);
  line-height: var(--lh-snug);
  color: var(--sky-500);            /* Section headings are CYAN — brochure DNA */
  margin: 0 0 var(--s-4);
}
h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--t-xl);
  line-height: var(--lh-snug);
  color: var(--sky-500);
  margin: 0 0 var(--s-3);
}
h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--t-lg);
  line-height: var(--lh-snug);
  color: var(--fg-1);
  margin: 0 0 var(--s-2);
}

p, .body { font-size: var(--t-base); line-height: var(--lh-relaxed); color: var(--fg-2); margin: 0 0 var(--s-4); }
.lead    { font-size: var(--t-md);  line-height: var(--lh-relaxed); color: var(--fg-2); }
.small,
small    { font-size: var(--t-sm);  line-height: var(--lh-normal); color: var(--fg-3); }
.eyebrow { font-size: var(--t-xs);  letter-spacing: var(--tracking-caps); text-transform: uppercase; font-weight: 700; color: var(--sky-500); }

/* The wordmark recipe — italic Roboto, two weights. */
.logo-wordmark {
  font-family: var(--font-logo);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: var(--t-2xl);
  line-height: 1;
  color: var(--ink-900);
  white-space: nowrap;
}
.logo-wordmark .sky { color: var(--sky-500); font-weight: 700; }
.logo-wordmark .ceiling { color: var(--ink-900); font-weight: 900; }

/* The italic tagline that sits under the logo — Roboto italic 400. */
.logo-tagline {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-sm);
  line-height: var(--lh-snug);
  color: var(--ink-700);
}

a { color: var(--fg-link); text-decoration: none; }
a:hover { color: var(--sky-700); text-decoration: underline; }

code, pre, .mono { font-family: var(--font-mono); font-size: 0.92em; }

hr { border: 0; border-top: 1px solid var(--border); margin: var(--s-7) 0; }

/* Bullets in the brochures use a small cyan disc. */
ul.brand-bullets { list-style: none; padding: 0; margin: 0; }
ul.brand-bullets > li {
  position: relative;
  padding-left: var(--s-5);
  margin-bottom: var(--s-3);
  color: var(--fg-2);
}
ul.brand-bullets > li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sky-500);
}
/* Marketing landing — Skyceiling
   Builds on /colors_and_type.css. All section-level components live here. */

:root {
  --container: 1240px;
  --gutter: 24px;
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body { font-family: var(--font-sans); color: var(--ink-700); margin: 0; background: #fff; }
a.product { text-decoration: none; color: inherit; }
a.product:hover { text-decoration: none; }

/* ============ PRODUCT DETAIL ============ */
.pdetail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start; margin-top: 72px; padding-top: 72px;
  border-top: 1px solid var(--border); scroll-margin-top: 80px;
}
.pdetail:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.pdetail--reverse .pdetail__media { order: 2; }
.pdetail__media {
  position: relative;
  aspect-ratio: 4/3; border-radius: 10px;
  background: #ccc center/cover no-repeat;
  overflow: hidden;
}
.pdetail__badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.95); color: var(--sky-500);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 6px 10px; border-radius: 4px;
}
.pdetail__title { font-size: 40px; font-weight: 700; color: var(--ink-900); line-height: 1.1; margin: 12px 0 16px; letter-spacing: -.012em; }
.pdetail__lead { font-size: 17px; line-height: 1.55; color: var(--ink-500); margin-bottom: 22px; }
.pdetail__specs {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 18px 0; margin-bottom: 18px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.pdetail__spec { font-size: 12px; color: var(--ink-500); line-height: 1.4; }
.pdetail__spec b { display: block; color: var(--ink-900); font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.pdetail__fullrow {
  display: flex; gap: 32px; align-items: flex-start;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.pdetail__fullrow-item { display: flex; flex-direction: column; gap: 10px; }
.pdetail__fullrow-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sky-500); }

/* School benefits block */
.school-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; margin: 20px 0 16px; padding: 20px; background: var(--ink-050); border-radius: 8px; }
.school-benefits__title { font-size: 14px; font-weight: 700; color: var(--sky-600); margin-bottom: 10px; }
.pdetail__note { font-size: 13px; line-height: 1.55; color: var(--ink-500); margin-top: 16px; }
@media (max-width: 980px) {
  .pdetail { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; padding-top: 48px; }
  .pdetail--reverse .pdetail__media { order: 0; }
  .pdetail__title { font-size: 30px; }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(180%) blur(8px);
}
.nav__inner { display: flex; align-items: center; gap: 32px; padding: 14px 0; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo .lw { font-size: 22px; }
.nav__links { display: flex; gap: 26px; margin-left: 16px; flex: 1; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--ink-700); }
.nav__links a:hover { color: var(--sky-600); text-decoration: none; }
.nav__phone { font-weight: 700; color: var(--ink-900); font-size: 14px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: 8px; }
.nav__bar { display: block; width: 24px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger.open .nav__bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open .nav__bar:nth-child(2) { opacity: 0; }
.nav__burger.open .nav__bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__cta { background: var(--sky-500); color: #fff; padding: 10px 18px; border-radius: 6px;
  font-weight: 700; font-size: 14px; border: 0; cursor: pointer; }
.nav__cta:hover { background: var(--sky-600); color: #fff; }

/* ============ HERO ============ */
.hero {
  --hero-photo: url(assets/img-hero-canopy-school.webp);
  position: relative;
  background: var(--sky-500);
  color: #fff;
  padding: 40px 0 0;
  overflow: hidden;
  isolation: isolate;
}
body[data-hero-bg="photo"] .hero { background: #1a2530; }
body[data-hero-bg="photo"] .hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-photo);
  background-size: cover; background-position: 65% center;
}
body[data-hero-bg="photo"] .hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(95deg, rgba(8,16,24,.85) 0%, rgba(8,16,24,.62) 30%, rgba(8,16,24,.15) 55%, rgba(8,16,24,0) 80%),
    linear-gradient(180deg, rgba(8,16,24,0) 50%, rgba(8,16,24,.55) 100%);
}
body[data-hero-bg="photo"] .dots-deco { display: none; }
.hero__body { max-width: 980px; padding-bottom: 40px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--sky-500); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 12px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,255,255,.16); padding: 7px 14px; border-radius: 999px;
}
.hero__title {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(44px, 6.4vw, 76px); line-height: 1.02; letter-spacing: -0.022em;
  color: #fff; margin: 16px 0 18px;
}
.hero__title em { font-style: normal; color: var(--ink-900); }
.hero__tagline {
  margin: -8px 0 24px;
  line-height: 0;
}
.hero__tagline span {
  display: inline-block;
  background: #fff; color: var(--sky-700);
  font-family: var(--font-sans); font-style: italic; font-weight: 500;
  font-size: 17px; line-height: 1.3;
  padding: 8px 14px; border-radius: 4px;
}
.hero__lead { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,.92); max-width: 560px; }
.hero__ctas { display: flex; gap: 22px; margin-top: 32px; align-items: center; flex-wrap: wrap; }
.hero__link {
  color: #fff; font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 12px 22px; border-radius: 6px;
  transition: .15s ease-out;
}
.hero__link:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
.btn { font-family: var(--font-sans); font-weight: 700; font-size: 15px; padding: 14px 24px;
  border-radius: 6px; border: 0; cursor: pointer; line-height: 1; transition: .15s ease-out;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn--white { background: #fff; color: var(--ink-900); }
.btn--white:hover { background: var(--ink-100); color: var(--ink-900); text-decoration: none; }
.btn--ghost-w { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn--ghost-w:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.btn--primary { background: var(--sky-500); color: #fff; box-shadow: var(--shadow-sky); }
.btn--primary:hover { background: var(--sky-600); color: #fff; text-decoration: none; }
.btn--ghost { background: transparent; color: var(--sky-600); border: 1.5px solid var(--sky-500); }
.btn--ghost:hover { background: var(--sky-100); color: var(--sky-700); text-decoration: none; }
.btn--dark { background: var(--ink-900); color: #fff; }
.btn--dark:hover { background: #1A2530; text-decoration: none; }

.hero__stats {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,.28);
  padding: 24px 0 28px;
  z-index: 1;
}
body[data-hero-bg="photo"] .hero__stats::before {
  content: '';
  position: absolute; inset: -24px calc(-50vw + 50%) -36px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8,16,24,.45) 0%, rgba(8,16,24,.78) 100%);
  pointer-events: none;
}
.hero__stat { padding: 0 28px; border-left: 1px solid rgba(255,255,255,.18); }
.hero__stat:first-child { padding-left: 0; border-left: 0; }
.hero__stat .v { font-size: 36px; font-weight: 700; line-height: 1; color: #fff; letter-spacing: -.01em; }
.hero__stat .v small { font-size: 18px; color: #fff; opacity: .9; font-weight: 600; letter-spacing: 0; }
.hero__stat .l { font-size: 12px; color: rgba(255,255,255,.92); margin-top: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
body[data-hero-bg="photo"] .hero__stat .v,
body[data-hero-bg="photo"] .hero__stat .l { text-shadow: 0 1px 12px rgba(0,0,0,.35); }

/* dot decoration — bottom-right of cyan blocks */
.dots-deco {
  position: absolute; bottom: 0; right: 0; width: 220px; height: 180px; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.4) 1.6px, transparent 1.8px);
  background-size: 14px 14px;
  mask-image: linear-gradient(to top left, #000 30%, transparent 80%);
}
.dots-deco--ink {
  background-image: radial-gradient(var(--sky-200) 1.6px, transparent 1.8px);
}

/* ============ TRUST STRIP ============ */
.trust {
  background: #fff; padding: 28px 0; border-bottom: 1px solid var(--border);
}
.trust__inner { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.trust__lbl { font-size: 12px; color: var(--ink-400); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.trust__items { display: flex; gap: 36px; flex-wrap: wrap; }
.trust__item { font-size: 13px; color: var(--ink-500); display: flex; align-items: center; gap: 8px; font-weight: 500; }
.trust__item b { color: var(--ink-900); font-weight: 700; }
.trust__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky-500); }

/* ============ SECTION ============ */
.section { padding: 80px 0; }
.section--gray { background: var(--ink-050); }
.section__head {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px 64px;
  align-items: end;
  padding-top: 28px; border-top: 2px solid var(--sky-500);
  margin-bottom: 56px;
}
.section__eyebrow { grid-column: 1; color: var(--sky-500); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 0; align-self: start; }
.section__title { grid-column: 1; grid-row: 2; font-size: 44px; font-weight: 700; line-height: 1.1; color: var(--ink-900); letter-spacing: -0.01em; margin: 14px 0 0; }
.section__lead { grid-column: 2; grid-row: 1 / span 2; font-size: 17px; line-height: 1.6; color: var(--ink-500); margin: 0; max-width: 460px; align-self: end; }
@media (max-width: 980px) {
  .section__head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
  .section__title, .section__eyebrow, .section__lead { grid-column: 1; grid-row: auto; }
  .section__title { font-size: 32px; }
}

/* ============ PRODUCT GRID ============ */
.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product {
  position: relative;
  background: #fff; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); transition: .2s ease-out;
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--sky-200); }
.product__img {
  aspect-ratio: 16/9; background: #ccc center/cover no-repeat;
  position: relative;
}
.product__badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95); color: var(--sky-500);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 6px 10px; border-radius: 4px;
}
.product__body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.product__name { font-size: 26px; font-weight: 700; color: var(--ink-900); margin: 0 0 4px; line-height: 1.15; }
.product__name .sky { color: var(--sky-500); font-weight: 500; }
.product__sub { font-size: 14px; color: var(--ink-500); margin-bottom: 16px; }
.product__specs { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.product__spec { font-size: 12px; color: var(--ink-500); }
.product__spec b { display: block; color: var(--ink-900); font-size: 16px; font-weight: 700; font-family: var(--font-sans); }
.product__cta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--border); }
.product__cta .more { font-size: 14px; font-weight: 700; color: var(--sky-600); }
.product__cta .formats { font-size: 12px; color: var(--ink-400); }

/* ============ SPEC STRIP (icon tiles) ============ */
.specs-strip {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px;
}
.spec-row { display: flex; align-items: center; gap: 14px; }
.spec-row__tile {
  width: 48px; height: 48px; border-radius: 6px;
  display: grid; place-items: center; flex-shrink: 0; overflow: hidden;
}
.spec-row__tile img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; display: block; }
.spec-row__tile svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.spec-row__v { font-size: 18px; font-weight: 700; color: var(--ink-900); line-height: 1.1; }
.spec-row__l { font-size: 12px; color: var(--ink-500); margin-top: 3px; line-height: 1.3; }

/* ============ FORMS GRID (Кенопи shapes) ============ */
.forms-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.form-tile {
  aspect-ratio: 1/1; background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  transition: .15s ease-out;
}
.form-tile:hover { border-color: var(--sky-500); box-shadow: var(--shadow-1); }
.form-tile svg { width: 56px; height: 56px; stroke: var(--ink-900); stroke-width: 1.5; fill: none; }
.form-tile .lbl { font-size: 12px; color: var(--ink-700); text-align: center; line-height: 1.2; }
.form-tile .dim { font-size: 10px; color: var(--ink-400); font-family: var(--font-mono); margin-top: 2px; }

/* ============ EDGE PROFILES ============ */
.edges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.edge {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 18px 16px; text-align: center;
}
.edge svg { width: 100%; height: 60px; stroke: var(--ink-900); stroke-width: 1.4; fill: none; }
.edge .lbl { font-size: 14px; font-weight: 700; color: var(--ink-900); margin-top: 10px; }
.edge .dim { font-size: 11px; color: var(--ink-400); font-family: var(--font-mono); margin-top: 2px; }

/* ============ APPLICATIONS ============ */
.app-block {
  margin-bottom: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.app-block:first-child { border-top: 0; padding-top: 0; }
.app-block:last-child { margin-bottom: 0; }

.app-block__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 56px;
  margin-bottom: 20px;
  align-items: end;
}
.app-block__title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--ink-900);
  margin: 6px 0 0;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.app-block__desc {
  color: var(--ink-500);
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
}
.app-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.app-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--ink-100);
  color: var(--ink-500);
}

/* Photo grids */
.app-photos-grid {
  display: grid;
  gap: 6px;
  border-radius: 12px;
  overflow: hidden;
}
.app-photos-grid--2 {
  grid-template-columns: 1fr 1fr;
  height: 400px;
}
.app-photos-grid--c {
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  height: 440px;
}
.app-photos-grid--c .ap--main {
  grid-row: 1 / 3;
}
.app-photos-grid--5 {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 500px;
}
.app-photos-grid--5 .ap--main {
  grid-row: 1 / 3;
}
.ap {
  background-size: cover;
  background-position: center;
  min-height: 0;
}

/* ============ PROJECTS GRID ============ */
.projects-count {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--sky-500);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 32px;
}
.projects-count__n {
  font-size: 40px; font-weight: 800; color: var(--ink-900);
  letter-spacing: -.02em; line-height: 1;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-card {
  display: flex; flex-direction: column; gap: 0;
  cursor: zoom-in;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.project-card__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  transition: filter .2s ease;
}
.project-card:hover .project-card__img { filter: brightness(.92); }
.project-card__caption {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  line-height: 1.35;
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
}
.project-card__city {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-400);
  margin-top: 2px;
}

/* ============ APPLICATIONS GRID ============ */
.apps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.app-card {
  position: relative; aspect-ratio: 3/4; border-radius: 10px; overflow: hidden;
  background-color: #ccc;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.app-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(14,24,32,.85) 100%);
}
.app-card__body {
  position: absolute; inset: auto 0 0 0; padding: 22px; color: #fff; z-index: 1;
}
.app-card__name { font-size: 20px; font-weight: 700; }
.app-card__sub { font-size: 13px; opacity: .85; margin-top: 4px; }

/* ======== PHOTO STRIP ======== */
.strip-row {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.strip-row__label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--sky-500); margin-bottom: 12px;
}
.photo-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.photo-strip::-webkit-scrollbar { height: 4px; }
.photo-strip::-webkit-scrollbar-track { background: var(--ink-100); border-radius: 2px; }
.photo-strip::-webkit-scrollbar-thumb { background: var(--ink-300); border-radius: 2px; }
.photo-strip__item {
  flex-shrink: 0;
  width: 240px;
  height: 170px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  cursor: zoom-in;
  scroll-snap-align: start;
  transition: transform .2s ease, filter .2s ease;
  position: relative;
}
.photo-strip__item:hover {
  transform: scale(1.03);
  filter: brightness(.9);
}

/* ======== LIGHTBOX ======== */
#lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}
#lb-overlay.lb-open { display: flex; }
#lb-img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  user-select: none;
}
.lb-btn {
  position: fixed;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: opacity .15s;
  opacity: .7;
}
.lb-btn:hover { opacity: 1; }
#lb-close {
  top: 20px; right: 24px;
  font-size: 40px;
}
#lb-prev, #lb-next {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
}
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,.22); }
#lb-prev { left: 20px; }
#lb-next { right: 20px; }
#lb-counter {
  position: fixed;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-family: var(--font-mono);
  pointer-events: none;
}

/* ============ QUOTE BLOCK ============ */
.quote {
  background: var(--sky-500); color: #fff; padding: 96px 0; text-align: center;
  position: relative; overflow: hidden;
}
.quote__text {
  font-family: var(--font-sans); font-weight: 500; font-style: italic;
  font-size: 36px; line-height: 1.35; max-width: 880px; margin: 0 auto;
  color: #fff;
}
.quote__cite { margin-top: 22px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; opacity: .8; font-weight: 700; color: #fff; }

/* ============ CTA / CONTACT ============ */
.contact {
  background: #fff; color: var(--ink-700);
  padding: 80px 0 80px;
  border-top: 1px solid var(--border);
}
.contact__eyebrow {
  display: block;
  color: var(--sky-500); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 12px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas: "intro form" "details form";
  gap: 40px 56px;
  align-items: start;
}
.contact__intro  { grid-area: intro; }
.contact__details { grid-area: details; }
.contact__grid > form { grid-area: form; }
.contact__intro { margin-bottom: 36px; }
.contact__title { font-size: 40px; font-weight: 700; line-height: 1.1; color: var(--ink-900); margin: 0 0 16px; letter-spacing: -.01em; }
.contact__lead { color: var(--ink-500); font-size: 17px; line-height: 1.5; margin-bottom: 0; max-width: 480px; }
.contact__items { display: grid; gap: 14px; }
.contact__item { display: flex; gap: 14px; align-items: center; font-size: 15px; color: var(--ink-700); }
.contact__item .ic { width: 40px; height: 40px; border-radius: 6px; background: var(--sky-500); display: grid; place-items: center; flex-shrink: 0; }
.contact__item .ic svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.contact__item b { display: block; font-size: 12px; color: var(--ink-400); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }

.form {
  background: var(--ink-050); color: var(--ink-700);
  border: 1px solid var(--border); border-radius: 10px; padding: 28px;
}
.form__title { font-size: 22px; font-weight: 700; color: var(--ink-900); margin: 0 0 4px; }
.form__sub { font-size: 13px; color: var(--ink-500); margin-bottom: 20px; }
.form__field { display: block; margin-bottom: 14px; }
.form__field label { display: block; font-size: 12px; font-weight: 700; color: var(--ink-700); margin-bottom: 6px; }
.form__field input, .form__field select, .form__field textarea {
  width: 100%; box-sizing: border-box; padding: 12px 14px; font: inherit; font-size: 14px;
  border: 1px solid var(--ink-200); border-radius: 6px; color: var(--ink-900); background: #fff;
}
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--sky-500); box-shadow: 0 0 0 3px rgba(26,182,232,.2);
}
.form__req-mark { color: var(--sky-500); font-weight: 700; }
.form__legal { font-size: 11px; color: var(--ink-400); margin-top: 12px; line-height: 1.4; }
.form__submit { width: 100%; margin-top: 8px; }
.form__field input[type="file"] {
  padding: 9px 12px; font-size: 13px; color: var(--ink-500); cursor: pointer;
}
.form__consent { margin-top: 4px; }
.form__consent-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--ink-500); line-height: 1.4; }
.form__consent-label input[type="checkbox"] { flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; accent-color: var(--sky-500); cursor: pointer; }
.form__consent-label a { color: var(--sky-600); text-decoration: underline; }

/* ============ CITY SWITCHER ============ */
.city-selector { margin-bottom: 24px; }
.city-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.city-tab {
  padding: 7px 14px; background: var(--white);
  border: 1.5px solid var(--ink-200); border-radius: 20px;
  font-size: 13px; font-family: inherit; font-weight: 500;
  color: var(--ink-700); cursor: pointer;
  transition: border-color .18s, color .18s, background .18s;
}
.city-tab:hover { border-color: var(--sky-500); color: var(--sky-600); }
.city-tab.active { background: var(--sky-500); border-color: var(--sky-500); color: #fff; }

/* Map */
.map-container { margin-top: 24px; border-radius: 10px; overflow: hidden; }
#map-placeholder { width: 100%; height: 290px; background: var(--ink-100); border-radius: 10px; overflow: hidden; }
.map-container.hidden, .contact__item.hidden { display: none !important; }

/* Fade animation on city switch */
.contact__items, .map-container { transition: opacity .25s ease, transform .25s ease; }
.contact__items.fade-out, .map-container.fade-out { opacity: 0; transform: translateY(4px); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink-050); color: var(--ink-500);
  padding: 28px 0 0; border-top: 1px solid var(--border);
  font-size: 13px;
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-bottom: 24px; }
.footer .lockup { padding: 0; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: var(--ink-500); text-decoration: none; }
.footer__links a:hover { color: var(--sky-600); }
.footer__legal {
  border-top: 1px solid var(--border);
  padding: 14px 0;
  font-size: 11px;
  color: var(--ink-400);
}
.footer__legal-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer__legal-links { display: flex; gap: 20px; }
.footer__legal-links a { color: var(--ink-400); text-decoration: none; }
.footer__legal-links a:hover { color: var(--sky-600); text-decoration: underline; }

/* ============ COOKIE BANNER ============ */
#cookie-banner {
  position: fixed;
  bottom: 0; right: 24px;
  z-index: 9999;
  background: var(--white);
  color: var(--fg-2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 600px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  box-shadow: var(--shadow-3);
  border: 1px solid var(--border);
  border-bottom: 0;
}
#cookie-banner a { color: var(--fg-link); text-decoration: underline; }
#cookie-ok {
  flex-shrink: 0;
  background: var(--sky-500);
  color: #fff;
  border: 0;
  border-radius: var(--r-md);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
#cookie-ok:hover { background: var(--sky-600); }
@media (max-width: 640px) {
  #cookie-banner { left: 0; right: 0; bottom: 0; max-width: none; border-radius: 0; }
  body.cookie-shown { padding-bottom: 60px; }
}

/* ============ LEGAL PAGES ============ */
.legal-page { padding: 60px 0 96px; }
.legal-container { max-width: 780px; }
.legal-page h1 { font-size: var(--t-3xl); color: var(--ink-900); margin: 0 0 var(--s-3); }
.legal-date { color: var(--fg-muted); font-size: var(--t-sm); margin: 0 0 var(--s-9); display: block; }
.legal-page h2 { font-size: var(--t-lg); color: var(--ink-900); margin: var(--s-8) 0 var(--s-4); padding-top: var(--s-7); border-top: 1px solid var(--border); }
.legal-page p { font-size: var(--t-base); line-height: var(--lh-relaxed); color: var(--fg-2); margin: 0 0 var(--s-4); }
.legal-page ul, .legal-page ol { margin: 0 0 var(--s-4) var(--s-6); padding: 0; }
.legal-page li { font-size: var(--t-base); line-height: var(--lh-relaxed); color: var(--fg-2); margin-bottom: var(--s-2); }

/* ============ BENEFITS ============ */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7);
}
@media (max-width: 768px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .benefits__grid { grid-template-columns: 1fr; }
}
.benefit-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.benefit-card__icon {
  width: 52px;
  height: 52px;
  background: var(--sky-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-500);
  flex-shrink: 0;
}
.benefit-card__title {
  font-size: var(--t-md);
  font-weight: 700;
  color: var(--fg-1);
  margin: 0;
  line-height: var(--lh-snug);
}
.benefit-card__text {
  font-size: var(--t-sm);
  color: var(--fg-3);
  line-height: var(--lh-relaxed);
  margin: 0;
}


/* ============ RESPONSIVE GUARDS ============ */
@media (max-width: 980px) {
  .contact__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "form" "details";
  }
  .hero { padding-top: 56px; }
  .hero__body { padding-bottom: 48px; }
  .hero__title { font-size: 56px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; padding: 24px 0 28px; }
  .hero__stat { padding: 0 18px; }
  .hero__stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .products { grid-template-columns: 1fr; }
  .specs-strip { grid-template-columns: repeat(2, 1fr); }
  .forms-grid { grid-template-columns: repeat(3, 1fr); }
  .edges-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .app-block__meta { grid-template-columns: 1fr; }
  .app-photos-grid--5 { grid-template-columns: 1fr 1fr; height: auto; }
  .app-photos-grid--5 .ap--main { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 16/7; }
  .app-photos-grid--5 .ap { aspect-ratio: 4/3; }
  .app-photos-grid--2 { height: 300px; }
  .app-photos-grid--c { grid-template-columns: 1fr 1fr; height: 300px; }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  /* NAV */
  .nav__links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.10); padding: 12px 20px 20px; gap: 0; z-index: 999; }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--ink-100); }
  .nav__links a:last-child { border-bottom: none; }
  .nav__phone { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav__inner { padding: 0 16px; position: relative; }
  .nav__logo img { height: 36px; }

  /* HERO */
  .hero { padding: 48px 0 0; }
  body[data-hero-bg="photo"] .hero::before { background-position: center center; }
  .hero__eyebrow { font-size: 11px; }
  .hero__title { font-size: 36px; letter-spacing: -.02em; }
  .hero__tagline span { font-size: 15px; }
  .hero__lead { font-size: 15px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); padding: 20px 0; }
  .hero__stat .v { font-size: 28px; }
  .hero__stat .l { font-size: 11px; }

  /* TRUST */
  .trust__items { flex-direction: column; gap: 8px; }

  /* SECTION HEAD */
  .section__head { grid-template-columns: 1fr; gap: 10px; }
  .section__title { font-size: clamp(26px, 7vw, 36px); }

  /* PRODUCTS (pdetail) */
  .pdetail { grid-template-columns: 1fr; gap: 28px; margin-top: 48px; padding-top: 48px; }
  .pdetail--reverse .pdetail__media { order: 0; }
  .pdetail__title { font-size: 28px; }
  .pdetail__fullrow { flex-direction: column; gap: 24px; }
  .pdetail__fullrow-item { width: 100%; }

  /* SPECS */
  .specs-strip { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .spec-row__v { font-size: 15px; }
  .forms-grid { grid-template-columns: repeat(2, 1fr); }
  .edges-grid { grid-template-columns: 1fr 1fr; }

  /* PHOTO STRIP — горизонтальный скролл без влияния на страницу */
  .strip-row { margin-top: 20px; padding-top: 20px; overflow: hidden; }
  .photo-strip__item { width: 190px; height: 130px; }

  /* PROJECTS */
  .projects-grid { grid-template-columns: 1fr; gap: 12px; }

  /* QUOTE */
  .quote { padding: 56px 20px; }
  .quote__text { font-size: 20px; }

  /* CONTACT */
  .contact { padding: 56px 0 48px; }
  .contact__title { font-size: 28px; }
  .contact__grid { gap: 32px; }
  .city-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .city-tab { text-align: center; padding: 8px 6px; }
  #map-placeholder { height: 220px; }

  /* FOOTER */
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__links { flex-wrap: wrap; gap: 12px 20px; }
  .footer__legal-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer__legal-links { flex-direction: column; gap: 4px; }

  /* LIGHTBOX arrows */
  #lb-prev { left: 8px; }
  #lb-next { right: 8px; }

  /* Fix fixed-height image containers */
  .pdetail__fullrow-item > div { height: auto !important; flex-shrink: 1 !important; }
  .pdetail__fullrow-item img { max-width: 100% !important; height: auto !important; }
  img { max-width: 100%; }

  /* Схемы монтажа — компактнее на мобиле */
  .pdetail__fullrow img[src*="montazh"] { max-width: 220px !important; max-height: 260px !important; }
  .pdetail__fullrow img[src*="podves"] { max-width: 160px !important; max-height: 200px !important; }
  .pdetail__fullrow img[src*="baflemont"] { max-width: 240px !important; max-height: 300px !important; }
  .pdetail__fullrow img[src*="kromk"] { max-width: 100% !important; }

  /* CONTAINER */
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
}

/* ==========================================================================
   PRODUCT NAV CARDS — блок-навигатор после hero
   ========================================================================== */
.prod-nav {
  background: var(--ink-050);
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border);
}

.prod-nav__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky-500);
  margin-bottom: 20px;
}

.prod-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.prod-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background: var(--ink-900);
  box-shadow: 0 2px 8px rgba(14,24,32,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14,24,32,.18);
}

.prod-card__img {
  height: 160px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.prod-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(160deg, #1e2d38 0%, var(--ink-900) 100%);
  flex: 1;
}

.prod-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sky-400);
}

.prod-card__title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 2px 0 4px;
}

.prod-card__desc {
  font-size: 11px;
  color: var(--ink-300);
  line-height: 1.5;
  margin-bottom: auto;
}

.prod-card__arrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--sky-400);
  margin-top: 10px;
  transition: color .15s;
}
.prod-card:hover .prod-card__arrow {
  color: var(--sky-200);
}

@media (max-width: 900px) {
  .prod-nav__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .prod-nav {
    padding: 32px 0 40px;
  }
  .prod-nav__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .prod-card__img {
    height: 120px;
  }
  .prod-card__title {
    font-size: 13px;
  }
}
