/* ============================================================
   Promo Atelier — Design Tokens
   Built on GRAF structural grammar (hairlines, 28px radii,
   pill buttons, disciplined type) with brief-specified
   palette: warm off-white + single coral accent.
   ============================================================ */

/* Google Fonts are enqueued via functions.php (render-blocking avoided).
   The @import here used to duplicate the fetch and add a CSS-parse-wait
   chain in the critical path. Removed in v0.1.24. */

:root {
  /* ---------- Warm neutral ramp (cream → ink) ---------- */
  --cream-50:  #FDFBF5;   /* page surface (warm off-white, per brief) */
  --cream-100: #F5F2EC;   /* alt surface */
  --cream-200: #EDE8DE;   /* section inset / inputs */
  --cream-300: #E3DDD0;   /* hairlines on white */
  --cream-400: #CFC6B5;   /* stronger divider */

  --ink-900: #1A1814;     /* body-head, warm almost-black (per brief) */
  --ink-700: #3A362E;     /* strong body */
  --ink-500: #5B5650;     /* secondary text (per brief) */
  --ink-400: #857F74;     /* muted */
  --ink-300: #A8A194;     /* hint */

  /* ---------- Accent (coral/marathon red, per brief) ---------- */
  --accent:     #E63946;
  --accent-ink: #C22834;
  --accent-tint: rgba(230, 57, 70, .10);

  /* ---------- Semantic ---------- */
  --bg-page:   var(--cream-50);
  --bg-inset:  var(--cream-200);
  --bg-card:   #FFFFFF;
  --bg-dark:   var(--ink-900);

  --text-head: var(--ink-900);
  --text-body: var(--ink-700);
  --text-mute: var(--ink-500);
  --text-hint: var(--ink-400);

  --border:    var(--cream-300);
  --border-soft: rgba(26, 24, 20, 0.08);

  /* ---------- Radii (GRAF signature 28px) ---------- */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 28px;
  --r-pill: 999px;

  /* ---------- Spacing (4px grid) ---------- */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-9: 48px;
  --s-10: 64px; --s-11: 96px; --s-12: 128px;

  /* ---------- Type ---------- */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-ui:      'Manrope', system-ui, sans-serif;
  --font-meta:    'Inter Tight', 'Manrope', sans-serif;

  /* ---------- Elevation (used sparingly) ---------- */
  --shadow-lift: 0 24px 80px -20px rgba(26, 24, 20, 0.15),
                 0 4px 16px rgba(26, 24, 20, 0.04);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-ui);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }

/* ---------- Type scale ---------- */
.t-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--text-head);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.t-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.t-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text-head);
}
.t-h2 em { font-style: italic; font-weight: 300; }

.t-h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-head);
}

.t-eyebrow {
  font-family: var(--font-meta);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.t-lead {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
  color: var(--text-body);
  letter-spacing: -0.005em;
}

.t-body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body);
}

.t-small {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-mute);
}

.t-label {
  font-family: var(--font-meta);
  font-weight: 600;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.t-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-head);
  font-feature-settings: "tnum";
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section {
  padding: clamp(72px, 10vw, 144px) 0;
  position: relative;
}

.section--inset {
  background: var(--bg-inset);
}

.hair {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-lg { height: 58px; padding: 0 32px; font-size: 15px; }
.btn-md { height: 48px; padding: 0 22px; font-size: 14px; }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }

.btn-primary { background: var(--ink-900); color: #fff; }
.btn-primary:hover { background: #000; box-shadow: 0 8px 24px rgba(26, 24, 20, 0.25); }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-ink); box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3); }

.btn-ghost {
  background: transparent; color: var(--ink-900);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-card); border-color: var(--ink-900); }

.btn-link {
  background: transparent; color: var(--ink-900);
  height: auto; padding: 0;
  border-bottom: 1px solid var(--ink-900);
  border-radius: 0;
  padding-bottom: 2px;
}
.btn-link:hover { color: var(--accent); border-color: var(--accent); transform: none; }

/* ---------- Pill / chip ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 14px;
  background: rgba(26, 24, 20, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font: 500 12px/1 var(--font-ui);
  color: var(--text-body);
  letter-spacing: 0.02em;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-tint);
  animation: pulse-dot 2.4s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
}

/* ---------- Card ---------- */
.card {
  background: var(--bg-card);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ---------- Inputs ---------- */
.input, .textarea, .select {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font: 500 15px/1.3 var(--font-ui);
  color: var(--text-head);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--text-hint); }
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--ink-900);
  background: #fff;
}
.textarea { min-height: 110px; resize: vertical; font-family: var(--font-ui); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Marquee ---------- */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 48s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

::selection { background: var(--accent); color: #fff; }
/* ============================================================
   Promo Atelier — Section styles
   ============================================================ */

/* ---------- Background modes (Tweaks) ---------- */
body.bg-cream  { background: #FDFBF5; --bg-page: #FDFBF5; --bg-inset: #EDE8DE; }
body.bg-paper  { background: #F5F2EC; --bg-page: #F5F2EC; --bg-inset: #E8E2D4; }
body.bg-mist   { background: #F1EEE6; --bg-page: #F1EEE6; --bg-inset: #E4DFD3; }

body.dense .section { padding: clamp(48px, 7vw, 96px) 0; }

body.serif-off .t-display,
body.serif-off .t-h2,
body.serif-off .t-h3,
body.serif-off .t-num {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: -0.035em;
}
body.serif-off .t-display em,
body.serif-off .t-h2 em,
body.serif-off .t-h3 em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: padding .24s ease, background .24s ease, backdrop-filter .24s ease;
}
.nav--scrolled {
  padding: 10px 0;
  background: rgba(253, 251, 245, 0.82);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.nav__logo-text { font-style: italic; }
.nav__logo-amp { color: var(--accent); font-style: normal; }
.nav__logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(230, 57, 70, .5);
  animation: start-signal 3s infinite;
}
@keyframes start-signal {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, .5); transform: scale(1); }
  50%      { box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); transform: scale(1.15); }
}

.nav__links {
  display: flex; gap: 28px;
  justify-self: center;
}
.nav__links a {
  color: var(--ink-700);
  text-decoration: none;
  font: 500 14px/1 var(--font-ui);
  letter-spacing: -0.005em;
  transition: color .15s ease;
  position: relative;
}
.nav__links a:hover { color: var(--ink-900); }
.nav__links a::after {
  content: ''; position: absolute;
  left: 0; right: 100%; bottom: -6px; height: 1px;
  background: var(--accent);
  transition: right .2s ease;
}
.nav__links a:hover::after { right: 0; }

/* Shop link — red dot accent (desktop + mobile nav) */
.nav__links a.shop-link,
.nav__mobile a.shop-link {
  color: var(--ink-900);
  font-weight: 600;
}
/* Active state on /shop/* — body.is-shop is set by theme body_class filter */
body.is-shop .nav__links a.shop-link,
body.is-shop .nav__mobile a.shop-link {
  color: var(--accent);
}
.nav__links a.shop-link::before,
.nav__mobile a.shop-link::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 7px;
  vertical-align: 2px;
}

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block; width: 18px; height: 1.5px; background: var(--ink-900);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 20px 24px;
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  gap: 16px;
}
.nav__mobile a {
  font: 500 18px/1 var(--font-ui);
  color: var(--ink-900);
  text-decoration: none;
}

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; justify-self: end; }
  /* .nav__mobile is hidden by default; JS toggles .is-open to show it.
     The original React design rendered the menu element only when open, so
     `display: flex` here was safe. In our PHP port the element is always in
     the DOM, so we control visibility via the class below. */
}

.nav__mobile.is-open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .35;
  background:
    radial-gradient(circle at 15% 10%, rgba(230, 57, 70, 0.06), transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(26, 24, 20, 0.04), transparent 50%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  position: relative;
}
.hero__copy { max-width: 640px; }
.hero__headline { margin: 24px 0 24px; text-wrap: balance; }
.hero__lead { max-width: 520px; color: var(--text-body); }

.hero__ctas { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

.hero__stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 480px;
}
.hero__stat .t-num { margin-bottom: 10px; line-height: 0.9; }

/* Backpack stage */
.hero__pack {
  position: relative;
  height: clamp(460px, 60vw, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}
.pack-svg {
  width: 100%; height: 100%;
  max-width: 560px;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  filter: drop-shadow(0 30px 60px rgba(26,24,20,.18));
  will-change: transform;
}
/* Static SVG fallback inside the 3D mount — visible by default so the
   hero never paints empty. Fades out when three-backpack.js signals ready
   by setting data-pa-backpack-ready on the mount element. */
.hero__pack-fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: opacity .35s ease;
  pointer-events: none;
}
[data-pa-backpack-ready="1"] .hero__pack-fallback {
  opacity: 0;
}

