/* ─────────────────────────────────────────────────────────────────────
   Siona Space — главная страница
   Типографика: Circe Contrast VF, оси CNTR 0–100 и wght 1–900.
   CNTR 100 — контрастное «дисплейное» начертание (заголовки),
   CNTR 50 — Subhead (лиды), CNTR 0 — Text (основной текст).
   ───────────────────────────────────────────────────────────────────── */

@font-face {
  font-family: "Circe Contrast VF";
  src: url("assets/fonts/CirceContrastVF.woff2") format("woff2-variations");
  font-weight: 1 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper:      #EFEEEB;   /* тёплый холодноватый фон, снят с фото */
  --paper-deep: #E6E5E1;
  --white:      #FBFAF8;
  --ink:        #17161A;
  --ink-soft:   #4A4750;
  --stone:      #8D8A8F;
  --hair:       #17161A1A;
  --pink:       #E58FA8;   /* пиджак */
  --pink-deep:  #D0708C;
  --pink-wash:  #F3D9E0;

  --text:   "Circe Contrast VF", "Helvetica Neue", Arial, sans-serif;

  --pad:    clamp(20px, 5vw, 80px);
  --gap:    clamp(28px, 4vw, 56px);
  --rule:   1px solid var(--hair);

  --ease:   cubic-bezier(.22, .61, .36, 1);
}

/* Начертания как переменные ─ подмена гарнитуры делается в одном месте */
.t-display { font-variation-settings: "CNTR" 100, "wght" 300; }
.t-sub     { font-variation-settings: "CNTR" 50,  "wght" 400; }
.t-text    { font-variation-settings: "CNTR" 0,   "wght" 400; }

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-variation-settings: "CNTR" 0, "wght" 400;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--white); padding: 12px 20px;
}
.skip:focus { left: 0; }

::selection { background: var(--pink); color: var(--white); }

:focus-visible { outline: 2px solid var(--pink-deep); outline-offset: 3px; }

/* ── Типографические примитивы ─────────────────────────────────────── */

.kicker {
  font-variation-settings: "CNTR" 0, "wght" 500;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
}

.h2 {
  font-variation-settings: "CNTR" 100, "wght" 300;
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -.015em;
}

.h2 em, .hero__title em, .manifest__text em, .start__title em {
  font-style: normal;
  color: var(--pink-deep);
}

.link-underline {
  font-variation-settings: "CNTR" 0, "wght" 500;
  font-size: .92rem;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .4s var(--ease), color .3s var(--ease);
}
.link-underline:hover { color: var(--pink-deep); background-size: 0 1px; }

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-variation-settings: "CNTR" 0, "wght" 500;
  font-size: .95rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background-color .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.btn--solid { --btn-bg: var(--ink); --btn-fg: var(--white); }
.btn--solid:hover { --btn-bg: var(--pink-deep); border-color: var(--pink-deep); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--white); }
.btn--lg { padding: 19px 44px; font-size: 1.02rem; }
.btn:active { transform: translateY(1px); }

