/* ============================================
   ЛЮМЬЕ — Candle Workshop Demo
   Creative: serif elegance + warm glow palette
   ============================================ */

:root {
  --lm-bg: #0E0B08;
  --lm-bg-card: #1A1610;
  --lm-bg-elevated: #231E16;
  --lm-text: #F5EDE4;
  --lm-text-muted: #9C8E7D;
  --lm-accent: #F5C469;
  --lm-accent-warm: #D4843A;
  --lm-accent-deep: #C47A2E;
  --lm-glow: rgba(245, 196, 105, 0.12);
  --lm-glow-strong: rgba(245, 196, 105, 0.25);
  --lm-candle: #E8B65C;
  --lm-wax: #F2E6D0;
  --lm-border: rgba(245, 237, 228, 0.08);
  --lm-border-accent: rgba(245, 196, 105, 0.2);
  --lm-radius: 14px;
  --lm-radius-lg: 22px;
  --lm-transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --lm-font-display: 'Cormorant Garamond', Georgia, serif;
  --lm-font-body: 'DM Sans', system-ui, sans-serif;
  --lm-font-mono: 'JetBrains Mono', monospace;
  --lm-container: 1200px;
  --lm-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;
  overflow-x: hidden;
}

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

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

/* ===== FLAME CANVAS ===== */
.lm-flame-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== HEADER ===== */
.lm-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;
}

.lm-header--scrolled {
  background: rgba(14, 11, 8, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 12px 0;
  border-bottom: 1px solid var(--lm-border);
}

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

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

.lm-header__flame {
  display: flex;
  align-items: center;
  animation: flameFlicker 2s ease-in-out infinite;
}

@keyframes flameFlicker {
  0%, 100% { transform: scaleY(1) scaleX(1); filter: brightness(1); }
  25% { transform: scaleY(1.06) scaleX(0.96); filter: brightness(1.15); }
  50% { transform: scaleY(0.95) scaleX(1.03); filter: brightness(0.95); }
  75% { transform: scaleY(1.04) scaleX(0.98); filter: brightness(1.1); }
}

.lm-header__logo {
  font-family: var(--lm-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--lm-accent);
}

.lm-header__nav {
  display: flex;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.lm-header__nav a {
  color: var(--lm-text-muted);
  transition: color var(--lm-transition);
  position: relative;
}

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

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

/* ===== BURGER ===== */
.lm-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 110;
}

.lm-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--lm-text);
  border-radius: 2px;
  transition: 0.3s;
  position: absolute;
  left: 0;
}

.lm-burger span:nth-child(1) { top: 0; }
.lm-burger span:nth-child(2) { top: 11px; }
.lm-burger span:nth-child(3) { top: 22px; }

.lm-burger--open span:nth-child(1) { transform: rotate(45deg); top: 11px; }
.lm-burger--open span:nth-child(2) { opacity: 0; }
.lm-burger--open span:nth-child(3) { transform: rotate(-45deg); top: 11px; }

/* ===== MOBILE NAV ===== */
.lm-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 11, 8, 0.96);
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: var(--lm-font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.lm-mobile-nav--open {
  display: flex;
}

.lm-mobile-nav a {
  color: var(--lm-text-muted);
  transition: color 0.3s;
}

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

/* ===== BUTTONS ===== */
.lm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lm-font-body);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--lm-transition);
  border: none;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.lm-btn--sm { padding: 10px 24px; font-size: 0.82rem; }
.lm-btn--lg { padding: 14px 32px; font-size: 0.92rem; }
.lm-btn--xl { padding: 18px 40px; font-size: 1rem; }

.lm-btn--accent {
  background: linear-gradient(135deg, var(--lm-accent), var(--lm-accent-warm));
  color: var(--lm-bg);
  box-shadow: 0 4px 20px rgba(245, 196, 105, 0.25);
}

.lm-btn--accent:hover {
  box-shadow: 0 6px 32px rgba(245, 196, 105, 0.4);
  transform: translateY(-2px);
}

.lm-btn--ghost {
  background: transparent;
  color: var(--lm-text);
  border: 1px solid var(--lm-border-accent);
}

.lm-btn--ghost:hover {
  background: var(--lm-glow);
  border-color: var(--lm-accent);
}

.lm-btn--ghost-light {
  background: transparent;
  color: var(--lm-text-muted);
  border: 1px solid var(--lm-border);
}

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

.lm-btn--outline {
  background: transparent;
  color: var(--lm-accent);
  border: 1px solid var(--lm-border-accent);
}

.lm-btn--outline:hover {
  background: var(--lm-glow);
  border-color: var(--lm-accent);
}

/* ===== LABELS & HEADINGS ===== */
.lm-label {
  display: inline-block;
  font-family: var(--lm-font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lm-accent);
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}

