/* ===========================================================
   СайдВуд — Redesign 2026
   Дизайн-система: brutalist editorial × архитектурный материал
   =========================================================== */

:root {
  --sidwood-zoom: 1;

  --c-ink: #111111;
  --c-ink-2: #191919;
  --c-ink-3: #242424;
  --c-paper: #FFFFFF;
  --c-paper-2: #F0F0F0;
  --c-bone: #F7F7F7;
  --c-line: rgba(17, 17, 17, 0.12);
  --c-line-dark: rgba(255, 255, 255, 0.14);

  /* Фирменная палитра старого sidwood.pro: красный, чёрный, белый. */
  --c-amber: #E22A24;
  --c-amber-deep: #BC1D18;
  --c-rust: #B91C1C;
  --c-moss: #333333;
  --c-cement: #A5A5A5;
  --c-cement-2: #626262;
  --c-red: #E22A24;
  --c-red-deep: #B91D18;

  --f-display: 'Onest', 'Inter', system-ui, sans-serif;
  --f-text: 'Inter', 'Onest', system-ui, -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 22px;

  --max-w: 1920px;
  --gutter: clamp(18px, 2.2vw, 44px);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ============== HOME HERO — OPEN CONTROLS ============== */
.home-page .hero2__mode-switch {
  position: absolute;
  z-index: 6;
  top: 96px;
  left: 50%;
  width: min(310px, calc(100vw - 40px));
  height: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 4px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 34px rgba(14,14,14,.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
  isolation: isolate;
}
.home-page .hero2__mode-switch::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: var(--c-ink);
  box-shadow: 0 5px 16px rgba(14,14,14,.22);
  transform: translateX(0);
  transition: transform .3s var(--ease);
}
.home-page .hero2__mode-switch[data-mode="interior"]::before {
  transform: translateX(100%);
}
.home-page .hero2__mode-switch .hero2__format {
  z-index: 1;
  min-width: 0;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(14,14,14,.62);
  font: 700 15px/1 var(--f-display);
  transition: color .25s ease;
}
.home-page .hero2__mode-switch .hero2__format::after { display: none; }
.home-page .hero2__mode-switch .hero2__format:hover { color: var(--c-ink); }
.home-page .hero2__mode-switch .hero2__format.is-active { color: #fff; }
.home-page .hero2__mode-switch .hero2__format:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 3px;
}

.home-page .hero2__textures {
  --hero-texture-pad-x: 0px;
  right: clamp(24px, 3.4vw, 64px);
  bottom: clamp(28px, 3.3vw, 52px);
  width: min(42vw, 620px);
  padding: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}
.home-page .hero2__texture-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 22px);
  overflow: visible;
  padding: 0;
}
.home-page .hero2__texture {
  gap: 11px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.82), 0 0 2px rgba(0,0,0,.65);
}
.home-page .hero2__texture .panel-photo {
  display: block;
  width: clamp(64px, 4.25vw, 80px);
  height: clamp(64px, 4.25vw, 80px);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.28);
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
}
.home-page .hero2__texture .panel-photo > img {
  width: 100%;
  height: 100%;
}
.home-page .hero2__texture.is-active .panel-photo {
  outline: 3px dashed var(--c-red);
  outline-offset: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.36);
  transform: scale(1);
}

@media (min-width: 901px) and (max-width: 1200px) {
  .home-page .hero2__mode-switch { top: 88px; }
  .home-page .hero2__textures { width: min(49vw, 570px); right: 22px; }
}

@media (min-width: 721px) and (max-width: 900px) {
  .home-page .hero2__mode-switch { top: 78px; }
  .home-page .hero2__textures {
    position: absolute;
    z-index: 5;
    top: calc(62px + 52vh - 116px);
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
    margin: 0;
    padding: 8px;
  }
  .home-page .hero2__texture-list { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .home-page .hero2__mode-switch { display: none; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  font-family: var(--f-text);
  background: var(--c-paper);
  color: var(--c-ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.sidwood-scale-root {
  width: 100%;
  transform-origin: 0 0;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--c-red); color: #fff; }

/* Глобальный «бетонный» зерновой шум */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .015;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============== TYPOGRAPHY ============== */
.display {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .8;
}
.h1 { font-family: var(--f-display); font-weight: 800; font-size: clamp(48px, 9vw, 156px); line-height: .9; letter-spacing: -0.03em; }
.h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(36px, 5.6vw, 84px); line-height: .96; letter-spacing: -0.025em; }
.h3 { font-family: var(--f-display); font-weight: 700; font-size: clamp(24px, 2.6vw, 40px); line-height: 1.05; letter-spacing: -0.015em; }
.h4 { font-family: var(--f-text); font-weight: 700; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.2; }
.lead { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; max-width: 60ch; }
.small { font-size: 13px; }
.muted { color: var(--c-cement-2); }

/* ============== LAYOUT ============== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(60px, 9vw, 140px) 0; position: relative; }
.section--dark { background: var(--c-ink); color: var(--c-paper); }
.section--bone { background: var(--c-bone); }
.grid { display: grid; gap: 24px; }
.row { display: flex; gap: 24px; flex-wrap: wrap; }
.divider { height: 1px; background: var(--c-line); width: 100%; }
.section--dark .divider { background: var(--c-line-dark); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: all .35s var(--ease);
  border: 1px solid currentColor;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.btn--primary:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.btn--light { background: var(--c-paper); color: var(--c-ink); border-color: var(--c-paper); }
.btn--light:hover { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.btn--ghost { background: transparent; }
.btn--ghost:hover { background: var(--c-ink); color: var(--c-paper); }
.section--dark .btn--ghost:hover { background: var(--c-paper); color: var(--c-ink); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============== NAV (legacy, kept for back-compat) ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: none; /* replaced by .topbar */
  align-items: center;
  justify-content: space-between;
  background: rgba(242, 237, 227, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-line);
  transition: all .3s var(--ease);
}
.nav.is-dark {
  background: rgba(14, 14, 14, 0.7);
  color: var(--c-paper);
  border-bottom-color: var(--c-line-dark);
}

/* ============== TOPBAR (new) ============== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: auto;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto 1fr auto;
  align-items: stretch;
  height: 74px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--c-ink);
  border-bottom: 1px solid rgba(14,14,14,.12);
  font-family: var(--f-text);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}
.topbar.is-light {
  background: rgba(255,255,255,.92);
  color: var(--c-ink);
  border-bottom-color: rgba(14,14,14,.08);
}
.topbar > * {
  display: flex;
  align-items: center;
  padding: 0 clamp(18px, 2.8vw, 42px);
  border-right: 1px solid rgba(14,14,14,.09);
}
.topbar.is-light > * { border-right-color: rgba(14,14,14,.08); }
.topbar > *:last-child { border-right: none; }

.topbar .brand,
.overlay__head .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
}
.brand img {
  content: url('../assets/logo/logo-cyrillic-registered.png?v=20260902-registered');
  display: block;
  height: 48px;
  width: auto;
  max-width: 182px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}
.topbar.is-light .brand img,
.overlay .brand img { filter: none; }
.brand__text {
  display: none;
}
.overlay .brand img {
  content: url('../assets/logo/logo-cyrillic-registered-light.png?v=20260902-registered');
  height: 38px;
  max-width: 140px;
}
.brand__mark {
  width: 8px; height: 8px;
  background: var(--c-amber);
  border-radius: 50%;
  display: inline-block;
}
.brand__word {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.topbar__center {
  justify-content: center;
  gap: 22px;
  font-weight: 600;
}
.topbar__center .ticker { white-space: nowrap; }
.topbar__place {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.topbar__place::before {
  content: '';
  width: 11px;
  height: 14px;
  display: inline-block;
  background: var(--c-red);
  clip-path: polygon(50% 100%, 88% 46%, 88% 22%, 70% 4%, 50% 0, 30% 4%, 12% 22%, 12% 46%);
}
.topbar__sep { color: rgba(14,14,14,.55); }
.topbar__right { justify-content: flex-end; }
.topbar__phone {
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--f-text);
  font-size: 16px;
  white-space: nowrap;
}
.indexbtn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 clamp(20px, 3vw, 42px) !important;
  height: 100%;
  background: var(--c-red);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .08em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.indexbtn:hover { background: var(--c-red-deep); }
.indexbtn__num { opacity: 1; font-size: 14px; }
.indexbtn__label { font-weight: 700; }
.indexbtn__icon { display: inline-flex; flex-direction: column; gap: 3px; }
.indexbtn__icon span {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
}
.indexbtn__icon span:nth-child(2) { width: 12px; margin-left: 6px; }
.indexbtn__icon span:nth-child(3) { width: 18px; }

@media (max-width: 900px) {
  .topbar { grid-template-columns: 1fr auto; height: 62px; }
  .topbar__center, .topbar__right { display: none; }
  .topbar > * { padding: 0 16px; }
  .indexbtn { padding: 0 18px !important; gap: 10px; }
  .indexbtn__num { display: none; }
  .topbar .brand img { height: 40px; max-width: 146px; }
}

/* ============== OVERLAY MENU ============== */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-ink);
  color: var(--c-paper);
  display: grid;
  grid-template-rows: auto 1fr auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.overlay.is-open { pointer-events: auto; opacity: 1; }
.overlay::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(to right, transparent 0, transparent calc(100%/14 - 1px), rgba(242,237,227,.04) calc(100%/14 - 1px), rgba(242,237,227,.04) calc(100%/14)),
    radial-gradient(ellipse at 70% 30%, rgba(226,42,36,.15), transparent 60%);
  pointer-events: none;
}

.overlay__head {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid rgba(242,237,227,.1);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.overlay__head .brand {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.overlay__head .brand__mark { width: 8px; height: 8px; background: var(--c-amber); border-radius: 50%; }
.overlay__close {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid rgba(242,237,227,.3);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.overlay__close:hover { background: var(--c-amber); color: var(--c-ink); border-color: var(--c-amber); }

.overlay__body {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  overflow: auto;
}
@media (max-width: 900px) { .overlay__body { grid-template-columns: 1fr; } }

.overlay__nav {
  padding: clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  overflow-y: auto;
  border-right: 1px solid rgba(242,237,227,.1);
}
.overlay__nav a {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: clamp(8px, 1.4vw, 16px) 0;
  border-bottom: 1px solid rgba(242,237,227,.08);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1;
  transition: padding .35s var(--ease), color .25s;
  position: relative;
}
.overlay__nav a:hover {
  color: var(--c-amber);
  padding-left: 24px;
}
.overlay__nav a .num {
  font-family: var(--f-mono);
  font-size: clamp(10px, .9vw, 13px);
  letter-spacing: .15em;
  opacity: .55;
  font-weight: 500;
  text-transform: uppercase;
  align-self: center;
}
.overlay__nav a .word { font-style: normal; }
.overlay__nav a .en {
  font-family: var(--f-mono);
  font-size: clamp(10px, .85vw, 13px);
  letter-spacing: .12em;
  opacity: .45;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
}

/* Desktop navigation always fits in the available viewport height. */
@media (min-width: 901px) {
  .overlay__body {
    min-height: 0;
    overflow: hidden;
  }
  .overlay__nav {
    min-height: 0;
    height: 100%;
    padding: clamp(14px, 2.4vh, 28px) clamp(28px, 4vw, 60px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(10, minmax(0, 1fr));
    overflow: hidden;
  }
  .overlay__nav a {
    min-height: 0;
    height: 100%;
    padding: 0;
    align-items: center;
    font-size: clamp(26px, min(3.2vw, 5.2vh), 48px);
  }
  .overlay__nav a:hover { padding-left: 18px; }
  .overlay__aside {
    min-height: 0;
    overflow: hidden;
    padding: clamp(22px, 4vh, 52px) clamp(28px, 4vw, 60px);
    gap: clamp(18px, 3vh, 32px);
  }
}
@media (max-width: 700px) {
  .overlay__nav a { grid-template-columns: 36px 1fr; gap: 14px; }
  .overlay__nav a .en { display: none; }
}

.overlay__aside {
  padding: clamp(20px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
  background: rgba(242,237,227,.03);
  position: relative;
}
.overlay__aside::after {
  display: none;
}
.overlay__contact h6 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: 12px;
}
.overlay__contact a, .overlay__contact p {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 4px;
  transition: color .2s;
}
.overlay__contact a:hover { color: var(--c-amber); }

.overlay__foot {
  padding: 14px 22px;
  border-top: 1px solid rgba(242,237,227,.1);
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .5;
  flex-wrap: wrap;
  gap: 12px;
}

body.menu-open { overflow: hidden; }

/* ============== HERO 2 (light architecture) ============== */
.hero2 {
  position: relative;
  height: calc(100vh / var(--sidwood-zoom, 1));
  height: calc(100svh / var(--sidwood-zoom, 1));
  min-height: 760px;
  background: #fff;
  color: var(--c-ink);
  padding-top: 74px;
  overflow: hidden;
  isolation: isolate;
}

.hero2__photo {
  position: absolute;
  inset: 74px 0 0 0;
  width: 100%;
  height: calc(100% - 74px);
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: -3;
}

.hero2__wash {
  position: absolute;
  top: 74px;
  left: -7vw;
  bottom: 0;
  width: clamp(720px, 56vw, 1040px);
  z-index: -2;
  pointer-events: none;
  transform: skewX(-8deg);
  transform-origin: left top;
  background:
    radial-gradient(ellipse at 16% 94%, rgba(255,255,255,.88), rgba(255,255,255,0) 58%),
    linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 42%, rgba(255,255,255,.62) 70%, rgba(255,255,255,0) 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 64%, rgba(0,0,0,.5) 82%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 64%, rgba(0,0,0,.5) 82%, transparent 100%);
}

.hero2::before {
  content: '';
  position: absolute;
  inset: 74px 0 0 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at -5% 88%, rgba(217,0,22,.08), transparent 28%),
    radial-gradient(ellipse at 30% 0%, rgba(255,255,255,.35), transparent 28%);
}

.hero2__left {
  width: min(54vw, 860px);
  min-height: calc((100vh / var(--sidwood-zoom, 1)) - 74px);
  min-height: calc((100svh / var(--sidwood-zoom, 1)) - 74px);
  padding: clamp(34px, 4.4vw, 64px) clamp(28px, 4.2vw, 76px) 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 1.55vw, 22px);
  position: relative;
  z-index: 2;
}

.hero2__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 600;
}
.hero2__meta .meta-tag {
  padding: 10px 22px;
  border: 1px solid rgba(14,14,14,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 26px rgba(14,14,14,.06);
}
.hero2__kicker {
  position: relative;
  margin-top: clamp(8px, 1.2vw, 18px);
  padding-left: 24px;
  max-width: 430px;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.55;
  color: rgba(14,14,14,.78);
}
.hero2__kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-red);
}

.hero2__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 4.7vw, 78px);
  line-height: 1.06;
  letter-spacing: 0;
  margin: 0;
  max-width: 860px;
}
.hero2__title-line { white-space: nowrap; }
.hero2__title em {
  font-style: normal;
  font-weight: 800;
  color: var(--c-red);
  white-space: nowrap;
}

.hero2__lead {
  font-size: clamp(17px, 1.16vw, 20px);
  line-height: 1.55;
  max-width: 560px;
  color: rgba(14,14,14,.75);
}

.hero2__benefits {
  width: min(100%, 420px);
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}
.hero2__benefits li {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  border-bottom: 1px solid rgba(217,0,22,.2);
  font-size: 17px;
  font-weight: 500;
}
.hero2__benefit-icon {
  width: 36px;
  flex: 0 0 36px;
  color: var(--c-red);
  font-size: 28px;
  line-height: 1;
  text-align: center;
}

.hero2__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn--outline {
  background: rgba(255,255,255,.7);
  color: var(--c-ink);
  border-color: rgba(14,14,14,.22);
}
.btn--outline:hover {
  background: #fff;
  border-color: rgba(14,14,14,.36);
}
.hero2 .btn--primary {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}
.hero2 .btn--primary:hover {
  background: var(--c-red-deep);
  border-color: var(--c-red-deep);
  color: #fff;
}

.hero2__down {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  box-shadow: 0 16px 38px rgba(14,14,14,.12);
  font-size: 24px;
  font-weight: 700;
}

/* Fixed return-to-top control shared by every page. */
.scroll-top-btn {
  position: fixed;
  z-index: 90;
  right: clamp(14px, 2vw, 30px);
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 10px 30px rgba(226,42,36,.32);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(.88);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease, background .2s ease;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: scrollTopPulse 2s ease-in-out infinite;
}

.scroll-top-btn:hover {
  background: var(--c-ink);
  animation-play-state: paused;
}

.scroll-top-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

body.menu-open .scroll-top-btn { opacity: 0; pointer-events: none; }

@keyframes scrollTopPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(226,42,36,.28), 0 0 0 0 rgba(226,42,36,.28); }
  50% { box-shadow: 0 12px 34px rgba(226,42,36,.38), 0 0 0 10px rgba(226,42,36,0); }
}

@media (max-width: 720px) {
  .scroll-top-btn {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top-btn.is-visible { animation: none; }
}

.hero2__textures {
  --hero-texture-pad-x: 30px;
  position: absolute;
  right: clamp(26px, 3.4vw, 64px);
  bottom: clamp(22px, 3.2vw, 48px);
  z-index: 3;
  width: min(42vw, 630px);
  padding: 0 var(--hero-texture-pad-x) 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 70px rgba(14,14,14,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--c-ink);
  overflow: hidden;
}
.hero2__formats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: calc(100% + var(--hero-texture-pad-x) + var(--hero-texture-pad-x));
  margin: 0 0 22px;
  margin-left: calc(0px - var(--hero-texture-pad-x));
  border-bottom: 1px solid rgba(14,14,14,.18);
}
.hero2__format {
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 22px 18px 18px;
  background: transparent;
  color: var(--c-ink);
  font: 700 18px/1 var(--f-display);
  text-align: center;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease;
}
.hero2__format::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.hero2__format:hover { color: var(--c-red); }
.hero2__format.is-active { color: var(--c-red); }
.hero2__format.is-active::after { transform: scaleX(1); }
.hero2__format:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 2px;
}
.hero2__texture-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.hero2__texture-list[data-mode="facade"] .hero2__texture[data-hero-kind="interior"],
.hero2__texture-list[data-mode="interior"] .hero2__texture[data-hero-kind="facade"] {
  display: none;
}
.hero2__texture {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  transition: transform .25s var(--ease);
  color: inherit;
}
.hero2__texture:hover { transform: translateY(-3px); }
.hero2__texture .panel-photo {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(14,14,14,.08), 0 8px 22px rgba(14,14,14,.12);
  transition: box-shadow .25s ease, transform .25s ease;
}
.hero2__texture .panel-photo > img { object-fit: cover; }
.hero2__texture.is-active .panel-photo {
  box-shadow: inset 0 0 0 1px rgba(14,14,14,.08), 0 8px 22px rgba(14,14,14,.16);
  outline: 3px dashed var(--c-red);
  outline-offset: 4px;
  transform: scale(1.04);
}
@media (max-width: 1200px) {
  .hero2__left { width: min(58vw, 720px); }
  .hero2__textures { width: min(50vw, 600px); }
}