/* ── Шапка ─────────────────────────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px);
  transition: border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck { border-bottom-color: var(--hair); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding: 18px var(--pad);
}

.wordmark { display: inline-flex; align-items: center; gap: 11px; }
.wordmark__mark {
  width: 26px; height: 26px;
  fill: none; stroke: var(--ink); stroke-width: 1.1;
  transition: stroke .35s var(--ease), transform .8s var(--ease);
}
.wordmark:hover .wordmark__mark { stroke: var(--pink-deep); transform: rotate(45deg); }
.wordmark__text {
  font-variation-settings: "CNTR" 100, "wght" 400;
  font-size: 1.02rem;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.wordmark--lg .wordmark__mark { width: 40px; height: 40px; }
.wordmark--lg .wordmark__text { font-size: 1.5rem; }

.nav { display: flex; gap: clamp(18px, 2.4vw, 38px); }
.nav a {
  font-size: .92rem;
  color: var(--ink-soft);
  transition: color .3s var(--ease);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--pink-deep);
  transition: width .4s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.burger {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px; height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-3px) rotate(-45deg); }

.mobile-nav[hidden] { display: none; }
@media (min-width: 901px) { .mobile-nav { display: none !important; } }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px var(--pad) 28px;
  border-top: var(--rule);
}
.mobile-nav a {
  font-variation-settings: "CNTR" 50, "wght" 400;
  font-size: 1.5rem;
  padding: 10px 0;
  border-bottom: var(--rule);
}
.mobile-nav__cta { border-bottom: 0 !important; color: var(--pink-deep); }

/* ── Кейвижуал ─────────────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 46%);
  align-items: end;
  gap: var(--gap);
  padding: clamp(40px, 7vw, 96px) var(--pad) 0;
  min-height: min(88vh, 900px);
}

.hero__text { padding-bottom: clamp(40px, 6vw, 90px); }

.hero__title {
  margin: 22px 0 clamp(22px, 2.6vw, 34px);
  font-variation-settings: "CNTR" 100, "wght" 280;
  font-size: clamp(2.5rem, 4.9vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.hero__lead {
  font-variation-settings: "CNTR" 0, "wght" 400;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 42ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  flex-wrap: wrap;
  margin-top: clamp(26px, 3vw, 40px);
}

.hero__facts {
  display: flex;
  gap: clamp(24px, 3.4vw, 54px);
  margin-top: clamp(38px, 4.6vw, 64px);
  padding-top: 20px;
  border-top: var(--rule);
}
.hero__facts dt {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}
.hero__facts dd {
  font-variation-settings: "CNTR" 100, "wght" 350;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

.hero__figure { position: relative; align-self: end; }

.hero__wash {
  position: absolute;
  inset: auto -4% 0 -4%;
  height: 58%;
  background: linear-gradient(180deg, transparent, var(--pink-wash));
}

.hero__figure picture { position: relative; display: block; }

.hero__figure img {
  width: 100%;
  aspect-ratio: 896 / 1200;
  object-fit: cover;
  object-position: 50% 12%;
  animation: rise 1.3s var(--ease) both;
}

.hero__caption {
  position: absolute;
  left: clamp(-140px, -9vw, -40px);
  bottom: clamp(40px, 8vw, 96px);
  font-variation-settings: "CNTR" 100, "wght" 300;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.15;
  color: var(--ink);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .02em;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px) scale(1.03); }
  to   { opacity: 1; transform: none; }
}

/* ── Бегущая строка ────────────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  margin-top: clamp(48px, 6vw, 90px);
  padding: 16px 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
  white-space: nowrap;
}
.marquee__track { display: flex; width: max-content; animation: slide 44s linear infinite; }
.marquee__track span {
  font-variation-settings: "CNTR" 100, "wght" 300;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  letter-spacing: .04em;
}
.marquee i {
  font-style: normal;
  margin: 0 clamp(18px, 2.4vw, 40px);
  color: var(--pink);
  font-size: .6em;
  vertical-align: middle;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ── Секции ────────────────────────────────────────────────────────── */

.section { padding: clamp(72px, 10vw, 150px) var(--pad); }

.section__head { max-width: 62ch; margin-bottom: clamp(38px, 5vw, 68px); }
.section__head .kicker { margin-bottom: 18px; }

.section__head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  max-width: none;
  align-items: end;
}
.section__note, .section__lead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  max-width: 46ch;
}
.section__lead { margin-top: 22px; }

/* Если знакомо */
.familiar__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 var(--gap);
  border-top: var(--rule);
}
.familiar__list li {
  padding: clamp(18px, 2vw, 26px) 0;
  border-bottom: var(--rule);
  font-variation-settings: "CNTR" 50, "wght" 350;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.28;
  transition: color .35s var(--ease), padding-left .45s var(--ease);
}
.familiar__list li:hover { color: var(--pink-deep); padding-left: 12px; }