.lm-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--lm-accent);
}

.lm-label--light { color: var(--lm-accent); }

.lm-h2 {
  font-family: var(--lm-font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

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

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

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

.lm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lm-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,11,8,.92) 0%, rgba(14,11,8,.5) 50%, rgba(212,132,58,.12) 100%);
}

.lm-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
}

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

.lm-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lm-font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lm-text-muted);
  margin-bottom: 24px;
}

.lm-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lm-accent);
  box-shadow: 0 0 12px var(--lm-glow-strong);
  animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px var(--lm-glow); }
  50% { box-shadow: 0 0 20px var(--lm-glow-strong); }
}

.lm-hero__title {
  font-family: var(--lm-font-display);
  font-weight: 400;
  margin-bottom: 28px;
}

.lm-hero__title-line {
  display: block;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lm-hero__title-line--glow {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--lm-accent), var(--lm-accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(245, 196, 105, 0.2));
}

.lm-hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--lm-text-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.lm-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lm-hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 80px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lm-text-muted);
}

.lm-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--lm-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.7); }
}

.lm-hero__float-card {
  position: absolute;
  right: var(--lm-gutter);
  bottom: 120px;
  z-index: 2;
  background: rgba(26, 22, 16, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--lm-border-accent);
  border-radius: var(--lm-radius);
  padding: 20px 24px;
  text-align: center;
}

.lm-hero__float-flame {
  margin-bottom: 6px;
  animation: flameFlicker 2s ease-in-out infinite;
}

.lm-hero__float-num {
  display: block;
  font-family: var(--lm-font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--lm-accent);
}

.lm-hero__float-label {
  font-size: 0.78rem;
  color: var(--lm-text-muted);
}

/* ===== MARQUEE ===== */
.lm-marquee {
  border-top: 1px solid var(--lm-border);
  border-bottom: 1px solid var(--lm-border);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.lm-marquee__track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  font-family: var(--lm-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lm-text-muted);
}

.lm-marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lm-accent);
  opacity: 0.5;
  align-self: center;
}

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

/* ===== ABOUT ===== */
.lm-about {
  padding: 120px 0;
}

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

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

.lm-about__stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
}

.lm-about__stat {
  text-align: left;
}

.lm-about__stat-val {
  font-family: var(--lm-font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--lm-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.lm-about__stat-label {
  font-size: 0.82rem;
  color: var(--lm-text-muted);
}

.lm-about__right {
  position: relative;
}

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

.lm-about__img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.lm-about__img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(14, 11, 8, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--lm-border-accent);
  border-radius: var(--lm-radius);
  padding: 14px 18px;
  text-align: center;
}

.lm-about__badge-num {
  display: block;
  font-family: var(--lm-font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--lm-accent);
  line-height: 1;
}

.lm-about__badge-text {
  font-size: 0.72rem;
  color: var(--lm-text-muted);
  line-height: 1.3;
}

/* ===== COLLECTION ===== */
.lm-collection {
  padding: 120px 0;
  background: var(--lm-bg-card);
}

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

.lm-collection__head {
  text-align: center;
  margin-bottom: 60px;
}

.lm-collection__head .lm-label {
  padding-left: 0;
}

.lm-collection__head .lm-label::before {
  display: none;
}

.lm-collection__sub {
  font-size: 1.05rem;
  color: var(--lm-text-muted);
}

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

.lm-card {
  background: var(--lm-bg);
  border-radius: var(--lm-radius-lg);
  border: 1px solid var(--lm-border);
  overflow: hidden;
  transition: all var(--lm-transition);
}

.lm-card:hover {
  border-color: var(--lm-border-accent);
  box-shadow: 0 8px 40px rgba(245, 196, 105, 0.08);
  transform: translateY(-4px);
}

.lm-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.lm-card--featured .lm-card__visual {
  min-height: 360px;
}

.lm-card__visual {
  position: relative;
  overflow: hidden;
}

.lm-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.lm-card__icon {
  padding: 32px 28px 0;
  color: var(--lm-accent);
}

.lm-card__icon svg {
  width: 48px;
  height: 48px;
}

.lm-card__info {
  padding: 28px;
}

.lm-card__tag {
  display: inline-block;
  background: var(--lm-glow);
  color: var(--lm-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--lm-border-accent);
}

.lm-card__info h3 {
  font-family: var(--lm-font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}

.lm-card__info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--lm-text-muted);
  margin-bottom: 20px;
}

.lm-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lm-card__price {
  font-family: var(--lm-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--lm-accent);
}

/* ===== PROCESS ===== */
.lm-process {
  padding: 120px 0;
  background: var(--lm-bg);
  position: relative;
}

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