@media (max-width: 900px) {
  .hero2 {
    height: auto;
    min-height: auto;
    padding-top: 62px;
  }
  .hero2__photo {
    position: relative;
    inset: auto;
    height: 52vh;
    min-height: 360px;
    object-position: center center;
    z-index: 0;
  }
  .hero2__wash,
  .hero2::before { display: none; }
  .hero2__left {
    width: 100%;
    min-height: auto;
    padding: 32px 20px 34px;
    background: #fff;
  }
  .hero2__title { font-size: clamp(40px, 10vw, 64px); }
  .hero2__textures {
    --hero-texture-pad-x: 22px;
    position: static;
    width: auto;
    margin: -54px 20px 34px;
    padding: 0 var(--hero-texture-pad-x) 22px;
    border-radius: 20px;
  }
  .hero2__texture-list {
    grid-template-columns: repeat(5, 112px);
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

@media (max-width: 560px) {
  .hero2__meta { gap: 10px; }
  .hero2__meta .meta-tag { padding: 9px 14px; font-size: 13px; }
  .hero2__benefits li { font-size: 15px; }
  .hero2__cta .btn { width: 100%; justify-content: center; }
}

/* Legacy selectors retained for old experiments */
.hero2__wall {
  display: none;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero2__board {
  position: relative;
  background-size: cover;
  background-position: center;
  border-right: 1px solid rgba(14,14,14,.5);
  overflow: hidden;
  cursor: crosshair;
  transform: translateY(0);
  transition: transform .9s var(--ease), filter .4s;
  filter: saturate(.95) contrast(1.05);
}
.hero2__board:last-child { border-right: none; }
.hero2__board:nth-child(2n) { animation: boardSlide 18s ease-in-out infinite; }
.hero2__board:nth-child(3n) { animation: boardSlide2 22s ease-in-out infinite; }

@keyframes boardSlide {
  0%, 100% { background-position: 50% 30%; }
  50% { background-position: 50% 70%; }
}
@keyframes boardSlide2 {
  0%, 100% { background-position: 50% 70%; }
  50% { background-position: 50% 30%; }
}

.hero2__board:hover { filter: saturate(1.1) contrast(1.1) brightness(1.05); }
.hero2__board:hover .hero2__board-label { transform: translateY(0); opacity: 1; }

.hero2__board-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: var(--c-paper);
  color: var(--c-ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 600;
  white-space: nowrap;
  transition: all .35s var(--ease);
  pointer-events: none;
}

/* Subtle scan lines across boards (mimics real wood texture) */
.hero2__wall::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 80px,
    rgba(0,0,0,.08) 80px,
    rgba(0,0,0,.08) 81px
  );
  z-index: 1;
}

/* gradient on hero edge for separation */
.hero2__wall::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,14,14,.3) 0%, transparent 12%);
  pointer-events: none;
  z-index: 1;
}

/* Live indicator dot */
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.live-dot::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--c-amber);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}
.nav__logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-amber);
  display: inline-block;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: opacity .2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
}
.nav__cta .phone { display: flex; align-items: center; gap: 6px; }

.nav__burger { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 22px; height: 2px; background: currentColor; position: relative; }
.nav__burger span::before, .nav__burger span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor;
}
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta .phone { display: none; }
  .nav__burger { display: inline-flex; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 28px var(--gutter);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__head { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu__close { font-size: 14px; font-family: var(--f-mono); }
.mobile-menu nav { margin-top: auto; margin-bottom: auto; }
.mobile-menu nav a {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 6vw, 56px);
  letter-spacing: -0.02em;
  padding: 8px 0;
  transition: color .2s;
}
.mobile-menu nav a:hover { color: var(--c-amber); }
.mobile-menu__foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--c-line-dark); font-size: 14px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 140px var(--gutter) 80px;
  background: var(--c-ink);
  color: var(--c-paper);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* «Сайдинг» паттерн вертикальных досок на фоне */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent 14.28%,
      rgba(242, 237, 227, 0.03) 14.28%,
      rgba(242, 237, 227, 0.03) 14.30%
    ),
    radial-gradient(ellipse at 20% 30%, rgba(226, 42, 36, 0.16), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(185, 29, 24, 0.10), transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 13px;
  font-family: var(--f-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}
.hero__top span { display: block; }

.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 13vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 60px 0 40px;
}
.hero__title .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--c-amber);
}
.hero__title .stroke {
  -webkit-text-stroke: 1.5px var(--c-paper);
  color: transparent;
}

.hero__bottom {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(280px, 1fr);
  gap: 60px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 32px; }
}
.hero__lead {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  max-width: 52ch;
  opacity: .92;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero__chips {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-30%);
  display: grid;
  grid-template-columns: repeat(3, 60px);
  gap: 8px;
  z-index: 1;
  opacity: .9;
}
.hero__chips .chip {
  width: 60px; height: 90px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 40px rgba(0,0,0,.4);
  animation: chipFloat 8s var(--ease) infinite;
}
.hero__chips .chip:nth-child(1) { animation-delay: 0s; }
.hero__chips .chip:nth-child(2) { animation-delay: -1s; }
.hero__chips .chip:nth-child(3) { animation-delay: -2s; }
.hero__chips .chip:nth-child(4) { animation-delay: -3s; }
.hero__chips .chip:nth-child(5) { animation-delay: -4s; }
.hero__chips .chip:nth-child(6) { animation-delay: -5s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 1100px) { .hero__chips { display: none; } }

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: var(--gutter);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-indicator::after {
  content: '';
  width: 60px; height: 1px;
  background: currentColor;
  animation: scroll-line 2s ease-in-out infinite;
  transform-origin: left;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
}

/* ============== STATS BAR ============== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.stats--dark { border-color: var(--c-line-dark); }
.stat {
  padding: 28px var(--gutter);
  border-right: 1px solid var(--c-line);
}
.stats--dark .stat { border-right-color: var(--c-line-dark); }
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__num .unit { font-size: .55em; vertical-align: top; opacity: .7; margin-left: 4px; }
.stat__label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: .7;
}
@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--c-line); }
  .stats--dark .stat:nth-child(1), .stats--dark .stat:nth-child(2) { border-bottom-color: var(--c-line-dark); }
}

/* ============== SECTION HEADERS ============== */
.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
}
@media (max-width: 800px) {
  .section__head { grid-template-columns: 1fr; gap: 24px; }
}
.section__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .15em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section__num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .25;
}

/* ============== ABOUT BLOCKS ============== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.about-card {
  padding: 36px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-bone);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .35s var(--ease), background .35s;
  position: relative;
  overflow: hidden;
}
.about-card:hover { transform: translateY(-4px); background: var(--c-paper); }
.about-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-ink);
  color: var(--c-paper);
  border-radius: var(--r-md);
}
.about-card__title { font-family: var(--f-display); font-weight: 700; font-size: 22px; line-height: 1.15; letter-spacing: -.01em; }
.about-card__text { font-size: 15px; line-height: 1.55; color: var(--c-cement-2); }

.about-card.span-4 { grid-column: span 4; }
.about-card.span-6 { grid-column: span 6; }
.about-card.span-8 { grid-column: span 8; }
.about-card.span-12 { grid-column: span 12; }
@media (max-width: 900px) {
  .about-card.span-4, .about-card.span-6, .about-card.span-8 { grid-column: span 12; }
}

.about-card--feature {
  background: var(--c-ink);
  color: var(--c-paper);
  border-color: var(--c-ink);
}
.about-card--feature .about-card__text { color: rgba(242, 237, 227, .7); }
.about-card--feature .about-card__icon { background: var(--c-amber); color: #fff; }
.about-card--accent {
  background: var(--c-amber);
  color: #fff;
  border-color: var(--c-amber);
}
.about-card--accent .about-card__text { color: rgba(255, 255, 255, .78); }
.about-card--accent .about-card__icon { background: #fff; color: var(--c-red); }

/* ============== TRUST / CERTIFICATES ============== */
.trust-section .section__num,
.open-village-section .section__num { color: var(--c-red); }
.trust-section,
.open-village-section { scroll-margin-top: 74px; }

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 88px);
  border-top: 1px solid var(--c-line);
}
.certificate-grid--single { grid-template-columns: minmax(0, 1fr); }
.certificate-grid--single .certificate-card {
  grid-template-columns: minmax(260px, .55fr) minmax(320px, 1.45fr);
}
.certificate-card {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(210px, .86fr) 1.14fr;
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(32px, 3.2vw, 52px) 0;
  background: transparent;
  border-bottom: 1px solid var(--c-line);
  border-radius: 0;
  transition: transform .35s var(--ease);
}
.certificate-card:hover {
  transform: translateY(-4px);
}
.certificate-card__image {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  overflow: visible;
}
.certificate-card__image img {
  width: auto;
  max-width: 100%;
  height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(17,17,17,.12));
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.certificate-card:hover .certificate-card__image img {
  transform: scale(1.018);
  filter: drop-shadow(0 24px 34px rgba(17,17,17,.16));
}
.certificate-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 12px 10px 12px 0;
}
.certificate-card__index {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--c-red);
  margin-bottom: 22px;
}
.certificate-card__body h3 {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}
.certificate-card__body p {
  color: var(--c-cement-2);
  font-size: 15px;
  line-height: 1.55;
}
.certificate-card__link {
  margin-top: auto;
  padding-top: 28px;
  font-weight: 700;
  color: var(--c-red);
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.trust-facts > div {
  min-height: 150px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px clamp(18px, 2.6vw, 38px);
  border-right: 1px solid var(--c-line);
}
.trust-facts > div:last-child { border-right: 0; }
.trust-facts strong {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--c-red);
  white-space: nowrap;
}
.trust-facts span {
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-cement-2);
}

.open-village-section {
  background: var(--c-ink);
  color: #fff;
  overflow: hidden;
}
.open-village__layout {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) 1.25fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.open-village__intro .h2 { margin-bottom: 28px; }
.open-village__intro .lead { color: rgba(255,255,255,.68); font-size: 17px; }
.open-village__years {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}
.open-village__years span {
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
}
.open-village__docs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.event-document {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px;
  background: #fff;
  color: var(--c-ink);
  border-radius: var(--r-md);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.event-document:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
}
.event-document img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: transparent;
  border-radius: 5px;
}
.event-document > div { display: flex; flex-direction: column; align-items: flex-start; padding: 2px 4px 6px; }
.event-document span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .13em;
  color: var(--c-red);
  margin-bottom: 9px;
}
.event-document strong { font-size: 17px; line-height: 1.25; }
.event-document em { margin-top: 20px; font-style: normal; font-size: 13px; font-weight: 700; color: var(--c-red); }

@media (max-width: 1100px) {
  .certificate-card { grid-template-columns: 1fr; }
  .certificate-card__image { min-height: 420px; }
  .certificate-card__body { padding: 8px; }
  .open-village__layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .certificate-grid, .open-village__docs { grid-template-columns: 1fr; }
  .certificate-card { min-height: 0; }
  .certificate-card__image { min-height: 380px; }
  .trust-facts { grid-template-columns: 1fr; }
  .trust-facts > div { border-right: 0; border-bottom: 1px solid var(--c-line); }
  .trust-facts > div:last-child { border-bottom: 0; }
}