/* Манифест */
.manifest {
  padding: clamp(80px, 12vw, 190px) var(--pad);
  background: var(--white);
  text-align: center;
}
.manifest__text {
  font-variation-settings: "CNTR" 100, "wght" 280;
  font-size: clamp(1.9rem, 4.4vw, 3.7rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: min(900px, 100%);
  margin: 0 auto;
  text-wrap: balance;
}
.manifest__text span {
  display: block;
  margin-top: clamp(20px, 2.4vw, 34px);
  font-variation-settings: "CNTR" 0, "wght" 400;
  font-size: clamp(.95rem, 1.15vw, 1.08rem);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--stone);
}

/* Карточки результата */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: var(--rule);
}
.card {
  background: var(--paper);
  padding: clamp(26px, 3vw, 42px);
  transition: background-color .4s var(--ease);
}
.card:hover { background: var(--white); }
.card__num {
  display: block;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--pink-deep);
  margin-bottom: clamp(30px, 4vw, 58px);
}
.card h3 {
  font-variation-settings: "CNTR" 50, "wght" 400;
  font-size: clamp(1.15rem, 1.6vw, 1.42rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
.card p { color: var(--stone); font-size: .96rem; }

/* Шаги */
.steps__list { border-top: var(--rule); }
.step {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: baseline;
  gap: var(--gap);
  padding: clamp(22px, 2.8vw, 38px) 0;
  border-bottom: var(--rule);
  transition: padding-left .5s var(--ease);
}
.step:hover { padding-left: 14px; }
.step__num {
  font-variation-settings: "CNTR" 100, "wght" 300;
  font-size: 1rem;
  color: var(--pink-deep);
  letter-spacing: .06em;
}
.step__title {
  font-variation-settings: "CNTR" 100, "wght" 300;
  font-size: clamp(1.45rem, 2.8vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -.015em;
}
.step__descr { color: var(--ink-soft); max-width: 44ch; }

/* Что входит */
.kit__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair);
  border: var(--rule);
}
.kit__item {
  background: var(--paper);
  padding: clamp(28px, 3.4vw, 52px);
  transition: background-color .4s var(--ease);
}
.kit__item:hover { background: var(--white); }
.kit__item h3 {
  font-variation-settings: "CNTR" 100, "wght" 320;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.1;
  margin-bottom: 14px;
}
.kit__item p { color: var(--ink-soft); max-width: 40ch; }
.kit__item h3 a { transition: color .3s var(--ease); }
.kit__item h3 a:hover { color: var(--pink-deep); }
.kit__more { display: inline-block; margin-top: 18px; }

/* Отзыв */
.voices { text-align: center; }
.quote { max-width: min(860px, 100%); margin: clamp(28px, 4vw, 50px) auto 0; }
.quote blockquote {
  font-variation-settings: "CNTR" 100, "wght" 300;
  font-size: clamp(1.5rem, 3.2vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -.015em;
}
.quote figcaption {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(24px, 3vw, 40px);
  font-size: .88rem;
}
.quote__name { font-variation-settings: "CNTR" 0, "wght" 500; }
.quote__role { color: var(--stone); }

/* Финальный CTA */
.start {
  padding: clamp(80px, 11vw, 170px) var(--pad);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}
.start__inner { max-width: min(900px, 100%); margin: 0 auto; }
.start .kicker { color: color-mix(in srgb, var(--white) 55%, transparent); }
.start__title {
  margin: 22px 0 clamp(30px, 3.6vw, 48px);
  font-variation-settings: "CNTR" 100, "wght" 280;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
}
.start__title em { color: var(--pink); }
.start__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  flex-wrap: wrap;
}
.start .btn--solid {
  --btn-bg: var(--white); --btn-fg: var(--ink);
  border-color: var(--white);
}
.start .btn--solid:hover { --btn-bg: var(--pink); --btn-fg: var(--ink); border-color: var(--pink); }
.start .link-underline { color: color-mix(in srgb, var(--white) 78%, transparent); background-image: linear-gradient(currentColor, currentColor); }
.start .link-underline:hover { color: var(--pink); }
.start__note {
  margin-top: clamp(24px, 3vw, 38px);
  font-size: .86rem;
  color: color-mix(in srgb, var(--white) 45%, transparent);
}

/* ── Подвал ────────────────────────────────────────────────────────── */

.footer { padding: clamp(56px, 7vw, 100px) var(--pad) 34px; }

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--gap);
  flex-wrap: wrap;
  padding-bottom: clamp(36px, 4.4vw, 62px);
  border-bottom: var(--rule);
}
.footer__claim {
  font-variation-settings: "CNTR" 50, "wght" 350;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.25;
  color: var(--ink-soft);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  padding: clamp(34px, 4vw, 56px) 0;
}
.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__col h4 {
  font-variation-settings: "CNTR" 0, "wght" 500;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}