.lm-process__head {
  text-align: center;
  margin-bottom: 72px;
}

.lm-process__head .lm-label {
  padding-left: 0;
}
.lm-process__head .lm-label::before { display: none; }

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

.lm-step {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--lm-transition);
}

.lm-step:hover {
  border-color: var(--lm-border-accent);
  box-shadow: 0 8px 40px rgba(245, 196, 105, 0.06);
}

.lm-step__glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lm-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--lm-transition);
}

.lm-step:hover .lm-step__glow { opacity: 1; }

.lm-step__num {
  font-family: var(--lm-font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--lm-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.lm-step__title {
  font-family: var(--lm-font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.lm-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--lm-text-muted);
}

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

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

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

.lm-workshop__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.lm-workshop__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--lm-text-muted);
  margin-bottom: 28px;
}

.lm-workshop__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.lm-workshop__detail {
  background: var(--lm-bg);
  border-radius: var(--lm-radius);
  padding: 16px 20px;
  border: 1px solid var(--lm-border);
}

.lm-workshop__detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lm-accent);
  margin-bottom: 4px;
}

.lm-workshop__detail span:last-child {
  font-size: 0.9rem;
  color: var(--lm-text);
}

/* ===== REVIEWS ===== */
.lm-reviews {
  padding: 120px 0;
}

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

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

.lm-reviews__head .lm-label {
  padding-left: 0;
}
.lm-reviews__head .lm-label::before { display: none; }

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

.lm-review {
  background: var(--lm-bg-card);
  border-radius: var(--lm-radius-lg);
  padding: 32px;
  border: 1px solid var(--lm-border);
  transition: all var(--lm-transition);
}

.lm-review:hover {
  border-color: var(--lm-border-accent);
  box-shadow: 0 4px 24px rgba(245, 196, 105, 0.06);
}

.lm-review__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

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

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

.lm-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lm-glow);
  border: 1px solid var(--lm-border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lm-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lm-accent);
}

.lm-review__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.lm-review__meta {
  font-size: 0.78rem;
  color: var(--lm-text-muted);
}

/* ===== CTA ===== */
.lm-cta {
  padding: 100px 0 120px;
}

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

.lm-cta__text {
  background: linear-gradient(135deg, var(--lm-bg-card), #1E1912);
  border-radius: var(--lm-radius-lg);
  padding: 64px 56px;
  text-align: center;
  border: 1px solid var(--lm-border);
  position: relative;
  overflow: hidden;
}

.lm-cta__text::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lm-glow) 0%, transparent 70%);
  pointer-events: none;
}

.lm-cta__text h2 {
  position: relative;
}

.lm-cta__text > p {
  position: relative;
  color: var(--lm-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.lm-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: 8px;
}

.lm-cta__trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 36px;
}

.lm-cta__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--lm-text-muted);
}

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

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

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

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

.lm-footer__copy {
  font-size: 0.78rem;
  color: var(--lm-text-muted);
  margin-left: 12px;
}

.lm-footer__links {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--lm-text-muted);
}

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

.lm-footer__made {
  font-size: 0.75rem;
  color: var(--lm-text-muted);
}

.lm-footer__made a {
  color: var(--lm-accent);
  font-weight: 600;
}

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

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

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

/* Delay classes */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lm-header__nav { display: none; }
  .lm-header .lm-btn--accent { display: none; }
  .lm-burger { display: block; }
  .lm-about__container { grid-template-columns: 1fr; gap: 40px; }
  .lm-collection__container .lm-cards { grid-template-columns: 1fr 1fr; }
  .lm-card--featured { grid-column: 1 / -1; }
  .lm-process__steps { grid-template-columns: 1fr 1fr; }
  .lm-workshop__container { grid-template-columns: 1fr; gap: 40px; }
  .lm-reviews__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lm-hero__content { padding: 140px var(--lm-gutter) 80px; }
  .lm-hero__float-card { display: none; }
  .lm-hero__scroll { margin-top: 48px; }
  .lm-hero__actions { flex-direction: column; }
  .lm-hero__actions .lm-btn { width: 100%; }
  .lm-collection__container .lm-cards { grid-template-columns: 1fr; }
  .lm-card--featured { grid-template-columns: 1fr; }
  .lm-process__steps { grid-template-columns: 1fr; }
  .lm-about__stats { gap: 24px; }
  .lm-workshop__details { grid-template-columns: 1fr; }
  .lm-cta__text { padding: 40px 24px; }
  .lm-cta__actions { flex-direction: column; align-items: center; }
  .lm-cta__trust { flex-direction: column; gap: 16px; align-items: center; }
  .lm-footer__inner { flex-direction: column; text-align: center; }
  .lm-footer__copy { margin-left: 0; margin-top: 4px; }
}