/* pt_store — единая тема ATELIER (редакционный scrollytelling).
   Тёплый крем/уголь, Fraunces + Manrope, акцент «глина», кинетика, лукбук,
   quick-view, shop-the-look, кастомный курсор. Превью /v/* живут отдельно. */

:root {
  /* ── ATELIER-палитра ── */
  --bg: #f7f4ee; --ink: #1c1815; --soft: #5a5247; --mute: #6b6254;
  --line: rgb(28 24 21 / 0.14); --line-strong: rgb(28 24 21 / 0.24);
  --clay: #b4502c; --clay-deep: #8f3f22; --clay-2: #c2613f; --clay-wash: rgb(180 80 44 / 0.09);
  --paper: #fffdf8;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px; --pad: clamp(1.1rem, 4vw, 2rem); --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 14px; --radius-lg: 20px;
  --shadow-card: 0 1px 0 rgb(255 255 255 / 0.6) inset, 0 18px 40px -30px rgb(28 24 21 / 0.30);
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Manrope', ui-monospace, monospace;
  /* ── алиасы для утилитарных компонентов (формы/сетки/ЛК/prose) ── */
  --text: var(--ink); --text-soft: var(--soft); --text-mute: var(--mute);
  --surface: var(--paper); --bg-2: #f1ebe1;
  --accent: var(--clay); --accent-deep: var(--clay-deep); --accent-2: var(--clay-2); --accent-wash: var(--clay-wash);
  --cta: var(--ink); --cta-fg: var(--paper); --cta-hover: #000;
  --on-hero: #fbf7f1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: clamp(1rem, 0.96rem + 0.2vw, 1.06rem); line-height: 1.62;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 84% -14%, rgb(180 80 44 / 0.10), transparent 60%),
    radial-gradient(48rem 34rem at -6% 0%, rgb(180 80 44 / 0.06), transparent 55%);
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 0.6rem; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 1.4rem + 3.6vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.8rem); }
h3 { font-size: 1.2rem; }
em { font-style: italic; color: var(--clay); }
img { max-width: 100%; }

.kick, .eyebrow {
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clay); font-weight: 600; display: inline-block; margin-bottom: 0.6rem;
}
.lead { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem); color: var(--soft); max-width: 60ch; }

/* ── кнопки (ATELIER + алиасы .cta/.secondary для утилитарных шаблонов) ── */
.btn-fill, .cta, .btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--ink); color: var(--paper); padding: 0.95rem 1.7rem; border: 1px solid transparent;
  border-radius: 100px; font: inherit; font-weight: 700; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.btn-fill:hover, .cta:hover, .btn-primary:hover { transform: translateY(-2px); background: #000; color: var(--paper); }
.btn-fill.lg, .cta.lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-line, .secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.5rem; border: 1px solid var(--line-strong); border-radius: 100px; font: inherit; font-weight: 600;
  background: transparent; color: var(--ink); cursor: pointer; transition: border-color 0.25s, color 0.25s;
}
.btn-line:hover, .secondary:hover, .btn-ghost:hover { border-color: var(--clay); color: var(--clay); }

.breadcrumb { color: var(--mute); font-size: 0.9rem; margin-bottom: 1.4rem; padding-top: clamp(1.4rem, 3vw, 2rem); }
.breadcrumb a { color: var(--soft); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { color: var(--clay); }
.notice { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-card); }
.status-pill { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 100px; background: var(--clay-wash); color: var(--clay-deep); border: 1px solid rgb(180 80 44 / 0.24); font-size: 0.85rem; font-weight: 600; }

.site-main { min-height: 50vh; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section-pad { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.6rem, 6vw, 5rem) var(--pad); }
.section-head { margin-bottom: 1.4rem; }

/* ── шапка ── */
.ate-head {
  position: sticky; top: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem clamp(1rem, 4vw, 2.4rem); flex-wrap: wrap;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--bg) 72%, transparent); border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.ate-head.solid { border-color: var(--line); background: color-mix(in srgb, var(--bg) 92%, transparent); }