.hero__pack-hint {
  position: absolute;
  top: 24px; right: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(26, 24, 20, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  font: 500 12px/1 var(--font-ui);
  color: var(--ink-700);
  animation: hint-fade 6s ease-in-out;
}
@keyframes hint-fade {
  0% { opacity: 0; transform: translateY(-8px); }
  15%, 75% { opacity: 1; transform: none; }
  100% { opacity: 0; }
}

.hero__flag-picker {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 14px;
}
.hero__flag-title { white-space: nowrap; }
.hero__flag-swatches { display: flex; gap: 8px; }

.swatch {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--swatch);
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 0 0 1px var(--border);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.swatch:hover { transform: scale(1.12); }
.swatch--on { box-shadow: 0 0 0 2px var(--ink-900); }

@media (max-width: 900px) {
  .hero { padding: 110px 0 48px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__pack { height: 440px; margin-top: 24px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
  .hero__stats .t-num { font-size: 36px; }
}

/* ============================================================
   Section head
   ============================================================ */
.sec-head { max-width: 800px; margin-bottom: 64px; }
.sec-head__title { margin: 16px 0; text-wrap: balance; }
.sec-head__lead { margin: 16px 0 0; max-width: 600px; }

.sec-head--split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  max-width: 100%;
  align-items: end;
}
@media (max-width: 768px) {
  .sec-head--split { grid-template-columns: 1fr; align-items: start; }
}

/* ============================================================
   Clients (marquee)
   ============================================================ */
.clients { background: var(--bg-page); }
.marquee-wrap {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.client-mark {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: var(--ink-500);
  white-space: nowrap;
  transition: color .3s ease;
  cursor: default;
}
.client-mark__dot { font-size: 12px; color: var(--accent); opacity: .4; }
.client-mark:hover { color: var(--ink-900); }
.client-mark:hover .client-mark__dot { opacity: 1; }

.corp-block {
  margin-top: 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 32px;
}
.corp-block__label { white-space: nowrap; }
.corp-block__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px;
}
.corp-mark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink-400);
  transition: color .2s ease;
  text-align: center;
}
.corp-mark:hover { color: var(--ink-900); }

@media (max-width: 768px) {
  .corp-block { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   Backpack detail
   ============================================================ */
.backpack .sec-head--split { margin-bottom: 80px; }

.spec-stage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.spec-stage__pack {
  position: relative;
  height: 640px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 40px;
}
.pack-svg--large { max-width: 440px; max-height: 600px; }

.anno {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: anno-in .8s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes anno-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.anno__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font: 600 11px/1 var(--font-meta);
  flex-shrink: 0;
}
.anno__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 200px;
  max-width: 240px;
  box-shadow: 0 8px 24px rgba(26, 24, 20, 0.06);
}
.anno__label {
  font: 600 13px/1.3 var(--font-ui);
  color: var(--ink-900);
  margin-bottom: 2px;
}
.anno__desc {
  font: 500 11px/1.4 var(--font-meta);
  color: var(--ink-500);
}
.anno--left  { transform: translateX(-100%); }
.anno--left  .anno__card { order: -1; text-align: right; }
.anno--left  .anno__num { order: 1; }

.spec-list { margin: 0; padding: 0; }
.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.spec-row:last-child { border-bottom: 0; }
.spec-row dt {
  font: 500 13px/1.4 var(--font-meta);
  color: var(--ink-500);
  letter-spacing: 0.02em;
  margin: 0;
}
.spec-row dd {
  font: 500 15px/1.4 var(--font-ui);
  color: var(--ink-900);
  margin: 0;
}
.spec-stage__cta { margin-top: 32px; }
.spec-stage__note {
  margin-top: 24px;
  color: var(--ink-700);
  font: 400 14px/1.6 var(--font-ui);
  max-width: 520px;
}
.spec-stage__note a {
  color: var(--ink-900);
  border-bottom: 1px solid var(--accent);
  text-decoration: none;
  transition: color .15s ease, border-color .15s ease;
}
.spec-stage__note a:hover { color: var(--accent); }
.clients__note {
  margin-top: 48px;
  text-align: center;
  color: var(--ink-700);
  font: 400 14px/1.7 var(--font-ui);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.clients__note a {
  color: var(--ink-900);
  border-bottom: 1px solid var(--accent);
  text-decoration: none;
  transition: color .15s ease;
}
.clients__note a:hover { color: var(--accent); }

@media (max-width: 1100px) {
  .spec-stage { grid-template-columns: 1fr; gap: 48px; }
  .spec-stage__pack { height: 480px; }
  .pack-svg--large { max-width: 320px; }
  .anno__card { min-width: 160px; max-width: 200px; }
}
@media (max-width: 640px) {
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }

  /* Mobile: stack annotations as a numbered list below the backpack SVG.
     (Desktop uses absolute-positioned callouts; that doesn't work at narrow
     widths so the original design hid them — user requested we keep them
     visible on mobile in a readable form.) */
  .spec-stage__pack {
    height: auto;
    min-height: 0;
    display: block;
    padding: 32px 20px 24px;
  }
  .pack-svg--large {
    max-width: 220px;
    max-height: 360px;
    display: block;
    margin: 0 auto 28px;
  }
  .anno {
    position: static;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    animation: none;
    margin: 10px 0;
    max-width: 100%;
  }
  .anno--left { transform: none !important; }
  .anno--left .anno__card { order: 0; text-align: left; }
  .anno--left .anno__num { order: 0; }
  .anno__card { min-width: 0; max-width: 100%; }
}

/* ============================================================
   Price card (in product detail)
   ============================================================ */
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  margin-top: 4px;
}
.price-card .t-label { margin-bottom: 16px; }
.price-card__rows { display: flex; flex-direction: column; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: 0; }
.price-row__name { display: flex; flex-direction: column; gap: 4px; }
.price-row__title {
  font: 600 16px/1.3 var(--font-ui);
  color: var(--ink-900);
}
.price-row__sub { color: var(--ink-500); }
.price-row__val {
  display: flex; align-items: baseline; gap: 6px;
  white-space: nowrap;
}
.price-row__amount {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-feature-settings: "tnum";
}
.price-row__unit {
  font: 500 13px/1 var(--font-meta);
  color: var(--ink-500);
}
.price-card__bundle {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 16px;
  padding: 10px 14px;
  background: var(--accent-tint);
  border-radius: var(--r-pill);
  font: 500 13px/1 var(--font-ui);
  color: var(--ink-900);
}
.price-card__bundle-tag {
  font: 700 12px/1 var(--font-meta);
  letter-spacing: 0.04em;
  color: var(--accent-ink);
  background: #fff;
  padding: 5px 8px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .price-row { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ============================================================
   Action gallery (horizontal scroller)
   ============================================================ */
.action__scroller {
  margin-top: 48px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px;
}
.action__scroller::-webkit-scrollbar {
  height: 6px;
}
.action__scroller::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
.action__track {
  display: flex;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 48px);
  width: max-content;
}
.shot {
  margin: 0;
  width: clamp(280px, 32vw, 440px);
  scroll-snap-align: start;
  flex-shrink: 0;
}
.shot__img {
  height: clamp(360px, 40vw, 540px);
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .4s ease;
  background: var(--ink-900);
}
.shot:hover .shot__img { transform: translateY(-4px); }
.shot__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.shot:hover .shot__img img { transform: scale(1.03); }
.shot__svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.shot__badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 10px;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: #fff;
  font: 600 11px/1 var(--font-meta);
  letter-spacing: 0.08em;
}
.shot__cap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding: 0 4px;
  font: 500 13px/1.4 var(--font-ui);
  color: var(--ink-700);
}
.shot__zoom { color: var(--ink-400); font-size: 12px; }