/* ============== COMPARISON ROWS ============== */
.compare {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-line);
}
.compare-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(22px, 2.4vw, 30px) 0;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
}
@media (max-width: 800px) {
  .compare-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ============== DOCUMENTS + OPEN VILLAGE — REDESIGN ============== */
.home-page .trust-section--compact {
  padding: clamp(72px, 7vw, 112px) 0;
  background: #fff;
}
.certificate-band {
  width: calc(100% - (2 * var(--gutter)));
  max-width: 1760px;
  min-height: 620px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(420px, .82fr) minmax(540px, 1.18fr);
  grid-template-rows: auto 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 28px;
  background: var(--c-ink);
  color: #fff;
}
.certificate-band__intro {
  grid-column: 1;
  grid-row: 1;
  padding: clamp(46px, 5vw, 78px) clamp(38px, 5vw, 76px) 24px;
}
.certificate-band__intro .section__num {
  color: var(--c-red);
}
.certificate-band__intro .section__num::after { display: none; }
.certificate-band__intro h2 {
  margin: 24px 0 20px;
  max-width: 12ch;
  font-family: var(--f-display);
  font-size: clamp(38px, 3.7vw, 64px);
  line-height: .98;
  letter-spacing: -.045em;
}
.certificate-band__intro p {
  max-width: 43ch;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
}
.certificate-band__preview {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: clamp(42px, 5vw, 82px);
  background: #eeeae4;
}
.certificate-band__preview::before { display: none; }
.certificate-band__preview img {
  display: block;
  width: min(42%, 360px);
  height: auto;
  aspect-ratio: 707 / 1000;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(25, 22, 18, .2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.certificate-band__preview:hover img {
  transform: translateY(-6px) rotate(-.4deg);
  box-shadow: 0 38px 90px rgba(25, 22, 18, .26);
}
.certificate-band__preview span {
  position: absolute;
  right: clamp(26px, 3vw, 48px);
  bottom: clamp(24px, 3vw, 44px);
  margin: 0;
  padding: 12px 18px;
  background: var(--c-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.certificate-band__details {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  padding: 16px clamp(38px, 5vw, 76px) clamp(46px, 5vw, 72px);
  border: 0;
}
.certificate-band__eyebrow {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.42);
}
.certificate-band__details h3 {
  margin: 12px 0 10px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
}
.certificate-band__details > p {
  max-width: 48ch;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.56);
}
.certificate-band__facts {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 0;
}
.certificate-band__facts > div {
  min-height: 86px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: rgba(255,255,255,.07);
}
.certificate-band__facts dt {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: .09em;
  color: rgba(255,255,255,.42);
}
.certificate-band__facts dd {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.home-page .open-village-section {
  padding: clamp(72px, 7vw, 112px) 0;
  background: #f3f2ef;
  color: var(--c-ink);
  overflow: visible;
}
.home-page .open-village__layout {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(680px, 1.38fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: start;
  border-radius: 0;
  background: transparent;
  color: var(--c-ink);
}
.open-village__intro {
  max-width: none;
  margin: 0;
  text-align: left;
}
.open-village__intro .section__num {
  width: auto;
  margin: 0;
  color: var(--c-red);
}
.open-village__intro .section__num::after { display: none; }
.open-village__intro h2 {
  margin-top: 22px;
  max-width: 11ch;
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: .96;
  letter-spacing: -.045em;
}
.open-village__intro p {
  max-width: 42ch;
  margin: 26px 0 0;
  color: var(--c-cement-2);
  font-size: 15px;
  line-height: 1.65;
}
.open-village__docs {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.event-document,
.home-page .event-document {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  color: var(--c-ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.event-document::before {
  content: attr(data-year);
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 8px 11px;
  background: var(--c-ink);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
}
.event-document:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(31, 28, 23, .12);
}
.event-document img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 0;
  background: #f8f7f5;
}
.event-document > div {
  min-height: 138px;
  padding: 22px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.event-document span {
  margin-bottom: 10px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--c-red);
}
.event-document strong {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.2;
}
.event-document em {
  margin-top: auto;
  padding-top: 20px;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-ink);
}

@media (max-width: 1050px) {
  .certificate-band {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }
  .certificate-band__preview { min-height: 580px; }
  .certificate-band__facts { grid-template-columns: 1fr; }
  .certificate-band__facts > div { min-height: 70px; }
  .home-page .open-village__layout { grid-template-columns: 1fr; }
  .open-village__intro h2 { max-width: 15ch; }
}

@media (max-width: 720px) {
  .home-page .trust-section--compact,
  .home-page .open-village-section { padding: 56px 0; }
  .certificate-band {
    width: calc(100% - (2 * var(--gutter)));
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border-radius: 20px;
  }
  .certificate-band__intro,
  .certificate-band__details { grid-column: 1; grid-row: auto; padding: 32px 24px; }
  .certificate-band__preview {
    grid-column: 1;
    grid-row: auto;
    min-height: 480px;
    padding: 42px 20px 72px;
  }
  .certificate-band__preview img { width: min(72%, 300px); }
  .certificate-band__facts { grid-template-columns: 1fr; }
  .home-page .open-village__layout { padding: 0 var(--gutter); gap: 38px; }
  .open-village__intro h2 { font-size: 42px; }
  .open-village__docs { grid-template-columns: 1fr; }
}

/* ============== MOBILE SYSTEM — COMPACT 2026 ============== */
@media (max-width: 720px) {
  :root {
    --gutter: 14px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
    line-height: 1.45;
  }

  /* Compact header shared by every page. */
  .topbar {
    height: 54px;
    grid-template-columns: minmax(0, 1fr) 104px;
  }
  .topbar > * { padding: 0 14px; }
  .topbar .brand { min-width: 0; }
  .topbar .brand img {
    width: auto;
    height: 34px;
    max-width: 142px;
  }
  .indexbtn {
    min-width: 104px;
    padding: 0 12px !important;
    gap: 9px;
    font-size: 12px;
  }
  .indexbtn__icon { gap: 3px; }
  .indexbtn__icon span { width: 16px; }
  .indexbtn__icon span:nth-child(2) { width: 11px; margin-left: 5px; }
  .indexbtn__icon span:nth-child(3) { width: 16px; }

  /* One continuous scroll for the whole menu, including all ten links. */
  .overlay {
    display: block;
    height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .overlay__head {
    position: sticky;
    top: 0;
    z-index: 5;
    height: 54px;
    padding: 0 14px;
    background: rgba(17,17,17,.96);
    backdrop-filter: blur(14px);
  }
  .overlay__head > span { display: none; }
  .overlay__head .brand img {
    width: auto;
    height: 31px;
    max-width: 128px;
  }
  .overlay__close {
    gap: 8px;
    padding: 7px 11px;
    font-size: 10px;
  }
  .overlay__body {
    display: block;
    min-height: 0;
    overflow: visible;
  }
  .overlay__nav {
    padding: 12px 18px 18px;
    overflow: visible;
    border-right: 0;
  }
  .overlay__nav a {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 11px 0;
    font-size: 23px;
    line-height: 1.02;
  }
  .overlay__nav a .num { font-size: 9px; }
  .overlay__aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    padding: 22px 18px 26px;
  }
  .overlay__contact:last-child { grid-column: 1 / -1; }
  .overlay__contact h6 { margin-bottom: 9px; font-size: 9px; }
  .overlay__contact a,
  .overlay__contact p { font-size: 13px; line-height: 1.45; }
  .overlay__foot {
    padding: 14px 18px 24px;
    font-size: 8px;
    line-height: 1.5;
  }

  /* Hero: copy first, one real image, then a compact texture rail. */
  .hero2 {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding-top: 54px;
    overflow: visible;
  }
  #heroHouse {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: min(62vw, 330px);
    min-height: 235px;
    object-fit: cover;
    object-position: 70% 52%;
    z-index: 0;
  }
  .hero2__photo--transition {
    display: none;
  }
  .hero2__left {
    order: 1;
    width: 100%;
    min-height: 0;
    gap: 12px;
    padding: 20px 16px 22px;
  }
  .hero2__meta { gap: 8px; }
  .hero2__meta .meta-tag { padding: 7px 11px; font-size: 11px; }
  .hero2__kicker {
    margin-top: 6px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.45;
  }
  .hero2__kicker::before { width: 6px; height: 6px; }
  .hero2__title {
    max-width: none;
    font-size: clamp(34px, 9.4vw, 44px);
    line-height: .98;
    letter-spacing: -.035em;
  }
  .hero2__title-line { white-space: normal; }
  .hero2__lead { font-size: 14px; line-height: 1.5; }
  .hero2__benefits {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .hero2__benefits li {
    min-height: 54px;
    padding: 8px 9px;
    gap: 8px;
    border: 0;
    background: #f4f3f1;
    font-size: 12px;
    line-height: 1.25;
  }
  .hero2__benefits li:last-child { grid-column: 1 / -1; min-height: 44px; }
  .hero2__benefit-icon { width: 24px; flex-basis: 24px; font-size: 21px; }
  .hero2__cta {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .hero2__cta .btn {
    width: auto;
    min-height: 44px;
    padding: 11px 12px;
    justify-content: center;
    font-size: 12px;
    text-align: center;
  }
  .hero2__cta .btn:first-child,
  .hero2__cta .btn:last-child { grid-column: 1 / -1; }
  .hero2__down { display: none; }
  .hero2__textures {
    order: 3;
    position: static;
    width: auto;
    margin: 0 14px 24px;
    padding: 13px 12px 10px;
    border-radius: 16px;
  }
  .hero2__textures h2 { margin-bottom: 10px; font-size: 13px; }
  .hero2__texture-list {
    grid-template-columns: repeat(5, 68px);
    gap: 9px;
    padding-bottom: 4px;
  }
  .hero2__texture { gap: 6px; font-size: 10px; }
  .hero2__texture .panel-photo { width: 54px; height: 54px; }

  /* Shared typography and vertical rhythm. */
  .home-page .section { padding: 42px 0; }
  .section__num { font-size: 8px !important; }
  .section__head { gap: 14px; margin-bottom: 26px; }
  .home-products-section .section__head .h2,
  .home-page .evidence-heading h2,
  .home-page .open-village__intro h2,
  .home-page .projects-showcase__header h2,
  .home-page .cta-block h2,
  .projects-showcase__header h2 { font-size: 30px; line-height: 1; }
  .lead,
  .home-products-section .section__head .lead,
  .projects-showcase__header p { font-size: 14px; line-height: 1.5; }

  /* Intro image and facts become a compact two-column module. */
  .home-intro-screen { padding: 24px 14px 44px; }
  .home-intro-layout { gap: 36px; }
  .home-intro-visual {
    width: 100%;
    height: min(70vw, 300px);
    min-height: 0;
    max-height: 300px;
    margin: 0;
  }
  .home-intro-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 6px;
  }
  .home-intro-metrics > div {
    min-height: 72px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .home-intro-metrics > div:last-child { grid-column: 1 / -1; }
  .home-intro-metrics strong { font-size: 20px; }
  .home-intro-metrics span { max-width: none; font-size: 9px; }
  .home-page .home-proof-section { padding: 0; }
  .home-proof { gap: 24px; }
  .home-proof__intro h2 { font-size: 30px; }
  .home-proof__intro p { font-size: 13px; line-height: 1.5; }
  .home-proof__matrix { gap: 5px; overflow: visible; }
  .home-proof__matrix-head { display: none; }
  .home-proof__row {
    min-width: 0;
    grid-template-columns: 54px 1fr;
    gap: 6px 10px;
    padding: 11px 12px;
    font-size: 12px;
  }
  .home-proof__row strong { font-size: 12px; }
  .home-proof__summary {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }
  .home-proof__summary span { padding: 9px 8px 9px 20px; }
  .home-proof__summary span:last-child { grid-column: 1 / -1; }

  /* Product cards stay readable in two columns instead of a long one-card stack. */
  .home-products-section .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .home-products-section .product-card,
  .home-products-section .product-card--partner {
    grid-column: auto;
    min-height: 238px;
    padding: 14px;
    border-radius: 16px;
  }
  .home-products-section .product-card--partner { grid-column: 1 / -1; min-height: 180px; }
  .product-card .badge { padding: 4px 7px; font-size: 8px; }
  .product-card h3 { max-width: 8ch; font-size: 18px; line-height: 1.02; }
  .product-card .arrow-btn { top: 12px; right: 12px; width: 32px; height: 32px; }
  .product-card .specs { max-width: 76%; font-size: 8px; line-height: 1.45; }
  .product-card__media { right: -13%; top: 10%; bottom: 1%; width: 70%; }
  .product-card__media--accessory { right: -3%; top: 28%; bottom: 5%; width: 62%; }
  .product-card__media--clip { right: -6%; top: 32%; width: 69%; }

  /* Expertise: smaller documents and two-column facts/documents. */
  .expertise-section { padding: 44px 0; }
  .expertise-layout { display: block; }
  .expertise-intro h2 { margin: 16px 0 18px; font-size: 34px; line-height: .95; }
  .expertise-intro > p { font-size: 13px; }
  .expertise-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 22px;
    border: 0;
  }
  .expertise-facts > div {
    min-height: 66px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border: 0;
    background: rgba(255,255,255,.07);
  }
  .expertise-facts > div:last-child { grid-column: 1 / -1; }
  .expertise-certificate { margin: 28px 0 0; }
  .expertise-certificate img { width: min(48vw, 190px); max-height: 270px; object-fit: contain; }
  .expertise-certificate span { margin-top: 10px; font-size: 9px; }
  .expertise-events { margin-top: 38px; }
  .expertise-events__head h3 { margin: 9px 0 5px; font-size: 26px; }
  .expertise-events__docs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }
  .expertise-events__docs img { box-shadow: 0 12px 30px rgba(0,0,0,.35); }

  /* Project imagery and footer information use two columns. */
  .projects-showcase__header { margin-bottom: 26px; }
  .projects-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .projects-collage__item,
  .projects-collage__item--center {
    grid-column: auto;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }
  .projects-collage__item span {
    right: 7px;
    bottom: 7px;
    left: 7px;
    padding: 7px 8px;
    border-radius: 7px;
    font-size: 9px;
  }
  .projects-showcase__action { margin-top: 22px; }
  .projects-showcase__action .btn { padding: 12px 18px; font-size: 12px; }
  .home-page .cta-block { padding: 12px 14px 32px; }
  .home-page .cta-block__inner { padding: 24px 18px; border-radius: 18px; }
  .home-page .cta-block p { font-size: 13px; }
  .home-page .cta-block .btn { padding: 12px 16px; font-size: 12px; }
  .dealer-marquee { padding-bottom: 46px; }
  .dealer-marquee__header { margin-bottom: 24px; }
  .dealer-marquee__header h2 { margin-top: 12px; font-size: 26px; }
  .dealer-marquee__group { gap: 22px; padding-right: 22px; }
  .dealer-marquee__group a { width: 150px; height: 62px; }
  .dealer-marquee__group img { max-height: 46px; }

  .home-contact-band { padding: 42px 0; }
  .home-contact-band__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }
  .home-contact-band__title,
  .home-contact-band__address { grid-column: 1 / -1; margin: 0; }
  .home-contact-band__title h2 { margin-top: 10px; font-size: 28px; }
  .home-contact-band__address { font-size: 15px; }
  .home-contact-band__dealers,
  .home-contact-band__links { margin: 0; }

  .footer { padding: 42px 16px 20px; }
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
    padding-bottom: 34px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand h3 { width: 180px; height: 50px; }
  .footer__brand p { max-width: 36ch; font-size: 13px; }
  .footer__col h5 { margin-bottom: 12px; font-size: 9px; }
  .footer__col ul li { margin-bottom: 7px; }
  .footer__col ul a { font-size: 13px; }
  .footer__bottom { font-size: 9px; }

  /* Interior pages inherit the same compact scale. */
  .page-head { padding-top: calc(54px + 34px); }
  .page-head h1,
  .product-info__title,
  .accessories-hero h1 { font-size: clamp(32px, 9vw, 42px); }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .port-card.span-4,
  .port-card.span-5,
  .port-card.span-6,
  .port-card.span-7,
  .port-card.span-8 { grid-column: auto; }
  .port-card__overlay { padding: 12px; }
  .port-card__meta { margin-bottom: 5px; font-size: 8px; }
  .port-card__title { font-size: 16px; }
}

.hero2__copy { display: contents; }

@media (max-width: 720px) {
  .hero2 { position: relative; }
  .hero2__left { display: contents; }
  #heroHouse {
    order: 1;
    height: min(112vw, 500px);
    min-height: 400px;
    object-position: 68% 52%;
  }
  .hero2__copy {
    position: absolute;
    z-index: 4;
    top: 70px;
    right: 14px;
    left: 14px;
    display: block;
    padding: 13px 14px 14px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 16px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 14px 38px rgba(14,14,14,.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .hero2__copy .hero2__meta { gap: 6px; }
  .hero2__copy .hero2__meta .meta-tag {
    padding: 5px 8px;
    background: rgba(255,255,255,.74);
    font-size: 9px;
  }
  .hero2__copy .hero2__kicker {
    margin-top: 9px;
    padding-left: 14px;
    font-size: 11px;
    line-height: 1.35;
  }
  .hero2__copy .hero2__title {
    margin-top: 10px;
    font-size: clamp(29px, 8.1vw, 36px);
    line-height: .96;
  }
  .hero2__copy .hero2__lead {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.4;
  }
  .hero2__textures {
    order: 2;
    z-index: 5;
    margin: -54px 14px 10px;
  }
  .hero2__benefits {
    order: 3;
    width: auto;
    margin: 0 14px 8px;
  }
  .hero2__cta {
    order: 4;
    width: auto;
    margin: 0 14px 24px;
  }
}

/* ============== DOCUMENTS + EVENTS — OPEN EDITORIAL LAYOUT ============== */
#certificates.trust-section--compact {
  padding: clamp(90px, 9vw, 150px) 0;
  background: #fff;
}
#certificates .certificate-band {
  width: calc(100% - (2 * var(--gutter)));
  max-width: 1760px;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: clamp(20px, 2.6vw, 48px);
  align-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: var(--c-ink);
}
#certificates .certificate-band__intro {
  grid-column: 1 / 6;
  grid-row: 1;
  padding: 0;
  align-self: start;
}
#certificates .certificate-band__intro .section__num { color: var(--c-red); }
#certificates .certificate-band__intro .section__num::after { display: none; }
#certificates .certificate-band__intro h2 {
  margin: 24px 0;
  max-width: 11ch;
  font-size: clamp(44px, 4.6vw, 76px);
  line-height: .94;
  letter-spacing: -.05em;
  color: var(--c-ink);
}
#certificates .certificate-band__intro p {
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-cement-2);
}
#certificates .certificate-band__preview {
  grid-column: 6 / 9;
  grid-row: 1;
  position: relative;
  display: flex;
  min-height: 0;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
}
#certificates .certificate-band__preview::before { display: none; }
#certificates .certificate-band__preview img {
  width: min(100%, 330px);
  height: auto;
  aspect-ratio: 707 / 1000;
  object-fit: cover;
  box-shadow: 0 22px 54px rgba(20, 18, 16, .14);
  transform: rotate(-.65deg);
}
#certificates .certificate-band__preview:hover img { transform: translateY(-5px) rotate(-.65deg); }
#certificates .certificate-band__preview span {
  position: static;
  margin: 22px 0 0;
  padding: 0 0 4px;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--c-ink);
}
#certificates .certificate-band__details {
  grid-column: 9 / 13;
  grid-row: 1;
  align-self: center;
  padding: 0;
  border: 0;
}
#certificates .certificate-band__eyebrow { color: var(--c-red); }
#certificates .certificate-band__details h3 {
  margin: 18px 0 14px;
  max-width: 12ch;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  color: var(--c-ink);
}
#certificates .certificate-band__details > p { color: var(--c-cement-2); }
#certificates .certificate-band__facts {
  margin-top: 34px;
  display: block;
  border: 0;
  border-top: 1px solid var(--c-line);
}
#certificates .certificate-band__facts > div {
  min-height: 58px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(110px, .75fr) 1fr;
  align-items: center;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  background: transparent;
}
#certificates .certificate-band__facts dt { color: var(--c-cement-2); }
#certificates .certificate-band__facts dd { color: var(--c-ink); }

#open-village.open-village-section {
  padding: clamp(100px, 10vw, 170px) 0 clamp(150px, 14vw, 240px);
  background: #f6f5f2;
  color: var(--c-ink);
  overflow: hidden;
}
#open-village .open-village__layout {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 44px);
  align-items: start;
  border-radius: 0;
  background: transparent;
  color: var(--c-ink);
}
#open-village .open-village__intro {
  grid-column: 1 / 5;
  max-width: none;
  margin: 0;
  padding-top: 42px;
  text-align: left;
}
#open-village .open-village__intro .section__num { width: auto; margin: 0; color: var(--c-red); }
#open-village .open-village__intro .section__num::after { display: none; }
#open-village .open-village__intro h2 {
  margin-top: 24px;
  max-width: 10ch;
  font-size: clamp(46px, 5vw, 80px);
  line-height: .92;
  letter-spacing: -.05em;
}
#open-village .open-village__intro p {
  max-width: 36ch;
  margin: 30px 0 0;
  color: var(--c-cement-2);
  font-size: 15px;
  line-height: 1.65;
}
#open-village .open-village__docs {
  grid-column: 5 / 13;
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 5vw, 84px);
  align-items: start;
}
#open-village .event-document {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 0;
  overflow: visible;
  flex-direction: column;
  gap: 0;
  border-radius: 0;
  background: transparent;
  color: var(--c-ink);
  box-shadow: none;
}
#open-village .event-document:nth-child(2) { transform: translateY(84px); }
#open-village .event-document::before {
  content: attr(data-year);
  position: absolute;
  z-index: 0;
  top: -74px;
  left: -10px;
  padding: 0;
  background: transparent;
  color: rgba(226, 42, 36, .11);
  font-family: var(--f-display);
  font-size: clamp(72px, 8vw, 132px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
}
#open-village .event-document:hover { box-shadow: none; }
#open-village .event-document:first-child:hover { transform: translateY(-5px); }
#open-village .event-document:nth-child(2):hover { transform: translateY(79px); }
#open-village .event-document img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 18px 46px rgba(25, 22, 18, .12);
}
#open-village .event-document > div {
  min-height: 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 24px;
}
#open-village .event-document span { grid-column: 1 / -1; margin: 0; }
#open-village .event-document strong { font-size: clamp(18px, 1.7vw, 26px); }
#open-village .event-document em {
  margin: 0;
  padding: 0 0 3px;
  border-bottom: 1px solid currentColor;
  color: var(--c-ink);
  white-space: nowrap;
}

@media (max-width: 1050px) {
  #certificates .certificate-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #certificates .certificate-band__intro { grid-column: 1 / -1; }
  #certificates .certificate-band__preview { grid-column: 1; grid-row: 2; }
  #certificates .certificate-band__details { grid-column: 2; grid-row: 2; }
  #open-village .open-village__layout { grid-template-columns: 1fr; }
  #open-village .open-village__intro,
  #open-village .open-village__docs { grid-column: 1; }
  #open-village .open-village__intro { padding-top: 0; }
}
@media (max-width: 720px) {
  #certificates.trust-section--compact { padding: 72px 0; }
  #certificates .certificate-band { grid-template-columns: 1fr; }
  #certificates .certificate-band__intro,
  #certificates .certificate-band__preview,
  #certificates .certificate-band__details {
    grid-column: 1;
    grid-row: auto;
    width: auto;
    min-height: 0;
    padding: 0;
  }
  #certificates .certificate-band__preview { margin: 44px 0; }
  #certificates .certificate-band__preview img { width: min(78%, 300px); height: auto; }
  #open-village.open-village-section { padding: 80px 0 130px; }
  #open-village .open-village__layout { display: block; }
  #open-village .open-village__intro h2 { font-size: 46px; }
  #open-village .open-village__docs { margin-top: 100px; grid-template-columns: 1fr; gap: 110px; }
  #open-village .event-document:nth-child(2),
  #open-village .event-document:nth-child(2):hover { transform: none; }
  #open-village .event-document > div { grid-template-columns: 1fr; }
  #open-village .event-document em { justify-self: start; margin-top: 10px; }
}

/* ============== EXPERTISE + CONTACT RHYTHM ============== */
.expertise-section {
  padding: clamp(72px, 7vw, 112px) 0;
  overflow: hidden;
  background: var(--c-ink);
  color: #fff;
}
.expertise-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 54px);
  align-items: center;
}
.expertise-layout::before {
  content: 'САЙДВУД';
  position: absolute;
  right: -2vw;
  bottom: -8vw;
  color: rgba(255,255,255,.025);
  font-family: var(--f-display);
  font-size: clamp(130px, 19vw, 360px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.07em;
  pointer-events: none;
}
.expertise-intro {
  position: relative;
  z-index: 2;
  grid-column: 1 / 5;
}
.expertise-intro .section__num { color: var(--c-red); }
.expertise-intro .section__num::after { display: none; }
.expertise-intro h2 {
  margin: 22px 0 26px;
  max-width: 9ch;
  font-family: var(--f-display);
  font-size: clamp(46px, 4.8vw, 80px);
  line-height: .91;
  letter-spacing: -.05em;
}
.expertise-intro > p {
  max-width: 40ch;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.58);
}
.expertise-facts {
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.expertise-facts > div {
  min-height: 48px;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.expertise-facts dt {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.expertise-facts dd { font-size: 13px; font-weight: 700; }
.expertise-certificate {
  position: relative;
  z-index: 2;
  grid-column: 5 / 8;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.expertise-certificate img {
  width: min(100%, 330px);
  height: auto;
  box-shadow: 0 28px 80px rgba(0,0,0,.44);
  transition: transform .3s var(--ease);
}
.expertise-certificate:hover img { transform: translateY(-6px); }
.expertise-certificate span {
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
}
.expertise-events {
  position: relative;
  z-index: 2;
  grid-column: 8 / 13;
  align-self: center;
}
.expertise-events__head {
  position: relative;
  z-index: 3;
  max-width: 330px;
}
.expertise-events__head > span {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--c-red);
}
.expertise-events__head h3 {
  margin: 14px 0 8px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: .98;
  letter-spacing: -.035em;
}
.expertise-events__head p { font-size: 13px; color: rgba(255,255,255,.5); }
.expertise-events__docs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 24px);
  align-items: start;
  margin-top: clamp(28px, 3vw, 46px);
}
.expertise-events__docs a {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.expertise-events__docs img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 24px 70px rgba(0,0,0,.4);
  transition: transform .3s var(--ease);
}
.expertise-events__docs a:hover img { transform: translateY(-5px); }
.expertise-events__docs span {
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-family: var(--f-mono);
  font-size: 9px;
  color: #fff;
}

/* ============== OFFICIAL DEALERS MARQUEE ============== */
.dealer-marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(12px, 1.5vw, 22px) 0 clamp(64px, 6vw, 96px);
  background: #fff;
}
.dealer-marquee__header {
  margin-bottom: clamp(34px, 4vw, 56px);
  text-align: center;
}
.dealer-marquee__header .section__num {
  width: fit-content;
  margin: 0 auto;
}
.dealer-marquee__header .section__num::after { width: 70px; flex: 0 0 70px; }
.dealer-marquee__header h2 {
  margin: 18px 0 0;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.035em;
}
.dealer-marquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.dealer-marquee__track {
  display: flex;
  width: max-content;
  animation: dealer-marquee-scroll 177s linear infinite;
  will-change: transform;
}
.dealer-marquee__viewport:hover .dealer-marquee__track,
.dealer-marquee__viewport:focus-within .dealer-marquee__track {
  animation-play-state: paused;
}
.dealer-marquee__group {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(36px, 4vw, 76px);
  padding-right: clamp(36px, 4vw, 76px);
}
.dealer-marquee__group a {
  display: grid;
  width: clamp(255px, 18vw, 345px);
  height: 99px;
  flex: 0 0 auto;
  place-items: center;
  opacity: .56;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.dealer-marquee__group a:hover,
.dealer-marquee__group a:focus-visible {
  opacity: 1;
  transform: translateY(-3px);
}
.dealer-marquee__group img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 75px;
  object-fit: contain;
}
.dealer-marquee__group .dealer-logo__image {
  filter: grayscale(1) saturate(0);
  image-rendering: auto;
  transition: filter .28s var(--ease);
}
.dealer-marquee__group a:hover .dealer-logo__image,
.dealer-marquee__group a:focus-visible .dealer-logo__image { filter: none; }
@keyframes dealer-marquee-scroll {
  to { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .dealer-marquee__group { gap: 34px; padding-right: 34px; }
  .dealer-marquee__group a { width: 234px; height: 87px; }
  .dealer-marquee__group img { max-height: 63px; }
}
@media (prefers-reduced-motion: reduce) {
  .dealer-marquee__viewport { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .dealer-marquee__track { animation: none; }
  .dealer-marquee__group[aria-hidden="true"] { display: none; }
}

.home-contact-band {
  padding: clamp(56px, 6vw, 92px) 0;
  border-top: 1px solid var(--c-line);
  background: #f3f2ef;
}
.home-contact-band__inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 50px);
  align-items: start;
}
.home-contact-band__title { grid-column: 1 / 4; }
.home-contact-band__title .section__num { color: var(--c-red); }
.home-contact-band__title .section__num::after { display: none; }
.home-contact-band__title h2 {
  margin-top: 18px;
  max-width: 9ch;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: .98;
  letter-spacing: -.04em;
}
.home-contact-band__address {
  grid-column: 4 / 8;
  max-width: 40ch;
  font-style: normal;
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.45;
}
.home-contact-band__dealers { grid-column: 8 / 11; }
.home-contact-band__dealers p {
  max-width: 39ch;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-cement-2);
}
.home-contact-band__dealers a {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}
.home-contact-band__links {
  grid-column: 11 / 13;
  display: grid;
  gap: 10px;
  justify-items: start;
  font-size: 13px;
  font-weight: 600;
}
.home-contact-band__links a:last-child {
  margin-top: 12px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 1100px) {
  .expertise-intro { grid-column: 1 / 7; }
  .expertise-certificate { grid-column: 7 / 13; }
  .expertise-events { grid-column: 1 / -1; margin-top: 40px; }
  .expertise-events__docs { max-width: 920px; }
  .home-contact-band__title { grid-column: 1 / 5; }
  .home-contact-band__address { grid-column: 5 / 13; }
  .home-contact-band__dealers { grid-column: 1 / 8; margin-top: 24px; }
  .home-contact-band__links { grid-column: 8 / 13; margin-top: 24px; }
}
@media (max-width: 720px) {
  .expertise-layout { display: block; }
  .expertise-certificate { margin: 54px 0; }
  .expertise-events { margin-top: 60px; }
  .expertise-events__docs { grid-template-columns: 1fr; gap: 34px; }
  .home-contact-band__inner { display: block; }
  .home-contact-band__address { margin-top: 34px; }
  .home-contact-band__dealers,
  .home-contact-band__links { margin-top: 34px; }
}
#certificates.trust-section--compact {
  padding: clamp(66px, 6vw, 96px) 0;
}
#certificates .certificate-band {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 54px);
  align-items: center;
}
#certificates .certificate-band__intro {
  grid-column: 1 / 6;
  align-self: center;
}
#certificates .certificate-band__intro h2 {
  max-width: 9ch;
  font-size: clamp(48px, 5.2vw, 86px);
}
#certificates .certificate-band__previews {
  grid-column: 6 / 9;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
