/* ============================================
   СТЕЖОК — Leather Workshop Demo
   Creative: serif + mono mix, warm dark palette
   ============================================ */

:root {
  --lk-bg: #0F0D0B;
  --lk-bg-card: #1A1714;
  --lk-bg-elevated: #241F1A;
  --lk-text: #F5EDE4;
  --lk-text-muted: #9C8E7D;
  --lk-accent: #C4935A;
  --lk-accent-light: #D4A96A;
  --lk-accent-glow: rgba(196, 147, 90, 0.15);
  --lk-leather: #8B5E3C;
  --lk-leather-light: #A67B5B;
  --lk-border: rgba(255, 255, 255, 0.08);
  --lk-radius: 12px;
  --lk-radius-lg: 20px;
  --lk-transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --lk-font-display: 'Playfair Display', Georgia, serif;
  --lk-font-body: 'Inter', system-ui, sans-serif;
  --lk-font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --lk-container: 1200px;
  --lk-gutter: clamp(16px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--lk-font-body);
  background: var(--lk-bg);
  color: var(--lk-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== CURSOR GLOW ===== */
.lk-cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lk-accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s;
  will-change: transform;
}

/* ===== HEADER ===== */
.lk-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.lk-header--scrolled {
  background: rgba(15, 13, 11, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 12px 0;
  border-bottom: 1px solid var(--lk-border);
}

.lk-header__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 var(--lk-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lk-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lk-header__logo-icon {
  font-size: 18px;
  color: var(--lk-accent);
  line-height: 1;
}

.lk-header__logo-text {
  font-family: var(--lk-font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lk-header__nav {
  display: flex;
  gap: 28px;
}

.lk-header__nav a {
  font-family: var(--lk-font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--lk-text-muted);
  transition: color var(--lk-transition);
  position: relative;
}

.lk-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lk-accent);
  transition: width var(--lk-transition);
}

.lk-header__nav a:hover { color: var(--lk-text); }
.lk-header__nav a:hover::after { width: 100%; }

/* ===== BURGER ===== */
.lk-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.lk-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lk-text);
  transition: all 0.3s;
  border-radius: 1px;
}

.lk-burger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lk-burger--open span:nth-child(2) { opacity: 0; }
.lk-burger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.lk-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(15, 13, 11, 0.97);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lk-mobile-nav--open {
  opacity: 1;
  pointer-events: auto;
}

.lk-mobile-nav a {
  font-family: var(--lk-font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--lk-text);
  transition: color 0.3s;
}

.lk-mobile-nav a:hover { color: var(--lk-accent); }

/* ===== BUTTONS ===== */
.lk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--lk-font-mono);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--lk-transition);
  white-space: nowrap;
}

.lk-btn--sm { font-size: 12px; padding: 10px 20px; }
.lk-btn--lg { font-size: 13px; padding: 14px 32px; }
.lk-btn--xl { font-size: 14px; padding: 18px 44px; }

.lk-btn--accent {
  background: var(--lk-accent);
  color: var(--lk-bg);
  border-color: var(--lk-accent);
}

.lk-btn--accent:hover {
  background: var(--lk-accent-light);
  border-color: var(--lk-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 147, 90, 0.3);
}

.lk-btn--ghost {
  background: transparent;
  color: var(--lk-text);
  border-color: var(--lk-border);
}

.lk-btn--ghost:hover {
  border-color: var(--lk-accent);
  color: var(--lk-accent);
}

.lk-btn--ghost-light {
  background: transparent;
  color: var(--lk-text-muted);
  border-color: rgba(255,255,255,0.15);
}

.lk-btn--ghost-light:hover {
  color: var(--lk-text);
  border-color: var(--lk-text);
}

.lk-btn--outline {
  background: transparent;
  color: var(--lk-accent);
  border-color: var(--lk-accent);
}

.lk-btn--outline:hover {
  background: var(--lk-accent);
  color: var(--lk-bg);
}

/* ===== LABELS ===== */
.lk-label {
  display: inline-block;
  font-family: var(--lk-font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lk-accent);
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid var(--lk-accent);
  border-radius: 4px;
  opacity: 0.8;
}

.lk-h2 {
  font-family: var(--lk-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.lk-h2 em {
  font-style: italic;
  color: var(--lk-accent);
}

.lk-h2--light { color: var(--lk-text); }

/* ===== HERO ===== */
.lk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lk-hero__bg {
  position: absolute;
  inset: 0;
}

.lk-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
}

.lk-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 13, 11, 0.92) 0%,
    rgba(15, 13, 11, 0.6) 50%,
    rgba(15, 13, 11, 0.4) 100%
  );
}

