:root {
  --black: #0a0a0a;
  --dark: #161616;
  --dark2: #1e1e1e;
  --gray: #666;
  --light-gray: #e5e5e5;
  --white: #fff;
  --red: #e50914;
  --red-dark: #b00710;
  --font-display: 'Oswald', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --maxw: 1200px;
  --pad: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 6vw, 5.4rem); font-weight: 700; letter-spacing: -0.005em; line-height: 1.18; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 0.4em; letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; margin-bottom: 0.5em; }
h4 { font-size: 1rem; margin-bottom: 0.8em; letter-spacing: 0.05em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.accent { color: var(--red); position: relative; }
.accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: var(--red);
  opacity: 0.25;
  transform: skewX(-15deg);
  z-index: -1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 8px 16px;
  background: rgba(229, 9, 20, 0.08);
  border-left: 3px solid var(--red);
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn--ghost { border-color: currentColor; color: currentColor; }
.btn--ghost:hover { background: currentColor; color: var(--white); border-color: currentColor; }
.section--dark .btn--ghost:hover { color: var(--black); }
.btn--full { width: 100%; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--red);
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* Hero stagger reveal on load */
.hero__content > *, .hero__stats {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero__content > .eyebrow { animation-delay: 0.08s; }
.hero__content > .hero__title { animation-delay: 0.18s; }
.hero__content > .hero__subtitle { animation-delay: 0.32s; }
.hero__content > .hero__cta { animation-delay: 0.44s; }
.hero__stats { animation-delay: 0.6s; }
@keyframes hero-fade-up {
  to { opacity: 1; transform: none; }
}

/* Section header slash-reveal */
.section__header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}
.section__header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90px;
  height: 3px;
  background: var(--red);
  transform: translateX(-50%) scaleX(0) skewX(-20deg);
  transform-origin: center;
  transition: transform 0.9s cubic-bezier(0.7, 0, 0.2, 1) 0.15s;
}
.section__header.in-view h2::after {
  transform: translateX(-50%) scaleX(1) skewX(-20deg);
}

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.header { padding: 10px 0; }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.header__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.header__nav--left { margin-right: auto; }
.header__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__socials a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  border: 1px solid #222;
  transition: all 0.2s ease;
}
.header__socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.social-txt { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; }
.header__nav {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
}
.header__nav a {
  color: var(--black);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header__nav a:hover { color: var(--red); }
.header__logo { justify-self: center; }
.header__burger { justify-self: end; }
.header__logo-img { height: 60px; display: block; }
.footer__logo { filter: brightness(0) invert(1); }
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px; height: 42px;
  align-items: center;
  background: transparent;
  transition: opacity 0.2s ease;
  z-index: 110;
  position: relative;
}
.header__burger:hover { opacity: 0.6; }
.header__burger span {
  width: 28px; height: 2px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
}
.menu-overlay.open ~ * .header__burger span,
body.menu-open .header__burger span { background: var(--white); }
.header__burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Full-screen menu overlay */
.menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  overflow-y: auto;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease;
}
.menu-overlay__inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.menu-overlay__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  align-items: center;
}
.menu-overlay__link {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 0;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  display: block;
}
.menu-overlay__link:hover { color: var(--red); }
.menu-overlay__link--accent { color: var(--red); }
.menu-overlay__link--accent:hover { color: var(--white); }
.menu-overlay__footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
}
.menu-overlay__phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.menu-overlay__phone:hover { color: var(--red); }
.menu-overlay__socials { display: flex; gap: 12px; }
.menu-overlay__socials a {
  padding: 8px 18px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s ease;
}
.menu-overlay__socials a:hover { background: var(--red); border-color: var(--red); }
body.menu-open { overflow: hidden; }

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero > .container {
  max-width: 100%;
  padding-left: clamp(8px, 1.2vw, 18px);
  padding-right: clamp(12px, 2vw, 30px);
}
.hero__content { margin-left: 0; max-width: 960px; margin-bottom: 40px; }
.hero__subtitle { font-size: clamp(1.05rem, 1.6vw, 1.35rem); max-width: 720px; }
.hero__stats { max-width: 820px; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  filter: contrast(1.1) brightness(0.9);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 40%, rgba(10,10,10,0.35) 75%, rgba(10,10,10,0.15) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.85) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.5) 100%);
  z-index: -1;
}
.hero__content, .hero__stats { position: relative; z-index: 1; }
.hero__title { text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
/* red diagonal accent bar */
.hero__accent-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  z-index: 2;
}
.hero__content { max-width: 820px; margin-bottom: 60px; }
.hero__title { margin-bottom: 1rem; }
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--light-gray);
  margin-bottom: 2rem;
  max-width: 640px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 60px;
  padding-top: 20px;
  justify-content: start;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.stat__label {
  font-size: 0.8rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Sections */
.section { padding: 100px 0; background: var(--white); color: var(--black); }
.section--dark { background: var(--black); color: var(--white); }
.section__header { max-width: 800px; margin: 0 auto 60px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.section__hint { color: var(--gray); margin-top: 1rem; }
.section--dark .section__hint { color: var(--light-gray); }

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.about__text p { margin-bottom: 1.2em; color: var(--light-gray); font-size: 1.05rem; }
.about__side { display: flex; flex-direction: column; gap: 32px; }
.about__list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; }
.about__list li {
  padding-left: 24px;
  position: relative;
  color: var(--light-gray);
  line-height: 1.5;
}
.about__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 2px;
  background: var(--red);
}
.about__list strong { color: var(--white); }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.abstat {
  padding: 16px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: border-color .25s ease;
}
.abstat:hover { border-color: var(--red); }
.abstat__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.abstat__lbl {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.35;
}
@media (max-width: 700px) {
  .about__stats { grid-template-columns: 1fr 1fr; }
  .about__stats .abstat:last-child { grid-column: 1 / -1; }
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.service__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}
.service__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service:hover .service__img img { transform: scale(1.05); }
.service__body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.service p { color: var(--gray); margin-bottom: 24px; flex: 1; }
.service__price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--black);
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}
.service__price span { font-size: 1.5rem; color: var(--red); font-weight: 700; }