.footer__col a {
  font-size: .95rem;
  color: var(--ink-soft);
  width: fit-content;
  transition: color .3s var(--ease);
}
.footer__col a:hover { color: var(--pink-deep); }

.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: var(--rule);
  font-size: .78rem;
  color: var(--stone);
}

/* ── Появление при скролле ─────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease) var(--d, 0s), transform .8s var(--ease) var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__figure img { animation: none; }
  .marquee__track { animation: none; }
}

/* ── Адаптив ───────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .step { grid-template-columns: 60px minmax(0, 1fr); }
  .step__descr { grid-column: 2; }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: clamp(28px, 6vw, 48px);
  }
  .hero__text { max-width: none; padding-bottom: clamp(30px, 6vw, 48px); }
  .hero__caption { display: none; }
  .hero__figure { margin: 0 calc(var(--pad) * -1); }
  .hero__wash { inset: auto 0 0 0; }

  .section__head--split { grid-template-columns: 1fr; }
  .familiar__list { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .grid-cards, .kit__grid { grid-template-columns: 1fr; }
  .hero__facts { flex-wrap: wrap; gap: 20px 34px; }
  .footer__cols { grid-template-columns: 1fr; }
  .quote blockquote { font-size: clamp(1.4rem, 6.4vw, 1.9rem); }
}

/* ─────────────────────────────────────────────────────────────────────
   Страница тетради
   ───────────────────────────────────────────────────────────────────── */

/* Кейвижуал: фото слева, текст справа */
.hero--product { grid-template-columns: minmax(320px, 44%) 1fr; }
.hero--product .hero__text { padding-left: clamp(0px, 2vw, 40px); }
.hero__figure--left .hero__wash { inset: auto -4% 0 -6%; }

/* Характеристики строкой */
.spec {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(20px, 3vw, 44px);
  margin-top: clamp(48px, 6vw, 90px);
  padding: 18px var(--pad);
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.spec li {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.spec li + li::before {
  content: "✳";
  color: var(--pink);
  font-size: .7em;
}

/* Галерея предмета */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 2vw, 30px);
}
.gallery__item { margin: 0; }
.gallery__item--cover    { grid-column: span 2; --ratio: 3 / 4; }
.gallery__item--contents { grid-column: span 4; --ratio: 16 / 10; }
.gallery__item--writing,
.gallery__item--lined    { grid-column: span 3; --ratio: 4 / 3; }

