/* gaz.eg.je / Сугория — corporate industrial, deep violet ground.
   Display: Tektur (geometric industrial), Body: Onest (modern sans).
   Palette derived from sugoria.ru: #1e0a35 → #712c74 → #fff042. */

:root {
  /* OKLCH palette tuned for deep violet ground with high-energy yellow CTA */
  --ink-deep:   oklch(13% 0.10 295);
  --ink:        oklch(18% 0.13 295);
  --ink-mid:    oklch(28% 0.15 300);
  --ink-soft:   oklch(38% 0.16 305);
  --rule:       oklch(36% 0.10 295 / 0.4);
  --rule-soft:  oklch(60% 0.05 295 / 0.18);

  --violet:     oklch(58% 0.22 305);
  --violet-mid: oklch(48% 0.20 305);
  --violet-deep:oklch(34% 0.16 300);

  --paper:      oklch(96% 0.012 95);
  --paper-soft: oklch(86% 0.04 95);
  --paper-mute: oklch(72% 0.03 295);

  --yellow:     oklch(92% 0.18 95);
  --yellow-deep:oklch(82% 0.18 92);

  --green:      oklch(72% 0.16 145);

  /* 4pt scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  --display: "Tektur", "Times New Roman", serif;
  --body: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink-deep);
  color: var(--paper);
  font-family: var(--body);
  font-feature-settings: "ss01", "tnum", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--yellow); color: var(--ink-deep); }

/* ================== TOP NAV ================== */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(10% 0.08 295);
  border-bottom: 1px solid oklch(50% 0.10 295 / 0.45);
}
.topnav__row {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 18px var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 16px oklch(92% 0.18 95 / 0.6);
}
.brand b {
  color: var(--paper-mute);
  font-weight: 500;
  font-size: 11px;
  font-family: var(--body);
  letter-spacing: 0.22em;
  border-left: 1px solid oklch(60% 0.05 295 / 0.4);
  padding-left: 12px;
}
.topnav__links {
  display: flex;
  gap: var(--s-6);
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.topnav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--paper);
  white-space: nowrap;
  transition: color 160ms;
  position: relative;
  padding: 4px 0;
}
.topnav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms;
}
.topnav__links a:hover { color: var(--yellow); }
.topnav__links a:hover::after { transform: scaleX(1); }

.topnav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--yellow);
  color: var(--ink-deep);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.005em;
  border-radius: 4px;
  white-space: nowrap;
  transition: transform 160ms, box-shadow 200ms, background 200ms;
  border: 2px solid var(--yellow);
}
.topnav__cta::before {
  content: "✆";
  font-size: 16px;
  display: inline-block;
  transform: scaleX(-1);
}
.topnav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px oklch(92% 0.18 95 / 0.35); }

@media (max-width: 1100px) {
  .topnav__links { gap: var(--s-5); }
}
@media (max-width: 880px) {
  .topnav__links { display: none; }
  .topnav__row { padding: 14px var(--s-4); gap: var(--s-3); }
  .brand b { display: none; }
}