/* Team */
/* Team — founder + 2x2 grid */
.team__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.team__grid > .master:first-child {
  grid-row: 1 / span 2;
  grid-column: 1 / span 1;
  height: 100%;
}
.team__grid > .master:first-child .master__photo {
  aspect-ratio: auto;
  flex: 1;
  min-height: 0;
}
.team__grid > .master:first-child h3 { font-size: 1.8rem; padding: 26px 24px 6px; }
.team__grid > .master:first-child .master__role { font-size: 0.85rem; padding: 0 24px; margin-bottom: 14px; }
.team__grid > .master:first-child .master__exp { font-size: 1rem; padding: 0 24px; margin-bottom: 8px; }
.team__grid > .master:first-child .master__style { font-size: 0.92rem; padding: 0 24px 26px; }
.team__grid > .master:first-child::after {
  content: "ОСНОВАТЕЛЬ";
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: var(--white);
  padding: 6px 12px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  z-index: 2;
}

.master {
  position: relative;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.master:hover { border-color: var(--red); transform: translateY(-3px); }
.master__photo {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: var(--dark2);
  flex-shrink: 0;
}
.master h3 { padding: 18px 18px 4px; font-size: 1.05rem; }
.master__role {
  padding: 0 18px;
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.master__exp { padding: 0 18px; color: var(--light-gray); font-size: 0.82rem; margin-bottom: 6px; }
.master__style { padding: 0 18px 18px; color: var(--gray); font-size: 0.78rem; margin-top: auto; }

/* Textured parallax for all light sections */
.section:not(.section--dark):not(.section--lead):not(.section--gift) { position: relative; isolation: isolate; }
.section:not(.section--dark):not(.section--lead):not(.section--gift)::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/img/process-bg.png') center/cover no-repeat fixed;
  opacity: 0.10;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .section:not(.section--dark):not(.section--lead):not(.section--gift)::before {
    background-attachment: scroll;
    opacity: 0.08;
  }
}
/* Process */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step { position: relative; padding-top: 60px; }
.step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  position: absolute;
  top: 0; left: 0;
  opacity: 0.35;
}
.step p { color: var(--gray); }

/* News */
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.news__placeholder {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray);
  padding: 60px 0;
}
.news-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}
.news-card:hover { border-color: var(--red); }
.news-card__img { aspect-ratio: 1; background: #222; position: relative; overflow: hidden; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card__img img { transform: scale(1.04); }
.news-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(229,9,20,0.85);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  padding-left: 4px;
}
.news-card__body { padding: 20px; }
.news-card__date { color: var(--red); font-size: 0.8rem; letter-spacing: 0.05em; margin-bottom: 8px; }
.news-card__text { color: var(--light-gray); font-size: 0.9rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
.news-card__meta {
  display: flex;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--gray);
}
.news-card__meta span { display: inline-flex; align-items: center; gap: 4px; }
.news__footer { text-align: center; }