.gallery__item picture {
  display: block;
  overflow: hidden;
  background: var(--paper-deep);
  aspect-ratio: var(--ratio, 4 / 5);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding-top: 12px;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gallery__item figcaption span {
  color: var(--stone);
  letter-spacing: .02em;
  text-transform: none;
  font-size: .84rem;
}

.manifest__text span { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }

/* Как работать */
.how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.how__list { border-top: var(--rule); }
.how__list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 20px;
  padding: clamp(20px, 2.4vw, 32px) 0;
  border-bottom: var(--rule);
}
.how__num {
  font-variation-settings: "CNTR" 100, "wght" 300;
  color: var(--pink-deep);
  font-size: .95rem;
}
.how__list h3 {
  grid-column: 2;
  font-variation-settings: "CNTR" 50, "wght" 400;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.15;
  margin-bottom: 8px;
}
.how__list p { grid-column: 2; color: var(--ink-soft); max-width: 42ch; }
.how__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.how__figure figcaption {
  padding-top: 12px;
  font-size: .8rem;
  color: var(--stone);
}

/* Отзывы карточками */
.voices--grid { text-align: left; }
.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair);
  border: var(--rule);
}
.quote-card {
  margin: 0;
  padding: clamp(26px, 3vw, 44px);
  background: var(--paper);
  transition: background-color .4s var(--ease);
}
.quote-card:hover { background: var(--white); }
.quote-card blockquote {
  font-variation-settings: "CNTR" 50, "wght" 350;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.3;
}
.quote-card figcaption {
  display: flex;
  gap: 10px;
  margin-top: clamp(18px, 2vw, 28px);
  font-size: .84rem;
}

/* Сообщество */
.community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--gap);
  padding: clamp(60px, 8vw, 130px) var(--pad);
}
.community__figure { margin: 0; }
.community__figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.community__text .h2 { margin: 16px 0 20px; }

@media (max-width: 900px) {
  .hero--product { grid-template-columns: 1fr; }
  .hero--product .hero__figure { order: -1; margin: 0 calc(var(--pad) * -1); }
  .hero--product .hero__figure img { max-height: 66vh; object-fit: cover; object-position: 50% 14%; }
  .hero--product .hero__text { padding-left: 0; padding-top: clamp(28px, 5vw, 44px); }
  .how__grid, .community, .quotes { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--tall picture { aspect-ratio: 4 / 5; }
}

@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr; }
  .spec { gap: 10px 20px; }
}

/* ── Тетрадь: блоки исходной страницы ──────────────────────────────── */

/* Характеристики в первом экране — столбиком */
.hero__facts--stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 36px);
}
.hero__facts--stack dt {
  font-variation-settings: "CNTR" 0, "wght" 500;
  font-size: .7rem;
}
.hero__facts--stack dd {
  font-variation-settings: "CNTR" 0, "wght" 400;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* Полоса с призывом */
.cta-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(60px, 8vw, 120px) var(--pad);
  text-align: center;
}
.cta-band__title {
  font-variation-settings: "CNTR" 100, "wght" 300;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.manifest--paper { background: var(--paper); border-block: var(--rule); }

/* Галерея под шагами */
.gallery--steps { margin-top: clamp(40px, 5vw, 76px); }

/* Отзывы в колонках */
.quotes-masonry {
  columns: 3;
  column-gap: clamp(16px, 2vw, 28px);
}
.quotes-masonry .quote-card {
  break-inside: avoid;
  margin: 0 0 clamp(16px, 2vw, 28px);
  border: var(--rule);
  background: var(--paper);
}
.quotes-masonry .quote-card figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 0 0 14px;
  font-size: .84rem;
}
.quotes-masonry blockquote {
  font-variation-settings: "CNTR" 0, "wght" 400;
  font-size: .96rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.quotes-masonry blockquote p + p { margin-top: .7em; }

.voices__more {
  margin-top: clamp(40px, 5vw, 70px);
  font-variation-settings: "CNTR" 100, "wght" 300;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.015em;
  text-align: center;
}
.community__figure--wide {
  margin: clamp(30px, 4vw, 56px) 0 0;
}
.community__figure--wide img { aspect-ratio: 21 / 9; }

/* Товар */
.product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.product__figure { margin: 0; }
.product__figure img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.product__label {
  margin: clamp(24px, 3vw, 38px) 0 14px;
  font-variation-settings: "CNTR" 0, "wght" 500;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
}
.product__list { border-top: var(--rule); }
.product__list li {
  padding: 13px 0;
  border-bottom: var(--rule);
  color: var(--ink-soft);
}
.product__price {
  margin: clamp(26px, 3vw, 40px) 0 clamp(22px, 2.6vw, 32px);
  font-variation-settings: "CNTR" 100, "wght" 300;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.02em;
}
.product__price span { font-size: .35em; color: var(--stone); }
.product__note { margin-top: 20px; font-size: .9rem; color: var(--stone); max-width: 34ch; }

/* Автор */
.author__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.author__figure { margin: 0; }
.author__figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.author__text .h2 { margin: 16px 0 20px; }
.author__bio { margin-top: 20px; color: var(--ink-soft); max-width: 48ch; }
.author__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(24px, 3vw, 44px);
  margin-top: clamp(22px, 2.6vw, 34px);
  padding-top: 20px;
  border-top: var(--rule);
}
.author__facts dd {
  font-variation-settings: "CNTR" 100, "wght" 320;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}