.lk-hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.lk-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 120px var(--lk-gutter) 80px;
}

.lk-hero__tag {
  font-family: var(--lk-font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lk-accent);
  margin-bottom: 24px;
}

.lk-hero__title {
  font-family: var(--lk-font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
}

.lk-hero__title-line {
  display: block;
}

.lk-hero__title-line--accent {
  color: var(--lk-accent);
  font-style: italic;
  position: relative;
}

.lk-hero__title-line--accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lk-accent);
  opacity: 0.3;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal 1.5s 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes lineReveal {
  to { transform: scaleX(1); }
}

.lk-hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--lk-text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.lk-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.lk-hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--lk-font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lk-text-muted);
}

.lk-hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--lk-accent);
  position: relative;
  overflow: hidden;
}

.lk-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--lk-text);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.lk-hero__float-stat {
  position: absolute;
  bottom: 100px;
  right: var(--lk-gutter);
  z-index: 2;
  background: rgba(26, 23, 20, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--lk-border);
  border-radius: var(--lk-radius);
  padding: 20px 28px;
  text-align: center;
}

.lk-hero__float-num {
  display: block;
  font-family: var(--lk-font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--lk-accent);
}

.lk-hero__float-label {
  font-family: var(--lk-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lk-text-muted);
}

/* ===== MARQUEE ===== */
.lk-marquee {
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--lk-border);
  border-bottom: 1px solid var(--lk-border);
  background: var(--lk-bg-card);
}

.lk-marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-family: var(--lk-font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lk-text-muted);
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.lk-about {
  padding: 100px 0;
}

.lk-about__container {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 var(--lk-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lk-about__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--lk-text-muted);
  margin-bottom: 16px;
}

.lk-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--lk-border);
}

.lk-about__stat-val {
  font-family: var(--lk-font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--lk-accent);
}

.lk-about__stat-label {
  font-family: var(--lk-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lk-text-muted);
  margin-top: 4px;
}

.lk-about__img-wrap {
  position: relative;
  border-radius: var(--lk-radius-lg);
  overflow: hidden;
}

.lk-about__img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.lk-about__img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(15, 13, 11, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--lk-border);
  border-radius: var(--lk-radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lk-about__badge-num {
  font-family: var(--lk-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--lk-accent);
}

.lk-about__badge-text {
  font-family: var(--lk-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lk-text-muted);
  line-height: 1.4;
}

/* ===== PRODUCTS ===== */
.lk-products {
  padding: 100px 0;
  background: var(--lk-bg-card);
}

.lk-products__container {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 var(--lk-gutter);
}

.lk-products__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.lk-products__sub {
  font-size: 16px;
  color: var(--lk-text-muted);
  line-height: 1.7;
}

.lk-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lk-product-card {
  background: var(--lk-bg);
  border: 1px solid var(--lk-border);
  border-radius: var(--lk-radius-lg);
  overflow: hidden;
  transition: transform var(--lk-transition), box-shadow var(--lk-transition), border-color var(--lk-transition);
}

.lk-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(196, 147, 90, 0.2);
}

.lk-product-card--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lk-product-card__visual {
  position: relative;
  overflow: hidden;
}

.lk-product-card__visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lk-product-card:hover .lk-product-card__visual img {
  transform: scale(1.05);
}

.lk-product-card__visual--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--lk-bg-elevated), var(--lk-bg));
}

.lk-product-card__visual--icon svg {
  width: 80px;
  height: 80px;
  color: var(--lk-accent);
  opacity: 0.6;
}

.lk-product-card__info {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.lk-product-card__tag {
  font-family: var(--lk-font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lk-accent);
  margin-bottom: 12px;
}

.lk-product-card__info h3 {
  font-family: var(--lk-font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.lk-product-card__info p {
  font-size: 14px;
  color: var(--lk-text-muted);
  line-height: 1.7;
  flex: 1;
}

.lk-product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--lk-border);
}

.lk-product-card__price {
  font-family: var(--lk-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--lk-accent);
}

/* ===== PROCESS ===== */
.lk-process {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--lk-bg) 0%, #151210 100%);
}

.lk-process__container {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 var(--lk-gutter);
}

.lk-process__head {
  text-align: center;
  margin-bottom: 60px;
}

.lk-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.lk-process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lk-accent), var(--lk-accent), transparent);
  opacity: 0.3;
}