/* Products */
.products__grid {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -24px 40px;
  position: relative;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}
.products__grid::-webkit-scrollbar { height: 5px; }
.products__grid::-webkit-scrollbar-track { background: rgba(0,0,0,0.06); }
.products__grid::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
.products__placeholder { text-align: center; color: var(--gray); padding: 40px 0; }
.products__track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 10px 24px 16px;
}
.products__grid .product-card { width: 340px; flex-shrink: 0; scroll-snap-align: start; }
@media (max-width: 700px) {
  .products__grid .product-card { width: 280px; }
}
.product-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
}
.product-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.product-card__img { aspect-ratio: 4 / 3; background: #111; overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; letter-spacing: -0.01em; }
.product-card__desc { color: var(--gray); font-size: 0.88rem; flex: 1; white-space: pre-line; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 18px; }
.product-card__price {
  font-family: var(--font-display);
  padding-top: 14px;
  border-top: 1px solid var(--light-gray);
  color: var(--red);
  font-size: 1.15rem;
  font-weight: 700;
}
.products__footer { text-align: center; }

/* Rating badge c логотипом Яндекса */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--light-gray);
  flex-wrap: wrap;
  justify-content: center;
}
.rating-badge__logo { width: 22px; height: 22px; flex-shrink: 0; }
.rating-badge strong { color: var(--white); font-weight: 700; font-size: 1.05rem; }
.rating-badge__sep { opacity: 0.5; }

/* Reviews — горизонтальная прокрутка (как Products) */
.reviews__grid {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -24px 32px;
  position: relative;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}
.reviews__grid::-webkit-scrollbar { height: 5px; }
.reviews__grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); }
.reviews__grid::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
.reviews__placeholder { text-align: center; color: var(--gray); padding: 40px 0; }
.reviews__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 8px 24px 14px;
}
.review-card {
  width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}