#certificates .certificate-band__preview {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  min-height: 0;
  margin: 0;
}
#certificates .certificate-band__preview::after {
  content: '2030';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  color: rgba(226, 42, 36, .09);
  font-family: var(--f-display);
  font-size: clamp(120px, 14vw, 250px);
  font-weight: 800;
  line-height: 1;
  transform: translate(-50%, -50%) rotate(-90deg);
}
#certificates .certificate-band__preview img { width: min(100%, 345px); }
#certificates .certificate-band__details { grid-column: 9 / 13; }
#certificates .certificate-band__details h3 { max-width: 10ch; }

#open-village.open-village-section {
  padding: clamp(72px, 7vw, 110px) 0;
  background: var(--c-ink);
  color: #fff;
}
#open-village .open-village__layout {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
  color: #fff;
}
#open-village .open-village__intro {
  grid-column: 1 / 4;
  padding-top: 0;
}
#open-village .open-village__intro h2 {
  max-width: 9ch;
  font-size: clamp(46px, 4.8vw, 78px);
  color: #fff;
}
#open-village .open-village__intro p { color: rgba(255,255,255,.56); }
#open-village .open-village__docs {
  grid-column: 4 / 9;
  position: relative;
  display: block;
  height: clamp(500px, 35vw, 610px);
  margin: 0;
}
#open-village .event-document {
  position: absolute;
  width: min(66%, 470px);
}
#open-village .event-document:first-child {
  top: 0;
  left: 0;
}
#open-village .event-document:nth-child(2),
#open-village .event-document:nth-child(2):hover {
  right: 0;
  bottom: 0;
  transform: none;
}
#open-village .event-document::before {
  top: -42px;
  left: -4px;
  color: rgba(226,42,36,.26);
  font-size: clamp(62px, 6vw, 108px);
}
#open-village .event-document img {
  box-shadow: 0 26px 70px rgba(0,0,0,.34);
}
#open-village .event-document > div { padding-top: 16px; }
#open-village .event-document span { color: var(--c-red); }
#open-village .event-document strong,
#open-village .event-document em { color: #fff; }
#open-village .open-village__contacts {
  grid-column: 9 / 13;
  display: grid;
  gap: clamp(34px, 4vw, 64px);
}
#open-village .open-village__contact {
  display: block;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
  color: #fff;
}
#open-village .open-village__contact span {
  display: block;
  margin-bottom: 20px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--c-red);
}
#open-village .open-village__contact strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.05;
}
#open-village .open-village__contact p {
  max-width: 44ch;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
}
#open-village .open-village__contact em {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-style: normal;
  font-size: 11px;
}

@media (max-width: 1100px) {
  #certificates .certificate-band__intro { grid-column: 1 / -1; }
  #certificates .certificate-band__previews { grid-column: 1 / 6; }
  #certificates .certificate-band__details { grid-column: 6 / -1; }
  #open-village .open-village__intro { grid-column: 1 / 5; }
  #open-village .open-village__docs { grid-column: 5 / 13; }
  #open-village .open-village__contacts {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
  }
}
@media (max-width: 720px) {
  #certificates .certificate-band__previews,
  #certificates .certificate-band__details { grid-column: 1; }
  #certificates .certificate-band__previews { min-height: 430px; margin: 30px 0; }
  #open-village .open-village__layout { display: block; }
  #open-village .open-village__docs { height: 720px; margin-top: 90px; }
  #open-village .event-document { width: 82%; }
  #open-village .open-village__contacts {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}
.home-page .trust-section--compact {
  padding: clamp(90px, 9vw, 150px) 0;
  background: #fff;
}
.certificate-band {
  width: calc(100% - (2 * var(--gutter)));
  max-width: 1760px;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: clamp(20px, 2.6vw, 48px);
  align-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: var(--c-ink);
}
.certificate-band__intro {
  grid-column: 1 / 6;
  grid-row: 1;
  padding: 0;
  align-self: start;
}
.certificate-band__intro .section__num { color: var(--c-red); }
.certificate-band__intro .section__num::after { display: none; }
.certificate-band__intro h2 {
  margin: 24px 0 24px;
  max-width: 11ch;
  font-size: clamp(44px, 4.6vw, 76px);
  line-height: .94;
  letter-spacing: -.05em;
  color: var(--c-ink);
}
.certificate-band__intro p {
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-cement-2);
}
.certificate-band__preview {
  grid-column: 6 / 9;
  grid-row: 1;
  position: relative;
  display: flex;
  min-height: 0;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.certificate-band__preview::before { display: none; }
.certificate-band__preview img {
  width: min(100%, 330px);
  height: auto;
  aspect-ratio: 707 / 1000;
  object-fit: cover;
  box-shadow: 0 22px 54px rgba(20, 18, 16, .14);
  transform: rotate(-.65deg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.certificate-band__preview:hover img {
  transform: translateY(-5px) rotate(-.65deg);
  box-shadow: 0 30px 70px rgba(20, 18, 16, .19);
}
.certificate-band__preview span {
  position: static;
  margin: 22px 0 0;
  padding: 0 0 4px;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--c-ink);
  font-size: 12px;
  font-weight: 700;
}
.certificate-band__details {
  grid-column: 9 / 13;
  grid-row: 1;
  align-self: center;
  padding: 0;
  border: 0;
}
.certificate-band__eyebrow { color: var(--c-red); }
.certificate-band__details h3 {
  margin: 18px 0 14px;
  max-width: 12ch;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--c-ink);
}
.certificate-band__details > p {
  max-width: 40ch;
  color: var(--c-cement-2);
}
.certificate-band__facts {
  margin-top: 34px;
  display: block;
  border-top: 1px solid var(--c-line);
}
.certificate-band__facts > div {
  min-height: 58px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(110px, .75fr) 1fr;
  align-items: center;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  background: transparent;
}
.certificate-band__facts dt { color: var(--c-cement-2); }
.certificate-band__facts dd { color: var(--c-ink); }

.home-page .open-village-section {
  padding: clamp(100px, 10vw, 170px) 0 clamp(150px, 14vw, 240px);
  background: #f6f5f2;
  color: var(--c-ink);
  overflow: hidden;
}
.home-page .open-village__layout {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 44px);
  align-items: start;
  border-radius: 0;
  background: transparent;
  color: var(--c-ink);
}
.open-village__intro {
  grid-column: 1 / 5;
  max-width: none;
  margin: 0;
  padding-top: 42px;
  text-align: left;
}
.open-village__intro .section__num { width: auto; margin: 0; color: var(--c-red); }
.open-village__intro .section__num::after { display: none; }
.open-village__intro h2 {
  margin-top: 24px;
  max-width: 10ch;
  font-size: clamp(46px, 5vw, 80px);
  line-height: .92;
  letter-spacing: -.05em;
}
.open-village__intro p {
  max-width: 36ch;
  margin: 30px 0 0;
  color: var(--c-cement-2);
  font-size: 15px;
  line-height: 1.65;
}
.open-village__docs {
  grid-column: 5 / 13;
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 5vw, 84px);
  align-items: start;
}
.event-document,
.home-page .event-document {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 0;
  overflow: visible;
  flex-direction: column;
  gap: 0;
  border-radius: 0;
  background: transparent;
  color: var(--c-ink);
  box-shadow: none;
}
.event-document:nth-child(2) { transform: translateY(84px); }
.event-document::before {
  content: attr(data-year);
  position: absolute;
  z-index: 0;
  top: -74px;
  left: -10px;
  padding: 0;
  background: transparent;
  color: rgba(226, 42, 36, .11);
  font-family: var(--f-display);
  font-size: clamp(72px, 8vw, 132px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
}
.event-document:hover,
.event-document:nth-child(2):hover {
  transform: translateY(-5px);
  box-shadow: none;
}
.event-document:nth-child(2):hover { transform: translateY(79px); }
.event-document img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 18px 46px rgba(25, 22, 18, .12);
}
.event-document > div {
  min-height: 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 24px;
}
.event-document span {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 9px;
}
.event-document strong {
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.15;
}
.event-document em {
  margin: 0;
  padding: 0 0 3px;
  border-bottom: 1px solid currentColor;
  color: var(--c-ink);
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .certificate-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .certificate-band__intro { grid-column: 1 / -1; }
  .certificate-band__preview { grid-column: 1; grid-row: 2; }
  .certificate-band__details { grid-column: 2; grid-row: 2; }
  .home-page .open-village__layout { grid-template-columns: 1fr; }
  .open-village__intro,
  .open-village__docs { grid-column: 1; }
  .open-village__intro { padding-top: 0; }
  .open-village__intro h2 { max-width: 14ch; }
}

@media (max-width: 720px) {
  .home-page .trust-section--compact { padding: 72px 0; }
  .certificate-band {
    width: calc(100% - (2 * var(--gutter)));
    grid-template-columns: 1fr;
    border-radius: 0;
  }
  .certificate-band__intro,
  .certificate-band__preview,
  .certificate-band__details {
    grid-column: 1;
    grid-row: auto;
    width: auto;
    min-height: 0;
    padding: 0;
  }
  .certificate-band__preview { margin: 44px 0; }
  .certificate-band__preview img { width: min(78%, 300px); height: auto; }
  .certificate-band__facts { grid-template-columns: 1fr; }
  .home-page .open-village-section { padding: 80px 0 130px; }
  .home-page .open-village__layout { display: block; }
  .open-village__intro h2 { font-size: 46px; }
  .open-village__docs { margin-top: 100px; grid-template-columns: 1fr; gap: 110px; }
  .event-document:nth-child(2),
  .event-document:nth-child(2):hover { transform: none; }
  .event-document > div { grid-template-columns: 1fr; }
  .event-document em { justify-self: start; margin-top: 10px; }
}

.compare-row__label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 4px;
  color: var(--c-cement-2);
}

.compare-side {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.compare-side__icon {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.compare-side--bad .compare-side__icon {
  background: rgba(226, 42, 36, .12);
  color: var(--c-rust);
}
.compare-side--good .compare-side__icon {
  background: var(--c-amber);
  color: #fff;
}
.compare-side__text h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.compare-side__text p {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  color: var(--c-cement-2);
  max-width: 36ch;
}
.compare-side--bad .compare-side__text h4 { color: var(--c-cement-2); text-decoration: line-through; text-decoration-color: rgba(226, 42, 36, .45); text-decoration-thickness: 1.5px; }

/* Compare header band */
.compare-head {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding-bottom: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .55;
}
.compare-head > span:first-child { visibility: hidden; }
@media (max-width: 800px) { .compare-head { display: none; } }

/* ============== ENTRY POINTS / AUDIENCES ============== */
.entries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .entries { grid-template-columns: 1fr; } }

.entry {
  position: relative;
  padding: clamp(28px, 3vw, 48px);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease);
}
.entry:hover { transform: translateY(-6px); }

.entry--dark { background: var(--c-ink); color: var(--c-paper); }
.entry--paper { background: var(--c-paper); color: var(--c-ink); border: 1px solid var(--c-line); }
.entry--amber { background: var(--c-amber); color: #fff; }

/* Wood-grain striping for entry backgrounds */
.entry::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(100% / 12 - 1px),
      currentColor calc(100% / 12 - 1px),
      currentColor calc(100% / 12)
    );
  opacity: .04;
  pointer-events: none;
  z-index: 0;
}
.entry > * { position: relative; z-index: 1; }

.entry__letter {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(80px, 10vw, 168px);
  line-height: .85;
  letter-spacing: -0.05em;
  margin-bottom: auto;
  opacity: .12;
  align-self: flex-start;
}
.entry--paper .entry__letter { opacity: .15; }
.entry--amber .entry__letter { opacity: .25; }

.entry__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 12px;
}
.entry__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.entry__desc {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  opacity: .8;
  margin-bottom: 28px;
  max-width: 32ch;
}
.entry--amber .entry__desc { opacity: .85; }

.entry__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid currentColor;
  padding-top: 18px;
  margin-top: auto;
}
.entry__links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-bottom: 1px solid currentColor;
  transition: padding .25s var(--ease);
}
.entry__links a:last-child { border-bottom: none; }
.entry__links a:hover { padding-left: 6px; }
.entry__links a .arrow {
  transition: transform .25s var(--ease);
  font-size: 18px;
}
.entry__links a:hover .arrow { transform: translateX(4px); }

/* ============== FEATURES (editorial list) ============== */
.features-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 1000px) {
  .features-layout { grid-template-columns: 1fr; gap: 40px; }
}

.features-intro {
  position: sticky;
  top: 88px;
}
.features-intro h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: .96;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.features-intro h2 em {
  font-style: normal;
  color: var(--c-amber);
}
.features-intro p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--c-cement-2);
  max-width: 42ch;
  margin-bottom: 28px;
}
.features-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.features-tags .tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--c-paper);
}
.features-tags .tag-chip::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-amber);
  border-radius: 50%;
}

.features-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-line);
}
.feature-row {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: clamp(20px, 2.4vw, 36px);
  padding: clamp(20px, 2.6vw, 32px) 0 clamp(20px, 2.6vw, 32px) 8px;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
  transition: padding .45s var(--ease), background .3s, color .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.feature-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-ink);
  transform: translateX(-100%);
  transition: transform .5s var(--ease);
  z-index: 0;
}
.feature-row:hover::before { transform: translateX(0); }
.feature-row:hover { color: var(--c-paper); padding-left: 28px; }
.feature-row > * { position: relative; z-index: 1; }

.feature-row__num {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .1em;
  font-weight: 500;
  padding-top: 8px;
  opacity: .55;
  transition: color .3s, opacity .3s;
}
.feature-row:hover .feature-row__num { color: var(--c-amber); opacity: 1; }

.feature-row__body h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.feature-row__body p {
  font-size: clamp(14px, 1vw, 15.5px);
  line-height: 1.55;
  color: var(--c-cement-2);
  max-width: 60ch;
  transition: color .3s;
}
.feature-row:hover .feature-row__body p { color: rgba(242,237,227,.7); }

.feature-row__icon {
  font-size: 22px;
  align-self: center;
  transition: transform .35s var(--ease);
  display: flex; align-items: center; justify-content: flex-end;
}
.feature-row:hover .feature-row__icon { transform: translateX(8px) rotate(-12deg); color: var(--c-amber); }

@media (max-width: 600px) {
  .feature-row { grid-template-columns: 36px 1fr; }
  .feature-row__icon { display: none; }
}

/* ============== PRODUCTS ============== */
.products {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.product-card {
  grid-column: span 4;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px;
  background: var(--c-bone);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.product-card::after {
  content: none;
}
.product-card .badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  align-self: flex-start;
  opacity: .8;
  z-index: 1;
}
.product-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  z-index: 1;
}
.product-card .specs {
  font-family: var(--f-text);
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 12px;
  letter-spacing: .06em;
  opacity: .7;
  margin-top: auto;
  z-index: 1;
  max-width: 58%;
}
.product-card__media {
  position: absolute;
  right: -2%;
  top: -15%;
  bottom: -15%;
  z-index: 0;
  width: 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 16px rgba(14,14,14,.22));
}
.product-card__media--accessory {
  right: 1%;
  top: 22%;
  bottom: 4%;
  width: 52%;
}
.product-card__media--accessory img {
  filter: drop-shadow(0 16px 12px rgba(14,14,14,.16));
}
.product-card__media--clip { right: -2%; top: 28%; bottom: 3%; width: 58%; }
.product-card--partner {
  grid-column: span 8;
  background: linear-gradient(115deg, var(--c-red), var(--c-red-deep));
  color: #fff;
  border-color: var(--c-red);
}
.product-card--partner::after { width: 48%; }
.product-card--partner .arrow-btn { background: var(--c-ink); color: #fff; }
.product-card .arrow-btn {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-paper);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease);
  z-index: 2;
}
.product-card:hover .arrow-btn { background: var(--c-amber); color: #fff; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .product-card, .product-card--partner { grid-column: span 6; }
}
@media (max-width: 600px) {
  .product-card, .product-card--partner { grid-column: span 12; }
  .product-card__media { right: -5%; top: -15%; bottom: -15%; width: 52%; opacity: .9; }
  .product-card__media--accessory { right: 1%; top: 22%; bottom: 4%; width: 52%; }
  .product-card__media--clip { right: -2%; top: 28%; bottom: 3%; width: 58%; }
}