.lk-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.lk-step__num {
  font-family: var(--lk-font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--lk-accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}

.lk-step__title {
  font-family: var(--lk-font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.lk-step p {
  font-size: 14px;
  color: var(--lk-text-muted);
  line-height: 1.7;
}

/* ===== WORKSHOP ===== */
.lk-workshop {
  padding: 100px 0;
  background: var(--lk-bg-card);
}

.lk-workshop__container {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 var(--lk-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lk-workshop__text p {
  font-size: 16px;
  color: var(--lk-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.lk-workshop__details {
  margin-bottom: 32px;
}

.lk-workshop__detail {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--lk-border);
  font-size: 15px;
}

.lk-workshop__detail-label {
  font-family: var(--lk-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lk-text-muted);
}

.lk-workshop__img {
  border-radius: var(--lk-radius-lg);
  overflow: hidden;
}

.lk-workshop__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ===== REVIEWS ===== */
.lk-reviews {
  padding: 100px 0;
}

.lk-reviews__container {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 var(--lk-gutter);
}

.lk-reviews__head {
  text-align: center;
  margin-bottom: 60px;
}

.lk-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lk-review {
  background: var(--lk-bg-card);
  border: 1px solid var(--lk-border);
  border-radius: var(--lk-radius-lg);
  padding: 32px;
  transition: transform var(--lk-transition), border-color var(--lk-transition);
}

.lk-review:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 147, 90, 0.2);
}

.lk-review__stars {
  font-size: 16px;
  color: var(--lk-accent);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.lk-review__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lk-text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.lk-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lk-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lk-accent), var(--lk-leather));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lk-font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--lk-bg);
}

.lk-review__name {
  font-weight: 500;
  font-size: 14px;
}

.lk-review__meta {
  font-family: var(--lk-font-mono);
  font-size: 11px;
  color: var(--lk-text-muted);
  letter-spacing: 0.05em;
}

/* ===== CTA ===== */
.lk-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1A1510 0%, #0F0D0B 100%);
  position: relative;
  overflow: hidden;
}

.lk-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lk-accent-glow), transparent 70%);
}

.lk-cta__container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--lk-gutter);
  text-align: center;
  position: relative;
  z-index: 1;
}

.lk-cta__text p {
  font-size: 16px;
  color: var(--lk-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.lk-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.lk-cta__trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.lk-cta__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lk-font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--lk-text-muted);
}

.lk-cta__trust-item svg { color: var(--lk-accent); flex-shrink: 0; }

/* ===== FOOTER ===== */
.lk-footer {
  padding: 40px 0;
  border-top: 1px solid var(--lk-border);
}

.lk-footer__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 var(--lk-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.lk-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lk-footer__copy {
  font-size: 12px;
  color: var(--lk-text-muted);
  margin-left: 16px;
}

.lk-footer__links {
  display: flex;
  gap: 24px;
}

.lk-footer__links a {
  font-family: var(--lk-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lk-text-muted);
  transition: color 0.3s;
}

.lk-footer__links a:hover { color: var(--lk-accent); }

.lk-footer__made {
  font-size: 12px;
  color: var(--lk-text-muted);
}

.lk-footer__made a { color: var(--lk-accent); }
.lk-footer__made a:hover { text-decoration: underline; }

/* ===== ANIMATIONS ===== */
[data-anim] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-anim="fade-right"] { transform: translateX(-40px); }
[data-anim="fade-left"] { transform: translateX(40px); }

[data-anim].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lk-process__steps { grid-template-columns: repeat(2, 1fr); }
  .lk-process__steps::before { display: none; }
  .lk-products__grid { grid-template-columns: repeat(2, 1fr); }
  .lk-product-card--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .lk-header__nav { display: none; }
  .lk-header .lk-btn { display: none; }
  .lk-burger { display: flex; }
  .lk-mobile-nav { display: flex; }

  .lk-hero__title { font-size: clamp(30px, 8vw, 52px); }
  .lk-hero__float-stat { display: none; }

  .lk-about__container,
  .lk-workshop__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lk-about__img-wrap img { height: 300px; }
  .lk-workshop__img img { height: 300px; }

  .lk-products__grid { grid-template-columns: 1fr; }
  .lk-product-card--wide {
    grid-column: span 1;
    display: block;
  }

  .lk-process__steps { grid-template-columns: 1fr; }
  .lk-reviews__grid { grid-template-columns: 1fr; }

  .lk-about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .lk-hero__actions { flex-direction: column; }
  .lk-hero__actions .lk-btn { width: 100%; text-align: center; }
  .lk-cta__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .lk-about__stats { grid-template-columns: 1fr; }
  .lk-hero__content { padding: 100px var(--lk-gutter) 60px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-anim] { opacity: 1; transform: none; }
  .lk-marquee__track { animation: none; }
}