.action__end {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  color: var(--ink-500);
}

/* ============================================================
   Process timeline
   ============================================================ */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 2%; right: 2%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.timeline__step {
  position: relative;
  z-index: 1;
  padding-right: 24px;
}
.timeline__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  background: var(--bg-page);
  padding-right: 20px;
  margin-bottom: 24px;
  font-style: italic;
}
.timeline__title { margin-bottom: 12px; }
.timeline__desc { color: var(--ink-500); max-width: 280px; }
.timeline__arrow {
  position: absolute;
  right: -8px; top: 18px;
  color: var(--ink-300);
}

@media (max-width: 960px) {
  .timeline { grid-template-columns: 1fr; gap: 48px; }
  .timeline::before { display: none; }
  .timeline__arrow { display: none; }
  .timeline__num { display: inline-block; }
}

/* ============================================================
   Promo grid
   ============================================================ */
.promo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.promo__card {
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  transition: background .2s ease;
  min-height: 200px;
}
.promo__card:hover { background: #FCFAF2; }
.promo__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-inset);
  display: grid; place-items: center;
  color: var(--ink-900);
  margin-bottom: 24px;
  transition: background .25s ease, color .25s ease;
}
.promo__card:hover .promo__icon {
  background: var(--accent);
  color: #fff;
}
.promo__title { margin-bottom: 8px; font-size: 28px; }
.promo__desc { flex-grow: 1; color: var(--ink-500); }
.promo__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font: 600 13px/1 var(--font-ui);
  color: var(--ink-900);
  transition: gap .2s ease, color .2s ease;
}
.promo__card:hover .promo__cta { gap: 12px; color: var(--accent); }

@media (max-width: 960px) { .promo__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .promo__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Cases
   ============================================================ */
/* Blog block — horizontal scroller. Cards keep their original
   "3-across" desktop size; you scroll right to reach the rest. */
.blog__scroller {
  margin-top: 48px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
  padding-bottom: 40px;
  -webkit-overflow-scrolling: touch;
}
.blog__scroller::-webkit-scrollbar { height: 6px; }
.blog__scroller::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.blog__track {
  display: flex;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 48px);
  width: max-content;
}
.blog__scroller .case {
  width: clamp(300px, 28vw, 400px);
  scroll-snap-align: start;
  flex-shrink: 0;
}
.blog__end {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  color: var(--ink-500);
  scroll-snap-align: start;
}
@media (max-width: 600px) {
  .blog__scroller .case { width: 84vw; }
  .blog__end { width: 60vw; padding: 24px; }
}

