:root {
  --ink: #14171a;
  --night: #070d12;
  --blue-black: #0c141b;
  --panel: #f4f2ef;
  --paper: #fbfaf8;
  --cream: #f2eee9;
  --muted: #6d6f71;
  --line: #e0dace;
  --gold: #b98b55;
  --gold-soft: #c9a878;
  --white: #ffffff;
  --radius: 6px;
  --radius-lg: 14px;
  --maxw: 1280px;
  --pad: clamp(20px, 6vw, 96px);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Trebuchet MS", system-ui, -apple-system, Segoe UI, sans-serif;
  --shadow: 0 24px 60px -28px rgba(7, 13, 18, .55);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 { margin: 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(46px, 6.4vw, 78px); }
h2 { font-size: clamp(30px, 3.6vw, 46px); }

.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

.eyebrow.dark { color: var(--gold); }

.gold-line {
  display: block;
  width: 56px;
  height: 2px;
  margin: 22px 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Icons */
.ico {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: none;
}
.ico--invert { filter: brightness(0) invert(1); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
}
.btn-light {
  color: #14110c;
  background: linear-gradient(180deg, #fffdf9, #f3ece0);
  box-shadow: 0 12px 26px -16px rgba(0, 0, 0, .6);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -16px rgba(0, 0, 0, .55); }
.btn-whatsapp {
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .05);
}
.btn-whatsapp:hover { transform: translateY(-2px); border-color: var(--gold); background: rgba(185, 139, 85, .16); }

/* ============ HEADER ============ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 var(--pad);
  color: var(--white);
  background: rgba(6, 10, 13, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: min-height .3s ease, background .3s ease;
}
.topbar.scrolled { min-height: 60px; background: rgba(6, 10, 13, .96); }

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: none;
}
.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand small {
  margin-top: 3px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .03em;
  font-style: italic;
  color: var(--gold-soft);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 600;
}
.nav a, .footer-nav a {
  position: relative;
  white-space: nowrap;
  opacity: .82;
  transition: opacity .2s ease, color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav a:hover { opacity: 1; color: var(--gold-soft); }
.nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone, .footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
}
.phone:hover { color: var(--gold-soft); }

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(4, 8, 11, .6);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .3s ease;
}
.menu-overlay.open { opacity: 1; }
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(86vw, 340px);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 92px 30px 36px;
  color: #fff;
  background: linear-gradient(160deg, #0b141b, #060b0f);
  border-left: 1px solid rgba(255, 255, 255, .08);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #fff;
}
.mobile-menu-brand img { width: 40px; height: 40px; object-fit: contain; flex: none; }
.mobile-menu-brand span { display: flex; flex-direction: column; }
.mobile-menu-brand b { display: block; font-family: var(--serif); font-size: 17px; letter-spacing: .04em; text-transform: uppercase; }
.mobile-menu-brand small { display: block; font-size: 10px; font-weight: 500; letter-spacing: .03em; font-style: italic; color: var(--gold-soft); }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  padding: 14px 0;
  font-size: 17px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: color .2s ease, padding-left .2s ease;
}
.mobile-nav a:hover { color: var(--gold-soft); padding-left: 6px; }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 14px; margin-top: auto; }
.mobile-menu-actions .phone { font-size: 17px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(5, 9, 12, .94) 0%, rgba(7, 13, 18, .78) 42%, rgba(9, 16, 22, .42) 100%),
    url("web/backraund.jpg") center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 30%, rgba(185, 139, 85, .18), transparent 46%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 30px;
  padding: clamp(48px, 7vw, 90px) var(--pad) 0;
  min-height: clamp(580px, 92vh, 1040px);
}
.hero-copy { position: relative; z-index: 3; max-width: 460px; padding-bottom: clamp(48px, 8vw, 96px); }
.lead {
  max-width: 380px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  font-weight: 300;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 30px;
  margin-top: 38px;
}
.hero-benefits li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, .76);
}
.hero-benefits .ico { width: 26px; height: 26px; }

.hero-figure {
  position: absolute;
  z-index: 1;
  right: clamp(-40px, -2vw, 0px);
  bottom: 0;
  top: clamp(16px, 3vh, 48px);
  width: 54%;
  pointer-events: none;
}
.hero-man {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 32px 54px rgba(0, 0, 0, .55));
  animation: floatIn 1s cubic-bezier(.2, .7, .2, 1) both;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTIONS ============ */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 84px) var(--pad);
}
.section-head h2 { margin-top: 4px; }

/* Categories */
.categories {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.category-card {
  display: block;
  color: var(--ink);
}
.category-photo {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e9e4dc;
  box-shadow: 0 18px 36px -26px rgba(0, 0, 0, .5);
}
.category-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}
.category-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 13, 18, .38), transparent 46%);
  opacity: 0;
  transition: opacity .35s ease;
}
.category-card:hover .category-photo img { transform: scale(1.06); }
.category-card:hover .category-photo::after { opacity: 1; }
.category-name {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
}
.category-card b {
  display: inline-block;
  margin-top: 4px;
  font-size: 18px;
  color: var(--gold);
  transition: transform .25s ease;
}
.category-card:hover b { transform: translateX(6px); }

