/* ============================================================
   KARPPOVIK · LIFESTYLE
   Editorial · cinematic · luxe leather goods
   ============================================================ */

@import url("karppovik-brand.css");
:root {
  --lf-bg: #0a0807;
  --lf-bg-2: #11100e;
  --lf-cream: #f3eee5;
  --lf-cream-2: #d9d0c0;
  --lf-muted: #8c857a;
  --lf-line: rgba(243, 238, 229, 0.10);
  --lf-line-2: rgba(243, 238, 229, 0.18);
  --lf-red: #e10600;
  --lf-red-2: #ff1f3a;
  --lf-tan: #b59572;

  --lf-f-display: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --lf-f-tech: "Orbitron", system-ui, sans-serif;
  --lf-f-body: "Inter", system-ui, sans-serif;
  --lf-f-mono: "JetBrains Mono", ui-monospace, "Courier New", monospace;

  --lf-pad-x: clamp(20px, 4vw, 80px);
  --lf-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--lf-cream); color: var(--lf-bg); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--lf-bg);
  color: var(--lf-cream);
  font-family: var(--lf-f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  cursor: none;
}
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
}

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

/* ============================================================
   GLOBAL ATOMS
   ============================================================ */
.lf-eyebrow {
  display: inline-block;
  font-family: var(--lf-f-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--lf-red-2);
  text-transform: uppercase;
}
.lf-mono {
  font-family: var(--lf-f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--lf-muted);
  text-transform: uppercase;
}
.lf-h2 {
  font-family: var(--lf-f-display);
  font-weight: 400;
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--lf-cream);
}
.lf-h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--lf-cream-2);
}
.lf-h2 i {
  font-style: normal;
  color: var(--lf-red-2);
}
.lf-h2--center { text-align: center; }

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--lf-ease), transform 1.1s var(--lf-ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
.lf-hero__title [data-reveal] {
  display: inline-block;
  opacity: 1;
  transform: translateY(110%);
  transition: transform 1.3s var(--lf-ease);
}
.lf-hero__title [data-reveal].is-in {
  transform: translateY(0);
}

/* Film grain */
.lf-grain {
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: 0.06;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Custom cursor */
.lf-cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  width: 0; height: 0;
  mix-blend-mode: difference;
}
.lf-cursor__ring {
  position: absolute;
  top: -16px; left: -16px;
  width: 32px; height: 32px;
  border: 1px solid var(--lf-cream);
  border-radius: 50%;
  transition: transform 0.18s var(--lf-ease), border-color 0.25s;
}
.lf-cursor__dot {
  position: absolute;
  top: -3px; left: -3px;
  width: 6px; height: 6px;
  background: var(--lf-cream);
  border-radius: 50%;
}
.lf-cursor.is-hover .lf-cursor__ring { transform: scale(2); border-color: var(--lf-red-2); }
@media (hover: none), (pointer: coarse) {
  .lf-cursor { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.lf-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px var(--lf-pad-x);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.lf-nav.is-scrolled {
  background: rgba(10, 8, 7, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  border-bottom: 1px solid var(--lf-line);
}
.lf-nav__back,
.lf-nav__cta {
  font-family: var(--lf-f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--lf-cream);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.3s;
}
.lf-nav__back { justify-self: start; }
.lf-nav__cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid var(--lf-line-2);
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.lf-nav__back:hover { color: var(--lf-red-2); }
.lf-nav__cta:hover {
  background: var(--lf-red);
  border-color: var(--lf-red);
  color: #fff;
}
.lf-nav__brand {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
}
.lf-nav__brand img { height: 26px; width: auto; }
.lf-nav__brand em {
  font-family: var(--lf-f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  color: var(--lf-cream-2);
  text-transform: lowercase;
}

/* ============================================================
   HERO
   ============================================================ */
.lf-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0 var(--lf-pad-x);
}
.lf-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.85) contrast(1.05);
}
.lf-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,7,0.55) 0%, rgba(10,8,7,0.2) 30%, rgba(10,8,7,0.4) 60%, rgba(10,8,7,0.92) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(10,8,7,0.6) 100%);
  z-index: 1;
}
.lf-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  width: 100%;
}
.lf-hero__tagline {
  font-family: var(--lf-f-tech);
  font-weight: 500;
  font-size: clamp(0.72rem, 1.35vw, 0.92rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lf-cream-2);
  margin: 0 0 14px;
}
.lf-hero__tagline-accent {
  font-weight: 900;
  letter-spacing: 0.16em;
  background: linear-gradient(135deg, var(--lf-red-2) 0%, var(--lf-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lf-hero__title {
  font-family: var(--lf-f-display);
  font-weight: 300;
  font-size: clamp(3.4rem, 12vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--lf-cream);
  margin: 22px 0 28px;
}
.lf-hero__title .line {
  display: block;
  overflow: hidden;
}
.lf-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--lf-cream-2);
}
.lf-hero__title i {
  font-style: normal;
  color: var(--lf-red-2);
}
.lf-hero__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--lf-cream-2);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}