.review-card:hover { border-color: var(--red); }
.review-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.review-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #222 center/cover no-repeat;
  flex-shrink: 0;
}
.review-card__name { font-weight: 600; color: var(--white); font-size: 0.88rem; }
.review-card__date { font-size: 0.72rem; color: var(--gray); margin-top: 2px; }
.review-card__text {
  color: var(--light-gray);
  font-size: 0.85rem;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 700px) {
  .review-card { width: 240px; padding: 16px 18px; }
  .review-card__text { -webkit-line-clamp: 6; font-size: 0.82rem; }
}
.reviews__footer { text-align: center; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Gift — подарочный сертификат */
.section--gift {
  background: linear-gradient(135deg, #0e0e10 0%, #1a0a0d 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.section--gift::before {
  content: "";
  position: absolute;
  top: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(229,9,20,0.18), transparent 70%);
  pointer-events: none;
}
.section--gift::after {
  content: "";
  position: absolute;
  bottom: -150px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229,9,20,0.1), transparent 70%);
  pointer-events: none;
}
.gift {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.gift__info h2 { margin: 14px 0 22px; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
.gift__info h2 .accent { color: var(--red); }
.gift__lead { color: var(--light-gray); font-size: 1.05rem; margin-bottom: 28px; }
.gift__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gift__features li {
  position: relative;
  padding: 14px 18px 14px 48px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--red);
  font-size: 0.95rem;
  color: var(--light-gray);
}
.gift__features li::before {
  content: "";
  position: absolute;
  left: 18px; top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
  background: var(--red);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='20 6 9 17 4 12' fill='none' stroke='white' stroke-width='3'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='20 6 9 17 4 12' fill='none' stroke='white' stroke-width='3'/></svg>") center/contain no-repeat;
}
.gift__features strong { color: var(--white); font-weight: 700; }

.gift__form {
  background: linear-gradient(180deg, #141414, #0c0c0c);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.gift__form::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--red);
}
.gift__form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.gift__form input[type="text"], .gift__form input[type="tel"], .gift__form input[type="email"], .gift__form textarea {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 13px 14px;
  font-family: inherit;
  font-size: 0.98rem;
  width: 100%;
  transition: border-color 0.2s ease;
}
.gift__form input:focus, .gift__form textarea:focus { outline: none; border-color: var(--red); background: #111; }
.gift__form textarea { resize: vertical; min-height: 80px; }

.gift__amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 8px;
}
.gift__amounts label {
  position: relative;
  cursor: pointer;
}
.gift__amounts input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.gift__amounts span {
  display: block;
  text-align: center;
  padding: 10px 6px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light-gray);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.gift__amounts input[type="radio"]:checked + span {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.gift__amounts label:hover span { border-color: var(--red); color: var(--white); }

@media (max-width: 900px) {
  .gift { grid-template-columns: 1fr; gap: 40px; }
}

/* Contacts v2 — brutal tiles + map */
.contacts-v2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.contacts-v2__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
}
.ctile {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 170px;
  border: 1px solid var(--black);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.ctile::before {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 100px; height: 100px;
  background: var(--red);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity .3s ease;
}
.ctile:hover::before { opacity: 0.18; }
.ctile:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,0.35); }
.ctile--accent { background: var(--red); color: var(--white); border-color: var(--red); }
.ctile--accent::before { background: var(--black); opacity: 0.12; }
.ctile--accent:hover::before { opacity: 0.25; }
.ctile--static { cursor: default; }
.ctile--static:hover { transform: none; box-shadow: none; }
.ctile--static:hover::before { opacity: 0; }
.ctile--wide { grid-column: 1 / -1; min-height: auto; }
.ctile__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  background: rgba(229,9,20,0.12);
  border: 1px solid rgba(229,9,20,0.3);
}
.ctile--accent .ctile__icon { color: var(--white); background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.ctile__icon svg { width: 20px; height: 20px; }
.ctile__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.ctile--accent .ctile__label { color: rgba(255,255,255,0.75); }
.ctile__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.ctile__value span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--light-gray);
  margin-top: 4px;
  letter-spacing: 0;
}
.ctile--accent .ctile__value span { color: rgba(255,255,255,0.85); }
.ctile__hint {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform .2s ease;
}
.ctile--accent .ctile__hint { color: var(--white); }
.ctile:hover .ctile__hint { transform: translateX(4px); }
.ctile--socials { display: flex; flex-direction: column; gap: 14px; }
.ctile__socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.csoc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  transition: all .2s ease;
  text-decoration: none;
}
.csoc:hover { background: var(--red); border-color: var(--red); }
.csoc svg, .csoc-max {
  flex-shrink: 0;
  color: var(--white);
}
.csoc-max {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
}
.csoc span {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 600;
}
.csoc small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--light-gray);
  letter-spacing: 0;
}
.csoc:hover small { color: rgba(255,255,255,0.85); }

.contacts-v2__map {
  background: var(--light-gray);
  border: 1px solid var(--black);
  min-height: 420px;
  overflow: hidden;
  position: relative;
}
.contacts-v2__map iframe { width: 100%; height: 100%; border: 0; display: block; position: absolute; inset: 0; }

@media (max-width: 1100px) {
  .contacts-v2 { grid-template-columns: 1fr; }
  .contacts-v2__map { min-height: 340px; }
}
@media (max-width: 600px) {
  .contacts-v2__tiles { grid-template-columns: 1fr; }
  .ctile { min-height: auto; }
  .ctile__socials { grid-template-columns: 1fr; }
}