/* ============== ACCESSORIES & PROFILES ============== */
.accessories-hero {
  padding: calc(74px + clamp(36px, 4vw, 56px)) 0 clamp(36px, 4vw, 56px);
  color: var(--c-ink);
  background: #fff;
}
.accessories-hero .product-info__crumbs,
.accessories-hero .product-info__crumbs a { color: var(--c-red); }
.accessories-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}
.accessories-hero h1 {
  font: 700 clamp(34px, 4vw, 58px)/1 var(--f-display);
  letter-spacing: -.035em;
}
.accessories-hero__grid p {
  max-width: 70ch;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
  color: var(--c-cement-2);
}
.accessories-switch { display: flex; gap: 10px; margin-top: 24px; }
.accessories-switch a { padding: 11px 18px; border: 1px solid var(--c-line); border-radius: 999px; font-weight: 700; }
.accessories-switch a.is-active { background: var(--c-red); border-color: var(--c-red); color: #fff; }
.accessories-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.accessory-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.accessory-card:hover { transform: translateY(-7px); box-shadow: 0 26px 70px rgba(14,14,14,.12); }
.accessory-card__index { position: absolute; top: 18px; left: 18px; z-index: 2; padding: 6px 9px; border-radius: 999px; background: var(--c-ink); color: #fff; font: 500 11px/1 var(--f-mono); }
.accessory-card__image { display: block; height: 290px; padding: 22px; background: #f8f8f8; }
.accessory-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s var(--ease); }
.accessory-card:hover .accessory-card__image img { transform: scale(1.035); }
.accessory-card__body { display: flex; flex-direction: column; gap: 8px; padding: 22px 58px 24px 24px; }
.accessory-card__category { color: var(--c-red); font: 500 10px/1.2 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; }
.accessory-card__body strong { font: 700 clamp(21px, 1.7vw, 28px)/1.05 var(--f-display); }
.accessory-card__body > span:last-child { color: var(--c-cement-2); font-size: 14px; line-height: 1.45; }
.accessory-card__arrow { position: absolute; right: 20px; bottom: 22px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--c-red); color: #fff; }
.accessory-detail { padding-top: 72px; }
.accessory-detail__grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr); gap: clamp(50px, 7vw, 120px); align-items: center; margin-top: 38px; }
.accessory-detail__visual { height: min(640px, 65vw); padding: clamp(22px, 4vw, 60px); border-radius: var(--r-md); background: #f7f7f7; box-shadow: inset 0 0 0 1px var(--c-line); }
.accessory-detail__visual img { width: 100%; height: 100%; object-fit: contain; }
.accessory-detail__info .badge { display: inline-flex; padding: 7px 11px; border: 1px solid var(--c-ink); border-radius: 999px; font: 500 10px/1 var(--f-mono); letter-spacing: .12em; }
.accessory-detail__info h1 { max-width: 12ch; margin: 26px 0 28px; font: 800 clamp(46px, 5vw, 86px)/.9 var(--f-display); letter-spacing: -.055em; }
.accessory-detail__info > p { max-width: 48ch; font-size: clamp(17px, 1.25vw, 22px); line-height: 1.55; color: var(--c-cement-2); }
.accessory-detail__facts { margin: 34px 0; border-top: 1px solid var(--c-line); }
.accessory-detail__facts > div { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--c-line); }
.accessory-detail__facts span { font: 500 10px/1.4 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--c-cement-2); }
.accessory-scheme__image { min-height: 430px; padding: clamp(18px, 4vw, 58px); background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); }
.accessory-scheme__image img { display: block; width: 100%; max-height: 660px; object-fit: contain; }
.catalog-extra-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.catalog-extra-links a { position: relative; min-height: 290px; display: flex; flex-direction: column; gap: 12px; padding: 30px; overflow: hidden; border: 1px solid var(--c-line); border-radius: var(--r-md); background: #fff; transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease); }
.catalog-extra-links a:hover { transform: translateY(-6px); background: var(--c-ink); color: #fff; }
.catalog-extra-links span { font: 500 11px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--c-red); }
.catalog-extra-links strong { margin-top: auto; font: 700 clamp(28px, 3vw, 48px)/.95 var(--f-display); }
.catalog-extra-links em { max-width: 32ch; color: var(--c-cement-2); font-style: normal; }
.catalog-extra-links b { position: absolute; top: 26px; right: 28px; font-size: 24px; }
@media (max-width: 1000px) { .accessories-grid { grid-template-columns: repeat(2, 1fr); } .accessory-detail__grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .accessories-switch { flex-direction: column; } .accessories-grid, .catalog-extra-links { grid-template-columns: 1fr; } .accessory-card { min-height: 430px; } .accessory-detail__visual { height: 440px; } }

/* ============== COLOR PALETTE ============== */
.palette {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

/* Catalog: the complete actual fiber-cement range from the supplier catalog. */
.catalog-page #formats,
.catalog-page #dobor,
.catalog-page #komplekt {
  display: none;
}
.catalog-page #palette {
  background: var(--c-paper);
  color: var(--c-ink);
}
.catalog-page #palette .lead { color: var(--c-cement-2); opacity: 1 !important; }
.catalog-palette {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(14px, 1.5vw, 24px);
}
.catalog-palette > .swatch { display: none; }
.catalog-panel {
  display: block;
  background: #fff;
  border: 1px solid var(--c-line);
  transition: transform .3s var(--ease), border-color .25s, box-shadow .3s;
}
.catalog-panel:hover {
  transform: translateY(-5px);
  border-color: var(--c-red);
  box-shadow: 0 22px 50px rgba(17,17,17,.1);
}
.catalog-panel__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
.catalog-panel__image .panel-photo { width: 100%; height: 100%; transition: transform .55s var(--ease); }
.catalog-panel:hover .catalog-panel__image .panel-photo { transform: scale(1.035); }
.catalog-panel__meta {
  flex-wrap: wrap;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
}
.catalog-panel__meta strong {
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: -.02em;
}
.catalog-panel__meta span {
  font-size: 12px;
  color: var(--c-cement-2);
}
.catalog-panel__meta b { color: var(--c-red); margin-left: 5px; }
@media (max-width: 640px) {
  .catalog-palette { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .catalog-panel__meta { min-height: 64px; padding: 14px; }
  .catalog-panel__meta span { display: none; }
}
.swatch {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s;
  background: #fff;
  box-shadow: 0 1px 0 rgba(14,14,14,.04);
}
.swatch:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(14,14,14,.4);
  z-index: 2;
}
.swatch img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.swatch:hover img { transform: scale(1.08); }
.swatch .panel-photo { width: 100%; height: 100%; }
.swatch:hover .panel-photo { transform: scale(1.035); }
.swatch:hover .panel-photo > img { transform: none; }
.swatch__label {
  position: absolute;
  inset: 10px 10px auto 10px;
  padding: 8px 10px;
  background: rgba(14, 14, 14, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--c-paper);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .06em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  font-weight: 600;
  z-index: 5;
}
.swatch__label .tag {
  font-size: 9px;
  padding: 2px 6px;
  background: var(--c-amber);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
}
.related-strip .swatch { aspect-ratio: auto; }
.related-strip .swatch .panel-photo { height: auto; aspect-ratio: 1 / 1; }
.related-strip .swatch__label {
  position: static;
  display: flex;
  justify-content: center;
  padding: 0 8px 14px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0;
  white-space: nowrap;
}

/* ============== PALETTE CARDS (homepage teaser) ============== */
.palette-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .palette-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .palette-cards { grid-template-columns: 1fr; } }

.palette-card {
  position: relative;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .25s;
  overflow: hidden;
}
.palette-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(14,14,14,.14);
  border-color: var(--c-amber);
}

.palette-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
}
.palette-card__visual .panel-photo { height: 100%; width: auto; margin: 0 auto; }
.palette-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(14,14,14,.06));
  pointer-events: none;
  display: none;
}

.palette-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.palette-card__code {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.palette-card__name {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .55;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.palette-card__arrow {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-bone);
  font-size: 14px;
  transition: background .25s, transform .35s;
}
.palette-card:hover .palette-card__arrow {
  background: var(--c-ink);
  color: var(--c-amber);
  transform: rotate(-45deg);
}

/* ============== PRODUCT PAGE ============== */
.product-page {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 4vw, 64px);
  padding: clamp(24px, 3vw, 48px) 0;
}
@media (max-width: 1000px) { .product-page { grid-template-columns: 1fr; } }

.product-page__visual {
  position: relative;
  top: auto;
  align-self: start;
  margin-top: clamp(180px, 11.5vw, 230px);
  overflow: visible;
  background: transparent;
  width: min(100%, 620px);
  aspect-ratio: 4 / 3;
}
.product-page__visual .panel-photo {
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-page__visual .panel-photo > img {
  width: 112%;
  height: 112%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(14,14,14,.2));
}
@media (max-width: 1000px) {
  .product-page__visual { margin-top: 24px; }
}
.product-section { padding-top: clamp(28px, 3.5vw, 54px); }
.product-page__visual::after {
  content: '';
  position: absolute;
  inset: 16px 16px auto auto;
  padding: 6px 10px;
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 700;
  border-radius: 4px;
  content: var(--swatch-code, '');
  display: none;
}

/* Product photos from the supplier: preserve the panel and mask only their small logo. */
.panel-photo {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  transition: transform .55s var(--ease);
}
.panel-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.product-info__crumbs {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .6;
}
.product-info__crumbs a { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.product-info__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 64px);
  line-height: .96;
  letter-spacing: -0.03em;
}
.product-info__title em {
  font-style: normal;
  color: var(--c-amber);
}
.product-info__desc {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--c-cement-2);
  max-width: 50ch;
}

.product-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-tab-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-tab-group__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .55;
}
.product-tab-group__tabs {
  display: inline-flex;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 4px;
  background: var(--c-bone);
  align-self: flex-start;
}
.product-tab {
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  background: transparent;
  border: none;
  color: var(--c-ink);
}
.product-tab.is-active {
  background: var(--c-ink);
  color: var(--c-paper);
}

.product-specs {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 20px 0;
}
.product-spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px dashed var(--c-line);
}
.product-spec-row:last-child { border-bottom: none; }
.product-spec-row .key {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .6;
  align-self: center;
}
.product-spec-row .val {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.product-spec-row .val small { opacity: .55; font-weight: 400; }

.product-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-meta-band {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .65;
}
.product-meta-band span::before {
  content: '·';
  margin-right: 16px;
  opacity: .4;
}
.product-meta-band span:first-child::before { display: none; }

/* Related colors */
.related-strip {
  border-top: 0;
  padding-top: clamp(24px, 3vw, 44px);
}

/* ============== FORMAT SPEC CARDS ============== */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) {
  .formats { grid-template-columns: 1fr; }
}

.format {
  background: var(--c-bone);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: clamp(24px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .25s, border-color .25s;
}
.format:hover { background: var(--c-paper); }
.format--accent { background: var(--c-ink); color: var(--c-paper); border-color: var(--c-ink); }
.format--accent:hover { background: var(--c-ink-2); }

.format__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-line);
}
.format--accent .format__head { border-bottom-color: rgba(242,237,227,.12); }
.format__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.format__name span {
  display: block;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .14em;
  margin-top: 6px;
  opacity: .55;
  text-transform: uppercase;
}
.format__visual {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background-image:
    repeating-linear-gradient(
      to bottom,
      currentColor 0,
      currentColor 1px,
      transparent 1px,
      transparent 9px
    );
  opacity: .25;
}
.format--accent .format__visual { opacity: .35; }

.format__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-cement-2);
}
.format--accent .format__desc { color: rgba(242,237,227,.7); }

.format__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.format__spec-row {
  display: grid;
  grid-template-columns: 110px 1fr 1fr;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--c-line);
}
.format--accent .format__spec-row { border-bottom-color: rgba(242,237,227,.1); }
.format__spec-row:last-child { border-bottom: none; }
.format__spec-row .key {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .55;
  align-self: center;
}
.format__spec-row .val {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.format__spec-row .val .tag-mat {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 500;
  opacity: .5;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.format__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  border-top: 1px solid var(--c-line);
}
.format--accent .format__cta { border-top-color: rgba(242,237,227,.12); }
.format__cta::after {
  content: '→';
  margin-left: auto;
  transition: transform .25s var(--ease);
}
.format:hover .format__cta::after { transform: translateX(6px); color: var(--c-amber); }

/* ============== PORTFOLIO ============== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.port-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-cement);
  cursor: pointer;
  transition: transform .4s var(--ease);
  aspect-ratio: 4 / 3;
}
.port-card:hover { transform: translateY(-6px); }
.port-card.span-4 { grid-column: span 4; }
.port-card.span-5 { grid-column: span 5; }
.port-card.span-6 { grid-column: span 6; }
.port-card.span-7 { grid-column: span 7; }
.port-card.span-8 { grid-column: span 8; }
.port-card.tall { aspect-ratio: 3 / 4; }
.port-card.wide { aspect-ratio: 16 / 9; }

@media (max-width: 900px) {
  .port-card.span-4, .port-card.span-5, .port-card.span-6, .port-card.span-7, .port-card.span-8 {
    grid-column: span 12;
  }
}

.port-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.port-card:hover img { transform: scale(1.06); }
.port-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--c-paper);
  background: linear-gradient(to top, rgba(14,14,14,.7) 0%, transparent 60%);
  transition: background .35s;
}
.port-card:hover .port-card__overlay { background: linear-gradient(to top, rgba(14,14,14,.85) 0%, rgba(14,14,14,.2) 100%); }
.port-card__title { font-family: var(--f-display); font-weight: 700; font-size: clamp(20px, 2vw, 28px); line-height: 1.05; }
.port-card__meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; margin-bottom: 10px; }

/* ============== DEALERS ============== */
.dealers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 900px) { .dealers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dealers-grid { grid-template-columns: 1fr; } }
.dealer-card {
  min-height: 390px;
  background: #fff;
  padding: clamp(24px, 2.2vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .25s;
}
.dealer-card:hover { background: var(--c-paper-2); }
.dealer-card__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .1em;
  opacity: .5;
}
.dealer-card h3,
.dealer-card h4 { font-family: var(--f-display); font-weight: 700; font-size: clamp(22px, 1.8vw, 28px); line-height: 1.05; }
.dealer-card__type { color: var(--c-red); font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.dealer-card__details { display: grid; gap: 13px; margin: 4px 0 12px; }
.dealer-card__details > div { display: grid; gap: 5px; }
.dealer-card__details dt { font-family: var(--f-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-cement-2); }
.dealer-card__details dd { margin: 0; font-size: 14px; line-height: 1.5; color: var(--c-cement-2); }
.dealer-card .meta { font-size: 14px; line-height: 1.55; color: var(--c-cement-2); }
.dealer-card .links { display: flex; gap: 10px 14px; flex-wrap: wrap; font-size: 12px; font-weight: 600; margin-top: auto; }
.dealer-card .links a { display: inline-flex; align-items: center; gap: 4px; padding-bottom: 1px; border-bottom: 1px solid currentColor; }

/* ============== FOOTER ============== */
.footer {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 80px var(--gutter) 24px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--c-line-dark);
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand h3 { font-family: var(--f-display); font-weight: 800; font-size: clamp(36px, 5vw, 64px); letter-spacing: -.03em; line-height: .9; }
.footer__brand h3 {
  width: min(240px, 100%);
  height: 66px;
  font-size: 0;
  background: url('../assets/logo/logo-cyrillic-registered-light.png?v=20260902-registered') no-repeat left center / contain;
}
.footer__brand p { margin-top: 18px; max-width: 30ch; opacity: .75; }
.footer__col h5 { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; opacity: .7; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { transition: color .2s; }
.footer__col ul a:hover { color: var(--c-amber); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .6;
}

/* ============== CTA BLOCK ============== */
.cta-block {
  position: relative;
  padding: clamp(60px, 9vw, 140px) var(--gutter);
  background: var(--c-amber);
  color: #fff;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(100% / 18 - 1px),
      rgba(14, 14, 14, 0.06) calc(100% / 18 - 1px),
      rgba(14, 14, 14, 0.06) calc(100% / 18)
    );
  pointer-events: none;
}
.cta-block__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
@media (max-width: 800px) { .cta-block__inner { grid-template-columns: 1fr; } }
.cta-block h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(40px, 6vw, 96px); letter-spacing: -.03em; line-height: .95; }
.cta-block p { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.5; max-width: 40ch; }
.cta-block .btn--primary { background: #fff; color: var(--c-ink); border-color: #fff; }
.cta-block .btn--primary:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

/* ============== HOME EDITORIAL RHYTHM ============== */
.editorial-heading {
  max-width: 880px;
  margin-bottom: clamp(46px, 6vw, 78px);
}
.editorial-heading .section__num {
  width: min(420px, 100%);
  color: var(--c-red);
  margin-bottom: 22px;
}
.editorial-heading h2,
.evidence-heading h2,
.open-village__intro h2,
.projects-showcase__header h2 {
  font-family: var(--f-display);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1;
}
.editorial-heading h2 {
  font-size: clamp(40px, 4.5vw, 66px);
  max-width: 760px;
}
.editorial-heading h2 em {
  color: var(--c-red);
  font-style: normal;
}
.editorial-heading p {
  max-width: 68ch;
  margin-top: 24px;
  color: var(--c-cement-2);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
}

.evidence-heading {
  max-width: 820px;
  margin: 0 auto clamp(42px, 5vw, 72px);
  text-align: center;
}
.evidence-heading .section__num {
  width: fit-content;
  margin: 0 auto 20px;
  color: var(--c-red);
}
.evidence-heading .section__num::after { width: 70px; flex: 0 0 70px; }
.evidence-heading h2 {
  font-size: clamp(38px, 4vw, 60px);
}
.evidence-heading p {
  max-width: 66ch;
  margin: 20px auto 0;
  color: var(--c-cement-2);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
}

.open-village__layout { display: block; }
.open-village__intro {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}
.open-village__intro .section__num {
  width: fit-content;
  margin: 0 auto 20px;
}
.open-village__intro .section__num::after { width: 70px; flex: 0 0 70px; }
.open-village__intro h2 {
  font-size: clamp(40px, 4.2vw, 64px);
}
.open-village__intro p {
  max-width: 65ch;
  margin: 22px auto 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
}
.open-village__years { justify-content: center; margin-top: 26px; }
.open-village__docs {
  max-width: 1080px;
  margin: clamp(42px, 5vw, 70px) auto 0;
}

.projects-showcase { overflow: hidden; }
.projects-showcase__header {
  max-width: 850px;
  margin: 0 auto clamp(44px, 5vw, 72px);
  text-align: center;
}
.projects-showcase__header .section__num {
  width: fit-content;
  margin: 0 auto 20px;
  color: var(--c-red);
}
.projects-showcase__header .section__num::after { width: 70px; flex: 0 0 70px; }
.projects-showcase__header h2 {
  font-size: clamp(40px, 4.4vw, 66px);
}
.projects-showcase__header p {
  max-width: 68ch;
  margin: 20px auto 0;
  color: var(--c-cement-2);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
}
.projects-collage {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  grid-template-rows: repeat(10, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
  height: clamp(610px, 52vw, 820px);
}
.projects-collage__item {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: clamp(16px, 1.6vw, 26px);
  background: var(--c-bone);
}
.projects-collage__item--left { grid-column: 1 / 4; grid-row: 3 / 9; }
.projects-collage__item--upper-left { grid-column: 4 / 7; grid-row: 1 / 5; }
.projects-collage__item--lower-left { grid-column: 4 / 7; grid-row: 5 / 11; }
.projects-collage__item--center { grid-column: 7 / 11; grid-row: 1 / 11; }
.projects-collage__item--upper-right { grid-column: 11 / 14; grid-row: 1 / 6; }
.projects-collage__item--lower-right { grid-column: 11 / 14; grid-row: 6 / 11; }
.projects-collage__item--right { grid-column: 14 / 17; grid-row: 3 / 9; }
.projects-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .5s var(--ease);
}
.projects-collage__item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px 13px;
  border-radius: 10px;
  background: rgba(14,14,14,.78);
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  backdrop-filter: blur(8px);
}
.projects-collage__item:hover img { transform: scale(1.035); }
.projects-collage__item:hover span { opacity: 1; transform: translateY(0); }
.projects-showcase__action { margin-top: 38px; text-align: center; }