.ate-logo { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--ink); }
.ate-logo em { color: var(--clay); font-style: normal; }
.ate-nav { display: flex; gap: clamp(0.7rem, 2vw, 1.5rem); align-items: center; flex-wrap: wrap; }
.ate-nav a { color: var(--soft); font-weight: 500; font-size: 0.95rem; }
.ate-nav a:hover { color: var(--ink); }
.ate-nav .ate-cta { background: var(--ink); color: var(--paper); padding: 0.5rem 1.1rem; border-radius: 100px; }
.ate-nav .ate-cta:hover { background: #000; color: var(--paper); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line-strong); border-radius: 12px; color: var(--ink); cursor: pointer; }
.nav-toggle svg { width: 20px; height: 20px; }

/* ── аккаунт-меню в шапке (монограмма + дропдаун) ── */
.user-menu { position: relative; }
.user-trigger { display: inline-flex; align-items: center; gap: 0.55rem; cursor: pointer; list-style: none; outline: none; }
.user-trigger::-webkit-details-marker { display: none; }
.user-trigger::marker { content: ''; }
.monogram {
  width: 38px; height: 38px; flex: none; border-radius: 100px;
  background: var(--clay); color: var(--paper); border: 1px solid transparent;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; line-height: 1;
  user-select: none; transition: transform 0.2s var(--ease), background 0.2s;
}
.user-trigger:hover .monogram { background: var(--clay-deep); transform: translateY(-1px); }
.user-trigger:focus-visible .monogram { outline: 2px solid var(--clay); outline-offset: 2px; }
.monogram-label { display: none; }
.user-pop {
  position: absolute; right: 0; top: calc(100% + 0.55rem); z-index: 50;
  display: grid; gap: 0.1rem; min-width: 190px; padding: 0.45rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 24px 44px -24px rgb(28 24 21 / 0.45);
}
.user-pop-name { padding: 0.55rem 0.8rem 0.45rem; font-weight: 600; font-size: 0.9rem; color: var(--ink); border-bottom: 1px solid var(--line); margin-bottom: 0.15rem; }
.user-pop a { padding: 0.6rem 0.8rem; border-radius: 9px; color: var(--soft); font-weight: 500; font-size: 0.95rem; }
.user-pop a:hover { background: var(--bg); color: var(--clay); }

/* ── hero ── */
.ate-hero { position: relative; min-height: clamp(560px, 90vh, 880px); display: flex; align-items: center; overflow: hidden; }
.ate-hero-bg { position: absolute; inset: -8% 0; background-size: cover; background-position: center 28%; will-change: transform; }
.ate-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgb(247 244 238 / 0.96) 0%, rgb(247 244 238 / 0.9) 40%, rgb(247 244 238 / 0.42) 55%, rgb(247 244 238 / 0.06) 72%, transparent 100%); }
.ate-hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 3rem); width: 100%; }
.ate-title { font-size: clamp(2.6rem, 1.2rem + 4.4vw, 5.4rem); font-weight: 400; margin: 1rem 0 1.2rem; max-width: 13ch; }
.ate-title .line { display: block; overflow: hidden; }
.ate-title .line > span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.loaded .ate-title .line > span { transform: translateY(0); }
.ate-sub { max-width: 34ch; color: var(--soft); font-size: clamp(1.05rem, 0.97rem + 0.4vw, 1.28rem); margin: 0 0 2rem; }
.ate-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid var(--line-strong); border-radius: 100px; z-index: 2; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--clay); border-radius: 4px; animation: cue 1.6s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(16px); } }

/* ── reveal ── */
html.js .reveal-up, html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js .reveal-up.is-visible, html.js .reveal.is-visible { opacity: 1; transform: none; }

/* ── предиктивный поиск ── */
.find { max-width: var(--maxw); margin: clamp(2rem, 5vw, 3.2rem) auto 0; padding: 0 clamp(1.2rem, 5vw, 3rem); }
.find-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.find-inner .kick { flex: 0 0 auto; margin: 0; }
.find-box { position: relative; flex: 1 1 320px; }
.find-ic { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--mute); }
.find-box input { width: 100%; font: inherit; font-size: 1.05rem; padding: 1rem 1.1rem 1rem 2.9rem; border: 1px solid var(--line-strong); border-radius: 100px; background: var(--paper); color: var(--ink); }
.find-box input:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgb(180 80 44 / 0.12); }
.suggest { position: absolute; left: 0; right: 0; top: calc(100% + 0.4rem); background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 24px 44px -24px rgb(28 24 21 / 0.45); list-style: none; margin: 0; padding: 0.35rem; z-index: 30; max-height: 320px; overflow: auto; }
.suggest li a { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0.8rem; border-radius: 9px; color: var(--soft); font-weight: 500; }
.suggest li a:hover { background: var(--bg); color: var(--clay); }
.suggest li a .s-go { color: var(--clay); opacity: 0.7; }
.suggest .s-empty { padding: 0.7rem 0.8rem; color: var(--mute); }

/* ── marquee ── */
.marquee { border-block: 1px solid var(--line); background: var(--paper); overflow: hidden; padding: 1rem 0; margin-top: clamp(2rem, 5vw, 3rem); }
.marquee-row { display: flex; gap: 1.6rem; width: max-content; align-items: center; animation: scrollx 42s linear infinite; }
.marquee-row span { font-family: var(--font-display); font-size: clamp(1.3rem, 1rem + 1.6vw, 2.2rem); color: var(--ink); white-space: nowrap; }
.marquee-row .sep { color: var(--clay); font-size: 1rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ── scrollytelling «как это работает» ── */
.how { max-width: var(--maxw); margin: clamp(4rem, 9vw, 8rem) auto; padding: 0 clamp(1.2rem, 5vw, 3rem); }
.how-sticky { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.how-visual { position: sticky; top: 12vh; height: 76vh; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.how-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.06); transition: opacity 0.8s var(--ease), transform 1.2s var(--ease); }
.how-img.on { opacity: 1; transform: scale(1); }
.how-steps { padding: 8vh 0; }
.how-steps h2 { font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem); margin: 0.6rem 0 2.5rem; }
.how-step { padding: 2.2rem 0; border-top: 1px solid var(--line); opacity: 0.85; transition: opacity 0.4s var(--ease), border-color 0.4s var(--ease); }
.how-step.on { opacity: 1; border-top-color: var(--clay); }
.how-step .num { font-family: var(--font-body); font-weight: 700; color: var(--accent-deep); letter-spacing: 0.1em; }
.how-step.on .num { color: var(--clay); }
.how-step h3 { font-family: var(--font-display); font-size: 1.7rem; margin: 0.4rem 0 0.5rem; }
.how-step p { color: var(--soft); margin: 0; max-width: 42ch; }

