:root {
  --bg: #0e0e12;
  --card: #17171e;
  --text: #f2f0ec;
  --muted: #a09a92;
  --accent: #e8e6e1;
  --accent2: #9a9890;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: "Inter", -apple-system, "Segoe UI", sans-serif; line-height: 1.55; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; }
h2 { font-size: 2rem; text-align: center; margin-bottom: 2rem; }
section { padding: 4rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.hidden { display: none !important; }
.center { text-align: center; }
.hint { color: var(--muted); font-size: .9rem; }

.nav { position: sticky; top: 0; background: rgba(14,14,18,.92); backdrop-filter: blur(8px); z-index: 10; border-bottom: 1px solid #26262e; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: .7rem 1.5rem; }
.brand { display: flex; align-items: center; gap: .6rem; color: var(--text); text-decoration: none; font-family: Georgia, serif; font-size: 1.1rem; }
.brand img { height: 38px; border-radius: 8px; }
.nav nav { display: flex; gap: 1.4rem; align-items: center; }
.nav nav a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.nav nav a:hover { color: var(--text); }
.nav nav a.btn, .nav nav a.btn:hover { color: #111; }

.hero { text-align: center; padding: 6rem 1.5rem 5rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1.2rem; }
.sub { color: var(--muted); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-note { margin-top: 1.2rem; color: var(--muted); font-size: .9rem; }

.btn { display: inline-block; background: linear-gradient(160deg, #f5f4f0, #b9b7b0 60%, #8f8d86); color: #111; text-decoration: none; border: none; border-radius: 999px; cursor: pointer; font-weight: 600; }
.btn-big { padding: 1rem 2.4rem; font-size: 1.1rem; }
.btn-small { padding: .45rem 1.1rem; font-size: .9rem; }
.btn:hover { filter: brightness(1.1); }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.2rem; }
.step { background: var(--card); border-radius: 16px; padding: 1.4rem; }
.step .num { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(160deg, #f5f4f0, #9a9890); color:#111; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: .8rem; }
.step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .9rem; }

.ex-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; }
@media (min-width: 900px) { .ex-grid { grid-template-columns: repeat(4, 1fr); } }
.ex-grid img, .ex-grid video { width: 100%; aspect-ratio: 9/16; object-fit: cover; border-radius: 14px; }
figcaption { text-align: center; color: var(--muted); font-size: .85rem; margin-top: .5rem; }
.ex-wide { grid-column: span 2; }
.ex-wide video { aspect-ratio: 9/8; }

.create { background: var(--card); border-radius: 24px; margin-top: 2rem; }
.form-block { margin-bottom: 2rem; }
.form-block h3 { margin-bottom: .6rem; }
input[type=file] { color: var(--muted); margin-top: .5rem; cursor: pointer; }
input[type=file]::file-selector-button {
  background: linear-gradient(160deg, #f5f4f0, #b9b7b0 60%, #8f8d86);
  color: #111; border: none; border-radius: 999px; padding: .5rem 1.2rem;
  font-weight: 600; cursor: pointer; margin-right: .8rem;
  transition: filter .25s ease, box-shadow .25s ease;
}
input[type=file]:hover::file-selector-button {
  filter: brightness(1.15);
  box-shadow: 0 0 18px rgba(245,244,240,.45);
}

.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .8rem; }
.loc { cursor: pointer; border: 2px solid transparent; border-radius: 12px; overflow: hidden; text-align: center; background: #1f1f28; }
.loc img { width: 100%; height: 110px; object-fit: cover; display: block; }
.loc span { display: block; font-size: .8rem; padding: .4rem; color: var(--muted); }
.loc.sel { border-color: var(--accent); }
.loc.sel span { color: var(--text); }

.motion-grid { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: .8rem; }
.motion { background: #1f1f28; color: var(--muted); border: 2px solid transparent; border-radius: 999px; padding: .5rem 1.1rem; cursor: pointer; font-size: .9rem; }
.motion.sel { border-color: var(--accent); color: var(--text); }

.progress { text-align: center; padding: 2rem; }
.spinner { width: 44px; height: 44px; border: 4px solid #2a2a34; border-top-color: var(--accent); border-radius: 50%; margin: 0 auto 1rem; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.tryon { cursor: pointer; border: 2px solid transparent; border-radius: 14px; }
.tryon:hover { border-color: var(--accent); }
.result video { width: 100%; max-width: 380px; border-radius: 14px; display: block; margin: 0 auto 1rem; }
.result { text-align: center; }

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.2rem; margin-bottom: 1.2rem; }
.card { background: var(--card); border-radius: 16px; padding: 1.6rem; border: 1px solid #26262e; }
.card.featured { border-color: var(--accent); }
.card h3 { margin-bottom: .4rem; }
.price { font-size: 1.9rem; font-weight: 700; margin-bottom: .8rem; background: linear-gradient(120deg, var(--accent), var(--accent2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.card ul { list-style: none; color: var(--muted); font-size: .92rem; }
.card li { padding: .25rem 0; }

footer { text-align: center; color: var(--muted); padding: 2.5rem 1rem; border-top: 1px solid #26262e; font-size: .85rem; }

/* --- Динамика --- */
.stripes { position: fixed; inset: 0; z-index: -1; overflow: hidden; opacity: .35; }
.stripes span { position: absolute; top: -20%; height: 140%; width: 9vw; transform: skewX(-14deg); background: linear-gradient(180deg, transparent, rgba(220,218,212,.16), transparent); animation: stripeMove 9s linear infinite; }
.stripes span:nth-child(1) { left: 4%; animation-delay: 0s; }
.stripes span:nth-child(2) { left: 22%; animation-delay: -1.6s; background: linear-gradient(180deg, transparent, rgba(160,158,150,.16), transparent); }
.stripes span:nth-child(3) { left: 40%; animation-delay: -3.1s; }
.stripes span:nth-child(4) { left: 58%; animation-delay: -4.7s; background: linear-gradient(180deg, transparent, rgba(160,158,150,.14), transparent); }
.stripes span:nth-child(5) { left: 76%; animation-delay: -6.2s; }
.stripes span:nth-child(6) { left: 92%; animation-delay: -7.8s; background: linear-gradient(180deg, transparent, rgba(220,218,212,.13), transparent); }
@keyframes stripeMove { 0% { transform: skewX(-14deg) translateX(-30vw); opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { transform: skewX(-14deg) translateX(30vw); opacity: 0; } }

.marquee { overflow: hidden; border-top: 1px solid #26262e; border-bottom: 1px solid #26262e; padding: .8rem 0; background: var(--card); }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 22s linear infinite; }
.marquee-track span { font-family: Georgia, serif; letter-spacing: .18em; color: var(--muted); font-size: .9rem; padding-right: 2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.on { opacity: 1; transform: none; }

.hero h1 { animation: fadeUp 1s ease both; }
.hero .sub { animation: fadeUp 1s .2s ease both; }
.hero .btn-big { animation: fadeUp 1s .4s ease both; }
.hero-note { animation: fadeUp 1s .55s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.btn-big { position: relative; overflow: hidden; }
.btn-big::after { content: ""; position: absolute; top: 0; left: -80%; width: 40%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent); animation: shine 3.2s ease infinite; }
@keyframes shine { 0% { left: -80%; } 55% { left: 130%; } 100% { left: 130%; } }

.ex-grid figure { transition: transform .35s ease; }
.ex-grid figure:hover { transform: translateY(-8px) scale(1.02); }
.loc { transition: transform .3s ease, border-color .3s; }
.loc:hover { transform: translateY(-4px); }
.step { transition: transform .3s ease, box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(220,218,212,.12); }
.card { transition: transform .3s ease; }
.card:hover { transform: translateY(-6px); }
@media (prefers-reduced-motion: reduce) { .stripes span, .marquee-track, .btn-big::after { animation: none; } }
.requisites { font-size: .75rem; color: #6d675f; margin-top: .8rem; line-height: 1.6; }