/* Lead v2 — social proof + form */
.section--lead { background: var(--black); color: var(--white); padding: 90px 0; position: relative; overflow: hidden; }
.section--lead::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(229,9,20,0.15), transparent 70%);
  pointer-events: none;
}
.lead-v2 {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.lead-v2__text h2 { margin-bottom: 18px; }
.lead-v2__text h2 .accent { color: var(--red); }
.lead-v2__sub { color: var(--light-gray); font-size: 1.05rem; margin-bottom: 28px; max-width: 480px; }
.lead-v2__proof { margin-bottom: 32px; }
.lead-v2__proof .rating-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  justify-content: flex-start;
}
.lead-v2__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ls__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ls__lbl {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

.lead-v2__quote {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--red);
}
.lead-v2__quote-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #222 center top/cover no-repeat;
  flex-shrink: 0;
  filter: grayscale(0.2);
}
.lead-v2__quote-text p {
  font-style: italic;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.lead-v2__quote-author {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* Lead form v2 */
.lead-v2__form {
  background: linear-gradient(180deg, #141414, #0c0c0c);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.lead-v2__form::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--red);
}
.lead-v2__form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.lf { display: flex; flex-direction: column; gap: 6px; }
.lf > span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.lead-v2__form input, .lead-v2__form textarea {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 13px 14px;
  font-family: inherit;
  font-size: 0.98rem;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lead-v2__form input:focus, .lead-v2__form textarea:focus {
  outline: none; border-color: var(--red); background: #111;
}
.lead-v2__form textarea { resize: vertical; min-height: 80px; }
.lead__agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--light-gray);
  margin-top: 4px;
}
.lead__agree input { width: auto; accent-color: var(--red); }
.lead__status { font-size: 0.9rem; min-height: 20px; }
.lead__status.ok { color: #7ae38f; }
.lead__status.err { color: #ff6e6e; }
.lead-v2__form-note {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .lead-v2 { grid-template-columns: 1fr; gap: 40px; }
  .lead-v2__stats { gap: 24px; }
  .ls__num { font-size: 1.8rem; }
}

/* Блог — мини-блок перед футером */
.section--blog {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.blog__head h2 {
  margin: 4px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
}
.blog__sub {
  color: var(--light-gray);
  font-size: 0.92rem;
  max-width: 420px;
  margin: 0;
}

.blog-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}
.blog-scroll::-webkit-scrollbar { height: 5px; }
.blog-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); }
.blog-scroll::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

.blog-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 24px 14px;
}

.blog-card {
  width: 340px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.blog-card__img {
  aspect-ratio: 16 / 9;
  background: #1a1a1a center/cover no-repeat;
  position: relative;
  filter: grayscale(0.2);
}
.blog-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.8) 100%);
  pointer-events: none;
}
.blog-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  padding: 5px 11px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}
.blog-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.blog-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
  color: var(--white);
}
.blog-card__body p {
  color: var(--light-gray);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__meta {
  font-size: 0.76rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 700px) {
  .blog-card { width: 280px; }
}

/* Footer slim */
.footer--slim { background: var(--black); color: var(--gray); padding: 32px 0 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px 28px;
  font-size: 0.82rem;
}
.footer__copy { color: var(--light-gray); font-weight: 500; letter-spacing: 0.02em; }
.footer__legal { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.footer__legal a { color: var(--gray); border-bottom: 1px solid transparent; transition: all .2s; }
.footer__legal a:hover { color: var(--white); border-bottom-color: var(--red); }
.footer__credit { color: var(--gray); }
.footer__credit a { color: var(--white); border-bottom: 1px solid transparent; transition: border-color .2s; }
.footer__credit a:hover { border-bottom-color: var(--red); color: var(--red); }
.footer__dot { opacity: 0.5; }
@media (max-width: 700px) {
  .footer__inner { flex-direction: column; text-align: center; }
}

/* Responsive */
@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__socials { display: none; }
  .header__burger { display: flex; }
  .hero > .container { padding-left: 20px; padding-right: 20px; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .about__grid, .contacts__grid, .lead__wrap { grid-template-columns: 1fr; gap: 40px; }
  .services__grid, .process__grid, .news__grid { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .team__grid > .master:first-child { grid-row: auto; grid-column: 1 / span 2; }
  .team__grid > .master:first-child .master__photo { aspect-ratio: 16 / 10; height: auto; }
  .team__grid > .master:first-child h3 { font-size: 1.4rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 60px 0; }
}
@media (max-width: 560px) {
  .services__grid, .process__grid, .news__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .team__grid > .master:first-child { grid-column: 1; grid-row: auto; height: auto; }
  .team__grid > .master:first-child .master__photo { aspect-ratio: 3 / 4; flex: none; min-height: 0; height: auto; }
  .team__grid > .master:first-child h3 { font-size: 1.2rem; padding: 18px 18px 4px; }
  .team__grid > .master:first-child .master__role { font-size: 0.72rem; padding: 0 18px; margin-bottom: 10px; }
  .team__grid > .master:first-child .master__exp { font-size: 0.82rem; padding: 0 18px; margin-bottom: 6px; }
  .team__grid > .master:first-child .master__style { font-size: 0.78rem; padding: 0 18px 18px; }
  .team__grid > .master:first-child::after { top: 14px; right: 14px; padding: 5px 10px; font-size: 0.62rem; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero__stats .stat__num { font-size: 1.8rem; }
  .hero__stats .stat__label { font-size: 0.58rem; letter-spacing: 0.04em; line-height: 1.2; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