/* Hero side metadata */
.lf-hero__meta {
  position: absolute;
  z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}
.lf-hero__meta--tl { top: 90px; left: var(--lf-pad-x); }
.lf-hero__meta--br { bottom: 80px; right: var(--lf-pad-x); text-align: right; }
.lf-hero__meta .lf-mono { color: rgba(243, 238, 229, 0.55); font-size: 0.62rem; }

/* Scroll cue */
.lf-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--lf-cream-2);
}
.lf-scroll-cue .lf-mono { color: rgba(243, 238, 229, 0.55); font-size: 0.6rem; }
.lf-scroll-cue__line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--lf-red-2) 0%, transparent 100%);
  position: relative;
}
.lf-scroll-cue__line::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 1px;
  height: 18px;
  background: var(--lf-cream);
  animation: lfScrollDown 2.2s var(--lf-ease) infinite;
}
@keyframes lfScrollDown {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(56px); opacity: 0; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.lf-marquee {
  position: relative;
  border-top: 1px solid var(--lf-line);
  border-bottom: 1px solid var(--lf-line);
  padding: 24px 0;
  overflow: hidden;
  background: var(--lf-bg-2);
}
.lf-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: lfMarquee 42s linear infinite;
  font-family: var(--lf-f-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--lf-cream);
  padding-left: 36px;
}
.lf-marquee__track em {
  font-style: italic;
  color: var(--lf-cream-2);
  margin-right: 6px;
}
.lf-marquee__track .dot {
  color: var(--lf-red-2);
  font-size: 0.6em;
}
@keyframes lfMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.lf-manifesto {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(90px, 12vw, 160px) var(--lf-pad-x);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}
.lf-manifesto__left { display: flex; flex-direction: column; gap: 22px; }
.lf-manifesto__left .lf-eyebrow { margin-bottom: 8px; }
.lf-manifesto__left p {
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  color: var(--lf-cream-2);
  max-width: 520px;
  font-weight: 300;
}

.lf-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--lf-line);
}
.lf-stats > div { display: flex; flex-direction: column; }
.lf-stats strong {
  font-family: var(--lf-f-display);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--lf-cream);
}
.lf-stats strong i {
  font-style: normal;
  color: var(--lf-red-2);
  font-size: 0.7em;
}
.lf-stats span {
  font-family: var(--lf-f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  color: var(--lf-muted);
  text-transform: uppercase;
  margin-top: 8px;
}

.lf-manifesto__right { position: relative; }
.lf-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.lf-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--lf-ease);
  filter: saturate(0.9) contrast(1.05);
}
.lf-frame:hover img { transform: scale(1.04); }
.lf-frame__corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--lf-red-2);
  z-index: 2;
}
.lf-frame__corner--tl { top: 12px; left: 12px;     border-right: 0; border-bottom: 0; }
.lf-frame__corner--br { bottom: 12px; right: 12px; border-left: 0;  border-top: 0; }
.lf-caption {
  display: block;
  margin-top: 14px;
  text-align: right;
}