.case {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.case__cover {
  height: 220px;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  overflow: hidden;
}
.case__cover-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.case__cover-tag {
  position: relative;
  z-index: 1;
  display: flex; gap: 8px;
  font: 600 12px/1 var(--font-meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: .9;
}
.case__cover-num {
  position: relative;
  z-index: 1;
  font-size: 64px !important;
  line-height: 1 !important;
  opacity: .65;
  align-self: flex-end;
}
.case__body {
  padding: 32px 28px;
  display: flex; flex-direction: column;
  flex-grow: 1;
}
.case__what { margin: 10px 0 24px; min-height: 44px; }
.case__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  position: relative;
  padding-left: 20px;
}
.case__quote::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--accent);
}
.case__author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.case__author-name {
  font: 600 14px/1.3 var(--font-ui);
  color: var(--ink-900);
  margin-bottom: 2px;
}

/* ---------- Blog cards — same visual as .case, whole card is a link ---------- */
/* Color rule ONLY on the <a> itself, not on descendants — otherwise
   `.case--link *` wins specificity over `.case__cover { color: #fff }`
   and the white cover tag / number become dark. */
.case--link,
.case--link:link,
.case--link:visited,
.case--link:hover {
  color: inherit;
  text-decoration: none;
}
.case--link * {
  text-decoration: none !important; /* kill UA underline on <blockquote>, etc. */
}
.case--link {
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.case--link:hover {
  transform: translateY(-2px);
  border-color: var(--ink-900);
  box-shadow: 0 16px 40px -12px rgba(26, 24, 20, 0.12);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__container { max-width: 960px; }
.faq__head { max-width: 700px; margin-bottom: 48px; }
.faq__head .t-h2 { margin-top: 16px; }

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 28px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink-900);
}
.faq__q:hover { color: var(--accent); }
.faq__q-num { color: var(--ink-400); }
.faq__q-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.faq__toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--ink-700);
  transition: transform .25s ease, background .2s ease;
}
.faq__item--open .faq__toggle { transform: rotate(180deg); background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.2,.7,.2,1);
}
.faq__item--open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner {
  overflow: hidden;
  padding-left: 64px;
  max-width: 720px;
}
.faq__item--open .faq__a-inner { padding-bottom: 28px; }

/* ============================================================
   Enquire
   ============================================================ */
.enquire { background: var(--bg-page); }
.enquire__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.enquire__left { position: sticky; top: 120px; }
.enquire__lead { margin: 16px 0 40px; max-width: 460px; }

