:root {
  --bg: #08080a;
  --bg-2: #101014;
  --bg-3: #16161c;
  --gold: #d82f2f;
  --gold-2: #ff6a6a;
  --gold-dim: rgba(216, 47, 47, 0.16);
  --cyan: #e8e8ec;
  --cyan-2: #ffffff;
  --cyan-dim: rgba(232, 232, 236, 0.12);
  --sand: #e6e6ea;
  --muted: #a8a8b3;
  --line: rgba(216, 47, 47, 0.32);
  --ok: #8fd4a8;
  --danger: #c45c4a;
  --white: #f7f7f9;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 150px; }
html[dir="rtl"] body { font-family: "Manrope", sans-serif; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--sand);
  line-height: 1.6;
}

img { max-width: 100%; }
a { color: var(--gold-2); text-decoration: none; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.display {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1.display {
  font-family: "Oswald", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  background: var(--gold);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.skip-link:focus { top: 12px; }

.section-head h2.display,
.hero-card h2.display {
  color: var(--gold-2);
  letter-spacing: 0.1em;
}

[hidden] { display: none !important; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 10, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  color: var(--white);
}

.mark {
  width: auto;
  height: 102px;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(216, 47, 47, 0.38));
}

.brand-city {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--sand);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lang-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lang-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
select.lang-btn {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold-2);
  border-radius: 999px;
  padding: 7px 28px 7px 12px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-2) 50%), linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.menu-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold-2);
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
}

.btn-gold {
  background: linear-gradient(180deg, #f04a4a, var(--gold));
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--sand);
  border: 1px solid var(--line);
}

.btn-cyan {
  background: linear-gradient(180deg, #ffffff, var(--cyan));
  color: #111;
}

.nav a:hover { color: var(--cyan-2); }

.nav a.nav-portal {
  color: var(--gold-2);
}

.card-action { margin-top: 14px; }

/* File portal */
.portal-hero {
  padding: 48px 0 12px;
  background:
    radial-gradient(520px 240px at 88% 0%, rgba(216, 47, 47, 0.14), transparent 62%),
    radial-gradient(600px 260px at 8% 0%, rgba(216, 47, 47, 0.12), transparent 58%);
}

.portal-hero .lede { margin-bottom: 0; }

.portal-body { padding-top: 28px; }

.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 48px;
}

.portal-form {
  display: grid;
  gap: 8px;
}

.portal-block {
  border: 0;
  margin: 0 0 22px;
  padding: 0;
}

.portal-block legend {
  font-family: "Oswald", sans-serif;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 8px;
}