/* ============================================================
   SECTION HEAD (collection, gallery)
   ============================================================ */
.lf-section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.lf-section-head .lf-eyebrow { margin-bottom: 18px; }

/* ============================================================
   COLLECTION
   ============================================================ */
.lf-collection {
  padding: clamp(90px, 12vw, 160px) var(--lf-pad-x);
  max-width: 1500px;
  margin: 0 auto;
}
.lf-collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.lf-product {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lf-product__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--lf-bg-2);
  border: 1px solid var(--lf-line);
}
.lf-product__media video,
.lf-product__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--lf-ease), filter 0.6s;
  filter: saturate(0.85) contrast(1.04);
}
.lf-product:hover .lf-product__media video,
.lf-product:hover .lf-product__media img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.08);
}
.lf-product__info { display: flex; flex-direction: column; gap: 4px; }
.lf-product__num { color: var(--lf-red-2); }
.lf-product h3 {
  font-family: var(--lf-f-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.005em;
  color: var(--lf-cream);
  margin-top: 4px;
}
.lf-product p {
  font-size: 0.85rem;
  color: var(--lf-cream-2);
  font-weight: 300;
  line-height: 1.5;
  max-width: 280px;
}

/* ============================================================
   DETAIL (full-bleed editorial)
   ============================================================ */
.lf-detail {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.lf-detail img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.1) brightness(0.85);
  z-index: 0;
}
.lf-detail::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(10,8,7,0.92) 100%),
    linear-gradient(180deg, rgba(10,8,7,0.4) 0%, transparent 30%, transparent 70%, rgba(10,8,7,0.7) 100%);
  z-index: 1;
}
.lf-detail__caption {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px var(--lf-pad-x);
  max-width: 1100px;
}
.lf-detail__caption .lf-eyebrow { display: block; margin-bottom: 22px; }
.lf-quote {
  font-family: var(--lf-f-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 9vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--lf-cream);
}
.lf-quote em {
  font-style: italic;
  font-weight: 300;
}
.lf-quote .accent {
  background: linear-gradient(135deg, #ff1f3a 0%, #b80000 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
}
.lf-detail__caption .lf-mono {
  display: block;
  margin-top: 30px;
}

/* ============================================================
   UNBOXING (background video section)
   ============================================================ */
.lf-unboxing {
  position: relative;
  min-height: 90svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.lf-unboxing__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05) brightness(0.6);
  z-index: 0;
}
.lf-unboxing__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,8,7,0.92) 0%, rgba(10,8,7,0.55) 45%, rgba(10,8,7,0.5) 100%);
  z-index: 1;
}
.lf-unboxing__content {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  width: 100%;
  padding: clamp(60px, 10vw, 120px) var(--lf-pad-x);
  display: grid;
  grid-template-columns: minmax(0, 580px);
}
.lf-unboxing__content .lf-eyebrow { display: block; margin-bottom: 18px; }
.lf-unboxing__content p {
  margin-top: 22px;
  color: var(--lf-cream-2);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 300;
  max-width: 480px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.lf-gallery {
  padding: clamp(90px, 12vw, 160px) var(--lf-pad-x);
  max-width: 1500px;
  margin: 0 auto;
}
.lf-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.lf-gallery__item {
  overflow: hidden;
  position: relative;
  background: var(--lf-bg-2);
}
.lf-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--lf-ease), filter 0.6s;
  filter: saturate(0.85) contrast(1.05);
}
.lf-gallery__item:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.1);
}
.lf-gallery__item--tall  { grid-row: span 2; }
.lf-gallery__item--wide  { grid-column: span 2; }

/* ============================================================
   PRE-ORDER / CTA
   ============================================================ */
.lf-preorder {
  position: relative;
  text-align: center;
  padding: clamp(100px, 14vw, 180px) var(--lf-pad-x);
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--lf-line);
}
.lf-preorder .lf-eyebrow { display: block; margin-bottom: 18px; }
.lf-preorder p {
  margin-top: 18px;
  color: var(--lf-cream-2);
  font-weight: 300;
}

.lf-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  padding: 18px 36px;
  border-radius: 100px;
  font-family: var(--lf-f-mono);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 0.3s var(--lf-ease), background 0.3s, color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.lf-btn--primary {
  background: var(--lf-red);
  color: #fff;
  box-shadow: 0 20px 50px -20px rgba(225, 6, 0, 0.6);
}
.lf-btn--primary:hover {
  background: #ff1f3a;
  box-shadow: 0 24px 56px -16px rgba(255, 31, 58, 0.7);
}
.lf-btn svg { transition: transform 0.3s var(--lf-ease); }
.lf-btn:hover svg { transform: translateX(5px); }

/* ============================================================
   FOOTER
   ============================================================ */
.lf-footer {
  border-top: 1px solid var(--lf-line);
  padding: 50px var(--lf-pad-x) 30px;
  background: var(--lf-bg-2);
}
.lf-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.lf-footer__brand img { height: 28px; width: auto; justify-self: start; }
.lf-footer__slogan {
  font-family: var(--lf-f-display);
  font-size: 1.4rem;
  text-align: center;
  font-weight: 300;
}
.lf-footer__slogan em { font-style: italic; color: var(--lf-cream-2); }
.lf-footer__slogan i { font-style: normal; color: var(--lf-red-2); }
.lf-footer__socials {
  justify-self: end;
  display: flex; gap: 10px;
}
.lf-footer__socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--lf-line-2);
  border-radius: 50%;
  color: var(--lf-cream-2);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--lf-ease);
}
.lf-footer__socials a:hover { color: var(--lf-red-2); border-color: var(--lf-red-2); transform: translateY(-2px); }
.lf-footer__bottom {
  border-top: 1px solid var(--lf-line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--lf-f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--lf-muted);
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lf-collection__grid { grid-template-columns: repeat(2, 1fr); }
  .lf-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  .lf-manifesto { grid-template-columns: 1fr; }
  .lf-manifesto__right { max-width: 520px; }
  .lf-hero__meta--tl { top: 80px; }
}
@media (max-width: 720px) {
  .lf-nav { padding: 14px var(--lf-pad-x); }
  .lf-nav__back span, .lf-nav__cta span { display: none; }
  .lf-nav__back svg { width: 20px; height: 20px; }
  .lf-nav__cta { padding: 10px; }
  .lf-nav__cta svg { width: 18px; height: 18px; }
  .lf-nav__brand img { height: 22px; }
  .lf-nav__brand em { font-size: 0.62rem; letter-spacing: 0.32em; }

  .lf-hero__meta { display: none; }
  .lf-hero__title { font-size: clamp(3rem, 18vw, 6.5rem); }
  .lf-collection__grid { grid-template-columns: 1fr; gap: 28px; }
  .lf-product__media { aspect-ratio: 4/5; }
  .lf-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .lf-gallery__item--wide { grid-column: span 2; }
  .lf-gallery__item--tall { grid-row: span 1; }
  .lf-stats { gap: 22px; }
  .lf-stats strong { font-size: 1.8rem; }

  .lf-footer__top {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .lf-footer__brand img,
  .lf-footer__socials { justify-self: center; }
  .lf-footer__bottom { justify-content: center; text-align: center; }
}
@media (max-width: 540px) {
  :root { --lf-pad-x: 18px; }
  .lf-quote { font-size: clamp(2.2rem, 11vw, 4rem); }
  .lf-hero__sub { font-size: 0.95rem; }
  .lf-marquee { padding: 18px 0; }
  .lf-marquee__track { font-size: clamp(1.6rem, 7vw, 2.4rem); gap: 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .lf-grain, .lf-cursor { display: none; }
  body { cursor: auto; }
  .lf-hero__video, .lf-unboxing__video,
  .lf-product__media video, .lf-lazyvideo { display: none; }
}