.cta-block { padding: clamp(54px, 6vw, 88px) var(--gutter); }
.cta-block__inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(36px, 6vw, 100px);
}
.cta-block__copy { max-width: 850px; }
.cta-block__copy .section__num { width: min(390px, 100%); }
.cta-block h2 {
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 650;
  line-height: 1;
}
.cta-block p {
  max-width: 64ch;
  margin-top: 18px;
  color: rgba(255,255,255,.82);
  font-size: clamp(15px, 1.15vw, 17px);
}
.cta-block__action { align-self: center; }

@media (max-width: 900px) {
  .projects-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }
  .projects-collage__item,
  .projects-collage__item--left,
  .projects-collage__item--upper-left,
  .projects-collage__item--lower-left,
  .projects-collage__item--center,
  .projects-collage__item--upper-right,
  .projects-collage__item--lower-right,
  .projects-collage__item--right {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .projects-collage__item--center { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .projects-collage__item span { opacity: 1; transform: none; }
  .cta-block__inner { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 600px) {
  .editorial-heading h2,
  .evidence-heading h2,
  .open-village__intro h2,
  .projects-showcase__header h2,
  .cta-block h2 { font-size: 36px; }
  .projects-collage { grid-template-columns: 1fr; }
  .projects-collage__item--center { grid-column: auto; aspect-ratio: 4 / 3; }
}

/* ============== HOME BENTO ARCHITECTURE ============== */
.home-page { background: #fff; }
.home-page .section { padding: clamp(72px, 7vw, 112px) 0; }
.home-page .section__num {
  font-size: 11px;
  letter-spacing: .13em;
}

.home-stats-section {
  padding: clamp(18px, 2vw, 30px) var(--gutter) clamp(52px, 6vw, 92px);
  background: #fff;
}
.home-stats-section .stats {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  background: transparent;
}
.home-stats-section .stat {
  min-height: 178px;
  padding: 26px;
  border: 0;
  border-radius: 26px;
  background: #f3f3f1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-stats-section .stat:nth-child(2) { background: var(--c-ink); color: #fff; }
.home-stats-section .stat:nth-child(3) { background: #ece9e4; }
.home-stats-section .stat:nth-child(4) { background: #f7e9e7; }
.home-stats-section .stat__num {
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: .9;
}
.home-stats-section .stat__num .unit { font-size: 13px; margin-left: 8px; }
.home-stats-section .stat__label {
  max-width: 24ch;
  font-size: 10px;
  line-height: 1.45;
  margin-top: 28px;
}

.home-compare-section { background: #f4f4f2; }
.home-compare-section .editorial-heading {
  max-width: 760px;
  margin-bottom: 46px;
}
.home-compare-section .compare-head { display: none; }
.home-compare-section .compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}
.home-compare-section .compare-row {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: clamp(24px, 2.6vw, 36px);
  border: 0;
  border-radius: 26px;
  background: #fff;
}
.home-compare-section .compare-row:last-child { grid-column: 1 / -1; }
.home-compare-section .compare-row__label {
  padding: 0 0 14px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
}
.home-compare-section .compare-side {
  min-height: 66px;
  padding: 0;
}
.home-compare-section .compare-side__text h4 { font-size: 18px; }
.home-compare-section .compare-side__text p { max-width: 54ch; }

.home-products-section { background: #fff; }
.home-products-section .section__head {
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(42px, 7vw, 110px);
  margin-bottom: clamp(42px, 5vw, 68px);
}
.home-products-section .section__head .h2 {
  font-size: clamp(40px, 4.3vw, 64px);
  line-height: 1;
  font-weight: 650;
}
.home-products-section .section__head .lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
}
.home-products-section .products { gap: 14px; }
.home-products-section .product-card {
  min-height: 338px;
  border: 0;
  border-radius: 28px;
  background: #f3f3f1;
}
.home-products-section .product-card--partner {
  background: linear-gradient(120deg, var(--c-red), var(--c-red-deep));
}

.home-page .trust-section { background: #f4f4f2; }
.home-page .certificate-grid { border: 0; }
.home-page .certificate-card {
  min-height: 470px;
  padding: clamp(24px, 3vw, 44px);
  border: 0;
  border-radius: 30px;
  background: #fff;
}
.home-page .certificate-card__image { min-height: 390px; }
.home-page .certificate-card__image img { height: 390px; }
.home-page .trust-facts {
  gap: 14px;
  margin-top: 14px;
  border: 0;
}
.home-page .trust-facts > div {
  min-height: 124px;
  border: 0;
  border-radius: 24px;
  background: #fff;
}
.home-page .trust-facts strong { font-size: clamp(32px, 3.2vw, 48px); }

.home-page .open-village-section {
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
  background: #fff;
  color: var(--c-ink);
}
.home-page .open-village__layout {
  padding: clamp(38px, 5vw, 76px);
  border-radius: 34px;
  background: var(--c-ink);
  color: #fff;
}
.home-page .event-document { border-radius: 24px; }

.home-page .projects-showcase { background: #fff; }
.home-page .projects-collage__item { border-radius: 26px; }

.home-page .cta-block {
  padding: 28px var(--gutter) clamp(24px, 3vw, 40px);
  background: #fff;
  color: #fff;
}
.home-page .cta-block::before { display: none; }
.home-page .cta-block__inner {
  padding: clamp(36px, 4.5vw, 66px);
  border-radius: 32px;
  background: var(--c-ink);
}
.home-page .cta-block .btn--primary {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}
.home-page .cta-block .btn--primary:hover {
  background: #fff;
  color: var(--c-ink);
  border-color: #fff;
}

@media (max-width: 900px) {
  .home-stats-section .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-products-section .section__head { grid-template-columns: 1fr; gap: 24px; }
  .home-page .certificate-card { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .home-page .section { padding: 60px 0; }
  .home-stats-section .stats { grid-template-columns: 1fr; }
  .home-stats-section .stat { min-height: 150px; }
  .home-compare-section .compare { grid-template-columns: 1fr; }
  .home-compare-section .compare-row:last-child { grid-column: auto; }
  .home-page .open-village__layout { padding: 28px 20px; border-radius: 26px; }
  .home-page .cta-block__inner { padding: 30px 22px; border-radius: 26px; }
}

/* Open editorial layout: containers only where the content needs one. */
.home-page .section { padding: clamp(68px, 6vw, 96px) 0; }
.home-stats-section {
  padding-top: 18px;
  padding-bottom: clamp(48px, 5vw, 76px);
}
.home-stats-section .stats {
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.home-stats-section .stat,
.home-stats-section .stat:nth-child(2),
.home-stats-section .stat:nth-child(3),
.home-stats-section .stat:nth-child(4) {
  min-height: 142px;
  padding: 24px clamp(18px, 2vw, 30px);
  border-right: 1px solid var(--c-line);
  border-radius: 0;
  background: transparent;
  color: var(--c-ink);
}
.home-stats-section .stat:last-child { border-right: 0; }
.home-stats-section .stat__num { font-size: clamp(38px, 3.8vw, 56px); }
.home-stats-section .stat__label { margin-top: 20px; }

.home-compare-section { background: #fff; }
.home-compare-section .editorial-heading {
  max-width: 760px;
  margin-bottom: 38px;
}
.home-compare-section .editorial-heading h2 { font-size: clamp(34px, 3.4vw, 50px); }
.home-compare-section .editorial-heading p { margin-top: 16px; }
.home-compare-section .compare {
  display: block;
  border-top: 1px solid var(--c-line);
}
.home-compare-section .compare-row,
.home-compare-section .compare-row:last-child {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(22px, 2.4vw, 32px) 0;
  border-bottom: 1px solid var(--c-line);
  border-radius: 0;
  background: transparent;
}
.home-compare-section .compare-row__label {
  border: 0;
  padding: 5px 0 0;
}
.home-compare-section .compare-side { min-height: 0; }
.home-compare-section .compare-side--bad { opacity: .62; }

.home-products-section .section__head .h2,
.home-page .evidence-heading h2,
.home-page .open-village__intro h2,
.home-page .projects-showcase__header h2,
.home-page .cta-block h2 {
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.04;
}

.home-page .certificate-card {
  padding: clamp(28px, 3vw, 44px) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  border-radius: 0;
  background: transparent;
}
.home-page .trust-facts {
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.home-page .trust-facts > div {
  border-right: 1px solid var(--c-line);
  border-radius: 0;
  background: transparent;
}
.home-page .trust-facts > div:last-child { border-right: 0; }

@media (max-width: 800px) {
  .home-compare-section .compare-row,
  .home-compare-section .compare-row:last-child {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (max-width: 620px) {
  .home-stats-section .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-stats-section .stat:nth-child(2) { border-right: 0; }
  .home-stats-section .stat:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
}

/* Compact editorial modules below the hero. */
.home-intro-screen {
  scroll-margin-top: 0;
  min-height: 100svh;
  padding-top: 48px;
  background: #fff;
}
.home-intro-layout {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(300px, .5fr) minmax(700px, 1.55fr);
  border-bottom: 1px solid var(--c-line);
}
.home-intro-visual {
  position: relative;
  height: 100%;
  min-height: 720px;
  margin: 0 0 0 clamp(24px, 2.4vw, 48px);
  overflow: hidden;
  background: #171817;
}
.home-intro-visual::after {
  content: '';
  position: absolute;
  inset: 44% 0 0;
  background: linear-gradient(180deg, transparent, rgba(8, 10, 8, .84));
  pointer-events: none;
}
.home-intro-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(.88) contrast(1.04);
}
.home-intro-visual figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 3vw, 48px);
  bottom: 172px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
}
.home-intro-metrics {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(17, 18, 17, .86);
  backdrop-filter: blur(12px);
  color: #fff;
}
.home-intro-metrics > div {
  min-height: 76px;
  padding: 16px clamp(18px, 2vw, 30px);
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.home-intro-metrics > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.14); }
.home-intro-metrics strong {
  font-family: var(--f-display);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  white-space: nowrap;
}
.home-intro-metrics span {
  max-width: 12ch;
  font-size: 10px;
  line-height: 1.25;
  color: rgba(255,255,255,.62);
}

.home-page .home-proof-section {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(38px, 4vw, 66px) clamp(38px, 4.5vw, 82px);
  background: #fff;
}
.home-proof {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 3.3vw, 50px);
  align-items: start;
}
.home-proof__intro {
  display: grid;
  grid-template-columns: minmax(330px, 1.15fr) minmax(260px, .85fr);
  column-gap: clamp(34px, 4vw, 66px);
  align-items: end;
}
.home-proof__intro .section__num { grid-column: 1 / -1; }
.home-proof__intro h2 {
  margin: 14px 0 0;
  max-width: 13ch;
  font-family: var(--f-display);
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.home-proof__intro p {
  margin: 0 0 38px;
  max-width: 38ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-cement-2);
}
.home-proof__link {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  margin-top: -24px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--c-ink);
  font-size: 13px;
  font-weight: 700;
}
.home-proof__link span { color: var(--c-red); }
.home-proof__matrix {
  border-top: 1px solid var(--c-ink);
}
.home-proof__matrix-head,
.home-proof__row {
  display: grid;
  grid-template-columns: 90px minmax(180px, .9fr) minmax(220px, 1fr);
  align-items: center;
  gap: 22px;
}
.home-proof__matrix-head {
  min-height: 48px;
  border-bottom: 1px solid var(--c-ink);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.home-proof__matrix-head strong { color: var(--c-red); }
.home-proof__row {
  min-height: 58px;
  border-bottom: 1px solid var(--c-line);
  font-size: 14px;
}
.home-proof__row > span:first-child {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-cement-2);
}
.home-proof__row > span:nth-child(2) {
  color: #9b9995;
  text-decoration: line-through;
  text-decoration-color: rgba(226, 42, 36, .35);
}
.home-proof__row strong {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
}
.home-proof__row strong::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--c-red);
}
.home-proof__summary {
  min-height: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--c-ink);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--c-cement-2);
}
.home-proof__summary span {
  position: relative;
  padding-left: 13px;
}
.home-proof__summary span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  background: var(--c-red);
}
.home-proof__next { display: none; }

@media (min-width: 1100px) {
  .home-intro-screen .home-proof__next {
    position: absolute;
    right: clamp(38px, 4.5vw, 82px);
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-cement-2);
  }
  .home-intro-screen .home-proof__next span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid var(--c-line);
    border-radius: 50%;
    color: var(--c-red);
    transition: transform .2s ease, border-color .2s ease;
  }
  .home-intro-screen .home-proof__next:hover span {
    transform: translateY(3px);
    border-color: var(--c-red);
  }
}

@media (max-width: 1280px) {
  .home-intro-layout { grid-template-columns: minmax(280px, .48fr) minmax(650px, 1.42fr); }
  .home-page .home-proof-section { padding-inline: 36px; }
  .home-proof__intro { grid-template-columns: minmax(290px, 1fr) minmax(230px, .8fr); }
  .home-proof__matrix-head,
  .home-proof__row { grid-template-columns: 74px minmax(160px, .85fr) minmax(190px, 1fr); gap: 16px; }
}

@media (max-width: 1099px) {
  .home-intro-screen { padding-top: 40px; }
  .home-intro-layout { height: auto; min-height: 0; grid-template-columns: 1fr; }
  .home-intro-visual {
    min-height: 360px;
    height: 44vw;
    max-height: 480px;
    margin-left: var(--gutter);
  }
  .home-page .home-proof-section { padding: 52px var(--gutter) 68px; }
  .home-proof__next { display: none; }
}

@media (max-width: 720px) {
  .home-intro-visual { min-height: 420px; height: 62vh; max-height: 520px; }
  .home-intro-visual figcaption { bottom: 154px; }
  .home-intro-metrics > div { min-height: 68px; padding: 14px 16px; }
  .home-intro-metrics strong { font-size: 22px; }
  .home-proof__intro { display: block; }
  .home-proof__intro h2 { font-size: 34px; }
  .home-proof__intro p { margin: 18px 0 0; }
  .home-proof__link { margin-top: 22px; }
  .home-proof__matrix { overflow-x: auto; }
  .home-proof__matrix-head,
  .home-proof__row,
  .home-proof__summary { min-width: 620px; }
}

.home-page .trust-section--compact {
  padding: clamp(52px, 5vw, 74px) 0;
  background: #f3f2ef;
}
.certificate-band {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) 190px minmax(360px, 1.15fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}
.certificate-band__intro h2 {
  margin: 18px 0 14px;
  max-width: 13ch;
  font-family: var(--f-display);
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.certificate-band__intro p {
  max-width: 35ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-cement-2);
}
.certificate-band__preview {
  position: relative;
  display: block;
  padding-left: 14px;
}
.certificate-band__preview::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 28px;
  width: 4px;
  background: var(--c-red);
}
.certificate-band__preview img {
  display: block;
  width: 160px;
  height: 222px;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(28, 26, 23, .12);
  transition: transform .25s ease;
}
.certificate-band__preview:hover img { transform: translateY(-4px) rotate(-.5deg); }
.certificate-band__preview span {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-red);
}
.certificate-band__details {
  padding-left: clamp(24px, 3vw, 46px);
  border-left: 1px solid var(--c-line);
}
.certificate-band__eyebrow {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--c-red);
}
.certificate-band__details h3 {
  margin: 12px 0 10px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}
.certificate-band__details > p {
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-cement-2);
}
.certificate-band__facts {
  margin-top: 26px;
  border-top: 1px solid var(--c-line);
}
.certificate-band__facts > div {
  min-height: 44px;
  display: grid;
  grid-template-columns: 135px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--c-line);
}
.certificate-band__facts dt {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-cement-2);
}
.certificate-band__facts dd {
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .home-facts__inner { grid-template-columns: repeat(4, 1fr); }
  .home-facts__lead { display: none; }
  .home-facts__item:first-of-type { border-left: 0; padding-left: 0; }
  .home-proof { grid-template-columns: 1fr; gap: 34px; }
  .home-proof__intro h2 { max-width: none; }
  .certificate-band { grid-template-columns: minmax(230px, 1fr) 170px minmax(300px, 1fr); gap: 30px; }
}
@media (max-width: 720px) {
  .home-facts { padding: 14px 0; }
  .home-facts__inner { grid-template-columns: repeat(2, 1fr); }
  .home-facts__item { padding: 10px 14px; border-bottom: 1px solid var(--c-line); }
  .home-facts__item:nth-child(2n) { border-left: 0; }
  .home-facts__item:nth-last-child(-n+2) { border-bottom: 0; }
  .home-proof__matrix-head,
  .home-proof__row { grid-template-columns: 70px 1fr 1fr; gap: 10px; }
  .home-proof__row { min-height: 68px; font-size: 12px; }
  .home-proof__row strong { padding-left: 12px; font-size: 12px; }
  .home-proof__summary { grid-template-columns: 1fr; gap: 6px; padding: 12px 0; }
  .certificate-band { grid-template-columns: 140px 1fr; gap: 24px; }
  .certificate-band__intro { grid-column: 1 / -1; }
  .certificate-band__preview img { width: 126px; height: 176px; }
  .certificate-band__details { padding-left: 20px; }
  .certificate-band__facts > div { grid-template-columns: 105px 1fr; }
}
@media (max-width: 460px) {
  .home-proof__matrix-head { display: none; }
  .home-proof__row { grid-template-columns: 58px 1fr; padding: 10px 0; }
  .home-proof__row strong { grid-column: 2; }
  .certificate-band { grid-template-columns: 1fr; }
  .certificate-band__preview { width: 150px; }
  .certificate-band__details { padding: 24px 0 0; border-left: 0; border-top: 1px solid var(--c-line); }
}

/* ============== PAGE HEADER (sub-pages) ============== */
.page-head {
  padding: calc(74px + clamp(36px, 4vw, 56px)) var(--gutter) clamp(36px, 4vw, 56px);
  background: #fff;
  color: var(--c-ink);
  position: relative;
  overflow: hidden;
  border-bottom: 0;
}
.page-head::before {
  display: none;
}
.page-head__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-head .crumbs {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-red);
  opacity: 1;
}
.page-head h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: none;
}
.page-head p.lead {
  max-width: 70ch;
  margin-top: 4px;
  color: var(--c-cement-2);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
  opacity: 1;
}
.page-head + .section {
  padding-top: clamp(32px, 3.5vw, 52px);
}