.enquire__channels { display: flex; flex-direction: column; gap: 12px; }
.channel {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  text-decoration: none;
  color: var(--ink-900);
  transition: border-color .2s ease, transform .2s ease;
}
.channel:hover { border-color: var(--ink-900); transform: translateX(4px); }
.channel__ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.channel--wa .channel__ico { background: #1DC45B; }
.channel--tg .channel__ico { background: #2AABEE; }
.channel--em .channel__ico { background: var(--ink-900); }
.channel__label {
  font: 600 12px/1.3 var(--font-meta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  margin-bottom: 3px;
}
.channel__val {
  font: 600 15px/1 var(--font-ui);
  color: var(--ink-900);
}

.enquire__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(32px, 4vw, 48px);
}
.enquire__form {
  display: flex; flex-direction: column; gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

.enquire__submit { margin-top: 12px; align-self: flex-start; }
.enquire__legal { margin: 0; color: var(--ink-400); }
.enquire__legal a { color: var(--ink-900); text-decoration: underline; text-underline-offset: 2px; }

.enquire__thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}
/* Respect the `hidden` attribute even against the class's display:flex.
   Same pattern as .nav__mobile — PHP always renders the node, but it stays
   hidden until JS removes the attribute on successful form submit. */
.enquire__thanks[hidden] { display: none !important; }
.enquire__thanks-check {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  animation: check-pop .5s cubic-bezier(.2,.7,.2,1);
}
@keyframes check-pop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

@media (max-width: 900px) {
  .enquire__grid { grid-template-columns: 1fr; }
  .enquire__left { position: static; }
}

/* ============================================================
   Footer
   ============================================================ */
.foot {
  background: var(--ink-900);
  color: rgba(253, 251, 245, 0.75);
  padding: 80px 0 max(28px, env(safe-area-inset-bottom));
  margin-top: 0;
  /* Full-bleed dark bg — extends past body edges so iOS Safari pinch-zoom-out
   * doesn't show cream gaps around footer. Layout width unchanged (no h-scroll). */
  box-shadow: 0 0 0 100vmax var(--ink-900);
  clip-path: inset(0 -100vmax);
}
.foot .t-label { color: rgba(253, 251, 245, 0.5); }
.foot__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(253, 251, 245, 0.1);
}
.foot__brand .nav__logo { color: #FDFBF5 !important; }
.foot__tag { margin-top: 24px; max-width: 300px; font: 400 14px/1.6 var(--font-ui); color: rgba(253, 251, 245, 0.6); }
.foot__col { display: flex; flex-direction: column; gap: 14px; }
.foot__col a, .foot__small {
  color: rgba(253, 251, 245, 0.8);
  text-decoration: none;
  font: 500 14px/1.4 var(--font-ui);
  transition: color .15s ease;
}
.foot__col a:hover { color: var(--accent); }

.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}
.foot__bottom .t-small { color: rgba(253, 251, 245, 0.4); }
.foot__legal { display: flex; gap: 28px; }
.foot__legal a { color: rgba(253, 251, 245, 0.5); text-decoration: none; font-size: 13px; }
.foot__legal a:hover { color: #fff; }

@media (max-width: 960px) {
  .foot__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot__brand { grid-column: 1 / -1; }
  .foot__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}
@media (max-width: 560px) {
  .foot__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Tweaks panel
   ============================================================ */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow: var(--shadow-lift);
  z-index: 100;
  font-family: var(--font-ui);
}
.tweaks__head {
  font: 700 13px/1 var(--font-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-900);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.tweaks__sec { margin-bottom: 14px; }
.tweaks__sec:last-child { margin-bottom: 0; }
.tweaks__label {
  font: 600 11px/1 var(--font-meta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 10px;
}
.tweaks__swatches { display: flex; gap: 8px; }
.tweaks__swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--border);
  cursor: pointer;
}
.tweaks__swatch.on { box-shadow: 0 0 0 2px var(--ink-900); }
.tweaks__seg {
  display: flex; gap: 4px;
  background: var(--bg-inset);
  padding: 3px;
  border-radius: 8px;
}
.tweaks__seg-btn {
  flex: 1;
  padding: 7px 10px;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: 600 12px/1 var(--font-ui);
  color: var(--ink-500);
  transition: all .15s ease;
}
.tweaks__seg-btn.on { background: var(--bg-card); color: var(--ink-900); box-shadow: 0 1px 2px rgba(26,24,20,.08); }
/* ============================================================
   Promo Atelier — Subpage styles
   For legacy Blogger URLs (ТЦ, световая башня, промо-конструкции)
   Shares tokens.css + sections.css, adds article-specific layout
   ============================================================ */

/* ---------- Breadcrumbs ---------- */
.crumbs {
  padding: 120px 0 0;
  font-family: var(--font-meta);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.crumbs a {
  color: var(--ink-500);
  text-decoration: none;
  transition: color .15s ease;
}
.crumbs a:hover { color: var(--ink-900); }
.crumbs__sep {
  display: inline-block;
  margin: 0 10px;
  color: var(--ink-300);
}
.crumbs__here { color: var(--ink-900); }

/* ---------- Subpage hero ---------- */
.sub-hero {
  padding: 40px 0 clamp(64px, 8vw, 112px);
  border-bottom: 1px solid var(--border);
}
.sub-hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.sub-hero__title {
  margin: 24px 0 0;
  max-width: 880px;
  text-wrap: balance;
}
.sub-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  padding-bottom: 8px;
}
.sub-hero__meta-row {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: baseline;
}
.sub-hero__meta-label {
  font: 600 11px/1 var(--font-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.sub-hero__meta-val {
  font: 500 13px/1 var(--font-ui);
  color: var(--ink-900);
}
.sub-hero__lead {
  margin: 32px 0 0;
  max-width: 720px;
  color: var(--text-body);
}

@media (max-width: 860px) {
  .sub-hero__grid { grid-template-columns: 1fr; }
  .sub-hero__meta { text-align: left; }
  .sub-hero__meta-row { justify-content: flex-start; }
}

/* ---------- Article ---------- */
.article {
  padding: clamp(64px, 9vw, 128px) 0;
}
.article__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: 1200px;
  margin: 0 auto;
}
.article__side {
  position: sticky;
  top: 120px;
  align-self: start;
  border-top: 1px solid var(--ink-900);
  padding-top: 16px;
}
.article__side-label {
  font: 600 11px/1 var(--font-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.article__side-toc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.article__side-toc a {
  font: 500 13px/1.4 var(--font-ui);
  color: var(--ink-500);
  text-decoration: none;
  transition: color .15s ease;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}
.article__side-toc a:hover {
  color: var(--ink-900);
  border-color: var(--accent);
}

.article__body {
  max-width: 720px;
}
.article__body > * + * { margin-top: 28px; }
.article__body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 56px 0 20px;
  scroll-margin-top: 100px;
}
.article__body h2:first-child { margin-top: 0; }
.article__body h2 em { font-style: italic; color: var(--accent); font-weight: 300; }
.article__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 40px 0 12px;
}
.article__body p {
  font: 400 17px/1.7 var(--font-ui);
  color: var(--ink-700);
  margin: 0;
  letter-spacing: -0.005em;
}
.article__body p.t-lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-900);
  max-width: 640px;
}
.article__body ul, .article__body ol {
  padding-left: 0;
  list-style: none;
}
.article__body ul li, .article__body ol li {
  position: relative;
  padding-left: 28px;
  font: 400 17px/1.6 var(--font-ui);
  color: var(--ink-700);
}
.article__body ul li + li, .article__body ol li + li { margin-top: 10px; }
.article__body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 1px;
  background: var(--accent);
}
.article__body ol { counter-reset: article-ol; }
.article__body ol li {
  counter-increment: article-ol;
}
.article__body ol li::before {
  content: counter(article-ol, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font: 600 11px/1.9 var(--font-meta);
  color: var(--accent);
  letter-spacing: 0.08em;
}
.article__body strong { color: var(--ink-900); font-weight: 600; }
.article__body p.shop-cta-paragraph {
  padding: 20px 24px;
  background: var(--cream-100);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  margin-top: 40px;
}

.article__figure {
  margin: 48px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .08);
  background: #f5efe8;
}
.article__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article__figure figcaption {
  padding: 14px 20px;
  font: 400 14px/1.55 var(--font-meta, var(--font-ui));
  color: var(--ink-700);
  background: #fbf7f1;
  border-top: 2px solid var(--accent);
  letter-spacing: 0.01em;
}

