:root {
  --ink: #0c0a07;
  --coal: #16120c;
  --panel: #1e1810;
  --line: rgba(212, 160, 23, 0.22);
  --orange: #e25a12;
  --orange-2: #ff7a2e;
  --gold: #d4a017;
  --gold-2: #f0c14b;
  --brown: #6b3e1f;
  --sand: #e8d5b5;
  --paper: #f4ead8;
  --muted: #9a8b74;
  --ok: #c6f07a;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --r: 18px;
  --max: 1240px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--sand);
  background: var(--ink);
  min-height: 100vh;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input { font: inherit; color: inherit; }
.gsi-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
main { position: relative; z-index: 1; }
.gsi-wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.gsi-top { position: sticky; top: 0; z-index: 40; background: rgba(12,10,7,.86); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.gsi-top__bar {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}
.gsi-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.gsi-brand__logo {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 4px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}
.gsi-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .02em;
  line-height: 1.25;
  max-width: 280px;
}
.gsi-brand em { display: block; font-style: normal; color: var(--gold-2); font-size: 11px; margin-top: 2px; }
.gsi-nav { display: flex; gap: 18px; margin-left: auto; font-size: 14px; font-weight: 600; }
.gsi-nav a { text-decoration: none; color: var(--muted); }
.gsi-nav a.is-active, .gsi-nav a:hover { color: var(--gold-2); }
.gsi-top__cta { display: flex; align-items: center; gap: 12px; }
.gsi-phone { font-family: var(--mono); font-size: 13px; text-decoration: none; color: var(--paper); white-space: nowrap; }
.gsi-theme {
  min-height: 42px; padding: 0 12px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; color: var(--gold);
  font-weight: 700; cursor: pointer; white-space: nowrap;
}
.gsi-brand strong { color: var(--gold); }
.gsi-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 18px; border-radius: 999px; border: 0;
  text-decoration: none; font-weight: 800; cursor: pointer;
}
.gsi-btn--gold { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1a1206; }
.gsi-btn--orange { background: linear-gradient(180deg, var(--orange-2), var(--orange)); color: #fff; }
.gsi-btn--ghost { background: transparent; border: 1px solid var(--line); color: var(--sand); }
.gsi-burger { display: none; width: 42px; height: 42px; background: none; border: 1px solid var(--line); border-radius: 10px; }
.gsi-burger span { display: block; height: 2px; margin: 5px 10px; background: var(--gold); }

.gsi-hero {
  position: relative;
  z-index: 1;
  padding: 56px 0 28px;
  overflow: hidden;
}
.gsi-hero::before {
  content: "";
  position: absolute;
  inset: -20% 20% auto -10%;
  height: 70%;
  background:
    radial-gradient(closest-side, rgba(226,90,18,.28), transparent 70%),
    conic-gradient(from 210deg at 40% 40%, transparent, rgba(212,160,23,.16), transparent 40%);
  filter: blur(8px);
}
.gsi-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}
.gsi-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.gsi-hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -.03em;
}
.gsi-hero h1 span { color: var(--orange-2); }
.gsi-leadline { font-size: 18px; line-height: 1.55; color: var(--sand); max-width: 560px; }
.gsi-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 8px; }
.gsi-hero__photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #120e0a;
  min-height: 420px;
  padding: 0;
}
.gsi-hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  object-position: 50% 58%;
  background: #120e0a;
}
.gsi-hero__badge {
  position: absolute; left: 16px; bottom: 16px;
  padding: 10px 14px; border-radius: 14px;
  background: rgba(12,10,7,.78); border: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px;
}

.gsi-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 8px 0 48px;
  position: relative;
  z-index: 1;
}
.gsi-stat {
  min-height: 148px;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.gsi-stat b { display: block; font-family: var(--display); font-size: 34px; color: #fff; }
.gsi-stat span { color: var(--muted); font-size: 13px; }
.gsi-stat--hex { background: var(--coal) repeating-linear-gradient(60deg, transparent 0 12px, rgba(226,90,18,.08) 12px 13px), radial-gradient(circle at 80% 0, rgba(226,90,18,.25), transparent 45%); }
.gsi-stat--topo { background: var(--coal); background-image: radial-gradient(transparent 55%, rgba(12,10,7,.5)), repeating-radial-gradient(circle at 20% 80%, transparent 0 10px, rgba(212,160,23,.16) 10px 11px); }
.gsi-stat--rust { background: linear-gradient(135deg, #3a1d0c, #120c08 55%, #6b3e1f); }
.gsi-stat--radar::before { content: ""; position: absolute; inset: -30%; background: repeating-radial-gradient(circle at 80% 20%, transparent 0 18px, rgba(198,240,122,.12) 18px 19px); }
.gsi-stat--radar { background: #10140c; }

.gsi-section { position: relative; z-index: 1; padding: 28px 0 64px; }
.gsi-section h2, .gsi-h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 40px);
  margin: 0 0 10px;
}
.gsi-sub { color: var(--muted); max-width: 720px; margin: 0 0 24px; }

.gsi-hud {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #070805;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.gsi-hud__bar {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 10px 14px;
  font-family: var(--mono); font-size: 12px;
  background: linear-gradient(90deg, #1a1208, #0b0d0a);
  border-bottom: 1px solid var(--line);
  color: var(--gold-2);
}
.gsi-hud__bar button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold-2);
  border-radius: 999px;
  padding: 4px 8px;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
}
.gsi-hud__live { width: 8px; height: 8px; border-radius: 50%; background: #c6f07a; box-shadow: 0 0 10px #c6f07a; }
.gsi-map-copy { margin-left: auto; opacity: .55; font-size: 10px; letter-spacing: .04em; }
.gsi-map-wrap { display: grid; grid-template-columns: 280px 1fr; min-height: 560px; }
.gsi-legend { padding: 14px; border-right: 1px solid var(--line); background: #0d0c09; overflow: auto; }
.gsi-legend button {
  width: 100%; display: flex; align-items: center; gap: 10px;
  background: transparent; border: 0; text-align: left; padding: 8px 6px;
  color: var(--sand); cursor: pointer; border-radius: 10px;
}
.gsi-legend button:hover, .gsi-legend button.is-on { background: rgba(226,90,18,.12); }
.gsi-legend i { width: 28px; height: 28px; display: grid; place-items: center; color: var(--gold); }
.gsi-legend i svg { width: 22px; height: 22px; fill: currentColor; }
.gsi-map { min-height: 560px; filter: grayscale(.15) sepia(.25) hue-rotate(-8deg) saturate(1.05) brightness(.92) contrast(1.06); }
.gsi-map.is-light { filter: none; }
.gsi-cluster-wrap { background: none !important; border: 0 !important; }
.gsi-cluster {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 25%, #ff9a4a, #e25a12 55%, #7a2a08);
  border: 2px solid #f0c14b; color: #fff;
  box-shadow: 0 0 18px rgba(226,90,18,.45);
  font-family: var(--mono);
}
.gsi-cluster b { font-size: 16px; line-height: 1; }
.gsi-cluster span { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.gsi-cluster--md { width: 58px; height: 58px; }
.gsi-cluster--lg { width: 66px; height: 66px; }
.gsi-cluster--lg b { font-size: 18px; }
.gsi-map-pin {
  width: 34px; height: 34px; border-radius: 50% 50% 50% 6px; transform: rotate(-45deg);
  background: linear-gradient(180deg, var(--orange-2), #9a3208);
  border: 2px solid #f0c14b; display: grid; place-items: center;
  box-shadow: 0 0 14px rgba(226,90,18,.55);
}
.gsi-map-pin span { transform: rotate(45deg); display: block; width: 18px; height: 18px; color: #1a1206; }
.gsi-map-pin span svg { width: 18px; height: 18px; fill: currentColor; }
.leaflet-popup-content-wrapper { background: #16120c; color: #e8d5b5; border-radius: 14px; border: 1px solid rgba(212,160,23,.3); }
.leaflet-popup-tip { background: #16120c; }
.leaflet-popup-content { margin: 12px 14px; font-family: var(--font); }

.gsi-search {
  display: grid;
  grid-template-columns: 1fr 180px 180px auto;
  gap: 8px;
  margin: 0 0 18px;
}
.gsi-search input, .gsi-search select {
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  min-height: 48px;
}
.gsi-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.gsi-chip {
  border: 1px solid var(--line); background: transparent; color: var(--sand);
  border-radius: 999px; padding: 8px 12px; cursor: pointer; display: inline-flex; gap: 8px; align-items: center;
}
.gsi-chip.is-on, .gsi-chip:hover { border-color: var(--orange); color: #fff; background: rgba(226,90,18,.15); }
.gsi-chip svg { width: 16px; height: 16px; fill: currentColor; }

.gsi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gsi-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.gsi-card__shot {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #120e0a;
}
.gsi-card__shot img,
.gsi-card > img {
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 220px;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.22);
  transform-origin: 50% 55%;
  background: #120e0a;
}
.gsi-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.gsi-card__type { font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.gsi-card__type svg { width: 14px; height: 14px; fill: currentColor; }
.gsi-divicon { background: none !important; border: 0 !important; }
.gsi-legend b { margin-left: auto; font-family: var(--mono); color: var(--gold); }
.gsi-card h3 { margin: 0; font-size: 18px; }
.gsi-card h3 a { color: inherit; text-decoration: none; }
.gsi-card__shot { display: block; }
.gsi-card p { margin: 0; color: var(--muted); font-size: 13px; }
.gsi-card__row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 10px; }
.gsi-price { font-weight: 800; color: #fff; }
.gsi-owner { font-size: 11px; color: var(--muted); }

.gsi-news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gsi-news article {
  background: var(--coal); border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
}
.gsi-news img { width: 100%; height: 160px; object-fit: cover; }
.gsi-news div { padding: 14px; }
.gsi-news time { font-family: var(--mono); font-size: 11px; color: var(--gold); }
.gsi-news h3 { font-size: 16px; margin: 6px 0; }
.gsi-news p { color: var(--muted); font-size: 13px; margin: 0; }
.gsi-news a { text-decoration: none; }

.gsi-phones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gsi-tel {
  min-height: 118px; padding: 16px; border-radius: 18px; text-decoration: none;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line);
}
.gsi-tel strong { font-size: 18px; }
.gsi-tel em { font-style: normal; color: var(--gold); font-size: 12px; }
.gsi-tel span { font-family: var(--mono); font-size: 14px; }
.gsi-tel--0 { background: linear-gradient(160deg, #3d1a08, #120c08); }
.gsi-tel--1 { background: repeating-linear-gradient(-18deg, #1a140c 0 10px, #24180e 10px 12px); }
.gsi-tel--2 { background: radial-gradient(circle at 90% 10%, rgba(212,160,23,.35), #14100b 50%); }
.gsi-tel--3 { background: #10140c repeating-radial-gradient(circle at 0 100%, rgba(198,240,122,.08) 0 12px, transparent 12px 24px); }
.gsi-tel--4 { background: linear-gradient(45deg, #2a160c 25%, #120c08 25% 50%, #2a160c 50% 75%, #120c08 75%); background-size: 22px 22px; }

.gsi-jobs {
  position: relative; z-index: 1; padding: 42px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(212,160,23,.22), transparent 40%),
    linear-gradient(135deg, #2a1608, #0c0a07 55%);
}
.gsi-jobs__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center; }
.gsi-jobs h2 { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); margin: 0 0 12px; }
.gsi-jobs p { color: var(--muted); margin: 0; max-width: 640px; }
.gsi-jobs__call {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 24px; border-radius: 22px; text-decoration: none;
  background: linear-gradient(180deg, #f0c14b, #d4a017); color: #1a1206;
  border: 1px solid rgba(255,255,255,.2);
}
.gsi-jobs__call span { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.gsi-jobs__call strong { font-size: 28px; letter-spacing: -.02em; }
.gsi-jobs__call em { font-style: normal; font-size: 13px; opacity: .8; }

.gsi-lead { position: relative; z-index: 1; padding: 48px 0; background: linear-gradient(180deg, #1a120c, #0c0a07); border-top: 1px solid var(--line); }
.gsi-lead__grid { display: grid; grid-template-columns: 1fr .9fr; gap: 28px; }
.gsi-form { display: grid; gap: 10px; background: var(--panel); padding: 18px; border-radius: 20px; border: 1px solid var(--line); }
.gsi-form label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
.gsi-form input[type="text"], .gsi-form input:not([type="checkbox"]) {
  background: #120e0a; border: 1px solid var(--line); border-radius: 12px; padding: 12px;
}
.gsi-check { display: flex !important; align-items: flex-start; gap: 8px; }
.gsi-form__ok { color: var(--ok); margin: 0; }
.gsi-foot { position: relative; z-index: 1; padding: 28px 0 40px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.gsi-foot__grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 20px; }
.gsi-foot a { color: var(--sand); text-decoration: none; margin-right: 12px; }
.gsi-foot__legal { grid-column: 1 / -1; }

.gsi-empty { padding: 40px; text-align: center; color: var(--muted); }

@media (max-width: 980px) {
  .gsi-nav { display: none; }
  .gsi-nav.is-open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: #120e0a; padding: 16px; border-bottom: 1px solid var(--line);
  }
  .gsi-burger { display: block; }
  .gsi-phone { display: none; }
  .gsi-hero__grid, .gsi-map-wrap, .gsi-lead__grid, .gsi-foot__grid, .gsi-jobs__grid { grid-template-columns: 1fr; }
  .gsi-stats, .gsi-grid, .gsi-news, .gsi-phones { grid-template-columns: 1fr 1fr; }
  .gsi-search { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .gsi-stats, .gsi-grid, .gsi-news, .gsi-phones { grid-template-columns: 1fr; }
  .gsi-hero__photo { min-height: 260px; }
  .gsi-card__shot img,
  .gsi-card > img { min-height: 180px; }
}

html[data-theme="light"] {
  --ink: #ffffff;
  --coal: #f3f3f3;
  --panel: #ffffff;
  --line: rgba(0, 0, 0, 0.14);
  --sand: #111111;
  --paper: #111111;
  --muted: #333333;
  --ok: #2f6b12;
}
html[data-theme="light"] body { background: #fff; color: #111; }
html[data-theme="light"] .gsi-noise { opacity: .04; }
html[data-theme="light"] .gsi-top { background: rgba(255,255,255,.92); }
html[data-theme="light"] .gsi-nav a { color: #222; }
html[data-theme="light"] .gsi-nav a.is-active,
html[data-theme="light"] .gsi-nav a:hover { color: #b8860b; }
html[data-theme="light"] .gsi-brand strong { color: #c9a227; }
html[data-theme="light"] .gsi-brand em { color: #111; }
html[data-theme="light"] .gsi-card img,
html[data-theme="light"] .gsi-card__shot,
html[data-theme="light"] .gsi-card__shot img,
html[data-theme="light"] .gsi-hero__photo,
html[data-theme="light"] .gsi-hero__photo img { background: #ece8df; }
html[data-theme="light"] .gsi-kicker,
html[data-theme="light"] .gsi-card__type,
html[data-theme="light"] .gsi-news time,
html[data-theme="light"] .gsi-tel em { color: #b8860b; }
html[data-theme="light"] .gsi-hero h1 span { color: #b8860b; }
html[data-theme="light"] .gsi-stat b,
html[data-theme="light"] .gsi-price,
html[data-theme="light"] .gsi-card h3 { color: #111; }
html[data-theme="light"] .gsi-stat { background: #fff; }
html[data-theme="light"] .gsi-stat--hex,
html[data-theme="light"] .gsi-stat--topo,
html[data-theme="light"] .gsi-stat--rust,
html[data-theme="light"] .gsi-stat--radar { background: #fff; color: #111; }
html[data-theme="light"] .gsi-hud,
html[data-theme="light"] .gsi-hud__bar,
html[data-theme="light"] .gsi-legend { background: #fff; color: #111; }
html[data-theme="light"] .gsi-hud__bar,
html[data-theme="light"] .gsi-hud__bar button { color: #b8860b; }
html[data-theme="light"] .gsi-legend button { color: #111; }
html[data-theme="light"] .gsi-card,
html[data-theme="light"] .gsi-news article,
html[data-theme="light"] .gsi-form { background: #fff; border-color: rgba(0,0,0,.14); }
html[data-theme="light"] .gsi-search input,
html[data-theme="light"] .gsi-search select,
html[data-theme="light"] .gsi-form input:not([type="checkbox"]) {
  background: #fff; color: #111; border-color: rgba(0,0,0,.2);
}
html[data-theme="light"] .gsi-chip { color: #111; background: #fff; }
html[data-theme="light"] .gsi-chip.is-on { color: #111; background: #f4e7c2; border-color: #c9a227; }
html[data-theme="light"] .gsi-lead { background: #fff; }
html[data-theme="light"] .gsi-jobs { background: #fff; }
html[data-theme="light"] .gsi-jobs p { color: #333; }
html[data-theme="light"] .gsi-foot a { color: #111; }
html[data-theme="light"] .gsi-tel { background: #fff; color: #111; }
html[data-theme="light"] .gsi-tel--0,
html[data-theme="light"] .gsi-tel--1,
html[data-theme="light"] .gsi-tel--2,
html[data-theme="light"] .gsi-tel--3,
html[data-theme="light"] .gsi-tel--4 { background: #fff; }
html[data-theme="light"] .gsi-hero__photo { background: #f6f4ef; }
html[data-theme="light"] .gsi-phone { color: #111; }
html[data-theme="light"] .gsi-hero__badge { background: rgba(255,255,255,.9); color: #111; }
html[data-theme="light"] .gsi-btn--ghost { color: #111; border-color: #111; }
html[data-theme="light"] .leaflet-popup-content-wrapper,
html[data-theme="light"] .leaflet-popup-tip { background: #fff; color: #111; }
html[data-theme="light"] .gsi-nav.is-open { background: #fff; }
html[data-theme="light"] .gsi-burger span { background: #111; }
html[data-theme="light"] .gsi-req,
html[data-theme="light"] .gsi-contact-strip a,
html[data-theme="light"] .gsi-contact-strip div { background: #fff; color: #111; }
html[data-theme="light"] .gsi-req dt { color: #b8860b; }
html[data-theme="light"] .gsi-req dd,
html[data-theme="light"] .gsi-contact-strip strong { color: #111; }

.gsi-geo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(226, 90, 18, .14);
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.gsi-geo[hidden] { display: none; }
.gsi-geo b { color: var(--gold-2); }
.gsi-geo button {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
html[data-theme="light"] .gsi-geo { background: #fff4e6; color: #111; }
html[data-theme="light"] .gsi-geo b { color: #b8860b; }

.gsi-req-page { padding-top: 36px; }
.gsi-unit { padding-top: 36px; }
.gsi-unit__grid { display: grid; grid-template-columns: 1.4fr .7fr; gap: 20px; margin: 0 0 32px; }
.gsi-unit__photo { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: #120e0a; }
.gsi-unit__photo img { width: 100%; height: auto; display: block; }
html[data-theme="light"] .gsi-unit__photo { background: #ece8df; }
.gsi-unit__aside {
  background: var(--panel); border: 1px solid var(--line); border-radius: 22px;
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
}
.gsi-unit__engine { color: var(--muted); font-size: 14px; }
.gsi-unit__tables { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 0 0 28px; }
.gsi-spec { width: 100%; border-collapse: collapse; }
.gsi-spec th, .gsi-spec td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
.gsi-spec th { width: 46%; color: var(--muted); font-weight: 600; }
.gsi-draw {
  border: 1px solid var(--line); border-radius: 20px; padding: 16px;
  color: var(--gold); background: var(--panel); margin: 0 0 28px;
}
.gsi-draw svg { width: 100%; height: auto; display: block; }
.gsi-chart { display: grid; gap: 8px; margin: 0 0 28px; }
.gsi-chart__row { display: grid; grid-template-columns: 64px 1fr 72px; gap: 10px; align-items: center; }
.gsi-chart__row b {
  display: block; height: 12px; width: var(--w);
  background: linear-gradient(90deg, var(--orange-2), var(--gold));
  border-radius: 99px;
}
.gsi-same { display: flex; flex-wrap: wrap; gap: 8px; }
.gsi-same a {
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px;
  text-decoration: none; color: var(--sand);
}
html[data-theme="light"] .gsi-same a,
html[data-theme="light"] .gsi-spec th { color: #333; }
@media (max-width: 900px) {
  .gsi-unit__grid, .gsi-unit__tables { grid-template-columns: 1fr; }
}
.gsi-contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 12px;
  margin: 0 0 28px;
}
.gsi-contact-strip a,
.gsi-contact-strip div {
  display: block;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  min-width: 0;
}
.gsi-contact-strip em {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gsi-contact-strip strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  color: var(--paper);
  word-break: break-word;
}
.gsi-req {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.gsi-req__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.gsi-req__head img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
}
.gsi-req__head h2 { margin: 0; font-size: 22px; }
.gsi-req__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin: 0;
}
.gsi-req__grid div { min-width: 0; }
.gsi-req dt {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.gsi-req dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--paper);
}
@media (max-width: 900px) {
  .gsi-contact-strip,
  .gsi-req__grid { grid-template-columns: 1fr; }
}