/* ============== DEALERS PAGE HEADER ============== */
.dealers-page .page-head {
  padding: calc(74px + clamp(36px, 4vw, 56px)) var(--gutter) clamp(36px, 4vw, 56px);
  border-bottom: 0;
  background: #fff;
  color: var(--c-ink);
}
.dealers-page .page-head::before { display: none; }
.dealers-page .page-head__inner { gap: 14px; }
.dealers-page .page-head .crumbs {
  color: var(--c-red);
  opacity: 1;
}
.dealers-page .page-head h1 {
  max-width: none;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.035em;
}
.dealers-page .page-head p.lead {
  max-width: 70ch;
  margin-top: 4px;
  color: var(--c-cement-2);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
  opacity: 1;
}
.dealers-page__list { padding-top: clamp(24px, 3vw, 44px); }
.dealer-locator { position: relative; }
.dealer-locator__intro {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
  text-align: center;
}
.dealer-locator__eyebrow {
  display: block;
  margin: 0;
  color: var(--c-red);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
}
.dealer-city-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(100px, max-content));
  justify-content: center;
  gap: 18px clamp(18px, 2.2vw, 38px);
  width: 100%;
  margin: 0 auto;
}
.dealer-city-list button {
  position: relative;
  min-height: 0;
  padding: 4px 0 10px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--c-ink);
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: color .2s;
}
.dealer-city-list button::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  border-bottom: 2px dashed transparent;
}
.dealer-city-list button:hover,
.dealer-city-list button.is-active { background: transparent; color: var(--c-red); }
.dealer-city-list button.is-active::after { border-bottom-color: var(--c-red); }
.dealer-locator__status {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 14px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-cement-2);
}
.dealer-locator__status strong { color: var(--c-ink); font-weight: 600; }
.dealer-locator__status [data-dealer-count] { color: var(--c-ink); }

@media (max-width: 760px) {
  .dealer-city-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; }
  .dealer-locator__status { align-items: flex-start; flex-direction: column; gap: 6px; }
  .dealer-card { min-height: 0; }
}
@media (min-width: 761px) and (max-width: 1300px) {
  .dealer-city-list { grid-template-columns: repeat(5, minmax(100px, max-content)); }
}
@media (max-width: 440px) {
  .dealer-city-list { grid-template-columns: 1fr; }
}

/* ============== DOCUMENT PAGES ============== */
.docs-page .page-head {
  padding: calc(74px + clamp(36px, 4vw, 56px)) var(--gutter) clamp(36px, 4vw, 56px);
  border-bottom: 0;
  background: #fff;
  color: var(--c-ink);
}
.docs-page .page-head::before { display: none; }
.docs-page .page-head__inner { gap: 14px; }
.docs-page .page-head .crumbs { color: var(--c-red); opacity: 1; }
.docs-page .page-head h1 {
  max-width: none;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.035em;
}
.docs-page .page-head p.lead {
  max-width: 72ch;
  margin-top: 4px;
  color: var(--c-cement-2);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
  opacity: 1;
}
.page-head__document {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  gap: 8px 18px;
  margin-top: 10px;
  padding: 11px 0 9px;
  border-bottom: 1px solid var(--c-ink);
  color: var(--c-ink);
  font-size: 13px;
  font-weight: 700;
}
.page-head__document span {
  color: var(--c-red);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.page-head__document b { color: var(--c-red); font-size: 18px; line-height: 1; }
.page-head__document:hover { color: var(--c-red); }
.doc-page-content { padding-top: clamp(58px, 7vw, 110px); }
.docs-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 7vw, 120px);
}
.docs-index {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--c-ink);
}
.docs-index > span,
.docs-index a {
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.docs-index > span { color: var(--c-red); }
.docs-index a { color: var(--c-cement-2); }
.docs-index a:hover { color: var(--c-red); }
.doc-content { min-width: 0; }
.doc-section {
  display: grid;
  grid-template-columns: minmax(130px, 180px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(42px, 5vw, 74px) 0;
  border-top: 1px solid var(--c-line);
  scroll-margin-top: 110px;
}
.doc-section:first-child { padding-top: 0; border-top-color: var(--c-ink); }
.doc-section__label {
  padding-top: 7px;
  color: var(--c-red);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.doc-section h2 {
  max-width: 20ch;
  margin-bottom: 22px;
  font-family: var(--f-display);
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: .98;
  letter-spacing: -.035em;
}
.doc-section h3 {
  margin: 30px 0 12px;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}
.doc-section p,
.doc-section li { color: var(--c-cement-2); font-size: clamp(15px, 1.25vw, 17px); line-height: 1.68; }
.doc-section p + p { margin-top: 16px; }
.doc-section ul { display: grid; gap: 10px; margin: 22px 0 0; }
.doc-section ul li { position: relative; padding-left: 22px; list-style: none; }
.doc-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--c-red); }
.doc-callout {
  margin-top: 26px;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--c-red);
  color: var(--c-ink);
  font-size: 15px;
  line-height: 1.6;
}
.doc-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0;
  border-top: 1px solid var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.doc-specs > div { min-height: 108px; padding: 18px 18px 18px 0; border-right: 1px solid var(--c-line); display: grid; align-content: space-between; gap: 18px; }
.doc-specs > div:nth-child(3n) { border-right: 0; padding-left: 18px; }
.doc-specs > div:nth-child(3n + 2) { padding-left: 18px; }
.doc-specs span { color: var(--c-cement-2); font-family: var(--f-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.doc-specs strong { font-family: var(--f-display); font-size: clamp(18px, 2vw, 26px); line-height: 1.1; }
.doc-layout-types { display: flex; flex-wrap: wrap; gap: 12px 26px; margin: 4px 0 28px; }
.doc-layout-types span { position: relative; padding-left: 14px; font-size: 14px; font-weight: 600; }
.doc-layout-types span::before { content: ''; position: absolute; top: .55em; left: 0; width: 5px; height: 5px; background: var(--c-red); }
.doc-steps { display: grid; gap: 0; margin: 22px 0 0; counter-reset: doc-step; }
.doc-steps li { position: relative; padding: 16px 0 16px 52px; border-top: 1px solid var(--c-line); list-style: none; counter-increment: doc-step; }
.doc-steps li::before { content: counter(doc-step, decimal-leading-zero); position: absolute; top: 18px; left: 0; color: var(--c-red); font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; }
.doc-figure { margin: clamp(28px, 4vw, 46px) 0 0; }
.doc-figure img {
  display: block;
  width: 100%;
  height: clamp(240px, 34vw, 520px);
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.doc-figure figcaption {
  margin-top: 10px;
  color: var(--c-cement-2);
  font-family: var(--f-mono);
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.doc-figure--wide img { height: clamp(300px, 45vw, 650px); }
.doc-figure--illustration img { height: auto; max-height: 440px; }
.doc-figure--document {
  padding-top: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--c-line);
}
.doc-figure--document img { width: min(100%, 720px); height: auto; max-height: none; }
.doc-figure-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 24px;
}
.doc-figure-grid .doc-figure { display: grid; grid-template-rows: 1fr auto; }
.doc-figure-grid .doc-figure img { height: 100%; min-height: 300px; }
.doc-figure-grid--balanced { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.doc-layout-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.doc-layout-gallery .doc-figure { margin: 0; }
.doc-layout-gallery .doc-figure img { height: clamp(140px, 15vw, 220px); }
.doc-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 28px; }
.doc-actions__text { padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }

@media (max-width: 920px) {
  .docs-layout { grid-template-columns: 1fr; }
  .docs-index { display: none; }
  .doc-section { grid-template-columns: 130px minmax(0, 1fr); }
}
@media (max-width: 680px) {
  .doc-section { grid-template-columns: 1fr; gap: 14px; }
  .doc-section__label { padding-top: 0; }
  .doc-specs { grid-template-columns: 1fr 1fr; }
  .doc-specs > div,
  .doc-specs > div:nth-child(3n),
  .doc-specs > div:nth-child(3n + 2) { padding: 16px; border-right: 1px solid var(--c-line); }
  .doc-specs > div:nth-child(2n) { border-right: 0; }
  .doc-figure-grid,
  .doc-figure-grid--balanced,
  .doc-layout-gallery { grid-template-columns: 1fr; }
  .doc-figure-grid .doc-figure img { min-height: 0; height: auto; max-height: 440px; }
  .doc-layout-gallery .doc-figure img { height: auto; }
}

/* ============== OFFICIAL DOCUMENT CONTENT ============== */
.official-doc {
  padding: clamp(64px, 7vw, 112px) 0 clamp(90px, 10vw, 170px);
  background: #fff;
  border-top: 1px solid var(--c-line);
}
.official-doc__inner { max-width: 1540px; }
.official-source,
.official-source * { box-sizing: border-box; }
.official-source { color: var(--c-ink); }
.official-source .elementor-widget-spacer { display: none; }
.official-source .elementor-container,
.official-source .e-con-inner { width: 100%; }
.official-source .elementor-column,
.official-source .e-con,
.official-source .elementor-widget-wrap,
.official-source .elementor-widget-container { min-width: 0; }
.official-source .elementor-widget {
  margin: 0 0 clamp(20px, 2.5vw, 34px);
}
.official-source .official-widget--heading {
  margin-bottom: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(24px, 3vw, 38px);
  border-bottom: 1px solid var(--c-ink);
}
.official-source .elementor-heading-title {
  max-width: 19ch;
  font-family: var(--f-display);
  font-size: clamp(38px, 5.1vw, 74px);
  line-height: .96;
  letter-spacing: -.045em;
}
.official-source .official-widget--copy {
  max-width: 78ch;
  color: var(--c-cement-2);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.68;
}
.official-source .official-widget--copy p { margin: 0; }
.official-source .official-widget--copy p + p { margin-top: 16px; }
.official-source .official-widget--copy a {
  color: var(--c-ink);
  border-bottom: 1px solid currentColor;
}
.official-source .official-widget--subhead {
  max-width: none;
  margin-top: clamp(38px, 5vw, 74px);
  margin-bottom: 20px;
  color: var(--c-ink);
  font-family: var(--f-display);
  font-size: clamp(22px, 2.7vw, 38px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.official-source ol,
.official-source ul {
  display: grid;
  gap: 13px;
  margin: 8px 0 0;
  padding: 0;
  counter-reset: official-list;
}
.official-source li {
  position: relative;
  padding: 15px 0 15px 48px;
  border-top: 1px solid var(--c-line);
  list-style: none;
  counter-increment: official-list;
}
.official-source ol > li::before {
  content: counter(official-list, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 0;
  color: var(--c-red);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .1em;
}
.official-source ul > li::before {
  content: '—';
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--c-red);
}
.official-source .official-widget--image {
  width: 100%;
  margin: clamp(30px, 5vw, 72px) 0;
}
.official-source .official-widget--image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 760px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}
.official-source .elementor-inner-section {
  width: 100%;
  margin: clamp(34px, 5vw, 76px) 0;
}
.official-source .elementor-inner-section > .elementor-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.official-source .elementor-inner-section .elementor-widget {
  max-width: none;
}
.official-source .elementor-inner-section .official-widget--image {
  margin: 0;
}
.official-source--mounting > .elementor-container > .elementor-column > .elementor-widget-wrap {
  display: flow-root;
}
.official-source--mounting > .elementor-container > .elementor-column > .elementor-widget-wrap > .official-widget--image img {
  width: 100%;
  height: auto;
  max-height: none;
}
.official-source--storage .official-widget--image {
  margin-top: 0;
  padding: clamp(18px, 3vw, 36px) 0;
  background: var(--c-bone);
}
.official-source--storage .official-widget--image img {
  width: min(100%, 1100px);
  max-height: none;
}
.official-source--garantiya .e-con-inner {
  max-width: 1040px;
}
.official-source--garantiya .official-widget--copy { max-width: 90ch; }

@media (max-width: 680px) {
  .official-doc { padding-top: 48px; }
  .official-source .elementor-heading-title { font-size: clamp(34px, 11vw, 52px); }
  .official-source .elementor-inner-section > .elementor-container { grid-template-columns: 1fr; }
  .official-source .official-widget--image img { max-height: none; }
}

/* ============== ARTICLE / RICH TEXT ============== */
.article {
  max-width: 1320px;
  margin: 0 auto;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
}
.article p { margin-bottom: 1.2em; }
.article h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 48px); margin: 1.4em 0 .6em; letter-spacing: -.02em; line-height: 1.05; }
.article h3 { font-family: var(--f-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 32px); margin: 1.4em 0 .5em; letter-spacing: -.015em; }
.article ul { margin: 1em 0 1.4em 1.4em; }
.article ul li { margin-bottom: .5em; padding-left: 8px; list-style: none; position: relative; }
.article ul li::before { content: '—'; position: absolute; left: -1.4em; color: var(--c-amber); font-weight: 700; }
.article blockquote {
  border-left: 3px solid var(--c-amber);
  padding: 8px 0 8px 24px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -.01em;
  line-height: 1.25;
  margin: 2em 0;
}
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 15px;
}
.article th, .article td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}
.article th { font-weight: 700; background: var(--c-bone); }

/* ============== FORM ============== */
.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.field input, .field textarea, .field select {
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-bone);
  font-size: 15px;
  transition: border-color .25s, background .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-ink);
  background: var(--c-paper);
}
.field textarea { min-height: 140px; resize: vertical; font-family: inherit; }

/* ============== UTILS ============== */
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}
.tag.is-active, .tag:hover { background: currentColor; }
.tag.is-active span, .tag:hover span { color: var(--c-paper); }
.tag span { display: inline-block; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Hero house swap (выбор фактуры) ===== */
.hero2__photo--transition {
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.hero2__photo--transition.is-visible { opacity: 1; }
.hero2__texture { cursor: pointer; position: relative; transition: transform .15s ease; }
.hero2__texture:focus { outline: none; }
.hero2__texture:focus-visible img { outline: 3px solid #e11d2a; outline-offset: 2px; }
.hero2__texture.is-active { transform: translateY(-2px); }

/* ============== HOME PROOF — REDESIGN ============== */
.home-intro-screen {
  min-height: 0;
  padding: clamp(56px, 4.5vw, 72px) var(--gutter);
}
.home-intro-layout {
  width: min(100%, var(--max-w));
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(680px, 1.28fr);
  gap: clamp(48px, 5vw, 96px);
  align-items: stretch;
  border-bottom: 0;
}
.home-intro-media { min-width: 0; }
.home-intro-visual {
  position: relative;
  height: clamp(440px, 48vw, 640px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #eceae5;
}
.home-intro-visual::after { display: none; }
.home-intro-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
  filter: none;
}
.home-intro-metrics {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
  background: transparent;
  backdrop-filter: none;
  color: var(--c-ink);
}
.home-intro-metrics > div {
  min-height: 104px;
  padding: 18px;
  border: 0;
  background: #f3f3f1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.home-intro-metrics > div:nth-child(odd) { border: 0; }
.home-intro-metrics strong {
  font-family: var(--f-display);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  white-space: nowrap;
}
.home-intro-metrics span {
  max-width: 15ch;
  font-size: 10px;
  line-height: 1.25;
  color: var(--c-cement-2);
}
.home-page .home-proof-section {
  position: relative;
  display: block;
  height: 100%;
  padding: 0;
  background: transparent;
}
.home-proof {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(26px, 3vw, 40px);
  align-items: start;
}
.home-proof__intro {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(250px, .85fr);
  column-gap: clamp(28px, 4vw, 60px);
  align-items: end;
}
.home-proof__intro .section__num {
  grid-column: 1 / -1;
  color: var(--c-red);
}
.home-proof__intro .section__num::after { display: none; }
.home-proof__intro h2 {
  margin: 14px 0 0;
  max-width: 13ch;
  font-family: var(--f-display);
  font-size: clamp(38px, 3.2vw, 56px);
  line-height: 1.01;
  letter-spacing: -.04em;
}
.home-proof__intro p {
  margin: 0 0 34px;
  max-width: 38ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-cement-2);
}
.home-proof__link {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  margin-top: -22px;
  padding: 0;
  border: 0;
  font-size: 13px;
  font-weight: 700;
}
.home-proof__matrix {
  height: 100%;
  display: grid;
  grid-template-rows: 30px repeat(5, minmax(58px, 1fr)) auto;
  gap: 7px;
  border: 0;
}
.home-proof__matrix-head,
.home-proof__row {
  display: grid;
  grid-template-columns: 86px minmax(180px, .9fr) minmax(220px, 1fr);
  align-items: center;
  gap: 18px;
}
.home-proof__matrix-head {
  min-height: 30px;
  padding: 0 18px;
  border: 0;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-cement-2);
}
.home-proof__matrix-head strong { color: var(--c-red); }
.home-proof__row {
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  background: #f5f5f3;
  font-size: 14px;
}
.home-proof__row > span:first-child {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-cement-2);
}
.home-proof__row > span:nth-child(2) {
  color: #96938e;
  text-decoration: line-through;
  text-decoration-color: rgba(226, 42, 36, .3);
}
.home-proof__row strong {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
}
.home-proof__row strong::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--c-red);
}
.home-proof__summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-cement-2);
}
.home-proof__summary span {
  position: relative;
  padding: 9px 12px 9px 24px;
  background: #f5f5f3;
}
.home-proof__summary span::before { left: 12px; }
.home-intro-screen .home-proof__next { display: none; }

@media (max-width: 1280px) {
  .home-intro-layout {
    grid-template-columns: minmax(320px, .62fr) minmax(620px, 1.38fr);
    gap: 42px;
  }
  .home-proof__intro { grid-template-columns: minmax(280px, 1fr) minmax(220px, .8fr); }
  .home-proof__matrix-head,
  .home-proof__row { grid-template-columns: 72px minmax(150px, .82fr) minmax(180px, 1fr); gap: 14px; }
}

@media (max-width: 1099px) {
  .home-intro-screen { padding: 40px var(--gutter) 72px; }
  .home-intro-layout { grid-template-columns: 1fr; gap: 44px; }
  .home-intro-visual {
    height: clamp(400px, 58vw, 620px);
    min-height: 0;
    max-height: none;
    margin: 0;
  }
  .home-page .home-proof-section { height: auto; padding: 0; }
  .home-proof { height: auto; grid-template-rows: none; }
  .home-proof__matrix { height: auto; grid-template-rows: none; }
}