/* ================== HERO ================== */
.hero {
  position: relative;
  padding: var(--s-9) var(--s-5) var(--s-9);
  overflow: hidden;
  background:
    radial-gradient(at 80% 20%, oklch(48% 0.22 305 / 0.35), transparent 55%),
    radial-gradient(at 0% 80%, oklch(34% 0.16 300 / 0.4), transparent 60%),
    var(--ink-deep);
  border-bottom: 1px solid var(--rule);
}
.hero::before {
  /* engineering grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, oklch(60% 0.05 295 / 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(60% 0.05 295 / 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}
.hero__inner {
  max-width: var(--shell);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: var(--s-5);
}
.hero__badge i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
  text-transform: uppercase;
}
.hero__title em {
  font-style: normal;
  color: var(--yellow);
}
.hero__lede {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--paper-soft);
  max-width: 60ch;
  line-height: 1.55;
  margin: 0 0 var(--s-6);
}
.hero__ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: transform 160ms, background 160ms, box-shadow 200ms, border-color 160ms;
  letter-spacing: 0.005em;
  cursor: pointer;
}
.btn--primary { background: var(--yellow); color: var(--ink-deep); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px oklch(92% 0.18 95 / 0.2); }
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--rule); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }

/* hero stats panel */
.hero__stats {
  background: oklch(18% 0.13 295 / 0.7);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: var(--s-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stat {
  padding: var(--s-4);
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.stat:nth-child(2n) { border-right: none; }
.stat:nth-child(n+3) { border-bottom: none; }
.stat__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--yellow);
  margin: 0;
}
.stat__num span { color: var(--paper); font-size: 0.55em; margin-left: 6px; }
.stat__label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .hero { padding: var(--s-7) var(--s-4); }
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* ================== SECTION SHELL ================== */
section.block {
  position: relative;
  padding: var(--s-10) var(--s-5) var(--s-9);
  background: var(--ink-deep);
}
section.block.alt {
  background: oklch(11% 0.09 295);
}
section.block + section.block {
  border-top: 2px solid oklch(50% 0.10 295 / 0.5);
}
section.block::before {
  content: attr(data-num);
  position: absolute;
  top: var(--s-3);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(180px, 22vw, 360px);
  line-height: 1;
  color: oklch(50% 0.12 305 / 0.05);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 0;
}
.block__inner {
  max-width: var(--shell);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: var(--s-4);
}
.section-tag::before {
  content: "";
  width: 36px; height: 2px;
  background: var(--yellow);
}
.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 var(--s-5);
  max-width: 22ch;
  color: var(--paper);
}
.section-lede {
  font-size: 17px;
  color: var(--paper-soft);
  max-width: 68ch;
  line-height: 1.6;
  margin: 0 0 var(--s-7);
}

/* ================== SERVICES GRID ================== */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.service {
  padding: var(--s-7) var(--s-6);
  background: oklch(18% 0.13 295);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 200ms;
}
.service:nth-child(2n) { border-right: none; }
.service:nth-child(n+3) { border-bottom: none; }
.service:hover { background: oklch(22% 0.16 300); }
.service__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: var(--yellow);
  letter-spacing: 0.16em;
  margin-bottom: var(--s-3);
}
.service__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 var(--s-3);
  line-height: 1.05;
}
.service__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper-soft);
  margin: 0 0 var(--s-5);
  max-width: 50ch;
}
.service__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--paper-soft);
}
.service__list li::before {
  content: "→";
  color: var(--yellow);
  margin-right: 10px;
  font-weight: 700;
}
.service__cta {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--yellow);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
}

@media (max-width: 880px) {
  .services { grid-template-columns: 1fr; }
  .service { border-right: none; }
  .service:nth-child(n) { border-bottom: 1px solid var(--rule); }
  .service:last-child { border-bottom: none; }
}

/* ================== AGZS NETWORK ================== */
.network__group {
  border-top: 1px solid var(--rule);
  padding: var(--s-6) 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--s-6);
  align-items: start;
}
.network__group:first-of-type { border-top: 1px solid var(--paper); }
.network__city {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0;
}
.network__city span {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--paper-mute);
  margin-top: 4px;
}
.network__stations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-3);
}
.station {
  background: oklch(18% 0.13 295 / 0.6);
  border: 1px solid var(--rule);
  padding: var(--s-4);
  border-radius: 4px;
  position: relative;
}
.station__addr {
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
  margin: 0 0 8px;
}
.station__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.station__feats li {
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  color: var(--paper-soft);
}
.station__feats li.acc {
  border-color: var(--yellow);
  color: var(--yellow);
}

@media (max-width: 880px) {
  .network__group { grid-template-columns: 1fr; gap: var(--s-3); }
}

/* ================== STATS BAND ================== */
.statband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.statband .stat {
  background: oklch(18% 0.13 295);
  padding: var(--s-6);
  border-right: 1px solid var(--rule);
  border-bottom: none;
}
.statband .stat:last-child { border-right: none; }
@media (max-width: 880px) {
  .statband { grid-template-columns: 1fr 1fr; }
  .statband .stat:nth-child(2n) { border-right: none; }
  .statband .stat:nth-child(n+3) { border-top: 1px solid var(--rule); }
}