.field-hint {
  display: block;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.platform-card {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.platform-grid + .hw-group-label {
  margin-top: 18px;
}

.platform-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.platform-card:has(input:checked) {
  border-color: rgba(216, 47, 47, 0.7);
  box-shadow: 0 0 0 1px rgba(216, 47, 47, 0.25);
  background: rgba(216, 47, 47, 0.08);
}

.platform-name {
  color: var(--white);
  font-weight: 800;
}

.platform-desc {
  color: var(--muted);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field-span { grid-column: 1 / -1; }

.portal-form .field input,
.portal-form .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f0d0a;
  color: var(--white);
}

.portal-form .field textarea { min-height: 120px; resize: vertical; }

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  color: var(--sand);
}

.check input {
  margin-top: 3px;
  accent-color: var(--cyan);
}

.check:has(input:checked) {
  border-color: rgba(216, 47, 47, 0.55);
  background: rgba(216, 47, 47, 0.08);
}

.file-status {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.check-confirm {
  margin-top: 0;
}

.dropzone {
  position: relative;
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  padding: 28px 16px;
  border: 1px dashed rgba(216, 47, 47, 0.45);
  border-radius: 16px;
  background: rgba(216, 47, 47, 0.05);
  cursor: pointer;
}

.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone strong { color: var(--white); }
.dropzone span { color: var(--muted); font-size: 13px; }
.dropzone.is-over {
  border-color: var(--cyan);
  background: rgba(216, 47, 47, 0.12);
}

.file-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  color: var(--cyan-2);
  font-size: 13px;
}

.portal-submit { width: 100%; margin-top: 6px; }

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.form-status.is-ok {
  background: var(--cyan-dim);
  color: var(--cyan-2);
}

.form-status.is-err {
  background: rgba(196, 92, 74, 0.16);
  color: #f0b0a4;
}

.need-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.need-list li { margin: 0 0 8px; }
.need-list strong { color: var(--gold-2); }

.portal-aside {
  display: grid;
  gap: 16px;
}

.portal-aside .btn { margin-top: 12px; }

.honeypot {
  position: absolute;
  left: -10000px;
  height: 0;
  overflow: hidden;
}

@media (max-width: 900px) {
  .portal-layout, .platform-grid, .form-grid, .check-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 44px;
  background:
    radial-gradient(520px 280px at 82% 18%, rgba(216, 47, 47, 0.16), transparent 62%),
    radial-gradient(700px 340px at 12% 0%, rgba(216, 47, 47, 0.1), transparent 58%),
    linear-gradient(180deg, #07090d, var(--bg));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(216,47,47,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216,47,47,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 85%);
  pointer-events: none;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.hero-photo {
  margin: 0;
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-photo img.is-active {
  opacity: 1;
}

.coverage-page .checker {
  padding-top: 28px;
  padding-bottom: 48px;
}

.hero-card {
  width: 100%;
  margin-top: -36px;
  background: linear-gradient(180deg, rgba(16, 20, 26, 0.96), rgba(8, 10, 14, 0.96));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(216, 47, 47, 0.08);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.hero-logo {
  margin: 6px 0 10px;
  line-height: 0;
}

.hero-logo img {
  width: min(100%, 760px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(216, 47, 47, 0.42));
}

.portal-mark {
  width: min(100%, 460px);
  height: auto;
  display: block;
  margin: 0 0 18px;
  filter: drop-shadow(0 12px 28px rgba(216, 47, 47, 0.35));
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  margin: 0 0 12px;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 54ch;
}

.specialty-makes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.specialty-makes li {
  border: 1px solid var(--line);
  background: rgba(216, 47, 47, 0.08);
  color: var(--gold-2);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat {
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
  border-radius: 14px;
  padding: 14px;
}

.stat b {
  display: block;
  color: var(--gold-2);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.stat span { color: var(--muted); font-size: 12px; }

.hero-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--white);
}

.quick-search {
  display: grid;
  gap: 10px;
}

.quick-search input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0f0d0a;
  color: var(--white);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid rgba(216, 47, 47, 0.35);
  background: var(--cyan-dim);
  color: var(--cyan-2);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}

/* Sections */
section { padding: 72px 0; }
.section-head { margin-bottom: 28px; }
.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}
.section-head p { margin: 0; color: var(--muted); max-width: 70ch; }

.checker {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filters {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.hardware-select {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 12px;
}

.hardware-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 10px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
}

.hardware-btn.is-active {
  border-color: rgba(216, 47, 47, 0.85);
  background: rgba(216, 47, 47, 0.16);
  color: #fff;
}

.hw-group-label {
  margin: 18px 0 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hw-group-label:first-of-type {
  margin-top: 0;
}

.protocol-checks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 0 0 12px;
}

.protocol-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.protocol-check input {
  accent-color: var(--gold);
}

.protocol-check:has(input:checked) {
  border-color: rgba(216, 47, 47, 0.85);
  background: rgba(216, 47, 47, 0.16);
}

.hw-hint {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.filters .field-search {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input, .field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f0d0a;
  color: var(--white);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.results {
  display: grid;
  gap: 10px;
}

.result {
  display: grid;
  grid-template-columns: minmax(140px, 1.1fr) minmax(150px, 1fr) minmax(160px, 1.3fr) 132px;
  gap: 12px;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.result-side {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: end;
}
.result-side a { font-size: 12px; }

.result b { color: var(--white); display: block; }
.result small { color: var(--muted); }
.ecu { font-family: ui-monospace, Consolas, monospace; color: var(--gold-2); }

.tool-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  font-size: 11px;
  border-radius: 999px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  color: var(--sand);
}

.badge {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  background: var(--cyan-dim);
  color: var(--cyan-2);
  white-space: nowrap;
}

.empty {
  text-align: center;
  padding: 36px 16px;
  border: 1px dashed var(--line);
  border-radius: 20px;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

/* Cards */
.grid-3, .grid-2, .tools-grid {
  display: grid;
  gap: 16px;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.measure-grid { align-items: stretch; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tools-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(216, 47, 47, 0.5);
}

.card h3 { margin: 0 0 8px; color: var(--white); font-size: 20px; }
.card p { margin: 0; color: var(--muted); }

.card-kicker {
  margin: 0 0 8px !important;
  color: var(--gold) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-featured {
  border-color: rgba(216, 47, 47, 0.55);
  background:
    linear-gradient(180deg, rgba(216, 47, 47, 0.1), transparent 42%),
    var(--bg-3);
}

.shop {
  background:
    radial-gradient(520px 240px at 88% 0%, rgba(216, 47, 47, 0.12), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.equip-card {
  position: relative;
  padding-top: 26px;
}

.equip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: 999px;
}

.packages {
  background: var(--bg);
}

.package-card h3 { font-size: 22px; }

.work {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  margin: 0;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 50% 45%;
}

.gallery-wide {
  grid-column: 1 / -1;
}

.gallery-wide img {
  height: 420px;
  object-position: 50% 70%;
}

.gallery-item figcaption {
  padding: 16px 18px 20px;
}

.gallery-item h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 18px;
}

.gallery-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.gallery-more {
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-more .gallery-item img {
  height: 240px;
}

.gallery-more .is-portrait img {
  object-position: 50% 28%;
}

.gallery-more figcaption {
  padding: 12px 14px 16px;
}

.gallery-more h3 {
  font-size: 16px;
  margin: 0;
}

.results-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(520px 240px at 12% 0%, rgba(216, 47, 47, 0.1), transparent 60%),
    var(--bg);
}

.results-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.proof-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.proof-list li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--sand);
}

.proof-photo {
  margin: 0;
}

.proof-photo img {
  display: block;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.hd-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(216, 47, 47, 0.16), transparent 50%),
    var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  margin-bottom: 18px;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-list span {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f0d0a;
  color: var(--white);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-brand img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(216, 47, 47, 0.28));
}

.note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

.hours-note {
  margin: 0;
  font-size: 12px;
  color: var(--cyan-2);
}

@media (max-width: 1100px) {
  .measure-grid,
  .gallery-more {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-grid, .filters, .result, .grid-3, .grid-2, .tools-grid, .hd-banner, .contact-grid, .gallery, .results-layout, .hardware-select, .protocol-checks {
    grid-template-columns: 1fr;
  }
  .hardware-select,
  .protocol-checks {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-wide { grid-column: auto; }
  .gallery-wide img, .gallery-item img { height: 220px; }
  .gallery-more {
    grid-template-columns: 1fr;
  }
  .hero-photo { height: 320px; }
  .mark { height: 72px; }
  .hero-logo img { width: 100%; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 92px;
    right: 20px;
    left: 20px;
    padding: 16px;
    background: #10141a;
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  html[dir="rtl"] .nav.open { right: 20px; left: 20px; }
  .menu-btn { display: inline-flex; }
  .stats { grid-template-columns: 1fr; }
  .result-side { justify-items: start; text-align: start; }
}