@media (max-width: 720px) {
  .home-intro-screen { padding-top: 28px; }
  .home-intro-visual { height: min(118vw, 560px); }
  .home-intro-metrics { grid-template-columns: 1fr; }
  .home-intro-metrics > div {
    min-height: 82px;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .home-intro-metrics span { max-width: none; }
  .home-proof__intro { display: block; }
  .home-proof__intro h2 { font-size: 36px; }
  .home-proof__intro p { margin: 20px 0 0; }
  .home-proof__link { margin-top: 22px; }
  .home-proof__matrix { overflow: visible; }
  .home-proof__matrix-head { display: none; }
  .home-proof__row {
    min-width: 0;
    min-height: 0;
    grid-template-columns: 62px 1fr;
    gap: 8px 12px;
    padding: 14px 16px;
  }
  .home-proof__row > span:nth-child(2) { grid-column: 2; }
  .home-proof__row strong { grid-column: 2; }
  .home-proof__summary {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Keep the documents/event redesign last in the cascade. */
.home-page .trust-section--compact {
  padding: clamp(72px, 7vw, 112px) 0;
  background: #fff;
}
.certificate-band {
  width: calc(100% - (2 * var(--gutter)));
  max-width: 1760px;
  min-height: 620px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(420px, .82fr) minmax(540px, 1.18fr);
  grid-template-rows: auto 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 28px;
  background: var(--c-ink);
  color: #fff;
}
.certificate-band__intro {
  grid-column: 1;
  grid-row: 1;
  padding: clamp(46px, 5vw, 78px) clamp(38px, 5vw, 76px) 24px;
}
.certificate-band__intro .section__num { color: var(--c-red); }
.certificate-band__intro .section__num::after { display: none; }
.certificate-band__intro h2 {
  margin: 24px 0 20px;
  max-width: 12ch;
  font-size: clamp(38px, 3.7vw, 64px);
  line-height: .98;
  letter-spacing: -.045em;
}
.certificate-band__intro p {
  max-width: 43ch;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
}
.certificate-band__preview {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: clamp(42px, 5vw, 82px);
  background: #eeeae4;
}
.certificate-band__preview::before { display: none; }
.certificate-band__preview img {
  width: min(42%, 360px);
  height: auto;
  aspect-ratio: 707 / 1000;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(25, 22, 18, .2);
}
.certificate-band__preview:hover img { transform: translateY(-6px) rotate(-.4deg); }
.certificate-band__preview span {
  position: absolute;
  right: clamp(26px, 3vw, 48px);
  bottom: clamp(24px, 3vw, 44px);
  margin: 0;
  padding: 12px 18px;
  background: var(--c-red);
  color: #fff;
  font-size: 12px;
}
.certificate-band__details {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  padding: 16px clamp(38px, 5vw, 76px) clamp(46px, 5vw, 72px);
  border: 0;
}
.certificate-band__eyebrow { color: rgba(255,255,255,.42); }
.certificate-band__details h3 { margin: 12px 0 10px; font-size: clamp(24px, 2.2vw, 34px); }
.certificate-band__details > p { color: rgba(255,255,255,.56); }
.certificate-band__facts {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 0;
}
.certificate-band__facts > div {
  min-height: 86px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: rgba(255,255,255,.07);
}
.certificate-band__facts dt { color: rgba(255,255,255,.42); }
.certificate-band__facts dd { color: #fff; }

.home-page .open-village-section {
  padding: clamp(72px, 7vw, 112px) 0;
  background: #f3f2ef;
  color: var(--c-ink);
  overflow: visible;
}
.home-page .open-village__layout {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(680px, 1.38fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: start;
  border-radius: 0;
  background: transparent;
  color: var(--c-ink);
}
.open-village__intro {
  max-width: none;
  margin: 0;
  text-align: left;
}
.open-village__intro .section__num { width: auto; margin: 0; color: var(--c-red); }
.open-village__intro .section__num::after { display: none; }
.open-village__intro h2 {
  margin-top: 22px;
  max-width: 11ch;
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: .96;
  letter-spacing: -.045em;
}
.open-village__intro p {
  max-width: 42ch;
  margin: 26px 0 0;
  color: var(--c-cement-2);
  font-size: 15px;
  line-height: 1.65;
}
.open-village__docs {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.event-document,
.home-page .event-document {
  position: relative;
  gap: 0;
  padding: 12px;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  color: var(--c-ink);
}
.event-document::before {
  content: attr(data-year);
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 8px 11px;
  background: var(--c-ink);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
}
.event-document img { border-radius: 0; background: #f8f7f5; }
.event-document > div { min-height: 138px; padding: 22px 14px 14px; }
.event-document span { margin-bottom: 10px; font-size: 9px; }
.event-document strong { font-size: clamp(17px, 1.4vw, 21px); }
.event-document em { margin-top: auto; padding-top: 20px; color: var(--c-ink); }

@media (max-width: 1050px) {
  .certificate-band { grid-template-columns: 1fr 1fr; min-height: 0; }
  .certificate-band__preview { min-height: 580px; }
  .certificate-band__facts { grid-template-columns: 1fr; }
  .certificate-band__facts > div { min-height: 70px; }
  .home-page .open-village__layout { grid-template-columns: 1fr; }
  .open-village__intro h2 { max-width: 15ch; }
}
@media (max-width: 720px) {
  .home-page .trust-section--compact,
  .home-page .open-village-section { padding: 56px 0; }
  .certificate-band {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border-radius: 20px;
  }
  .certificate-band__intro,
  .certificate-band__details { grid-column: 1; grid-row: auto; padding: 32px 24px; }
  .certificate-band__preview {
    grid-column: 1;
    grid-row: auto;
    width: auto;
    min-height: 480px;
    padding: 42px 20px 72px;
  }
  .certificate-band__preview img { width: min(72%, 300px); height: auto; }
  .certificate-band__facts { grid-template-columns: 1fr; }
  .home-page .open-village__layout { gap: 38px; }
  .open-village__intro h2 { font-size: 42px; }
  .open-village__docs { grid-template-columns: 1fr; }
}

/* ============== MOBILE SYSTEM — COMPACT 2026 (FINAL CASCADE) ============== */
@media (max-width: 720px) {
  /* Mobile hero composition: compact copy on the photo, textures before actions. */
  .home-page .hero2 { position: relative; }
  .home-page .hero2__left { display: contents; }
  .home-page #heroHouse {
    order: 1;
    height: min(112vw, 500px);
    min-height: 400px;
    object-position: 68% 52%;
  }
  .home-page .hero2__copy {
    position: absolute;
    z-index: 4;
    top: 70px;
    right: 14px;
    left: 14px;
    display: block;
    padding: 13px 14px 14px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 16px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 14px 38px rgba(14,14,14,.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .home-page .hero2__copy .hero2__meta { gap: 6px; }
  .home-page .hero2__copy .hero2__meta .meta-tag { padding: 5px 8px; background: rgba(255,255,255,.74); font-size: 9px; }
  .home-page .hero2__copy .hero2__kicker { margin-top: 9px; padding-left: 14px; font-size: 11px; line-height: 1.35; }
  .home-page .hero2__copy .hero2__title { margin-top: 10px; font-size: clamp(29px, 8.1vw, 36px); line-height: .96; }
  .home-page .hero2__copy .hero2__lead { margin-top: 10px; font-size: 11px; line-height: 1.4; }
  .home-page .hero2__textures { order: 2; z-index: 5; margin: -54px 14px 10px; }
  .home-page .hero2__benefits { order: 3; width: auto; margin: 0 14px 8px; }
  .home-page .hero2__cta { order: 4; width: auto; margin: 0 14px 24px; }

  /* Final mobile direction: no hero house or texture selector. */
  .home-page #heroHouse,
  .home-page .hero2__textures { display: none; }
  .home-page .hero2__copy {
    position: static;
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 16px 14px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .home-page .hero2__copy .hero2__meta { gap: 8px; }
  .home-page .hero2__copy .hero2__meta .meta-tag { padding: 7px 11px; background: #fff; font-size: 11px; }
  .home-page .hero2__copy .hero2__kicker { margin-top: 6px; padding-left: 18px; font-size: 14px; line-height: 1.45; }
  .home-page .hero2__copy .hero2__title { margin-top: 0; font-size: clamp(34px, 9.4vw, 44px); line-height: .98; }
  .home-page .hero2__copy .hero2__lead { margin-top: 0; font-size: 14px; line-height: 1.5; }
  .home-page .hero2__benefits { order: 2; margin: 0 16px 8px; }
  .home-page .hero2__cta { order: 3; margin: 0 16px 24px; }

  /* Certificate sits beside the expertise copy instead of below it. */
  .home-page .expertise-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 18px 14px;
    align-items: start;
  }
  .home-page .expertise-intro { display: contents; }
  .home-page .expertise-intro .section__num { grid-column: 1; grid-row: 1; }
  .home-page .expertise-intro h2 {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    font-size: 29px;
    line-height: .96;
  }
  .home-page .expertise-intro > p {
    grid-column: 1;
    grid-row: 3;
    font-size: 12px;
    line-height: 1.5;
  }
  .home-page .expertise-certificate {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: end;
    margin: 0;
  }
  .home-page .expertise-certificate img {
    width: 118px;
    max-height: 168px;
  }
  .home-page .expertise-certificate span {
    margin-top: 7px;
    font-size: 8px;
    text-align: center;
  }
  .home-page .expertise-facts {
    grid-column: 1 / -1;
    grid-row: 4;
    width: 100%;
  }
  .home-page .expertise-events {
    grid-column: 1 / -1;
    grid-row: 5;
    margin-top: 20px;
  }

  /* Contacts first; dealer search follows beneath them at full width. */
  .home-page .home-contact-band__title { order: 1; }
  .home-page .home-contact-band__address { order: 2; }
  .home-page .home-contact-band__links {
    order: 3;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin: 0;
  }
  .home-page .home-contact-band__links a:last-child {
    grid-column: 1 / -1;
    margin-top: 2px;
  }
  .home-page .home-contact-band__dealers {
    order: 4;
    grid-column: 1 / -1;
    margin: 0;
  }

  :root {
    --gutter: 14px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
    line-height: 1.45;
  }

  /* Compact header shared by every page. */
  .topbar {
    height: 54px;
    grid-template-columns: minmax(0, 1fr) 104px;
  }
  .topbar > * { padding: 0 14px; }
  .topbar .brand { min-width: 0; }
  .topbar .brand img {
    width: auto;
    height: 34px;
    max-width: 142px;
  }
  .indexbtn {
    min-width: 104px;
    padding: 0 12px !important;
    gap: 9px;
    font-size: 12px;
  }
  .indexbtn__icon { gap: 3px; }
  .indexbtn__icon span { width: 16px; }
  .indexbtn__icon span:nth-child(2) { width: 11px; margin-left: 5px; }
  .indexbtn__icon span:nth-child(3) { width: 16px; }

  /* One continuous scroll for the whole menu, including all ten links. */
  .overlay {
    display: block;
    height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .overlay__head {
    position: sticky;
    top: 0;
    z-index: 5;
    height: 54px;
    padding: 0 14px;
    background: rgba(17,17,17,.96);
    backdrop-filter: blur(14px);
  }
  .overlay__head > span { display: none; }
  .overlay__head .brand img {
    width: auto;
    height: 31px;
    max-width: 128px;
  }
  .overlay__close {
    gap: 8px;
    padding: 7px 11px;
    font-size: 10px;
  }
  .overlay__body {
    display: block;
    min-height: 0;
    overflow: visible;
  }
  .overlay__nav {
    padding: 12px 18px 18px;
    overflow: visible;
    border-right: 0;
  }
  .overlay__nav a {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 11px 0;
    font-size: 23px;
    line-height: 1.02;
  }
  .overlay__nav a .num { font-size: 9px; }
  .overlay__aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    padding: 22px 18px 26px;
  }
  .overlay__contact:last-child { grid-column: 1 / -1; }
  .overlay__contact h6 { margin-bottom: 9px; font-size: 9px; }
  .overlay__contact a,
  .overlay__contact p { font-size: 13px; line-height: 1.45; }
  .overlay__foot {
    padding: 14px 18px 24px;
    font-size: 8px;
    line-height: 1.5;
  }

  /* Hero: copy first, one real image, then a compact texture rail. */
  .hero2 {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding-top: 54px;
    overflow: visible;
  }
  #heroHouse {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: min(62vw, 330px);
    min-height: 235px;
    object-fit: cover;
    object-position: 70% 52%;
    z-index: 0;
  }
  .hero2__photo--transition {
    display: none;
  }
  .hero2__left {
    order: 1;
    width: 100%;
    min-height: 0;
    gap: 12px;
    padding: 20px 16px 22px;
  }
  .hero2__meta { gap: 8px; }
  .hero2__meta .meta-tag { padding: 7px 11px; font-size: 11px; }
  .hero2__kicker {
    margin-top: 6px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.45;
  }
  .hero2__kicker::before { width: 6px; height: 6px; }
  .hero2__title {
    max-width: none;
    font-size: clamp(34px, 9.4vw, 44px);
    line-height: .98;
    letter-spacing: -.035em;
  }
  .hero2__title-line { white-space: normal; }
  .hero2__lead { font-size: 14px; line-height: 1.5; }
  .hero2__benefits {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .hero2__benefits li {
    min-height: 54px;
    padding: 8px 9px;
    gap: 8px;
    border: 0;
    background: #f4f3f1;
    font-size: 12px;
    line-height: 1.25;
  }
  .hero2__benefits li:last-child { grid-column: 1 / -1; min-height: 44px; }
  .hero2__benefit-icon { width: 24px; flex-basis: 24px; font-size: 21px; }
  .hero2__cta {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .hero2__cta .btn {
    width: auto;
    min-height: 44px;
    padding: 11px 12px;
    justify-content: center;
    font-size: 12px;
    text-align: center;
  }
  .hero2__cta .btn:first-child,
  .hero2__cta .btn:last-child { grid-column: 1 / -1; }
  .hero2__down { display: none; }
  .hero2__textures {
    order: 3;
    position: static;
    width: auto;
    margin: 0 14px 24px;
    padding: 13px 12px 10px;
    border-radius: 16px;
  }
  .hero2__textures h2 { margin-bottom: 10px; font-size: 13px; }
  .hero2__texture-list {
    grid-template-columns: repeat(5, 68px);
    gap: 9px;
    padding-bottom: 4px;
  }
  .hero2__texture { gap: 6px; font-size: 10px; }
  .hero2__texture .panel-photo { width: 54px; height: 54px; }

  /* Shared typography and vertical rhythm. */
  .home-page .section { padding: 42px 0; }
  .section__num { font-size: 8px !important; }
  .section__head { gap: 14px; margin-bottom: 26px; }
  .home-products-section .section__head .h2,
  .home-page .evidence-heading h2,
  .home-page .open-village__intro h2,
  .home-page .projects-showcase__header h2,
  .home-page .cta-block h2,
  .projects-showcase__header h2 { font-size: 30px; line-height: 1; }
  .lead,
  .home-products-section .section__head .lead,
  .projects-showcase__header p { font-size: 14px; line-height: 1.5; }

  /* Intro image and facts become a compact two-column module. */
  .home-intro-screen { padding: 24px 14px 44px; }
  .home-intro-layout { gap: 36px; }
  .home-intro-visual {
    width: 100%;
    height: min(70vw, 300px);
    min-height: 0;
    max-height: 300px;
    margin: 0;
  }
  .home-intro-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 6px;
  }
  .home-intro-metrics > div {
    min-height: 72px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .home-intro-metrics > div:last-child { grid-column: 1 / -1; }
  .home-intro-metrics strong { font-size: 20px; }
  .home-intro-metrics span { max-width: none; font-size: 9px; }
  .home-page .home-proof-section { padding: 0; }
  .home-proof { gap: 24px; }
  .home-proof__intro h2 { font-size: 30px; }
  .home-proof__intro p { font-size: 13px; line-height: 1.5; }
  .home-proof__matrix { gap: 5px; overflow: visible; }
  .home-proof__matrix-head { display: none; }
  .home-proof__row {
    min-width: 0;
    grid-template-columns: 54px 1fr;
    gap: 6px 10px;
    padding: 11px 12px;
    font-size: 12px;
  }
  .home-proof__row strong { font-size: 12px; }
  .home-proof__summary {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }
  .home-proof__summary span { padding: 9px 8px 9px 20px; }
  .home-proof__summary span:last-child { grid-column: 1 / -1; }

  /* Product cards stay readable in two columns instead of a long one-card stack. */
  .home-products-section .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .home-products-section .product-card,
  .home-products-section .product-card--partner {
    grid-column: auto;
    min-height: 238px;
    padding: 14px;
    border-radius: 16px;
  }
  .home-products-section .product-card--partner { grid-column: 1 / -1; min-height: 180px; }
  .product-card .badge { padding: 4px 7px; font-size: 8px; }
  .product-card h3 { max-width: 8ch; font-size: 18px; line-height: 1.02; }
  .product-card .arrow-btn { top: 12px; right: 12px; width: 32px; height: 32px; }
  .product-card .specs { max-width: 76%; font-size: 8px; line-height: 1.45; }
  .product-card__media { right: -13%; top: 10%; bottom: 1%; width: 70%; }
  .product-card__media--accessory { right: -3%; top: 28%; bottom: 5%; width: 62%; }
  .product-card__media--clip { right: -6%; top: 32%; width: 69%; }

  /* Expertise: smaller documents and two-column facts/documents. */
  .expertise-section { padding: 44px 0; }
  .expertise-layout { display: block; }
  .expertise-intro h2 { margin: 16px 0 18px; font-size: 34px; line-height: .95; }
  .expertise-intro > p { font-size: 13px; }
  .expertise-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 22px;
    border: 0;
  }
  .expertise-facts > div {
    min-height: 66px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border: 0;
    background: rgba(255,255,255,.07);
  }
  .expertise-facts > div:last-child { grid-column: 1 / -1; }
  .expertise-certificate { margin: 28px 0 0; }
  .expertise-certificate img { width: min(48vw, 190px); max-height: 270px; object-fit: contain; }
  .expertise-certificate span { margin-top: 10px; font-size: 9px; }
  .expertise-events { margin-top: 38px; }
  .expertise-events__head h3 { margin: 9px 0 5px; font-size: 26px; }
  .expertise-events__docs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }
  .expertise-events__docs img { box-shadow: 0 12px 30px rgba(0,0,0,.35); }

  /* Project imagery and footer information use two columns. */
  .projects-showcase__header { margin-bottom: 26px; }
  .projects-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .projects-collage__item,
  .projects-collage__item--center {
    grid-column: auto;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }
  .projects-collage__item span {
    right: 7px;
    bottom: 7px;
    left: 7px;
    padding: 7px 8px;
    border-radius: 7px;
    font-size: 9px;
  }
  .projects-showcase__action { margin-top: 22px; }
  .projects-showcase__action .btn { padding: 12px 18px; font-size: 12px; }
  .home-page .cta-block { padding: 12px 14px 32px; }
  .home-page .cta-block__inner { padding: 24px 18px; border-radius: 18px; }
  .home-page .cta-block p { font-size: 13px; }
  .home-page .cta-block .btn { padding: 12px 16px; font-size: 12px; }
  .dealer-marquee { padding-bottom: 46px; }
  .dealer-marquee__header { margin-bottom: 24px; }
  .dealer-marquee__header h2 { margin-top: 12px; font-size: 26px; }
  .dealer-marquee__group { gap: 22px; padding-right: 22px; }
  .dealer-marquee__group a { width: 150px; height: 62px; }
  .dealer-marquee__group img { max-height: 46px; }

  .home-contact-band { padding: 42px 0; }
  .home-contact-band__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }
  .home-contact-band__title,
  .home-contact-band__address { grid-column: 1 / -1; margin: 0; }
  .home-contact-band__title h2 { margin-top: 10px; font-size: 28px; }
  .home-contact-band__address { font-size: 15px; }
  .home-contact-band__dealers,
  .home-contact-band__links { margin: 0; }

  .footer { padding: 42px 16px 20px; }
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
    padding-bottom: 34px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand h3 { width: 180px; height: 50px; }
  .footer__brand p { max-width: 36ch; font-size: 13px; }
  .footer__col h5 { margin-bottom: 12px; font-size: 9px; }
  .footer__col ul li { margin-bottom: 7px; }
  .footer__col ul a { font-size: 13px; }
  .footer__bottom { font-size: 9px; }

  /* Interior pages inherit the same compact scale. */
  .page-head { padding-top: calc(54px + 34px); }
  .page-head h1,
  .product-info__title,
  .accessories-hero h1 { font-size: clamp(32px, 9vw, 42px); }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .port-card.span-4,
  .port-card.span-5,
  .port-card.span-6,
  .port-card.span-7,
  .port-card.span-8 { grid-column: auto; }
  .port-card__overlay { padding: 12px; }
  .port-card__meta { margin-bottom: 5px; font-size: 8px; }
  .port-card__title { font-size: 16px; }
}