/* ================== TIMELINE ================== */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s-5);
}
.timeline__year {
  font-family: var(--display);
  font-weight: 600;
  font-size: 36px;
  color: var(--yellow);
  line-height: 1;
  position: sticky;
  top: 100px;
}
.timeline__items {
  display: flex;
  flex-direction: column;
}
.timeline__item {
  border-top: 1px solid var(--rule);
  padding: var(--s-5) 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-5);
  align-items: baseline;
}
.timeline__item:last-child { border-bottom: 1px solid var(--rule); }
.timeline__item time {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.timeline__item p {
  margin: 0;
  font-size: 15px;
  color: var(--paper-soft);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline__year { position: static; }
  .timeline__item { grid-template-columns: 60px 1fr; }
}

/* ================== LOYALTY ================== */
.loyalty {
  background: linear-gradient(135deg, var(--violet-deep), var(--ink));
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: var(--s-7);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-7);
  align-items: center;
}
.loyalty__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-3);
  line-height: 0.98;
}
.loyalty__title em { font-style: normal; color: var(--yellow); }
.loyalty__lede { font-size: 14px; color: var(--paper-soft); margin: 0; line-height: 1.55; }
.loyalty__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
}
.tier {
  background: oklch(15% 0.11 295);
  border: 1px solid var(--rule);
  padding: var(--s-4);
  border-radius: 4px;
  text-align: center;
}
.tier__pct {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--yellow);
  line-height: 1;
}
.tier__label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper-mute); margin-top: 6px; }

@media (max-width: 880px) {
  .loyalty { grid-template-columns: 1fr; padding: var(--s-5); }
}

/* ================== CONTACTS — new ================== */

.phone-hero {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-5);
  align-items: center;
  padding: var(--s-7) var(--s-6);
  margin: 0 0 var(--s-6);
  background: linear-gradient(95deg, oklch(34% 0.16 300), oklch(48% 0.20 305) 60%, oklch(34% 0.16 300));
  border: 2px solid var(--yellow);
  border-radius: 6px;
  position: relative;
  transition: transform 200ms, box-shadow 250ms;
  overflow: hidden;
}
.phone-hero::before {
  content: "✆";
  position: absolute;
  font-size: clamp(180px, 30vw, 360px);
  right: -30px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  color: oklch(92% 0.18 95 / 0.06);
  pointer-events: none;
  font-family: var(--display);
}
.phone-hero:hover { transform: translateY(-2px); box-shadow: 0 16px 40px oklch(92% 0.18 95 / 0.18); }
.phone-hero__pre {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  white-space: nowrap;
}
.phone-hero__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.6vw, 78px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-align: center;
}
.phone-hero__hours {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-soft);
  white-space: nowrap;
}
@media (max-width: 880px) {
  .phone-hero { grid-template-columns: 1fr; text-align: center; padding: var(--s-5); gap: var(--s-3); }
  .phone-hero__hours { white-space: normal; }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
.cc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-4);
  min-height: 220px;
  background: oklch(15% 0.11 295);
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: border-color 200ms, transform 200ms, background 200ms;
  position: relative;
  overflow: hidden;
}
a.cc:hover { transform: translateY(-2px); border-color: var(--yellow); background: oklch(20% 0.14 300); }
.cc__label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--paper-mute); font-weight: 600; }
.cc__value { font-family: var(--display); font-weight: 700; font-size: 22px; line-height: 1.05; letter-spacing: -0.01em; color: var(--paper); }
.cc__cta { font-size: 12px; letter-spacing: 0.04em; color: var(--yellow); font-weight: 600; }
.cc__cta--mute { color: var(--paper-mute); }
.cc--photo {
  background-size: cover !important;
  background-position: center !important;
  border: 1px solid var(--yellow);
  position: relative;
  isolation: isolate;
}
.cc--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(13% 0.10 295 / 0.65), oklch(13% 0.10 295 / 0.92));
  z-index: -1;
}
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ================== FOOTER ================== */
footer.foot {
  background: var(--ink-deep);
  padding: var(--s-7) var(--s-5) var(--s-5);
}
.foot__inner { max-width: var(--shell); margin: 0 auto; display: flex; flex-wrap: wrap; gap: var(--s-5); align-items: center; justify-content: space-between; font-size: 12px; color: var(--paper-mute); letter-spacing: 0.04em; }
.foot__inner a:hover { color: var(--yellow); }

