:root {
  --bg: #0a0c10;
  --bg-soft: #0f1218;
  --panel: #141824;
  --panel-soft: #10141f;
  --text: #f5f7fb;
  --muted: #aab3c6;
  --accent: #e53935;
  --accent-soft: rgba(229, 57, 53, 0.12);
  --border: #222837;
  --border-strong: #2e3650;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.65);
  --shadow-red: 0 10px 22px -14px rgba(229, 57, 53, 0.45);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0; color: var(--muted); }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }

svg.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 400;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 12px; }

section { scroll-margin-top: 120px; }
[data-anchor] { scroll-margin-top: 120px; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 17, 0.97);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
}

.nav .logo { height: 82px; width: auto; transition: opacity 0.2s ease; }
.nav .logo:hover { opacity: 0.85; }

.nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  opacity: 0.85;
  transition: background 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.nav ul a:hover,
.nav ul a.active {
  opacity: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav ul a.btn-small {
  background: var(--accent);
  color: #fff;
  opacity: 1;
  padding: 10px 18px;
}
.nav ul a.btn-small:hover { background: #ff453f; }

.nav ul li.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 6px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.6;
  text-decoration: none;
  transition: background 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}
.lang-btn:hover { opacity: 1; }
.lang-btn.active {
  background: var(--accent);
  color: #fff;
  opacity: 1;
}
.lang-fallback {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-switch .lang-fallback a {
  display: inline-block;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  text-decoration: none;
  opacity: 0.8;
}
.lang-switch .lang-fallback a:hover { opacity: 1; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.burger span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn.primary {
  background: var(--accent);
  color: #fff;
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn.ghost {
  border-color: var(--border-strong);
  color: var(--text);
  background: transparent;
}
.btn.ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 18% 10%, rgba(229, 57, 53, 0.10) 0%, transparent 55%),
    radial-gradient(900px 600px at 85% 20%, #151a29 0%, transparent 55%),
    radial-gradient(700px 500px at 60% 90%, rgba(229, 57, 53, 0.05) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
}

.hero .container { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(229, 57, 53, 0.35);
  color: #ffb3b1;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  transform: scale(0.6);
  animation: pulse 2s infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { opacity: 0.9; transform: scale(0.6); }
  70% { opacity: 0; transform: scale(2.6); }
  100% { opacity: 0; transform: scale(2.6); }
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); }

.hero-text {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 600px;
}

.notice {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, rgba(229, 57, 53, 0.14), rgba(229, 57, 53, 0.04));
  border: 1px solid rgba(229, 57, 53, 0.35);
  color: #ffd9d8;
  padding: 12px 18px;
  border-radius: 14px;
  margin-bottom: 32px;
  font-size: 15px;
  font-weight: 600;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-media {
  position: sticky;
  top: 110px;
}
.hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-img img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hero-img:hover img { transform: scale(1.04); }
.hero-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 12, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
}
.hero-badge b { color: var(--accent); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.stat {
  background: rgba(20, 24, 36, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 57, 53, 0.5);
  background: rgba(20, 24, 36, 0.9);
}
.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.stat span { color: var(--muted); font-size: 14px; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; border-top: 1px solid var(--border); }
.section.soft { background: var(--bg-soft); }
.section, .repressection { content-visibility: auto; contain-intrinsic-size: auto 900px; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-head p { font-size: 17px; }

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  background: linear-gradient(180deg, #141824, #0f1320);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 57, 53, 0.55);
  box-shadow: var(--shadow-red);
}
.cat-card .cat-body { padding: 28px 22px 30px; }
.cat-card h3 { font-size: 21px; margin-bottom: 10px; }
.cat-card p { font-size: 15px; margin-bottom: 16px; }

.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brands span {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ---------- Distributors ---------- */
.repressection { padding: 104px 0; border-top: 1px solid var(--border); }
.repres-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1.9fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  margin-top: 32px;
}
.repres-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#CZ img,
#LA img,
#BUL img,
#KRW img {
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- How to buy ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  background: linear-gradient(180deg, #141824, #0f1320);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 22px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.step:hover { transform: translateY(-4px); border-color: rgba(229, 57, 53, 0.5); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -20px;
  left: 22px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-red);
}
.step h3 { font-size: 17px; margin-bottom: 10px; }
.step p { font-size: 14px; }
.step .step-icon { display: block; margin-bottom: 12px; color: var(--accent); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: linear-gradient(180deg, #141824, #0f1320);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(229, 57, 53, 0.45); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 17px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #fff; }
.faq-chev { color: var(--muted); transition: transform 0.25s ease; }
.faq-item[open] .faq-chev { transform: rotate(180deg); color: var(--accent); }
.faq-item p { padding: 0 24px 22px; font-size: 15px; }

/* ---------- Hours + Map ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}
.info-card {
  background: linear-gradient(180deg, #141824, #0f1320);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.info-card h3 { font-size: 22px; margin-bottom: 22px; }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 16px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--muted); min-width: 0; }
.hours-list .time { font-weight: 700; color: #fff; flex-shrink: 0; white-space: nowrap; }
.hours-list .time.today { color: var(--accent); }

.contacts-row { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.contact-line { display: flex; align-items: center; gap: 12px; color: var(--muted); text-decoration: none; font-size: 16px; }
.contact-line:hover { color: #fff; }
.contact-line svg { flex-shrink: 0; }
.contact-line a { color: var(--text); text-decoration: none; font-weight: 600; }
.contact-line a:hover { color: var(--accent); }

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-link {
  position: relative;
  display: block;
  height: 100%;
}
.map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
  transition: filter 0.3s ease;
}
.map-link:hover img { filter: none; }
.map-overlay {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 12, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
}
.map-overlay svg { color: var(--accent); }
.map-link:hover .map-overlay { background: var(--accent); border-color: var(--accent); }
.map-link:hover .map-overlay svg { color: #fff; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(229, 57, 53, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #171c2b, #10141f);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn.phone {
  font-size: 20px;
  padding: 18px 34px;
  background: var(--accent);
  color: #fff;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.g-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.g-item:hover,
.g-item:focus-visible {
  transform: scale(1.02);
  border-color: rgba(229, 57, 53, 0.55);
  z-index: 1;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.g-item:hover img { transform: scale(1.07); }
.g-item::after {
  content: '⤢';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  background: rgba(8, 10, 14, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.g-item:hover::after,
.g-item:focus-visible::after { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 8, 12, 0.95);
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.lb-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(20, 24, 36, 0.9);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lb-btn:hover { background: var(--accent); border-color: var(--accent); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 14px;
  background: rgba(8, 10, 14, 0.7);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  background: #080a0e;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 15px; max-width: 320px; }
.footer h4 { font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--muted); text-decoration: none; font-size: 15px; transition: color 0.2s ease; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Mobile call bar ---------- */
.call-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 150;
  display: none;
  width: fit-content;
}
.call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  white-space: nowrap;
  border-radius: 999px;
  box-shadow: 0 10px 40px -10px rgba(229, 57, 53, 0.7);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 160;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(20, 24, 36, 0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}
.to-top.visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .eyebrow::after { animation: none; opacity: 0; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { flex-wrap: wrap; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { position: static; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .repres-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .burger { display: flex; }
  .nav { flex-wrap: wrap; }
  .nav ul {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 16px;
    gap: 4px;
  }
  .nav ul.open { display: flex; }
  .nav ul a { text-align: center; padding: 12px; }
  .nav ul li.lang-switch a { padding: 6px 10px; }
  .nav ul li.lang-switch {
    justify-content: center;
    margin: 4px auto 10px;
    width: fit-content;
  }
  body.menu-open { overflow: hidden; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .info-card { padding: 28px 20px; }
  .hours-list li { font-size: 15px; }
  .section { padding: 72px 0; }
  .hero { padding: 64px 0 88px; }
  .cat-grid { grid-template-columns: 1fr; }
  .repres-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat strong { font-size: 22px; }
  .cta-band { padding: 40px 24px; }
  .lightbox { padding: 16px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-caption { display: none; }
  .call-bar { display: block; }
  .to-top { right: 16px; bottom: 96px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