.author__text .link-underline { display: inline-block; margin-top: clamp(22px, 2.6vw, 34px); }

/* Возражения */
.objections__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair);
  border: var(--rule);
}
.objection {
  padding: clamp(26px, 3vw, 44px);
  background: var(--paper);
  transition: background-color .4s var(--ease);
}
.objection:hover { background: var(--white); }
.objection h3 {
  font-variation-settings: "CNTR" 100, "wght" 320;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.15;
  margin-bottom: 12px;
}
.objection p { color: var(--ink-soft); }

/* Ясность — это начало */
.beginning__inner { max-width: min(760px, 100%); }
.beginning__inner .h2 { margin-bottom: clamp(24px, 3vw, 38px); }
.beginning__inner p {
  font-variation-settings: "CNTR" 50, "wght" 350;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.4;
  color: var(--ink-soft);
}
.beginning__inner p + p { margin-top: 18px; }

/* Кому не подойдёт */
.notfor__list { border-top: var(--rule); }
.notfor__list li {
  padding: clamp(18px, 2.2vw, 28px) 0;
  border-bottom: var(--rule);
  font-variation-settings: "CNTR" 50, "wght" 350;
  font-size: clamp(1.1rem, 1.9vw, 1.6rem);
  line-height: 1.2;
}

/* Отличия */
.compare__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair);
  border: var(--rule);
}
.compare__list li {
  padding: clamp(24px, 3vw, 42px);
  background: var(--paper);
}
.compare__list h3 {
  font-variation-settings: "CNTR" 100, "wght" 320;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  margin-bottom: 10px;
}
.compare__list p { color: var(--ink-soft); }

/* Частые вопросы */
.faq__list { border-top: var(--rule); }
.faq__item { border-bottom: var(--rule); }
.faq__item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 2.2vw, 28px) 0;
  cursor: pointer;
  list-style: none;
  font-variation-settings: "CNTR" 50, "wght" 400;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  line-height: 1.25;
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: none;
  font-variation-settings: "CNTR" 0, "wght" 300;
  font-size: 1.4em;
  line-height: 1;
  color: var(--pink-deep);
  transition: transform .35s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--pink-deep); }
.faq__answer {
  padding: 0 clamp(40px, 6vw, 90px) clamp(22px, 2.6vw, 32px) 0;
  max-width: 76ch;
  color: var(--ink-soft);
}
.faq__answer p + p { margin-top: .8em; }

@media (max-width: 1100px) {
  .quotes-masonry { columns: 2; }
}

@media (max-width: 900px) {
  .hero__facts--stack { grid-template-columns: 1fr; gap: 16px; }
  .product__grid, .author__grid, .objections__grid, .compare__list { grid-template-columns: 1fr; }
  .community__figure--wide img { aspect-ratio: 4 / 3; }
}

@media (max-width: 640px) {
  .quotes-masonry { columns: 1; }
}
