/* EVERMIRA — витрина-демо (показ наполненной страницы + продающие блоки). Дополняет style/memorial/content. */

/* продающий герой витрины */
.demo-hero { padding: 80px 0 40px; position: relative; }
.demo-hero h1 { font-size: clamp(34px, 5vw, 60px); line-height: 1.05; margin: 16px 0 18px; }
.demo-hero h1 em { font-style: italic; color: var(--gold); }
.demo-hero__lead { font-size: clamp(16px, 2vw, 20px); color: var(--muted); max-width: 620px; margin-bottom: 30px; }
.demo-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* полоса цифр «насколько богато наполнено» */
.stat-strip { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.stat-chip { display: flex; align-items: center; gap: 11px; padding: 12px 18px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line-soft); }
.stat-chip b { font-family: var(--serif); font-size: 26px; line-height: 1; }
.stat-chip span { font-size: 12.5px; color: var(--faint); }
.stat-chip svg { width: 20px; height: 20px; color: var(--gold); }

/* рамка-«это пример» вокруг показанного мемориала */
.frame-note { display: flex; align-items: center; gap: 12px; margin: 28px 0 0; padding: 14px 20px; border-radius: 14px; background: linear-gradient(160deg, rgba(224,177,115,0.1), var(--ink-2)); border: 1px solid rgba(224,177,115,0.3); }
.frame-note svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
.frame-note p { font-size: 14px; color: var(--text); }
.frame-note b { color: var(--gold); }

.showcase { border: 1px solid var(--line); border-radius: 26px; overflow: hidden; margin-top: 18px; background: var(--ink); position: relative; }
.showcase__bar { display: flex; align-items: center; gap: 8px; padding: 13px 18px; background: var(--ink-2); border-bottom: 1px solid var(--line); }
.showcase__dots { display: flex; gap: 6px; }
.showcase__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); display: block; }
.showcase__url { margin-left: 10px; font-size: 12.5px; color: var(--faint); display: flex; align-items: center; gap: 7px; }
.showcase__url svg { width: 13px; height: 13px; color: #8fd4a3; }
.showcase__body { padding: 0; }
.showcase .mem-hero { padding-top: 56px; }
.showcase .mem-section:first-of-type { border-top: none; }

/* продающая аннотация-«фишка» над разделами показа */
.callout { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; padding: 7px 14px; border-radius: 22px; background: rgba(143,176,212,0.1); border: 1px solid rgba(143,176,212,0.3); font-size: 12.5px; color: var(--azure); }
.callout svg { width: 15px; height: 15px; }

/* «как это собралось» — 3 шага */
.collected { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.collected .step-card { padding: 28px 24px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line-soft); }
.collected .num { font-family: var(--serif); font-size: 40px; color: var(--gold); line-height: 1; }
.collected h3 { font-size: 21px; margin: 12px 0 8px; }
.collected p { font-size: 14.5px; color: var(--muted); }

/* лайтбокс галереи */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 30px; background: rgba(6,7,10,0.92); backdrop-filter: blur(8px); }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox__x { position: absolute; top: 22px; right: 26px; color: #fff; opacity: .8; }
.lightbox__x svg { width: 30px; height: 30px; }
.gallery .ph { cursor: zoom-in; }

/* финальный CTA витрины */
.demo-final { text-align: center; padding: 72px 30px; border-radius: 26px; background: linear-gradient(160deg, var(--panel), var(--ink-2)); border: 1px solid var(--line); position: relative; overflow: hidden; }
.demo-final::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 240px at 50% 0%, rgba(224,177,115,0.16), transparent 70%); }
.demo-final h2 { font-size: clamp(30px, 4.5vw, 48px); position: relative; }
.demo-final p { color: var(--muted); max-width: 500px; margin: 16px auto 28px; position: relative; }
.demo-final .demo-cta { justify-content: center; position: relative; }

@media (max-width: 860px) { .collected { grid-template-columns: 1fr; } }