@media (max-width: 960px) {
  .article__grid { grid-template-columns: 1fr; }
  .article__side { position: static; }
  .article__figure { margin: 32px -20px; border-radius: 0; }
}

/* ============================================================
   Legacy page → blog cross-links
   ============================================================ */
.legacy-related {
  padding: 88px 0;
  background: #f5efe8;
  border-top: 1px solid rgba(26, 24, 20, 0.08);
  border-bottom: 1px solid rgba(26, 24, 20, 0.08);
}
.legacy-related .sec-head { margin-bottom: 40px; }
.legacy-related__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.legacy-related__item { padding: 0; margin: 0; }
.legacy-related__item::before { display: none !important; }
.legacy-related__link {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26, 24, 20, 0.12);
  font: 500 16px/1.45 var(--font-ui);
  color: var(--ink-900);
  text-decoration: none;
  transition: color .15s ease, border-color .15s ease;
}
.legacy-related__link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.legacy-related__arrow {
  margin-left: auto;
  font: 400 18px/1 var(--font-display);
  color: var(--accent);
  transition: transform .2s ease;
}
.legacy-related__link:hover .legacy-related__arrow { transform: translateX(4px); }

@media (max-width: 760px) {
  .legacy-related { padding: 64px 0; }
  .legacy-related__list { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Gallery (real images with SEO filenames) ---------- */
.gallery {
  margin: 48px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background: var(--cream-200);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  margin: 0;
}
.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font: 500 10px/1.4 var(--font-meta);
  color: var(--ink-500);
  letter-spacing: 0.02em;
  background: rgba(253, 251, 245, 0.92);
  padding: 5px 8px;
  border-radius: 4px;
  max-width: calc(100% - 20px);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.gallery__item:hover figcaption { opacity: 1; }

/* ---------- Specs strip (used on Башня) ---------- */
.specs-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 40px 0;
}
.specs-strip__cell {
  background: var(--bg-card);
  padding: 28px 24px;
}
.specs-strip__label {
  font: 600 11px/1 var(--font-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 10px;
}
.specs-strip__val {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-feature-settings: "tnum";
}
.specs-strip__unit {
  font: 500 14px/1 var(--font-meta);
  color: var(--ink-500);
  margin-left: 4px;
}

/* ---------- Partners strip ---------- */
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 64px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
  align-items: baseline;
}
.partners-strip__label { white-space: nowrap; }
.partners-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  flex: 1;
}
.partners-strip__mark {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink-500);
}