/* Kit */
.kit {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  background: var(--cream);
  max-width: none;
  padding-inline: var(--pad);
}
.kit > * { max-width: var(--maxw); }
.kit-intro { width: 100%; }
.kit-lead { color: var(--muted); margin: 18px 0 0; }
.note {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #d6cdbf;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .5);
}
.note .ico { width: 28px; height: 28px; margin-top: 2px; }
.note strong { display: block; font-size: 15px; }
.note span { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); }

.suit-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}
.suit-img {
  position: relative;
  z-index: 2;
  width: clamp(220px, 24vw, 300px);
  height: auto;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, .22));
}
.label {
  position: absolute;
  width: 210px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}
.label strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}
.label::before {
  content: "";
  position: absolute;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.label::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 60px;
  height: 1px;
  background: #c8bfb1;
}
.left { left: 0; text-align: left; }
.left::before { right: -40px; }
.left::after { right: -40px; }
.right { right: 0; text-align: right; }
.right::before { left: -40px; }
.right::after { left: -40px; }
.l1 { top: 6%; }
.l2 { top: 40%; }
.l3 { top: 74%; }
.r1 { top: 2%; }
.r2 { top: 28%; }
.r3 { top: 56%; }
.r4 { top: 82%; }

/* Features (trust + events) */
.trust, .events { background: var(--paper); }
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.features article {
  padding: 34px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
  background: #fff;
  transition: background .3s ease, transform .3s ease;
}
.features article:last-child { border-right: 0; }
.features article:hover { background: var(--cream); }
.feat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
}
.feat-ico img { width: 34px; height: 34px; object-fit: contain; }
.features h3 { font-size: 16px; font-weight: 600; }
.features p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

/* Lookbook — бегущая строка */
.inspiration {
  max-width: none;
  padding: clamp(56px, 7vw, 104px) 0;
  background: var(--paper);
  overflow: hidden;
}
.inspiration .section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(30px, 4vw, 46px);
}

.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 80s linear infinite;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }

.look {
  flex: 0 0 auto;
  width: clamp(188px, 17vw, 230px);
  margin-right: 16px;
  padding: 0;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #cfcac2;
  box-shadow: 0 18px 36px -26px rgba(0, 0, 0, .42);
}
.look img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}
.look:hover img { transform: scale(1.05); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ FOOTER ============ */
.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.05fr;
  gap: clamp(28px, 4vw, 52px);
  max-width: var(--maxw);
  margin: 0 auto clamp(16px, 3vw, 40px);
  padding: clamp(36px, 4vw, 56px) clamp(28px, 4vw, 60px) clamp(56px, 6vw, 72px);
  color: var(--white);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #0a1218, #060b0f 70%);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .7;
}
.footer-logo { width: 54px; height: 54px; object-fit: contain; margin-bottom: 16px; }
.footer h2 { font-size: clamp(26px, 3vw, 34px); }
.footer p, .footer small, .footer address { color: rgba(255, 255, 255, .66); }
.footer-logo { width: 56px; height: 56px; object-fit: contain; margin-bottom: 16px; }
.footer-cta p { margin: 14px 0 22px; max-width: 320px; }
.footer-cta small { font-size: 12px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-phone {
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.footer-phone small {
  flex-basis: 100%;
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
}
.addresses { padding-left: clamp(0px, 2vw, 36px); border-left: 1px solid rgba(255, 255, 255, .16); }
.addresses .eyebrow { color: var(--gold-soft); }

.address-link {
  display: flex;
  gap: 10px;
  margin: 14px 0;
  font-style: normal;
  font-size: 14px;
  transition: color .2s ease;
}
.address-link:hover { color: var(--gold-soft); }
.address-link .ico { margin-top: 3px; transition: transform .2s ease; }
.address-link:hover .ico { transform: scale(1.12); }
.address-link small { font-size: 12px; color: rgba(255, 255, 255, .5); }

/* 2ГИС попап */
.gis-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 7, 10, .8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.gis-modal.open { display: flex; animation: fadeIn .25s ease; }
.gis-card {
  position: relative;
  width: min(430px, 100%);
  padding: 30px 26px 24px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  animation: zoomIn .3s cubic-bezier(.2, .7, .2, 1);
}
.gis-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}
.gis-close:hover { color: var(--ink); background: rgba(0, 0, 0, .06); }
.gis-modal-head { display: flex; align-items: center; gap: 11px; }
.gis-modal-head .gis-pin { width: 24px; height: 24px; fill: var(--gold); }
.gis-modal-head span { font-family: var(--serif); font-size: 22px; }
.gis-sub { margin: 10px 0 20px; color: var(--muted); font-size: 13px; }
.gis-addr {
  display: block;
  padding: 14px 16px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.gis-addr:last-child { margin-bottom: 0; }
.gis-addr:hover { border-color: var(--gold); background: #faf6ef; transform: translateY(-1px); }
.gis-addr strong { display: block; font-size: 15px; }
.gis-addr span { display: block; margin-top: 2px; font-size: 12px; color: var(--muted); }
.gis-addr::after {
  content: "Открыть в 2ГИС →";
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.socials { display: flex; gap: 14px; padding-top: 18px; margin-top: 8px; border-top: 1px solid rgba(255, 255, 255, .12); }
.socials a, .socials .social-gis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.socials a:hover, .socials .social-gis:hover { border-color: var(--gold); background: rgba(185, 139, 85, .18); transform: translateY(-2px); }
.footer-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}
.footer-nav a:hover { color: var(--gold-soft); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(4, 7, 10, .92);
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-img {
  max-width: min(90vw, 760px);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  animation: zoomIn .3s cubic-bezier(.2, .7, .2, 1);
}
@keyframes zoomIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
.lb-close, .lb-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  cursor: pointer;
  border-radius: 50%;
  transition: background .25s ease, transform .2s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(185, 139, 85, .3); }
.lb-close { top: 24px; right: 24px; width: 48px; height: 48px; font-size: 30px; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 34px; line-height: 1; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}
.reveal.in { opacity: 1; transform: none; }
.category-card.reveal:nth-child(2), .gallery-item.reveal:nth-child(2), .features article.reveal:nth-child(2) { transition-delay: .08s; }
.category-card.reveal:nth-child(3), .gallery-item.reveal:nth-child(3), .features article.reveal:nth-child(3) { transition-delay: .16s; }
.category-card.reveal:nth-child(4), .gallery-item.reveal:nth-child(4), .features article.reveal:nth-child(4) { transition-delay: .24s; }
.gallery-item.reveal:nth-child(5) { transition-delay: .32s; }

/* ============ TABLET ≤1024 ============ */
@media (max-width: 1024px) {
  .topbar { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .burger { display: flex; }
  .header-actions { gap: 12px; justify-self: end; }

  .hero-inner { grid-template-columns: 1fr 1fr; gap: 20px; min-height: clamp(520px, 82vh, 800px); }
  .hero-figure { width: 50%; right: 0; }

  .categories { grid-template-columns: 1fr; gap: 28px; }
  .category-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  .kit { grid-template-columns: 1fr; }
  .suit-map { margin-top: 8px; }

  .footer { grid-template-columns: 1fr 1fr; row-gap: 36px; padding-bottom: 84px; }
  .addresses { padding-left: 0; border-left: 0; }
  .footer-nav { position: static; justify-content: flex-start; flex-wrap: wrap; margin-top: 8px; grid-column: 1 / -1; }
}

/* ============ MOBILE ≤640 ============ */
@media (max-width: 640px) {
  body { font-size: 15px; }
  .header-actions .phone { display: none; }
  .header-actions .btn-light { display: none; }

  h1 { font-size: clamp(42px, 13vw, 60px); }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding-top: 44px;
  }
  .hero-copy { max-width: 100%; padding-bottom: 0; }
  .lead { font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  .hero-benefits { grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
  .hero-benefits li { flex-direction: row; align-items: center; gap: 14px; }
  .hero-figure { position: static; width: auto; top: auto; margin-top: 24px; display: flex; justify-content: center; }
  .hero-man { width: 78vw; min-width: 220px; height: auto; object-fit: initial; }

  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .features, .event-grid { grid-template-columns: 1fr 1fr; }
  .features article { padding: 26px 16px; border-bottom: 1px solid var(--line); }
  .features article:nth-child(odd) { border-right: 1px solid var(--line); }
  .features article:nth-child(even) { border-right: 0; }

  .suit-map {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 4px;
  }
  .suit-img { order: -1; width: min(62vw, 240px); margin-bottom: 18px; }
  .label {
    position: static;
    width: 100%;
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .label::before, .label::after { display: none; }
  .label strong { font-size: 18px; }

  .look { width: clamp(160px, 56vw, 220px); margin-right: 14px; }

  .footer { grid-template-columns: 1fr; margin-inline: 14px; padding-bottom: 40px; }
  .footer-nav { position: static; }

  .lb-nav { width: 44px; height: 44px; font-size: 28px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; }
  .lightbox { padding: 16px; }
}

/* ============ SMALL PHONES ≤400 ============ */
@media (max-width: 400px) {
  :root { --pad: 18px; }
  .brand span { font-size: 17px; }
  .features, .event-grid { grid-template-columns: 1fr; }
  .features article:nth-child(odd) { border-right: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