/* ================== UTIL ================== */
.scroll-anchor { scroll-margin-top: 80px; }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; scroll-behavior: auto; }
}

/* ================== IMAGES & MEDIA ================== */

/* hero background photo */
.hero { isolation: isolate; }
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.75) brightness(0.65);
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, oklch(13% 0.10 295 / 0.92) 30%, oklch(13% 0.10 295 / 0.45) 70%, oklch(18% 0.13 295 / 0.7)),
    radial-gradient(at 80% 20%, oklch(48% 0.22 305 / 0.35), transparent 55%);
}

/* big image card — full width banner-style image at the start of a section */
.media-banner {
  margin: 0 0 var(--s-7);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--rule);
  aspect-ratio: 21 / 7;
  background: var(--ink);
}
.media-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.95);
  transition: filter 400ms;
}
.media-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(13% 0.10 295 / 0.6));
  pointer-events: none;
}
.media-banner:hover img { filter: saturate(1.1) brightness(1); }

/* photo strip — 3 images side by side */
.media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
  margin: 0 0 var(--s-7);
}
.media-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--rule);
  filter: saturate(1) brightness(0.95);
  transition: filter 200ms, transform 300ms;
}
.media-strip img:hover { filter: saturate(1.15); transform: translateY(-2px); }
@media (max-width: 880px) {
  .media-strip { grid-template-columns: 1fr 1fr; }
  .media-strip img { height: 160px; }
  .media-strip img:nth-child(n+3) { display: none; }
}

/* product cutouts row — for cylinder PNGs on transparent bg */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin: var(--s-6) 0 var(--s-7);
}
.product {
  background: oklch(15% 0.11 295);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: var(--s-5) var(--s-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  text-align: center;
  transition: border-color 200ms, background 200ms;
}
.product:hover { border-color: var(--yellow); background: oklch(18% 0.13 295); }
.product img {
  height: 180px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px oklch(13% 0.10 295 / 0.5));
}
.product__name { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; color: var(--paper); margin: 0; line-height: 1.2; }
.product__cap { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); }
@media (max-width: 880px) {
  .products { grid-template-columns: 1fr 1fr; }
  .product img { height: 140px; }
}

/* team portrait grid */
.team {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--s-2);
  margin-top: var(--s-7);
}
.team img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--rule);
  filter: saturate(0.95);
  transition: filter 250ms, transform 300ms;
}
.team img:hover { filter: saturate(1.1) brightness(1); transform: translateY(-2px); }
@media (max-width: 880px) {
  .team { grid-template-columns: repeat(4, 1fr); gap: 6px; }
}

/* split image+text block */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-7);
  align-items: center;
  margin: var(--s-7) 0;
}
.split--reverse { grid-template-columns: 1fr 1.1fr; }
.split__photo {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  position: relative;
}
.split__photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1) brightness(0.95);
}
.split__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, oklch(13% 0.10 295 / 0.4));
  pointer-events: none;
}
@media (max-width: 880px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: var(--s-5); }
  .split__photo img { min-height: 240px; }
}

/* contacts photo aside */
.contacts__photo {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  margin-top: var(--s-6);
}
.contacts__photo img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; filter: saturate(0.85); }

/* ================== STATION → YA-MAPS LINK ================== */
.station {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  transition: border-color 200ms, transform 200ms;
}
.station:hover { border-color: var(--yellow); transform: translateY(-1px); }
.station__map {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding-top: 6px;
}
.station__map::before {
  content: "📍";
  font-size: 12px;
  filter: hue-rotate(220deg) saturate(2) brightness(1.2);
}
.station__map:hover { color: var(--paper); }

/* ================== REGION MAP ================== */
.regionmap {
  position: relative;
  margin: 0 0 var(--s-7);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: linear-gradient(135deg, oklch(13% 0.10 295), oklch(20% 0.14 300));
  padding: var(--s-5);
  display: grid;
  place-items: center;
}
.regionmap__img {
  max-width: 720px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 28px oklch(13% 0.10 295 / 0.6));
}
.regionmap svg { width: 100%; height: 100%; display: block; }
.regionmap__title {
  position: absolute;
  top: var(--s-4);
  left: var(--s-5);
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
}
.regionmap__legend {
  position: absolute;
  top: var(--s-4);
  right: var(--s-5);
  z-index: 2;
  display: flex;
  gap: var(--s-3);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-soft);
}
.regionmap__legend i { display: inline-block; width: 10px; height: 10px; border-radius: 50%; vertical-align: -1px; margin-right: 6px; }
.regionmap__legend i.acc { background: var(--yellow); }
.regionmap__legend i.std { background: oklch(72% 0.16 305); }