/* ── лукбук-rail ── */
.look { max-width: var(--maxw); margin: clamp(4rem, 9vw, 7rem) auto; padding: 0 clamp(1.2rem, 5vw, 3rem); }
.look-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 1.5rem; }
.look-head h2 { font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3rem); margin: 0.2rem 0 0; }
.look-rail { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(240px, 30vw, 330px); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: thin; }
.look-card { scroll-snap-align: start; cursor: pointer; }
.look-img { position: relative; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; }
.look-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.look-card:hover .look-photo { transform: scale(1.03); }
.qv-tag { position: absolute; left: 0.7rem; bottom: 0.7rem; background: rgb(255 255 255 / 0.92); color: var(--ink); font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 100px; opacity: 0; transform: translateY(6px); transition: opacity 0.25s, transform 0.25s; }
.look-card:hover .qv-tag { opacity: 1; transform: none; }
.look-meta { display: flex; align-items: baseline; gap: 0.6rem; padding: 0.7rem 0.2rem 0; }
.look-meta .idx { font-family: var(--font-body); font-size: 0.75rem; color: var(--mute); }
.look-meta .nm { font-family: var(--font-display); font-size: 1.2rem; }
.look-hint { color: var(--mute); font-size: 0.85rem; margin-top: 0.4rem; }
.look-card .look-logo { position: absolute; left: 0.7rem; top: 0.7rem; right: auto; width: 50px; height: 50px; padding: 7px; border-radius: 12px; display: none; background: rgb(255 255 255 / 0.95); backdrop-filter: blur(4px); box-shadow: 0 8px 22px -14px rgb(28 24 21 / 0.7); z-index: 2; }
.look-card .look-logo.has-logo { display: inline-flex; }
.look-logo::after { content: none; }

/* ── shop-the-look ── */
.shoplook { max-width: var(--maxw); margin: clamp(3.5rem, 7vw, 6rem) auto; padding: 0 clamp(1.2rem, 5vw, 3rem); display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.sl-image { position: relative; aspect-ratio: 4/5; border-radius: 18px; background-size: cover; background-position: center; border: 1px solid var(--line); }
.hotspot { position: absolute; width: 28px; height: 28px; transform: translate(-50%, -50%); background: none; border: 0; cursor: pointer; padding: 0; }
.hotspot span { display: block; width: 14px; height: 14px; margin: 7px; border-radius: 100px; background: #fff; box-shadow: 0 0 0 0 rgb(255 255 255 / 0.7); animation: hpulse 2s infinite; transition: transform 0.2s var(--ease); }
.hotspot:hover span, .hotspot:focus-visible span { transform: scale(1.22); }
@keyframes hpulse { 0% { box-shadow: 0 0 0 0 rgb(255 255 255 / 0.55); } 70% { box-shadow: 0 0 0 14px rgb(255 255 255 / 0); } 100% { box-shadow: 0 0 0 0 rgb(255 255 255 / 0); } }
.hotpop { position: absolute; z-index: 4; transform: translate(-50%, -120%); background: var(--ink); color: var(--paper); border-radius: 10px; padding: 0.6rem 0.8rem; display: flex; flex-direction: column; gap: 0.2rem; min-width: 140px; box-shadow: 0 18px 30px -16px rgb(28 24 21 / 0.6); }
.hotpop b { font-family: var(--font-display); }
.hotpop a { color: #e6b59c; font-weight: 700; font-size: 0.85rem; }
.sl-copy h2 { font-size: clamp(1.8rem, 1.2rem + 2.6vw, 3.2rem); margin: 0.5rem 0 0.8rem; }
.sl-copy p { color: var(--soft); margin: 0 0 1.6rem; max-width: 46ch; }

/* ── cta-band ── */
.cta-band { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; margin-top: clamp(3rem, 6vw, 5rem); }
.cta-bg { position: absolute; inset: -10% 0; background-size: cover; background-position: center 35%; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(20 16 12 / 0.82), rgb(20 16 12 / 0.4) 60%, rgb(20 16 12 / 0.25)); }
.cta-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 3rem); color: #fbf7f1; }
.cta-inner h2 { font-size: clamp(2.4rem, 1.4rem + 5vw, 5rem); font-weight: 400; color: #fff; }
.cta-inner p { max-width: 40ch; opacity: 0.9; margin: 1rem 0 1.8rem; }

/* ── преимущества (benefits) ── */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: 1.1rem; }
.feature { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-card); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease); }
.feature:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.feature h3 { margin-bottom: 0.5rem; }
.feature p { margin: 0; color: var(--soft); font-size: 0.97rem; }
/* карточки каналов на /contacts: кнопка прижата к низу карточки */
.contact-card { display: flex; flex-direction: column; align-items: flex-start; }
.contact-card p { flex: 1 1 auto; }
.contact-card .btn-fill, .contact-card .btn-line { margin-top: 1.1rem; }
/* промо-видео на /about: кадр 16:9 в теме ATELIER (плеер или graceful-постер) */
.video-promo { margin: 1.8rem 0 0.6rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); background: var(--bg-2); }
.video-promo__el, .video-promo__poster { display: block; width: 100%; aspect-ratio: 16 / 9; }
.video-promo__el { background: #000; }
.video-promo__poster { background-size: cover; background-position: center 30%; }

/* ── витрина брендов (/brands) ── */
.brand-toolbar { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin: 1.5rem 0 0.5rem; }
.brand-search { flex: 1 1 260px; font: inherit; padding: 0.85rem 1.1rem; border: 1px solid var(--line-strong); border-radius: 100px; background: var(--paper); color: var(--ink); }
.brand-search:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgb(180 80 44 / 0.12); }
.brand-count { color: var(--mute); font-size: 0.9rem; }
.az-nav { display: flex; flex-wrap: wrap; gap: 0.25rem; margin: 1rem 0 2rem; }
.az-nav a { font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; color: var(--soft); padding: 0.25rem 0.5rem; border-radius: 9px; border: 1px solid transparent; }
.az-nav a:hover { color: var(--clay); border-color: var(--line); }
.brand-section { margin-bottom: 2.2rem; scroll-margin-top: 90px; }
.brand-section > h2 { font-size: 1.5rem; color: var(--clay); border-bottom: 1px solid var(--line); padding-bottom: 0.4rem; margin-bottom: 1rem; }
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.7rem; }
.brand-card { display: flex; align-items: center; min-height: 64px; padding: 0.9rem 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); font-family: var(--font-display); font-size: 1.02rem; font-weight: 500; color: var(--ink); transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s; }
.brand-card:hover { transform: translateY(-2px); border-color: var(--clay); color: var(--clay-deep); }
.brand-card.is-hidden { display: none; }
.brand-empty { color: var(--mute); padding: 1rem 0; }

/* ── prose / статья / бренд-страница ── */
.prose { max-width: 66ch; }
.prose h1 { margin-bottom: 0.8rem; }
.prose .lead { margin-bottom: 1.4rem; }
.prose p { color: var(--soft); }
.prose a:not([class]) { text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.prose h2, .prose h3 { margin-top: 1.8rem; color: var(--ink); }
.prose ul, .prose ol { color: var(--soft); padding-left: 1.2rem; }
.prose li { margin: 0.3rem 0; }
.prose blockquote { margin: 1.4rem 0; padding: 0.6rem 1.2rem; border-left: 3px solid var(--clay); background: var(--clay-wash); border-radius: 0 9px 9px 0; color: var(--soft); }
.prose img { max-width: 100%; height: auto; border-radius: var(--radius); }
.prose time { display: block; color: var(--mute); font-family: var(--font-body); font-size: 0.8rem; margin-bottom: 1rem; }
.prose table { border-collapse: collapse; margin: 1.3rem 0; font-family: var(--font-body); font-size: 0.95rem; }
.prose th, .prose td { text-align: left; padding: 0.55rem 1.4rem 0.55rem 0; border-bottom: 1px solid var(--line); }
.prose th { font-weight: 600; color: var(--ink); border-bottom-color: var(--line-strong); letter-spacing: 0.01em; }
.prose td { color: var(--soft); }
.prose tbody tr:last-child td { border-bottom: 0; }
.prose img.brand-cover { display: block; width: 100%; height: clamp(200px, 32vw, 340px); object-fit: cover; object-position: center 28%; border-radius: var(--radius-lg); margin-bottom: 1.6rem; }
.prose img.article-hero { display: block; width: 100%; height: auto; aspect-ratio: 16/9; max-height: 420px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 1.6rem; }
.brand-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.8rem; }
.brand-hero { display: flex; gap: clamp(1rem, 3vw, 1.6rem); align-items: center; margin-bottom: 1.4rem; }
.brand-hero-text { min-width: 0; }
.brand-hero-text h1 { margin-bottom: 0.5rem; }
.brand-hero-text .lead { margin-bottom: 0; }
.brand-meta { color: var(--mute); font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; margin: 0 0 0.5rem; }
@media (max-width: 560px) { .brand-hero { flex-direction: column; align-items: flex-start; gap: 0.9rem; } }

/* ── лого-чип + вордмарк-фоллбэк (нейтральный светлый холст) ── */
.logo-chip { position: relative; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid rgb(28 24 21 / 0.12); border-radius: 16px; overflow: hidden; flex: none; box-shadow: var(--shadow-card); }
.logo-chip .logo-img { display: none; width: 100%; height: 100%; object-fit: contain; }
.logo-chip.has-logo .logo-img { display: block; }
.logo-chip::after { content: attr(data-wordmark); font-family: var(--font-display); font-weight: 600; color: #1c1815; letter-spacing: -0.01em; line-height: 1.04; text-align: center; padding: 0 0.5em; }
.logo-chip.has-logo::after { content: none; }
.logo-chip.lg { width: 108px; height: 108px; padding: 16px; }
.logo-chip.lg::after { font-size: clamp(1rem, 0.85rem + 1vw, 1.35rem); }

/* ── бренд-страница: гео-доставка + FAQ ── */
.brand-geo { margin-top: 2rem; }
.geo-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.6rem; }
.geo-list li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.8rem 1.1rem; color: var(--soft); box-shadow: var(--shadow-card); }
.geo-list strong { color: var(--ink); }
.brand-why { margin-top: 2rem; }
.why-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.6rem; }
.why-list li { background: var(--clay-wash); border: 1px solid rgb(180 80 44 / 0.18); border-radius: var(--radius); padding: 0.8rem 1.1rem; color: var(--soft); }
.why-list strong { color: var(--accent-deep); }
.brand-guides { margin-top: 2.4rem; }
.brand-guides ul { list-style: none; padding: 0; margin: 0.8rem 0 0; display: grid; gap: 0.45rem; }
.brand-guides a { color: var(--accent-deep); }
.brand-guides a:hover { color: var(--clay); }
.faq { margin-top: 2.4rem; max-width: 66ch; }
.faq-item { border-top: 1px solid var(--line); padding: 1.1rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.faq-item p { color: var(--soft); margin: 0; }
.brand-trust { font-size: 0.9rem; color: var(--soft); background: var(--clay-wash); border-radius: 10px; padding: 0.7rem 1rem; margin-top: 1.6rem; }
.brand-updated { color: var(--mute); font-family: var(--font-body); font-size: 0.8rem; margin-top: 2rem; }

/* ── список статей ── */
.article-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
.article-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.25s var(--ease), border-color 0.25s var(--ease); }
.article-item:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.article-link { display: block; color: inherit; }
.article-cover { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-body { display: block; padding: 1.2rem 1.4rem; }
.article-item h3 { margin: 0 0 0.3rem; }
.article-item time { color: var(--mute); font-family: var(--font-body); font-size: 0.8rem; }
.article-item p { color: var(--soft); margin: 0.4rem 0 0; }

/* ── формы ── */
.order-form { max-width: 560px; display: grid; gap: 1rem; margin-top: 1.4rem; }
.order-form label { display: grid; gap: 0.4rem; font-weight: 600; font-size: 0.95rem; }
.order-form input, .order-form select, .order-form textarea { font: inherit; padding: 0.75rem 0.95rem; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--paper); color: var(--ink); }
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgb(180 80 44 / 0.12); }
.order-form label.checkbox { grid-auto-flow: column; justify-content: start; align-items: center; gap: 0.5rem; font-weight: 500; }
.order-form button { justify-self: start; margin-top: 0.4rem; }
.order-form .form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.order-form .checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--clay); }
@media (max-width: 480px) { .order-form .form-row { grid-template-columns: 1fr; } }
.form-error { color: var(--clay-deep); background: var(--clay-wash); border: 1px solid rgb(180 80 44 / 0.24); border-radius: 9px; padding: 0.8rem 1rem; list-style-position: inside; }

/* ── превью товара по ссылке (1.6) ── */
.link-preview { display: flex; align-items: center; gap: 0.7rem; margin-top: -0.4rem; padding: 0.6rem 0.8rem; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; }
.link-preview[hidden] { display: none; }
.link-preview-img { width: 52px; height: 52px; flex: none; object-fit: cover; border-radius: 8px; background: var(--paper); }
.link-preview-img:not([src]) { display: none; }
.link-preview-note { color: var(--soft); font-size: 0.9rem; }

/* ── модал подтверждения ухода с «грязной» формы (1.2) ── */
.leave-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.leave-modal[hidden] { display: none; }
.leave-scrim { position: absolute; inset: 0; background: rgb(28 24 21 / 0.5); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.leave-dialog { position: relative; z-index: 1; width: 100%; max-width: 420px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: 0 30px 60px -30px rgb(28 24 21 / 0.5); }
.leave-dialog h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.leave-dialog p { color: var(--soft); margin: 0 0 1.4rem; }
.leave-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.leave-actions .btn-fill, .leave-actions .btn-line { flex: 1 1 auto; }
body.modal-open { overflow: hidden; }

/* ── страница акций /sales (1.4) ── */
.sales-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin: 1.6rem 0 1.4rem; }
.sales-updated { color: var(--mute); font-size: 0.85rem; }
.sales-sort { color: var(--soft); font-size: 0.9rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; }
.sales-sort select { font: inherit; font-weight: 500; padding: 0.5rem 0.85rem; border: 1px solid var(--line-strong); border-radius: 100px; background: var(--paper); color: var(--ink); cursor: pointer; }
.sales-sort select:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgb(180 80 44 / 0.12); }
.sales-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.1rem; }
.sale-card { position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--bg-2), var(--clay-wash)); box-shadow: var(--shadow-card); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.sale-card:hover { transform: translateY(-3px); box-shadow: 0 28px 50px -26px rgb(28 24 21 / 0.5); }
.sale-photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sale-photo-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; color: rgb(28 24 21 / 0.22); letter-spacing: 0.05em; }
.sale-badge { position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2; background: var(--clay); color: var(--paper); font-weight: 700; font-size: 0.8rem; padding: 0.25rem 0.6rem; border-radius: 100px; }
.sale-visit-btn { display: block; text-align: center; border: 1.5px solid rgb(255 255 255 / 0.5); color: #fff; font-weight: 600; font-size: 0.85rem; padding: 0.5rem 1rem; border-radius: 100px; text-decoration: none; margin-top: 0.4rem; white-space: nowrap; transition: border-color 0.2s, background 0.2s; }
.sale-visit-btn:hover { border-color: #fff; background: rgb(255 255 255 / 0.14); }
.sale-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 2.4rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.25rem; background: linear-gradient(to top, rgb(20 17 14 / 0.92), rgb(20 17 14 / 0.55) 52%, transparent); }
.sale-overlay .sale-cat { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgb(255 255 255 / 0.8); font-weight: 600; }
.sale-overlay h3 { font-size: 1.05rem; line-height: 1.2; margin: 0; color: #fff; }
.sale-overlay .sale-brand { color: rgb(255 255 255 / 0.85); font-size: 0.85rem; margin: 0 0 0.6rem; }
.sale-order { display: block; text-align: center; background: var(--paper); color: var(--ink); font-weight: 700; font-size: 0.9rem; padding: 0.6rem 1rem; border-radius: 100px; text-decoration: none; transition: transform 0.2s var(--ease), background 0.2s; }
.sale-order:hover { transform: translateY(-1px); background: #fff; }
@media (max-width: 560px) { .sales-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; } .sale-overlay { padding: 1.7rem 0.7rem 0.7rem; } .sale-overlay h3 { font-size: 0.92rem; } .sale-overlay .sale-brand { font-size: 0.78rem; margin-bottom: 0.4rem; } .sale-order { font-size: 0.8rem; padding: 0.5rem 0.5rem; } .sale-visit-btn { font-size: 0.68rem; padding: 0.42rem 0.4rem; margin-top: 0.35rem; } }
.sales-empty { color: var(--soft); }

/* ── виджет-тизер акций (1.3) ── */
.sales-teaser { position: fixed; right: clamp(1rem, 4vw, 2rem); bottom: clamp(1rem, 4vw, 2rem); z-index: 90; width: min(320px, calc(100vw - 2rem)); padding: 1.2rem 1.3rem 1.3rem; background: var(--paper); background: color-mix(in srgb, var(--paper) 85%, transparent); -webkit-backdrop-filter: blur(12px) saturate(1.05); backdrop-filter: blur(12px) saturate(1.05); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 24px 48px -24px rgb(28 24 21 / 0.45); opacity: 0; transform: translateY(16px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.sales-teaser.show { opacity: 1; transform: none; }
.sales-teaser[hidden] { display: none; }
.sales-teaser-x { position: absolute; top: 0.6rem; right: 0.6rem; width: 30px; height: 30px; border: 0; border-radius: 100px; background: transparent; color: var(--mute); cursor: pointer; font-size: 0.85rem; }
.sales-teaser-x:hover { background: var(--bg); color: var(--ink); }
.sales-teaser-kick { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
.sales-teaser-text { color: var(--soft); margin: 0.4rem 0 0.9rem; font-size: 0.95rem; }
.sales-teaser-cta { display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--clay); padding-bottom: 1px; }
.sales-teaser-cta:hover { color: var(--clay); }
@media (max-width: 700px) { .sales-teaser { left: 1rem; right: 1rem; bottom: 1rem; width: auto; } }

/* ── ЛК / вход ── */
.lk-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.lk-bonuses { background: var(--clay-wash); border: 1px solid rgb(180 80 44 / 0.18); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 1.2rem 0 1.8rem; }
.lk-bonus-balance { font-family: var(--font-display); font-size: 1.8rem; color: var(--accent-deep); margin: 0.2rem 0 0.4rem; }
.lk-bonus-hint { color: var(--soft); font-size: 0.9rem; margin: 0; }
.lk-list { list-style: none; padding: 0; margin: 0.6rem 0 1.8rem; display: grid; gap: 0.6rem; }
.lk-list li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.9rem 1.1rem; box-shadow: var(--shadow-card); }
.tg-login { margin-top: 1.4rem; }

/* ── ЛК: детальные страницы заказа/посылки ── */
.lk-back { margin: 0 0 0.8rem; font-size: 0.92rem; }
.lk-back a { color: var(--soft); }
.lk-back a:hover { color: var(--clay); }
.lk-detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; margin: 1.2rem 0 1.8rem; }
.lk-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-card); }
.lk-card h2 { margin-top: 0; font-size: 1.15rem; }
.lk-card h3 { font-size: 1rem; margin: 1.1rem 0 0.4rem; }
.lk-props { display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 1rem; margin: 0.6rem 0; }
.lk-props dt { color: var(--soft); font-size: 0.9rem; }
.lk-props dd { margin: 0; font-weight: 500; overflow-wrap: anywhere; }
.lk-ext-link { margin: 0.7rem 0 0; }
.timeline { list-style: none; margin: 0.6rem 0 0; padding: 0; }
.timeline li { position: relative; padding: 0 0 0.9rem 1.3rem; display: flex; justify-content: space-between; gap: 0.8rem; flex-wrap: wrap; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 0.42em; width: 9px; height: 9px; border-radius: 100px; background: var(--clay); }
.timeline li:not(:last-child)::after { content: ""; position: absolute; left: 4px; top: 1.1em; bottom: 0; width: 1px; background: var(--line); }
.timeline-label { font-weight: 500; }
.timeline-ts { color: var(--soft); font-size: 0.88rem; white-space: nowrap; }
.pay-list { display: grid; gap: 0.8rem; margin: 0.6rem 0 1.4rem; }
.pay-block { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; box-shadow: var(--shadow-card); }
.pay-row { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; flex-wrap: wrap; }
.pay-sum { margin: 0.4rem 0 0; font-size: 1.05rem; }
.pay-eur { color: var(--soft); font-size: 0.9rem; }
.pay-hint { color: var(--soft); font-size: 0.92rem; margin: 0.5rem 0 0; }
.pay-warning { margin: 0.6rem 0 0; font-size: 0.9rem; line-height: 1.4; color: #8c2f23; background: rgb(178 58 44 / 0.07); border: 1px solid rgb(178 58 44 / 0.3); border-radius: 10px; padding: 0.55rem 0.7rem; }
.pay-requisites { margin-top: 0.8rem; border-top: 1px dashed var(--line); padding-top: 0.8rem; }
.pay-requisites h3 { margin: 0 0 0.4rem; font-size: 1rem; }
.wallet-line { margin: 0.45rem 0; }
.wallet-net { display: block; color: var(--soft); font-size: 0.85rem; }
.wallet-code { display: block; font-size: 0.88rem; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 0.45rem 0.6rem; word-break: break-all; user-select: all; }
.wallet-qr { display: block; width: 120px; height: 120px; margin: 0.5rem 0 0; background: #fff; padding: 6px; border-radius: 10px; }
.pay-locked { color: var(--soft); font-size: 0.85rem; }
.pay-steps { margin: 0.7rem 0 0; padding-left: 1.2rem; color: var(--soft); font-size: 0.92rem; }
.pay-steps li { margin: 0.2rem 0; }
/* Виджет «карта → стейблкоин → нам» (α, ру-хост) */
.card-widget { margin: 0.9rem 0; padding: 0.9rem 1rem; background: var(--clay-wash); border: 1px solid rgb(180 80 44 / 0.24); border-radius: var(--radius); }
.card-widget h3 { margin: 0 0 0.3rem; font-size: 1rem; }
.cw-intro { margin: 0 0 0.7rem; font-size: 0.9rem; color: var(--soft); line-height: 1.45; }
.cw-branch { border: 1px solid var(--line); border-radius: 10px; background: var(--paper); padding: 0.55rem 0.75rem; margin: 0.5rem 0; }
.cw-branch summary { cursor: pointer; font-weight: 600; font-size: 0.95rem; }
.cw-branch[open] summary { margin-bottom: 0.5rem; }
.cw-hint { margin: 0 0 0.6rem; font-size: 0.88rem; color: var(--soft); line-height: 1.45; }
.cw-limits { margin: 0 0 0.6rem; font-size: 0.88rem; line-height: 1.45; color: #8c2f23; background: rgb(178 58 44 / 0.07); border: 1px solid rgb(178 58 44 / 0.3); border-radius: 10px; padding: 0.55rem 0.7rem; }
.cw-limits--hit { background: rgb(178 58 44 / 0.14); border-color: rgb(178 58 44 / 0.55); }
.cw-frame { display: block; width: 100%; max-width: 100%; height: 560px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.cw-open { display: inline-block; margin-top: 0.6rem; }
.cw-note { margin: 0.6rem 0 0.2rem; font-size: 0.82rem; color: var(--mute); }
.cw-after { margin: 0.2rem 0 0; font-size: 0.88rem; color: var(--soft); line-height: 1.45; }
.lk-actions { margin: 1.4rem 0 0; }
.flash { border-radius: var(--radius); padding: 0.8rem 1.1rem; margin: 1rem 0; font-size: 0.95rem; }
.flash-ok { background: rgb(58 125 68 / 0.1); border: 1px solid rgb(58 125 68 / 0.3); color: #2e5e36; }
.flash-err { background: rgb(178 58 44 / 0.09); border: 1px solid rgb(178 58 44 / 0.3); color: #8c2f23; }
.txid-form { margin-top: 0.9rem; }
.txid-form label { display: block; color: var(--soft); font-size: 0.85rem; margin-bottom: 0.3rem; }
.txid-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.txid-row input { flex: 1 1 220px; border: 1px solid var(--line); border-radius: 10px; padding: 0.55rem 0.7rem; font: inherit; font-size: 0.92rem; background: var(--bg); }
.txid-row input:focus { outline: 2px solid var(--clay); outline-offset: 1px; }
.ask-form { margin: 0.8rem 0 0; }
.ask-form textarea { width: 100%; min-height: 96px; border: 1px solid var(--line); border-radius: 10px; padding: 0.6rem 0.7rem; font: inherit; font-size: 0.95rem; background: var(--bg); resize: vertical; }
.ask-form textarea:focus { outline: 2px solid var(--clay); outline-offset: 1px; }
.ask-form .btn-row { margin-top: 0.6rem; }
.lk-photos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.6rem 0 1.4rem; }
.lk-photos img { width: 132px; height: 132px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
@media (max-width: 820px) { .lk-detail-grid { grid-template-columns: 1fr; } }

/* ── подвал ── */
.ate-foot { background: var(--ink); color: #cfc6ba; padding: clamp(2.6rem, 5vw, 4rem) 0; margin-top: var(--section-y); }
.ate-foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.ate-foot .ate-logo { color: #fbf7f1; display: inline-block; margin-bottom: 0.6rem; }
.ate-foot-note { max-width: 60ch; color: #cfc6ba; }
.ate-foot a { color: #e0b79f; }
.ate-foot-links { color: #9a9084; font-size: 0.9rem; }
.ate-foot-credit { font-size: 0.78rem; color: #9a9084; margin-top: 0.4rem; }

/* ── кастомный курсор ── */
.cursor { position: fixed; top: 0; left: 0; width: 32px; height: 32px; border: 1.5px solid var(--clay); border-radius: 100px; transform: translate(-50%, -50%); pointer-events: none; z-index: 120; transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s, transform 0.1s ease-out; }
body.cursor-custom, body.cursor-custom * { cursor: none !important; }
.cursor.grow { width: 64px; height: 64px; background: rgb(180 80 44 / 0.14); border-color: transparent; }
@media (hover: none) { .cursor { display: none; } }

/* ── quick-view drawer ── */
.qv-scrim { position: fixed; inset: 0; background: rgb(28 24 21 / 0.5); backdrop-filter: blur(2px); z-index: 110; opacity: 0; transition: opacity 0.3s; }
.qv-scrim.show { opacity: 1; }
.qv-drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(440px, 92vw); background: var(--paper); z-index: 111; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.42s var(--ease); box-shadow: -30px 0 60px -30px rgb(28 24 21 / 0.5); }
.qv-drawer.show { transform: none; }
.qv-x { position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border-radius: 100px; border: 0; background: rgb(255 255 255 / 0.9); cursor: pointer; font-size: 1rem; }
.qv-img { height: 42%; background-size: cover; background-position: center; background-color: var(--bg); }
.qv-body { padding: 1.6rem; overflow-y: auto; }
.qv-head { display: flex; gap: 0.9rem; align-items: center; margin-bottom: 0.7rem; }
.qv-head-text { min-width: 0; }
.qv-head-text .kick { margin: 0; }
.qv-head-text h3 { font-family: var(--font-display); font-weight: 500; margin: 0.1rem 0 0; font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2rem); }
.qv-logo { width: 68px; height: 68px; padding: 11px; box-shadow: 0 12px 30px -20px rgb(28 24 21 / 0.6); }
.qv-logo::after { font-size: 1rem; }
.qv-sum { color: var(--soft); min-height: 1.4rem; }
.qv-actions { display: grid; gap: 0.6rem; margin-top: 1.2rem; }
.qv-link { color: var(--clay); font-weight: 600; }

/* ── адаптив ── */
@media (max-width: 860px) { .shoplook { grid-template-columns: 1fr; } }
@media (max-width: 820px) {
  .how-sticky { grid-template-columns: 1fr; }
  .how-visual { position: relative; top: 0; height: 56vh; }
  .ate-nav { gap: 0.55rem 0.9rem; font-size: 0.9rem; }
}
@media (max-width: 700px) {
  .qv-drawer { top: auto; bottom: 0; left: 0; right: 0; width: auto; height: auto; max-height: 86vh; transform: translateY(100%); border-radius: 20px 20px 0 0; box-shadow: 0 -30px 60px -30px rgb(28 24 21 / 0.5); }
  .qv-drawer.show { transform: none; }
  .qv-img { height: 200px; }
}

/* hero на мобильном: раскладка «фото сверху, текст ниже на креме» —
   текст полностью уходит с модели (без оверлея и скрима). */
@media (max-width: 760px) {
  .ate-hero { display: block; min-height: 0; }
  .ate-hero-bg { position: relative; inset: auto; width: 100%; height: 50vh; background-image: url('/static/img/hero-home-portrait.webp'); background-position: center 16%; transform: none !important; }
  .ate-hero::after { display: none; }
  .ate-hero-inner { padding: 1.6rem clamp(1.2rem, 5vw, 3rem) 0.4rem; }
  .ate-title { margin-top: 0.4rem; max-width: 16ch; }
  .scroll-cue { display: none; }
  .nav-toggle { display: inline-flex; }
  .ate-nav { display: none; flex-basis: 100%; flex-direction: column; align-items: stretch; gap: 0.2rem; padding-top: 0.5rem; }
  .ate-nav.open { display: flex; }
  .ate-nav a { padding: 0.85rem 0.5rem; border-radius: 10px; font-size: 1.05rem; }
  .ate-nav a:hover { background: var(--paper); color: var(--ink); }
  .ate-nav .ate-cta { text-align: center; justify-content: center; margin-top: 0.35rem; }
  /* аккаунт-меню в развёрнутом мобильном меню: кружок + подпись, список без поповера */
  .user-menu { width: 100%; }
  .user-trigger { padding: 0.85rem 0.5rem; }
  .monogram { width: 30px; height: 30px; font-size: 0.8rem; }
  .monogram-label { display: inline; font-size: 1.05rem; font-weight: 500; color: var(--soft); }
  .user-pop { position: static; min-width: 0; padding: 0.15rem 0 0; border: 0; background: transparent; box-shadow: none; }
  .user-pop-name { display: none; }
  .user-pop a { padding: 0.7rem 0.5rem 0.7rem 2.05rem; font-size: 1rem; }
}
@media (orientation: portrait) and (max-width: 760px) {
  /* портрет: фото-блок чуть выше, фокус на лице героини */
  .ate-hero-bg { height: 54vh; background-position: center 14%; }
}

@media (prefers-reduced-motion: reduce) {
  *, .hotspot span { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .ate-title .line > span { transform: none; }
  html.js .reveal-up, html.js .reveal { opacity: 1; transform: none; }
  .cursor { display: none; }
}