/* ---------- Price callout ---------- */
.price-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 3vw, 40px);
  margin: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.price-callout__label {
  font: 600 11px/1 var(--font-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.price-callout__val {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  font-feature-settings: "tnum";
}
.price-callout__val em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.price-callout__note {
  margin-top: 12px;
  font: 500 13px/1.4 var(--font-meta);
  color: var(--ink-500);
  max-width: 320px;
}
@media (max-width: 720px) {
  .price-callout { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--ink-900);
  color: #FDFBF5;
  border-radius: var(--r-2xl);
  padding: clamp(40px, 6vw, 80px);
  margin-top: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-strip__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #FDFBF5;
  margin: 0;
  text-wrap: balance;
}
.cta-strip__title em { font-style: italic; font-weight: 300; color: var(--accent); }
.cta-strip__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-strip .btn-primary {
  background: var(--accent);
  color: #fff;
}
.cta-strip .btn-primary:hover { background: var(--accent-ink); }
.cta-strip .btn-ghost {
  background: transparent;
  color: #FDFBF5;
  border: 1px solid rgba(253, 251, 245, 0.25);
}
.cta-strip .btn-ghost:hover {
  background: rgba(253, 251, 245, 0.05);
  border-color: #FDFBF5;
}
.cta-strip__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font: 500 14px/1.4 var(--font-ui);
  color: rgba(253, 251, 245, 0.7);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(253, 251, 245, 0.12);
}
.cta-strip__contacts a { color: #FDFBF5; text-decoration: none; }
.cta-strip__contacts a:hover { color: var(--accent); }
@media (max-width: 820px) {
  .cta-strip { grid-template-columns: 1fr; }
}

/* ---------- Related (sitemap block on main page) ---------- */
.sitemap-block {
  padding: clamp(72px, 9vw, 120px) 0;
  border-top: 1px solid var(--border);
}
.sitemap-block__head {
  max-width: 700px;
  margin-bottom: 48px;
}
.sitemap-block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sitemap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease;
  min-height: 280px;
}
.sitemap-card:hover {
  border-color: var(--ink-900);
  transform: translateY(-2px);
}
.sitemap-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 20px;
}
.sitemap-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 12px;
}
.sitemap-card__desc {
  font: 400 15px/1.5 var(--font-ui);
  color: var(--ink-500);
  flex-grow: 1;
}
.sitemap-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font: 600 13px/1 var(--font-meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-900);
  transition: gap .2s ease, color .2s ease;
}
.sitemap-card:hover .sitemap-card__cta {
  gap: 12px;
  color: var(--accent);
}
.sitemap-card__url {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font: 500 11px/1.4 var(--font-meta);
  color: var(--ink-400);
  word-break: break-all;
  letter-spacing: -0.005em;
}
@media (max-width: 960px) {
  .sitemap-block__grid { grid-template-columns: 1fr; }
  .sitemap-card { min-height: auto; }
}

/* Interview format — used by /2026/rukzak-peisera.html (Алекс) */

/* CRITICAL: .article__body p { margin: 0 } at line 152 collapses sibling
   <p> tags. For interview answers we want visible spacing between thought
   units. Specificity (0,1,2)=12 beats (0,1,1)=11 of `.article__body p`. */
.article__body--interview p + p {
  margin-top: 18px;
}
.article__body--interview .interview__question + p {
  margin-top: 12px;
}

/* Answer paragraphs: justified, hyphenated, comfortable measure */
.article__body--interview > p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  line-height: 1.65;
  max-width: 68ch;
}
/* In-text emphasis stays in ink-900 (not accent — keeps colour count to 2) */
.article__body--interview p em {
  font-style: italic;
  color: var(--ink-900);
}

/* Interviewer questions: Inter Tight (font-meta) sets a visual "other voice"
   without leaving the palette. Italic moved to .interview__question em only. */
.article__body--interview .interview__question {
  margin: 32px 0 16px 0;
  padding: 12px 0 0 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-meta);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-500);
  font-size: 17px;
  line-height: 1.45;
  max-width: 68ch;
}
.article__body--interview .interview__question em {
  color: var(--accent);
  font-style: italic;
}
.article__body--interview h2 + .interview__question {
  margin-top: 8px;
  border-top: 0;
  padding-top: 0;
}
@media (max-width: 720px) {
  .article__body--interview .interview__question { font-size: 16px; }
}

/* Pull quote — Fraunces display + accent rule on the left.
   Single coral stroke is the only colour beyond the black/cream base. */
.article__body .pull-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 40px 0;
  max-width: 56ch;
}
.article__body .pull-quote::before { content: "«"; }
.article__body .pull-quote::after  { content: "»"; }
@media (max-width: 720px) {
  .article__body .pull-quote {
    padding-left: 18px;
    margin: 32px 0;
  }
}