.pin {
  cursor: pointer;
  transition: filter 200ms, transform 200ms;
  transform-origin: center;
  transform-box: fill-box;
}
.pin:hover { filter: brightness(1.3); transform: scale(1.4); }
.pin-label {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  fill: var(--paper);
  pointer-events: none;
}
.pin-count {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  fill: var(--ink-deep);
  pointer-events: none;
}

/* ================== LEAD FORM ================== */
.lead {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  background: oklch(15% 0.11 295);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: var(--s-7) var(--s-6);
  position: relative;
}
.lead__theme {
  border: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lead__theme legend {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 600;
  margin-bottom: var(--s-3);
  padding: 0;
  width: 100%;
}
.lead__theme label {
  cursor: pointer;
  position: relative;
}
.lead__theme input { position: absolute; opacity: 0; pointer-events: none; }
.lead__theme span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-size: 13px;
  color: var(--paper-soft);
  transition: all 160ms;
  background: var(--ink-deep);
}
.lead__theme label:hover span { border-color: var(--paper-mute); color: var(--paper); }
.lead__theme input:checked + span {
  background: var(--yellow);
  color: var(--ink-deep);
  border-color: var(--yellow);
  font-weight: 600;
}
.lead__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.lead__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lead__field--full { grid-column: 1 / -1; }
.lead__field span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 600;
}
.lead__field span em {
  color: var(--yellow);
  font-style: normal;
  margin-left: 2px;
}
.lead__field input,
.lead__field textarea {
  appearance: none;
  background: var(--ink-deep);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 14px 16px;
  font: 500 15px/1.5 var(--body);
  color: var(--paper);
  outline: none;
  transition: border-color 160ms, background 160ms;
  font-family: inherit;
  resize: vertical;
}
.lead__field input::placeholder,
.lead__field textarea::placeholder { color: oklch(50% 0.04 295); }
.lead__field input:focus,
.lead__field textarea:focus { border-color: var(--yellow); background: oklch(20% 0.13 300); }
.lead__bottom {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
  margin-top: var(--s-3);
}
.lead__note {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--paper-mute);
  max-width: 50ch;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .lead { padding: var(--s-5); }
  .lead__row { grid-template-columns: 1fr; }
}

/* ================== COMPARE BLOCK ================== */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}
.compare__col {
  background: oklch(15% 0.11 295);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: var(--s-6);
}
.compare__col--accent {
  border-color: var(--yellow);
  background: linear-gradient(180deg, oklch(20% 0.13 300), oklch(15% 0.11 295));
}
.compare__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 var(--s-4);
}
.compare__col--accent .compare__name { color: var(--yellow); }
.compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--paper-soft);
  line-height: 1.4;
}
.compare__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: baseline;
}
.compare__list .good { color: var(--yellow); font-weight: 700; font-size: 20px; line-height: 1; }
.compare__list .bad { color: oklch(60% 0.18 25); font-weight: 700; font-size: 20px; line-height: 1; }
.compare__list .neutral { color: var(--paper-mute); font-weight: 700; font-size: 20px; line-height: 1; }
.compare__divider {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  color: var(--yellow);
  align-self: center;
  letter-spacing: 0.04em;
  padding: 0 var(--s-3);
}
@media (max-width: 880px) {
  .compare { grid-template-columns: 1fr; }
  .compare__divider { padding: 0; text-align: center; }
}

/* product specs (dl inside .product) */
.products--detailed .product { padding-bottom: 0; }
.product__specs {
  margin: var(--s-3) 0 0;
  padding: var(--s-3) 0 var(--s-2);
  border-top: 1px solid var(--rule);
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: 11px;
}
.product__specs dt { color: var(--paper-mute); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.product__specs dd { margin: 0; color: var(--paper); font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }
