/* ============================================================
   Mereke — Corporate landing · PREMIUM ("вау") build
   Apple-grade: air, large type, glass, soft light, glare hover,
   ethnic qoshqar-muyiz texture, premium modals.
   ============================================================ */

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { max-width: 100%; }
#root { background: var(--surface-page); }
.lp-wrap { width: 100%; overflow-x: clip; }
::selection { background: var(--amber-400); color: var(--ink-900); }

/* ---- Layout ------------------------------------------------------ */
.lp-section { position: relative; }
.lp-inner { width: 100%; max-width: 1240px; margin: 0 auto; padding-left: 22px; padding-right: 22px; position: relative; z-index: 2; }
.lp-pad   { padding-top: 72px;  padding-bottom: 72px; }
.lp-pad-lg{ padding-top: 92px;  padding-bottom: 92px; }
@media (min-width: 768px){
  .lp-inner { padding-left: 48px; padding-right: 48px; }
  .lp-pad   { padding-top: 120px; padding-bottom: 120px; }
  .lp-pad-lg{ padding-top: 150px; padding-bottom: 150px; }
}

/* surfaces */
.lp-red {
  background:
    radial-gradient(120% 90% at 82% 0%, rgba(242,161,78,0.34) 0%, rgba(242,161,78,0) 56%),
    var(--gradient-red);
  color: var(--text-on-red);
}
.lp-ink { background: radial-gradient(120% 100% at 50% 0%, #2a1110 0%, #150707 70%); color: #f6e9df; }
.lp-cream-alt { background: var(--cream-50); }

/* ---- Ethnic texture layer (recolorable mask) --------------------- */
.lp-ethno {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: currentColor;
  -webkit-mask: url("../assets/pattern-koshkar.png");
          mask: url("../assets/pattern-koshkar.png");
  -webkit-mask-size: 440px; mask-size: 440px;
  -webkit-mask-repeat: repeat; mask-repeat: repeat;
  opacity: 0.045; will-change: transform;
}
.lp-ethno.faint { opacity: 0.03; }
.lp-ethno.strong { opacity: 0.07; }

/* single large corner flourish */
.lp-flourish {
  position: absolute; pointer-events: none; z-index: 0;
  width: 220px; height: 280px; background: currentColor;
  -webkit-mask: url("../assets/ornament-koshkar.png") center / contain no-repeat;
          mask: url("../assets/ornament-koshkar.png") center / contain no-repeat;
  opacity: 0.06; will-change: transform;
}

/* ---- Eyebrow / headings ------------------------------------------ */
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: var(--ls-overline); text-transform: uppercase; color: var(--text-accent);
}
.lp-eyebrow.on-red { color: var(--amber-400); }
.lp-eyebrow .mk-spark { width: 11px; height: 11px; color: var(--amber-500); }

.lp-h1 { font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.05rem, 7.2vw, 5rem); line-height: 1.03; letter-spacing: -0.018em;
  margin: 0; color: var(--text-strong); text-wrap: balance; }
.lp-h2 { font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.78rem, 5.2vw, 3.4rem); line-height: 1.07; letter-spacing: -0.012em;
  margin: 0; color: var(--text-strong); text-wrap: balance; }
.lp-lead { font-family: var(--font-body); font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.55; color: var(--text-muted); margin: 0; }
.on-red .lp-h1, .on-red .lp-h2, .lp-red .lp-h1, .lp-red .lp-h2, .lp-ink .lp-h2 { color: #fff; }
.lp-amber { color: var(--amber-400); }
.lp-red-ink { color: var(--text-accent); }

/* ---- Glass ------------------------------------------------------- */
.lp-glass {
  background: rgba(255, 244, 232, 0.10);
  -webkit-backdrop-filter: blur(20px) saturate(1.25); backdrop-filter: blur(20px) saturate(1.25);
  border: 1px solid rgba(255, 226, 196, 0.28);
  box-shadow: 0 28px 70px rgba(40, 6, 6, 0.42), inset 0 1px 0 rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
}
.lp-glass-light {
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(18px) saturate(1.1); backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-lg); border-radius: var(--radius-xl);
}
.lp-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(64px); opacity: 0.5; z-index: 0; }

/* ---- Buttons (premium + glare) ----------------------------------- */
.lp-btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; line-height: 1;
  border: 0; border-radius: var(--radius-pill); cursor: pointer;
  padding: 16px 30px; font-size: 17px; text-align: center;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-soft), background var(--dur-base);
}
.lp-btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform 720ms var(--ease-out);
}
.lp-btn:hover::after { transform: translateX(130%); }
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn:active { transform: translateY(0) scale(0.975); }
.lp-btn-amber, .lp-btn-amber:hover, .lp-btn-amber:active, .lp-btn-amber:focus { color: var(--ink-900); }
.lp-btn-amber { background: var(--amber-500); box-shadow: var(--shadow-amber); }
.lp-btn-amber:hover { background: var(--amber-400); box-shadow: 0 16px 40px rgba(226,105,59,0.34); }
.lp-btn-red, .lp-btn-red:hover, .lp-btn-red:active, .lp-btn-red:focus { color: #fff; }
.lp-btn-red { background: var(--red-500); box-shadow: var(--shadow-sm); }
.lp-btn-red:hover { background: var(--red-400); box-shadow: var(--shadow-md); }
.lp-btn-glass, .lp-btn-glass:hover, .lp-btn-glass:active, .lp-btn-glass:focus { color: #fff; }
.lp-btn-glass { background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,230,210,0.45);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.lp-btn-glass:hover { background: rgba(255,255,255,0.18); }
.lp-btn-ghost, .lp-btn-ghost:hover, .lp-btn-ghost:active, .lp-btn-ghost:focus { color: var(--text-accent); }
.lp-btn-ghost { background: transparent; border: 1.5px solid var(--red-100); }
.lp-btn-ghost:hover { background: var(--red-100); }
.lp-btn-wa, .lp-btn-wa:hover, .lp-btn-wa:active, .lp-btn-wa:focus { color: #fff; }
.lp-btn-wa { background: #1fb15a; }
.lp-btn-wa:hover { background: #25c462; }
.lp-btn-sm { padding: 11px 20px; font-size: 15px; }
.lp-btn-lg { padding: 19px 38px; font-size: 18px; }
.lp-btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media (max-width: 560px){
  .lp-hero-inner .lp-btn-row, #srochno .lp-btn-row { width: 100%; }
  .lp-hero-inner .lp-btn-row .lp-btn, #srochno .lp-btn-row .lp-btn { width: 100%; }
}

/* ---- Reveal ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 90ms; } .reveal.d2 { transition-delay: 180ms; }
.reveal.d3 { transition-delay: 270ms; } .reveal.d4 { transition-delay: 360ms; }
.reveal.d5 { transition-delay: 450ms; } .reveal.d6 { transition-delay: 540ms; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1 !important; transform: none !important; } html { scroll-behavior: auto; } }

/* ---- Sticky promo bar -------------------------------------------- */
.lp-promobar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--red-700), var(--red-500) 50%, var(--amber-600));
  color: #fff; font-family: var(--font-body); font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.01em; gap: 14px; padding: 0 16px; overflow: hidden;
}
.lp-promobar .mk-spark { width: 12px; height: 12px; color: var(--amber-300); }
.lp-promobar b { color: var(--amber-300); }
.lp-promobar .sep { opacity: 0.5; }
.lp-promobar { cursor: pointer; }
.lp-promobar .lp-promobar-cta { color: #fff; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; font-weight: 800; }
.lp-promobar:hover .lp-promobar-cta { color: var(--amber-300); }
.lp-promobar .hide-sm { display: none; }
.lp-promobar .only-sm { display: inline; }
@media (min-width: 720px){ .lp-promobar .hide-sm { display: inline; } .lp-promobar .only-sm { display: none; } }

/* ---- Nav --------------------------------------------------------- */
.lp-nav {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 60;
  transition: background var(--dur-base), box-shadow var(--dur-base), border-color var(--dur-base);
  border-bottom: 1px solid transparent;
}
.lp-nav.scrolled {
  background: rgba(247, 242, 236, 0.80);
  -webkit-backdrop-filter: blur(18px) saturate(1.2); backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--border-faint);
  box-shadow: 0 6px 26px rgba(94,20,22,0.07);
}
.lp-nav-row { max-width: 1240px; margin: 0 auto; padding: 13px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
@media (min-width: 768px){ .lp-nav-row { padding: 16px 48px; } }
.lp-nav-links { display: none; gap: 30px; align-items: center; }
.lp-nav-links a { font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--text-primary); position: relative; transition: color var(--dur-base); }
.lp-nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--red-500); transition: width var(--dur-base) var(--ease-out); }
.lp-nav-links a:hover::after { width: 100%; }
.lp-nav-links a:hover { color: var(--text-accent); }
.lp-nav:not(.scrolled) .lp-nav-links a { color: rgba(255,241,230,0.9); }
.lp-nav:not(.scrolled) .lp-nav-links a:hover { color: #fff; }
.lp-nav:not(.scrolled) .lp-burger span { background: #fff; }
@media (min-width: 1000px){ .lp-nav-links { display: flex; } }

.lp-burger { display: inline-flex; flex-direction: column; gap: 5px; justify-content: center; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.lp-burger span { height: 2px; width: 22px; background: var(--ink-700); margin: 0 auto; border-radius: 2px; transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base); }
.lp-burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.lp-burger.open span:nth-child(2){ opacity: 0; }
.lp-burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1000px){ .lp-burger { display: none; } }

.lp-sheet { position: fixed; inset: 0; z-index: 65; background: rgba(36,16,14,0.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 0 32px;
  transform: translateY(-100%); opacity: 0; pointer-events: none; transition: transform 420ms var(--ease-out), opacity 320ms; }
.lp-sheet.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.lp-sheet a { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: #fff; padding: 13px 0; border-bottom: 1px solid rgba(255,221,196,0.16); }
.lp-sheet a:hover { color: var(--amber-400); }
.lp-sheet .close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border: 0; background: transparent; color: #fff; font-size: 30px; cursor: pointer; }

/* ---- Hero -------------------------------------------------------- */
.lp-hero { position: relative; overflow: hidden; min-height: 100svh; display: flex; align-items: flex-end; }
.lp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.lp-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; will-change: transform; }
.lp-hero-scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(22,5,7,0.66) 0%, rgba(22,5,7,0.24) 28%, rgba(22,5,7,0.34) 56%, rgba(14,3,5,0.95) 100%),
    linear-gradient(95deg, rgba(14,3,5,0.82) 0%, rgba(14,3,5,0.40) 42%, rgba(14,3,5,0) 76%),
    radial-gradient(80% 60% at 16% 86%, rgba(125,29,30,0.5), rgba(125,29,30,0) 70%); }
/* padding-top clears the fixed promobar (40px) + nav (~56px) so hero content
   never slides under them when it's taller than the viewport on phones */
.lp-hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1240px; margin: 0 auto; padding: 116px 22px 46px; }
@media (min-width: 768px){ .lp-hero-inner { padding: 124px 48px 96px; } }

.lp-promo-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,224,193,0.4);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-family: var(--font-body); font-weight: 700; font-size: 13.5px; color: #fff; }
.lp-promo-pill b { color: var(--amber-300); font-size: 15px; }

.lp-manifest { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.lp-manifest span { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  color: rgba(255,238,225,0.92); padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,228,200,0.22); }

/* Mobile hero declutter: the promobar already shows −30%/до 31 августа, and the
   keyword pills overwhelm the first screen — hide both on phones for a clean offer */
@media (max-width: 640px){
  .lp-promo-pill { display: none; }
  .lp-manifest { display: none; }
  /* portrait mobile hero photo ~matches phone aspect → center it */
  .lp-hero-bg img { object-position: center; }
}

/* 2nd-screen (Emotion) overlay: dark-left keeps the headline readable, lighter
   right lets the ornament collection show. Mobile gets a fuller veil so the
   captioned photo recedes behind the full-width text. */
.lp-band-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(108deg, rgba(16,4,6,0.95) 0%, rgba(28,6,8,0.74) 46%, rgba(16,4,6,0.30) 100%); }
@media (max-width: 640px){
  .lp-band-scrim { background: linear-gradient(180deg, rgba(16,4,6,0.80) 0%, rgba(20,5,7,0.86) 50%, rgba(16,4,6,0.92) 100%); }
}

.lp-hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; font-family: var(--font-body); font-size: 14px; color: rgba(255,238,225,0.88); }
.lp-hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber-400); }
.lp-scrollcue { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 3; }
.lp-scrollcue .bar { display:block; width: 1px; height: 34px; background: linear-gradient(rgba(255,220,190,0.8), rgba(255,220,190,0)); animation: cuepulse 2.2s var(--ease-soft) infinite; }
@keyframes cuepulse { 0%,100%{ opacity:.3; transform: scaleY(.6) } 50%{ opacity:1; transform: scaleY(1) } }

/* ---- Hero: cinematic background + entrance choreography ----------- */
/* slow Ken Burns zoom on the photo (parallax lives on the parent, so transform here is free) */
.lp-hero-bg img { animation: lp-kenburns 26s ease-in-out infinite alternate; }
@keyframes lp-kenburns { from { transform: scale(1.04); } to { transform: scale(1.13); } }

/* faint gold embers rising — festive warmth, kept whisper-quiet */
.lp-hero-embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.lp-hero-embers span { position: absolute; bottom: -12px; width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle, var(--amber-300) 0%, rgba(247,185,104,0) 70%);
  opacity: 0; animation-name: lp-ember; animation-timing-function: linear; animation-iteration-count: infinite; }
@keyframes lp-ember {
  0%   { transform: translateY(0) scale(.5);   opacity: 0; }
  12%  { opacity: .8; }
  85%  { opacity: .4; }
  100% { transform: translateY(-86vh) scale(1.05); opacity: 0; }
}

/* staggered rise for hero lines (above the fold → pure CSS, no scroll dependency) */
.lp-rise { opacity: 0; animation: lp-rise .85s cubic-bezier(.16,1,.3,1) both; animation-delay: calc(var(--i, 0) * 0.08s + 0.1s); }
@keyframes lp-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* headline focus-in: rise + blur-to-sharp */
.lp-h1-anim { animation: lp-headline 1.05s cubic-bezier(.16,1,.3,1) .2s both; }
@keyframes lp-headline { from { opacity: 0; transform: translateY(34px); filter: blur(9px); } to { opacity: 1; transform: none; filter: blur(0); } }

/* gold accent word blooms a soft glow once the headline lands */
.lp-accent { animation: lp-goldglow 1.4s ease-out 1s both; }
@keyframes lp-goldglow {
  0%   { text-shadow: 0 0 0 rgba(247,185,104,0); }
  45%  { text-shadow: 0 0 28px rgba(247,185,104,.6); }
  100% { text-shadow: 0 0 16px rgba(247,185,104,.3); }
}

@media (prefers-reduced-motion: reduce){
  .lp-hero-bg img { animation: none; }
  .lp-hero-embers { display: none; }
  .lp-rise, .lp-h1-anim { animation: none; opacity: 1; transform: none; filter: none; }
  .lp-accent { animation: none; text-shadow: 0 0 16px rgba(247,185,104,.3); }
}

/* ---- Generic card lift + glare ----------------------------------- */
.lp-card {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--white); border: 1px solid var(--border-faint); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-soft);
}
.lp-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.lp-glare::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.30) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform 760ms var(--ease-out); }
.lp-glare:hover::before { transform: translateX(120%); }

/* ---- Problem / solution ------------------------------------------ */
.lp-grid { display: grid; gap: 24px; }
.lp-grid > *, .lp-stats > *, .lp-optlist > *, .lp-prodgrid > *, .lp-boxgrid > * { min-width: 0; }
.lp-grid-2 { grid-template-columns: 1fr; }
.lp-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px){ .lp-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px){ .lp-grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px){ .lp-grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

.lp-forget { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-forget span { font-family: var(--font-body); font-weight: 700; font-size: 15px; padding: 9px 16px; border-radius: 999px;
  background: var(--cream-200); color: var(--ink-300); text-decoration: line-through; text-decoration-color: rgba(155,146,134,0.55); border: 1px solid var(--border-warm); }

/* ---- Features ---------------------------------------------------- */
.lp-feature { padding: 30px 28px; }
.lp-feature .ic { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 999px; background: var(--red-100); color: var(--red-500); margin-bottom: 18px; transition: transform var(--dur-base) var(--ease-out), background var(--dur-base); }
.lp-feature:hover .ic { transform: scale(1.08) rotate(-6deg); background: var(--amber-300); color: var(--amber-600); }
.lp-feature .ic .mk-spark { width: 24px; height: 24px; }
.lp-feature h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; margin: 0 0 8px; color: var(--ink-900); }
.lp-feature p { margin: 0; color: var(--text-muted); font-size: 1rem; line-height: 1.55; }

/* ---- Catalog ----------------------------------------------------- */
.lp-cat-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-tab { font-family: var(--font-body); font-weight: 700; font-size: 15px; padding: 10px 20px; border-radius: 999px;
  background: var(--white); color: var(--text-primary); border: 1.5px solid var(--border-warm); cursor: pointer;
  transition: all var(--dur-base) var(--ease-out); }
.lp-tab:hover { border-color: var(--red-400); color: var(--red-500); transform: translateY(-2px); }
.lp-tab.active { background: var(--red-500); color: #fff; border-color: var(--red-500); box-shadow: var(--shadow-sm); }

.lp-prodgrid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px){ .lp-prodgrid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1040px){ .lp-prodgrid { grid-template-columns: repeat(4, 1fr); } }
.lp-prod { position: relative; cursor: pointer; border-radius: var(--radius-lg); overflow: hidden;
  appearance: none; -webkit-appearance: none; font-family: inherit; width: 100%; text-align: center; padding: 0;
  background: radial-gradient(130% 120% at 50% 18%, #fff 0%, var(--cream-300) 100%);
  border: 1px solid var(--border-warm); display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-soft), border-color var(--dur-base); }
.lp-prod:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--amber-400); }
.lp-prod:active { transform: translateY(-3px) scale(0.99); }
.lp-prod .pic { position: relative; aspect-ratio: 1; min-height: 0; display: flex; align-items: center; justify-content: center; padding: 10%; }
/* contain inside a fixed square box so every figure is the same scale and centred,
   instead of width/height:100% which let each box grow to the image's own ratio */
.lp-prod .pic img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; filter: drop-shadow(0 14px 22px rgba(94,20,22,0.22)); transition: transform var(--dur-slow) var(--ease-out); }
.lp-prod:hover .pic img { transform: scale(1.09) rotate(-1.5deg); }
.lp-prod .meta { padding: 0 16px 18px; text-align: center; }
.lp-prod .meta .nm { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink-900); }
.lp-prod .meta .sub { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-muted); margin-top: 2px; }
.lp-prod .badge { position: absolute; top: 12px; left: 12px; z-index: 3; display: inline-flex; align-items:center; gap:5px; padding: 5px 12px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }
.lp-prod .zoomcue { position: absolute; bottom: 12px; right: 12px; z-index: 3; width: 34px; height: 34px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.85); color: var(--red-500);
  opacity: 0; transform: scale(0.7); transition: all var(--dur-base) var(--ease-out); box-shadow: var(--shadow-sm); }
.lp-prod:hover .zoomcue { opacity: 1; transform: scale(1); }
.lp-prod.hit { border-color: var(--amber-400); box-shadow: 0 10px 34px rgba(242,161,78,0.28); grid-column: span 2; }
.lp-prod.hit .pic { aspect-ratio: auto; min-height: 320px; }
@media (min-width: 720px){ .lp-prod.hit { grid-row: span 2; } .lp-prod.hit .pic { min-height: 0; } }
.lp-hit-inner { display: grid; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 820px){ .lp-hit-inner { grid-template-columns: 1.05fr 1fr; } }

/* ready boxes */
.lp-boxgrid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 760px){ .lp-boxgrid { grid-template-columns: repeat(3, 1fr); } }
.lp-box { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: 28px 26px;
  background: linear-gradient(165deg, #fff 0%, var(--cream-200) 100%); border: 1px solid var(--border-warm);
  display: flex; flex-direction: column; cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.lp-box:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.lp-box.feature { background: var(--gradient-red); color: #fff; border-color: transparent; }
.lp-box .tier { font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-accent); }
.lp-box.feature .tier { color: var(--amber-300); }
.lp-box h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; margin: 8px 0 0; color: var(--ink-900); }
.lp-box.feature h3 { color: #fff; }
.lp-box .pic { height: 180px; display: flex; align-items: center; justify-content: center; margin: 14px 0; }
.lp-box .pic img { max-height: 100%; max-width: 100%; object-fit: contain; filter: drop-shadow(0 16px 26px rgba(40,6,6,0.28)); transition: transform var(--dur-slow) var(--ease-out); }
.lp-box:hover .pic img { transform: scale(1.06) translateY(-4px); }
.lp-box p { margin: 0; font-size: 0.96rem; line-height: 1.5; color: var(--text-muted); }
.lp-box.feature p { color: rgba(255,236,224,0.88); }

/* ---- Stats ------------------------------------------------------- */
.lp-stats { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
@media (min-width: 860px){ .lp-stats { grid-template-columns: repeat(4, 1fr); } }
.lp-stat .v { font-family: var(--font-display); font-weight: 900; line-height: 1; font-size: clamp(2.05rem, 7vw, 4rem); letter-spacing: -0.02em; color: var(--amber-400); }
.lp-stat .l { font-family: var(--font-body); font-size: 0.96rem; line-height: 1.4; color: rgba(255,236,224,0.82); margin-top: 12px; }
.lp-statline { height: 1px; background: rgba(255,221,196,0.18); margin: 44px 0; }

/* ---- Logo wall --------------------------------------------------- */
.lp-logowall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,221,196,0.16); border: 1px solid rgba(255,221,196,0.16); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 560px){ .lp-logowall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px){ .lp-logowall { grid-template-columns: repeat(4, 1fr); } }
.lp-logo { position: relative; background: var(--red-700); display: flex; align-items: center; justify-content: center; padding: 24px 18px; min-height: 124px;
  transition: background var(--dur-base), transform var(--dur-base) var(--ease-out); }
/* frosted glass sheen on each tile (kept subtle so the panel still reads as glass) */
.lp-logo::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(255,244,232,0.10), rgba(255,244,232,0) 46%);
  opacity: 0; transition: opacity var(--dur-base); }
/* logo as a single cream silhouette via alpha mask — same recolor technique as the
   koshkar ornament, so each brand's own colors never clash on the red glass */
.lp-logo .logo-mark { display: block; width: 100%; max-width: 170px; height: 54px;
  background: #F7E6D6; opacity: 0.72;
  -webkit-mask: var(--logo) center / contain no-repeat; mask: var(--logo) center / contain no-repeat;
  transition: background var(--dur-base), opacity var(--dur-base), transform var(--dur-base) var(--ease-out); }
.lp-logo .vh { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.lp-logo::after { content: ""; position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); width: 0; height: 2px; background: var(--amber-400); transition: width var(--dur-base) var(--ease-out); }
.lp-logo:hover { background: var(--red-600); transform: translateY(-3px); }
.lp-logo:hover::before { opacity: 1; }
.lp-logo:hover .logo-mark { background: #FFF7EF; opacity: 1; transform: scale(1.05); }
.lp-logo:hover::after { width: 40px; }
/* square emblem (Esentai monogram) needs more height to balance the wordmarks */
/* wordmark fallback for brands without a sourceable logo — same cream family */
.lp-logo .logo-word { font-family: var(--font-body); font-weight: 800; font-size: clamp(1rem, 2vw, 1.22rem); letter-spacing: 0.005em;
  color: #F7E6D6; opacity: 0.74; transition: color var(--dur-base), opacity var(--dur-base), transform var(--dur-base) var(--ease-out); }
.lp-logo:hover .logo-word { color: #FFF7EF; opacity: 1; transform: scale(1.05); }

/* collab */
.lp-collab { display: grid; gap: 20px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 820px){ .lp-collab { grid-template-columns: 1fr auto 1fr; align-items: center; } }
.lp-collab-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,224,196,0.22); border-radius: var(--radius-lg); padding: 26px 24px; }
.lp-collab-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--amber-300); margin: 0 0 8px; }
.lp-collab-card p { margin: 0; color: rgba(255,238,228,0.85); font-size: 0.98rem; line-height: 1.5; }
.lp-collab .x { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: rgba(255,238,228,0.5); text-align: center; }

/* ---- Corporate --------------------------------------------------- */
.lp-optlist { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 720px){ .lp-optlist { grid-template-columns: 1fr 1fr; } }
.lp-opt { display: flex; align-items: flex-start; gap: 14px; background: var(--white); border: 1px solid var(--border-faint); border-radius: var(--radius-md); padding: 18px 20px; box-shadow: var(--shadow-xs);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-base); }
.lp-opt:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--amber-400); }
.lp-opt .n { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--amber-600); flex: 0 0 auto; width: 30px; }
.lp-opt h4 { margin: 0 0 4px; font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; color: var(--ink-900); }
.lp-opt p { margin: 0; font-size: 0.92rem; color: var(--text-muted); line-height: 1.45; }

/* ---- Urgency ----------------------------------------------------- */
.lp-deadlines { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 680px){ .lp-deadlines { grid-template-columns: 1fr 1fr; } }
.lp-deadline { display: flex; align-items: center; gap: 18px; padding: 24px 26px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,224,196,0.24); }
.lp-deadline .big { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem,5vw,2.8rem); color: var(--amber-300); line-height: 1; }
.lp-deadline .t { font-family: var(--font-body); }
.lp-deadline .t b { display: block; color: #fff; font-size: 1.05rem; }
.lp-deadline .t span { color: rgba(255,236,224,0.78); font-size: 0.92rem; }
.lp-count { display: flex; gap: 10px; }
.lp-count .u { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,224,196,0.26); border-radius: var(--radius-md); padding: 12px 14px; text-align: center; min-width: 64px; }
.lp-count .u .n { font-family: var(--font-display); font-weight: 900; font-size: 1.9rem; color: #fff; line-height: 1; }
.lp-count .u .lbl { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber-300); margin-top: 6px; }

/* ---- Form -------------------------------------------------------- */
.lp-form { display: grid; gap: 14px; }
.lp-field { display: flex; flex-direction: column; gap: 7px; }
.lp-field label { font-family: var(--font-body); font-weight: 700; font-size: 13px; color: rgba(255,238,225,0.9); }
.lp-field input { font-family: var(--font-body); font-size: 16px; color: #fff; background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,226,196,0.30); border-radius: var(--radius-md); padding: 14px 16px; outline: none;
  transition: border-color var(--dur-base), background var(--dur-base), box-shadow var(--dur-base); }
.lp-field input::placeholder { color: rgba(255,230,214,0.5); }
.lp-field input:focus { border-color: var(--amber-400); background: rgba(255,255,255,0.16); box-shadow: 0 0 0 4px rgba(242,161,78,0.20); }
.lp-field.err input { border-color: #ff9b8a; box-shadow: 0 0 0 4px rgba(255,120,100,0.18); }
.lp-field .msg { font-size: 12px; color: #ffc1b4; }
.lp-form-note { font-size: 13px; color: rgba(255,236,224,0.7); display:flex; align-items:center; gap: 8px; }
.lp-form.light label { color: var(--ink-700); }
.lp-form.light input { color: var(--ink-900); background: var(--white); border-color: var(--border-warm); }
.lp-form.light input::placeholder { color: var(--ink-300); }
.lp-form.light input:focus { border-color: var(--amber-500); box-shadow: 0 0 0 4px rgba(242,161,78,0.18); }
.lp-form.light + .lp-form-note, .lp-form.light .lp-form-note { color: var(--text-muted); }

.lp-success { text-align: center; padding: 20px 6px; }
.lp-success .ring { width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; background: rgba(242,161,78,0.18); border: 2px solid var(--amber-400); color: var(--amber-400); animation: pop 480ms var(--ease-out); }
@keyframes pop { 0%{ transform: scale(0.5); opacity: 0 } 100%{ transform: scale(1); opacity: 1 } }

/* ---- Modal ------------------------------------------------------- */
.lp-modal-back { position: fixed; inset: 0; z-index: 90; background: rgba(18,4,6,0.62); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 300ms var(--ease-soft); overflow-y: auto; }
.lp-modal-back.open { opacity: 1; pointer-events: auto; }
.lp-modal { position: relative; width: 100%; max-width: 520px; padding: 34px 30px; margin: auto;
  transform: translateY(24px) scale(0.97); opacity: 0; transition: transform 380ms var(--ease-out), opacity 380ms; }
.lp-modal-back.open .lp-modal { transform: none; opacity: 1; }
.lp-modal .close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 22px; line-height: 1; transition: background var(--dur-base); }
.lp-modal .close:hover { background: rgba(255,255,255,0.24); }

.lp-pmodal { max-width: 920px; width: 100%; display: grid; grid-template-columns: 1fr; overflow: hidden; padding: 0; }
@media (min-width: 760px){ .lp-pmodal { grid-template-columns: 1.05fr 1fr; } }
.lp-pmodal .img { position: relative; background: radial-gradient(130% 110% at 50% 25%, #fff, var(--cream-300)); min-height: 300px; display: flex; align-items: center; justify-content: center; padding: 36px; }
.lp-pmodal .img img { max-width: 100%; max-height: 380px; object-fit: contain; filter: drop-shadow(0 22px 34px rgba(94,20,22,0.26)); }
.lp-pmodal .body { padding: 34px 32px; color: #fff; display: flex; flex-direction: column; gap: 12px; }
.lp-pmodal .body h3 { font-family: var(--font-display); font-weight: 800; font-size: 2rem; margin: 0; color: #fff; }
.lp-pmodal .body .kz { font-family: var(--font-body); color: var(--amber-300); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; }
.lp-pmodal .body p { margin: 0; color: rgba(255,238,228,0.86); font-size: 1.02rem; line-height: 1.55; }

/* ---- Divider mark (ethnic) --------------------------------------- */
.lp-divider-mark { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--amber-500); }
.lp-divider-mark .ln { height: 1px; width: 64px; background: currentColor; opacity: 0.4; }
.lp-divider-mark .curl { width: 26px; height: 32px; background: currentColor; opacity: 0.7;
  -webkit-mask: url("../assets/ornament-koshkar.png") center/contain no-repeat; mask: url("../assets/ornament-koshkar.png") center/contain no-repeat; }
.lp-divider-mark .curl.flip { transform: scaleX(-1); }

/* ---- Footer ------------------------------------------------------ */
.lp-footer { background: #140606; color: rgba(255,236,224,0.8); position: relative; overflow: hidden; }
.lp-footer a { color: rgba(255,236,224,0.8); }
.lp-footer a:hover { color: var(--amber-400); }
.lp-foot-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 760px){ .lp-foot-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.lp-foot-grid h5 { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; color: var(--amber-400); margin: 0 0 14px; }
.lp-foot-links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }

/* utility */
.lp-maxw { max-width: 760px; }
.lp-center { text-align: center; }
.lp-mt-s { margin-top: 14px; } .lp-mt-m { margin-top: 24px; } .lp-mt-l { margin-top: 38px; }

/* ---- Floating video teaser (desktop only) ------------------------ */
.lp-video-teaser {
  position: fixed; left: 22px; bottom: 22px; z-index: 50;
  width: 168px; border-radius: 18px; overflow: hidden; background: #1a0a0b;
  border: 1.5px solid rgba(255,228,200,0.35); box-shadow: 0 18px 50px rgba(20,4,6,0.5);
  cursor: pointer; opacity: 0; transform: translateY(40px) scale(.96); pointer-events: none;
  transition: transform .6s var(--ease-out), opacity .6s, width .5s var(--ease-out);
}
.lp-video-teaser.shown { opacity: 1; transform: none; pointer-events: auto; }
.lp-video-teaser.shown:not(.open) { animation: vt-pulse 2.8s ease-in-out infinite; }
.lp-video-teaser.open { width: 340px; cursor: default; }
.lp-video-teaser .vt-video { display: block; width: 100%; height: auto; }
.lp-video-teaser .vt-close {
  position: absolute; top: 6px; right: 6px; z-index: 3; width: 26px; height: 26px; border: 0; border-radius: 50%;
  background: rgba(20,4,6,0.6); color: #fff; font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: background var(--dur-base);
}
.lp-video-teaser .vt-close:hover { background: rgba(20,4,6,0.9); }
.lp-video-teaser .vt-hint {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 10px; font-family: var(--font-body); font-weight: 700; font-size: 12.5px; letter-spacing: .02em; color: #fff;
  background: linear-gradient(transparent, rgba(20,4,6,0.88));
}
.lp-video-teaser .vt-play { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; padding-left: 1px;
  border-radius: 50%; background: var(--amber-500); color: var(--ink-900); font-size: 9px; }
@keyframes vt-pulse {
  0%,100% { box-shadow: 0 18px 50px rgba(20,4,6,0.5), 0 0 0 0 rgba(247,185,104,0); }
  50%     { box-shadow: 0 18px 50px rgba(20,4,6,0.5), 0 0 0 6px rgba(247,185,104,0.18); }
}
@media (max-width: 900px){ .lp-video-teaser { display: none; } }
@media (prefers-reduced-motion: reduce){ .lp-video-teaser { transition: opacity .4s; transform: none; animation: none; } }
