/* ============================================================
   Елена · психолог + таро — v2 «quiet luxury»
   Палитра: глубокая зелень + вино + крем, золото — тонкий акцент
   Тип: Fraunces (display) + Manrope (body)
   Подпись страницы: арочные «таро»-рамки + метод 01–04
   ============================================================ */

:root {
  --green-deep: #24382f;
  --green: #2f4a3a;
  --green-ink: #1a2a22;
  --wine: #4a1f2b;
  --wine-deep: #3a1621;
  --cream: #f6f1e7;
  --beige: #efe7d8;
  --ink: #26211b;
  --ink-soft: #55503f;
  --gold: #c9a45c;
  --gold-soft: rgba(201, 164, 92, 0.45);
  --cream-on-dark: #f0e9da;
  --muted-on-dark: rgba(240, 233, 218, 0.72);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  --header-h: 72px;
  --arch: 4.5rem 4.5rem 0.9rem 0.9rem;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- База ---------- */
* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

section[id], footer[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
section { scroll-margin-top: calc(var(--header-h) + 16px); }

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}
.container.narrow { width: min(780px, 100% - 2.5rem); }
.center { text-align: center; }

/* ---------- Типографика ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  font-variation-settings: "opsz" 120;
}
h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-variation-settings: "opsz" 90;
}

h3 { font-size: 1.28rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 1.1rem;
}
.eyebrow.gold { color: var(--gold); }

.on-dark { color: var(--cream-on-dark); }

.section-lead {
  font-size: 1.08rem;
  max-width: 46em;
  margin-bottom: 2.2rem;
  color: var(--ink-soft);
}
.section-lead.on-dark { color: var(--muted-on-dark); }
.center .section-lead { margin-inline: auto; }

.soft-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 44em;
  margin-top: 2rem;
}
.soft-note.on-dark { color: var(--muted-on-dark); }
.center .soft-note { margin-inline: auto; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 0.75em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    background-color 0.22s var(--ease), color 0.22s var(--ease),
    border-color 0.22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #d6b26c;
  box-shadow: 0 10px 26px rgba(201, 164, 92, 0.35);
}

.btn-primary {
  background: var(--green-deep);
  color: var(--cream-on-dark);
  border-color: var(--green-deep);
}
.btn-primary:hover {
  background: var(--green);
  box-shadow: 0 10px 24px rgba(36, 56, 47, 0.28);
}

.btn-line {
  background: transparent;
  color: var(--green-deep);
  border-color: rgba(38, 33, 27, 0.35);
}
.btn-line:hover {
  border-color: var(--green-deep);
  background: rgba(36, 56, 47, 0.06);
}
.btn-line.light {
  color: var(--cream-on-dark);
  border-color: rgba(240, 233, 218, 0.45);
}
.btn-line.light:hover {
  border-color: var(--cream-on-dark);
  background: rgba(240, 233, 218, 0.1);
}

.btn-ghost {
  background: rgba(240, 233, 218, 0.06);
  color: var(--cream-on-dark);
  border-color: rgba(240, 233, 218, 0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-small { min-height: 40px; padding: 0.45em 1.1em; font-size: 0.85rem; }

/* ---------- Хедер ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: rgba(26, 42, 34, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 164, 92, 0.22);
  padding-top: env(safe-area-inset-top);
}

.header-inner {
  width: min(1220px, 100% - 2rem);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream-on-dark);
  margin-right: auto;
  min-height: 44px;
}
.brand-mark { border-radius: 50%; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav {
  display: flex;
  gap: 1.4rem;
}
.site-nav a {
  color: var(--cream-on-dark);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.6rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.site-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--cream-on-dark);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(74, 31, 43, 0.55), transparent 60%),
    radial-gradient(900px 700px at -15% 110%, rgba(201, 164, 92, 0.12), transparent 55%),
    var(--green-deep);
  color: var(--cream-on-dark);
  padding-top: calc(var(--header-h) + env(safe-area-inset-top));
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/img/bg_spread.jpg") center / cover no-repeat;
  opacity: 0.07;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3.2rem, 7vw, 6rem);
}

.hero h1 { color: #faf6ec; }
.hero-sub {
  font-size: 1.07rem;
  color: var(--muted-on-dark);
  max-width: 34em;
  margin-bottom: 1.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(240, 233, 218, 0.6);
}

.hero-portrait {
  margin: 0;
  justify-self: center;
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(10, 18, 14, 0.5);
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid var(--gold-soft);
  border-radius: 20px;
  pointer-events: none;
}
.hero-portrait figcaption {
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  transform: translate(-50%, 100%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  padding-top: 0.6rem;
}

/* ---------- Регалии (вино) ---------- */
.creds {
  background: linear-gradient(120deg, var(--wine-deep), var(--wine) 55%, #52242f);
  color: var(--cream-on-dark);
  border-top: 1px solid rgba(201, 164, 92, 0.3);
  border-bottom: 1px solid rgba(201, 164, 92, 0.3);
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 2rem;
}
.cred {
  padding: 0.4rem 1.6rem;
  border-left: 1px solid rgba(201, 164, 92, 0.35);
}
.cred:first-child { border-left: 0; padding-left: 0; }
.cred-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: #f6efdf;
  margin: 0 0 0.3rem;
}
.cred-sub {
  font-size: 0.82rem;
  color: rgba(240, 233, 218, 0.66);
  margin: 0;
}

/* ---------- Секции ---------- */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-cream { background: var(--cream); }
.section-beige { background: var(--beige); }
.section-deep {
  background:
    radial-gradient(900px 500px at 110% 0%, rgba(74, 31, 43, 0.4), transparent 55%),
    var(--green-deep);
  color: var(--cream-on-dark);
}

.section-photo {
  position: relative;
  color: var(--cream-on-dark);
  isolation: isolate;
}
.section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--photo) center / cover no-repeat;
}
.section-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(26, 42, 34, 0.9), rgba(36, 56, 47, 0.92));
}
.section-photo-wine::after {
  background: linear-gradient(180deg, rgba(58, 22, 33, 0.92), rgba(74, 31, 43, 0.9));
}

/* ---------- Обо мне ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-photo {
  margin: 0;
  position: relative;
  width: min(340px, 100%);
  justify-self: center;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--arch);
  box-shadow: 0 24px 55px rgba(38, 33, 27, 0.22);
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold-soft);
  border-radius: 11rem 11rem 1.1rem 1.1rem;
  pointer-events: none;
}
.about-body p { max-width: 38em; }
.about-sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--wine);
  margin-top: 1.4rem;
}

/* ---------- Метод 01–04 (signature) ---------- */
.method {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0 0 0 clamp(1.2rem, 4vw, 2.4rem);
  border-left: 1px solid var(--gold-soft);
  display: grid;
  gap: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 720px;
}
.method li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}
.method li::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(1.2rem, 4vw, 2.4rem) - 4.5px);
  top: 0.9rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 164, 92, 0.15);
}
.m-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
  font-variation-settings: "opsz" 144;
  min-width: 2.2ch;
}
.m-body h3 { color: #f6efdf; margin-bottom: 0.35rem; }
.m-body p { color: var(--muted-on-dark); max-width: 34em; margin: 0; }

/* ---------- Манифест ---------- */
.manifesto {
  background: linear-gradient(120deg, var(--wine-deep), var(--wine));
  color: var(--cream-on-dark);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid rgba(201, 164, 92, 0.28);
  border-bottom: 1px solid rgba(201, 164, 92, 0.28);
  text-align: center;
}
.manifesto blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  line-height: 1.5;
  color: #f4ecdd;
}
.manifesto blockquote p { margin: 0; }

/* ---------- Темы ---------- */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.topic {
  background: #fffdf8;
  border: 1px solid rgba(38, 33, 27, 0.08);
  border-top: 2px solid var(--gold-soft);
  border-radius: 0.9rem;
  padding: 1.5rem 1.6rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.topic:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(38, 33, 27, 0.1);
  border-top-color: var(--gold);
}
.topic h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--green-deep); }
.topic p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* ---------- Лестница услуг ---------- */
.ladder {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(38, 33, 27, 0.16);
}
.rung {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: 1.7rem clamp(0.2rem, 2vw, 1.4rem);
  border-bottom: 1px solid rgba(38, 33, 27, 0.16);
  transition: background-color 0.25s var(--ease);
}
.rung:hover { background: rgba(255, 253, 248, 0.75); }

.rung-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 0.35rem;
}
.rung h3 { margin-bottom: 0.35rem; color: var(--green-deep); }
.rung-info p:last-child {
  font-size: 0.93rem;
  color: var(--ink-soft);
  max-width: 42em;
  margin: 0;
}
.rung-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  white-space: nowrap;
  color: var(--green-deep);
  margin: 0;
}

.rung-free {
  background: linear-gradient(120deg, rgba(201, 164, 92, 0.16), rgba(201, 164, 92, 0.05));
  border-left: 3px solid var(--gold);
  border-radius: 0.7rem 0.7rem 0 0;
}
.rung-free:hover { background: linear-gradient(120deg, rgba(201, 164, 92, 0.22), rgba(201, 164, 92, 0.08)); }
.rung-free .rung-tag { color: #8a6a2c; }

.rung-main {
  background: rgba(36, 56, 47, 0.06);
  border-left: 3px solid var(--green-deep);
}
.rung-main:hover { background: rgba(36, 56, 47, 0.1); }

.rung-wine {
  background: linear-gradient(120deg, var(--wine-deep), var(--wine));
  border-left: 3px solid var(--gold);
  border-radius: 0.7rem;
  margin-block: 0.4rem;
}
.rung-wine:hover { background: linear-gradient(120deg, #421a26, #52242f); }
.rung-wine .rung-tag { color: var(--gold); }
.rung-wine h3 { color: #f6efdf; }
.rung-wine .rung-info p:last-child { color: rgba(240, 233, 218, 0.72); }
.rung-wine .rung-price { color: var(--gold); }

/* ---------- Таро-карты (интерактив) ---------- */
.flip-wrap {
  display: flex;
  justify-content: center;
  margin-block: 2.2rem 1.6rem;
}

.tarot-card {
  width: min(250px, 62vw);
  aspect-ratio: 3 / 5;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  perspective: 1200px;
  -webkit-tap-highlight-color: transparent;
}
.tarot-card.is-static { cursor: default; }

.tarot-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease);
}
.tarot-card.flipped .tarot-inner { transform: rotateY(180deg); }

.tarot-back,
.tarot-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--arch);
  overflow: hidden;
}

.tarot-back {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(201, 164, 92, 0.16), transparent 60%),
    var(--green);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 22px 50px rgba(10, 18, 14, 0.45), inset 0 0 0 7px rgba(201, 164, 92, 0.12);
}
.tarot-back img { opacity: 0.9; }
.tarot-back-hint {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.tarot-face {
  transform: rotateY(180deg);
  background: var(--green-ink);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 22px 50px rgba(10, 18, 14, 0.45);
}
.tarot-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes shuffle {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  20% { transform: translateX(-12px) rotate(-4deg); }
  45% { transform: translateX(12px) rotate(4deg); }
  70% { transform: translateX(-7px) rotate(-2deg); }
}
.tarot-card.shuffling .tarot-inner { animation: shuffle 0.75s var(--ease); }

.roulette-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.card-reading {
  max-width: 560px;
  margin: 1.8rem auto 0;
  padding: 1.8rem 1.9rem;
  background: rgba(246, 241, 231, 0.06);
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 1rem;
  backdrop-filter: blur(6px);
  animation: readingIn 0.5s var(--ease);
}
@keyframes readingIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.card-reading h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.reading-key {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 233, 218, 0.65);
  margin-bottom: 0.9rem;
}
.reading-meaning { color: var(--cream-on-dark); }
.reading-q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.card-reading.on-light {
  background: #fffdf8;
  border-color: rgba(38, 33, 27, 0.12);
  box-shadow: 0 16px 40px rgba(38, 33, 27, 0.1);
}
.card-reading.on-light h3 { color: var(--wine); }
.card-reading.on-light .reading-key { color: var(--ink-soft); }
.card-reading.on-light .reading-meaning { color: var(--ink); }
.card-reading.on-light .reading-q { color: var(--wine); }

/* ---------- Квиз ---------- */
.quiz {
  background: #fffdf8;
  border: 1px solid rgba(38, 33, 27, 0.1);
  border-radius: 1.1rem;
  padding: 1.9rem clamp(1.2rem, 4vw, 2.2rem) 2.1rem;
  box-shadow: 0 18px 44px rgba(38, 33, 27, 0.1);
  text-align: left;
  max-width: 640px;
  margin-inline: auto;
}
.quiz-progress {
  height: 3px;
  background: rgba(38, 33, 27, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.quiz-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.quiz-q {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  color: var(--green-deep);
}
.quiz-options { display: grid; gap: 0.7rem; }
.quiz-option {
  min-height: 48px;
  padding: 0.8em 1.2em;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(38, 33, 27, 0.14);
  border-radius: 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.quiz-option:hover {
  border-color: var(--gold);
  background: #fbf6ea;
  transform: translateX(3px);
}
.quiz-option:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.quiz-result h3 {
  color: var(--wine);
  margin-bottom: 0.5rem;
}
.quiz-result .btn { margin-top: 1rem; }
.quiz-restart {
  margin-top: 1rem;
  background: none;
  border: 0;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: underline;
  cursor: pointer;
}
.quiz-restart:hover { color: var(--wine); }

/* ---------- Отзывы ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  max-width: 940px;
  margin: 2.2rem auto 0;
}
.review {
  background: rgba(246, 241, 231, 0.07);
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: 1rem;
  padding: 1.6rem 1.7rem;
  backdrop-filter: blur(5px);
  font-size: 0.94rem;
  color: rgba(240, 233, 218, 0.85);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.review:hover { transform: translateY(-4px); border-color: var(--gold); }
.review strong {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 2rem;
  border-top: 1px solid rgba(38, 33, 27, 0.16);
}
.faq-item {
  border-bottom: 1px solid rgba(38, 33, 27, 0.16);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2.4rem 1.15rem 0.2rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--green-deep);
  position: relative;
  min-height: 44px;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary { color: var(--wine); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--wine); }
.faq-item p {
  padding: 0 0.2rem 1.3rem;
  margin: 0;
  color: var(--ink-soft);
  max-width: 44em;
}

/* ---------- Контакты ---------- */
.section-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

/* ---------- Футер ---------- */
.site-footer {
  background: var(--green-ink);
  color: rgba(240, 233, 218, 0.6);
  padding: 3rem 0 calc(2.2rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(201, 164, 92, 0.22);
}
.footer-inner { text-align: center; }
.footer-mark { margin: 0 auto 0.8rem; opacity: 0.85; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream-on-dark);
  margin-bottom: 1.4rem;
}
.footer-disclaimers {
  list-style: none;
  margin: 0 auto 1.4rem;
  padding: 0;
  max-width: 620px;
  font-size: 0.78rem;
  line-height: 1.6;
  display: grid;
  gap: 0.5rem;
}
.footer-copy { font-size: 0.78rem; margin: 0; }

/* ---------- Появление по скроллу ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Дипломы ---------- */
.diplomas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 900px; margin: 1.8rem auto 0; }
.diploma { margin: 0; }
.diploma img { width: 100%; border-radius: 14px; box-shadow: 0 16px 40px rgba(10,18,14,.28); aspect-ratio: 3 / 4; object-fit: cover; }
.diploma-ph { aspect-ratio: 3 / 4; border: 1.5px dashed rgba(201,164,92,.6); border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #6f5844; background: rgba(201,164,92,.07); font-family: "Fraunces", Georgia, serif; font-size: 1.05rem; line-height: 1.3; padding: 1rem; }
.diploma-ph span { display: block; font-family: "Manrope", system-ui, sans-serif; font-size: .74rem; color: #9a866c; margin-top: .5rem; text-transform: uppercase; letter-spacing: .1em; }

/* Документы разного формата: A4 книжной, A4 альбомной и A5 разворотом. Общая
   пропорция 3/4 обрезала бы половину альбомного диплома, поэтому карточка
   держит одинаковую высоту, а сам скан вписывается целиком. */
.diploma-open { display: block; width: 100%; padding: 0; border: 0; background: rgba(255,253,248,.55); border-radius: 14px; cursor: zoom-in; overflow: hidden; box-shadow: 0 16px 40px rgba(10,18,14,.22); transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s; }
.diploma-open:hover, .diploma-open:focus-visible { transform: translateY(-4px); box-shadow: 0 22px 52px rgba(10,18,14,.3); outline: none; }
.diploma-open:focus-visible { box-shadow: 0 0 0 3px rgba(201,164,92,.65), 0 22px 52px rgba(10,18,14,.3); }
.diploma-open img { display: block; width: 100%; height: 230px; object-fit: contain; object-position: center; border-radius: 0; box-shadow: none; aspect-ratio: auto; background: #fffdf8; }
.diploma-cap { margin: .7rem .2rem 0; text-align: center; }
.diploma-cap b { display: block; font-family: "Fraunces", Georgia, serif; font-size: .98rem; font-weight: 600; color: #2f4a3a; line-height: 1.25; }
.diploma-cap span { display: block; font-size: .78rem; color: #8a7a64; margin-top: .25rem; line-height: 1.35; }

/* Лайтбокс */
.diploma-lightbox { position: fixed; inset: 0; z-index: 220; display: flex; align-items: center; justify-content: center; padding: 20px; }
.diploma-lightbox[hidden] { display: none; }
.dlb-backdrop { position: absolute; inset: 0; background: rgba(14,11,8,.9); backdrop-filter: blur(6px); }
.dlb-card { position: relative; display: flex; flex-direction: column; align-items: center; gap: .8rem; max-width: min(1100px, 100%); max-height: 100%; }
.dlb-img { max-width: 100%; max-height: 74vh; object-fit: contain; border-radius: 10px; box-shadow: 0 24px 70px rgba(0,0,0,.55); background: #fff; }
.dlb-meta { text-align: center; color: #f4ece0; max-width: 720px; }
.dlb-meta b { display: block; font-family: "Fraunces", Georgia, serif; font-size: 1.15rem; font-weight: 600; }
.dlb-meta span { display: block; font-size: .85rem; opacity: .8; margin-top: .3rem; line-height: 1.45; }
.dlb-x { position: absolute; top: -6px; right: -6px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.dlb-x:hover { background: rgba(255,255,255,.26); }
.dlb-flip { font: inherit; font-size: .86rem; padding: .55rem 1.1rem; border-radius: 999px; border: 1px solid rgba(201,164,92,.55); background: rgba(255,255,255,.08); color: #f0e3cd; cursor: pointer; }
.dlb-flip:hover { background: rgba(201,164,92,.22); }
.dlb-flip[hidden] { display: none; }
body.dlb-open { overflow: hidden; }

@media (max-width: 680px) {
  .diplomas-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .diploma-open img { height: 160px; }
  .diploma-cap b { font-size: .84rem; }
  .diploma-cap span { font-size: .7rem; }
  .dlb-img { max-height: 66vh; }
  .dlb-x { top: -4px; right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .tarot-inner, .btn, .topic, .review, .quiz-option { transition: none !important; }
  .tarot-card.shuffling .tarot-inner { animation: none; }
  .card-reading { animation: none; }
}

/* ============================================================
   Адаптив
   ============================================================ */
@media (max-width: 1000px) {
  .creds-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.2rem; }
  .cred:nth-child(3) { border-left: 0; padding-left: 0; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
}

@media (max-width: 880px) {
  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top));
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(26, 42, 34, 0.98);
    border-bottom: 1px solid rgba(201, 164, 92, 0.25);
    padding: 0.6rem 1.4rem 1.2rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), visibility 0.25s;
  }
  .site-nav.open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .site-nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid rgba(240, 233, 218, 0.08);
    font-size: 1.02rem;
  }
  .nav-toggle { display: flex; }
  .header-cta { margin-left: auto; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 1; }
  .hero-portrait { order: 2; width: 100%; max-width: none; margin-top: 1.5rem; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { width: min(300px, 80vw); }
  .about-text { text-align: left; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }

  .rung {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-block: 1.5rem;
  }
  .rung-price { font-size: 1.35rem; }
  .rung .btn { justify-self: start; }
  .rung-free .btn, .rung-main .btn { width: 100%; }

  .topics-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; padding-block: 1.6rem; }
  .cred { border-left: 0; padding-left: 0; padding-block: 0.55rem; border-top: 1px solid rgba(201, 164, 92, 0.25); }
  .cred:first-child { border-top: 0; }

  .hero-actions .btn { width: 100%; }
  .contact-buttons .btn { width: 100%; }
  .header-cta { display: none; }
  .method { padding-left: 1.1rem; }
  .method li { grid-template-columns: 1fr; gap: 0.3rem; }
  .m-num { font-size: 2.3rem; }
}

/* ============================================================
   «Поиграть» — 3 таро-игры (плитки + игровой оверлей)
   ============================================================ */

/* ---------- Плитки игр ---------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 980px;
  margin: 2.4rem auto 0;
}

.game-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(246, 241, 231, 0.06);
  border: 1px solid rgba(201, 164, 92, 0.32);
  border-radius: 1.2rem;
  padding: 2rem 1.5rem 1.8rem;
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    background-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.game-tile:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(246, 241, 231, 0.09);
  box-shadow: 0 22px 50px rgba(8, 14, 11, 0.4);
}
.game-tile h3 {
  color: #f6efdf;
  font-size: 1.3rem;
  margin: 0 0 0.4rem;
}
.game-tile p {
  color: var(--muted-on-dark);
  font-size: 0.93rem;
  margin: 0 0 1.3rem;
  flex-grow: 1;
  max-width: 26em;
}
.game-tile .btn { min-width: 9em; }

/* Эмблемы: миниатюрные рубашки карт */
.game-emblem {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.emb-card {
  width: 48px;
  height: 76px;
  border-radius: 14px 14px 6px 6px;
  background:
    radial-gradient(110% 70% at 50% 0%, rgba(201, 164, 92, 0.22), transparent 60%),
    linear-gradient(160deg, var(--green-deep) 15%, var(--green) 50%, var(--wine) 100%);
  border: 1px solid rgba(201, 164, 92, 0.55);
  box-shadow: 0 8px 18px rgba(8, 14, 11, 0.45), inset 0 0 0 3px rgba(201, 164, 92, 0.14);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease);
}
.emb-card img { opacity: 0.92; }
.emb-l { transform: rotate(-14deg) translate(12px, 5px); }
.emb-r { transform: rotate(14deg) translate(-12px, 5px); }
.emb-c { position: relative; z-index: 1; }
.game-tile:hover .emb-l { transform: rotate(-19deg) translate(9px, 4px); }
.game-tile:hover .emb-r { transform: rotate(19deg) translate(-9px, 4px); }
.game-tile:hover .emb-solo { transform: translateY(-4px) rotate(3deg); }
.emb-q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}

/* ---------- Игровой оверлей ---------- */
.gplay {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(0.8rem, env(safe-area-inset-top))
    max(0.8rem, env(safe-area-inset-right))
    max(0.8rem, env(safe-area-inset-bottom))
    max(0.8rem, env(safe-area-inset-left));
}
.gplay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 14, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Пока игра открыта — прячем sticky-шапку, чтобы не просвечивала сквозь оверлей */
body.gplay-open .site-header { opacity: 0; visibility: hidden; pointer-events: none; }
.gplay-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(94dvh, 100%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background:
    radial-gradient(140% 60% at 50% 0%, rgba(201, 164, 92, 0.1), transparent 55%),
    linear-gradient(168deg, #22362d, #1a2a22 55%, #26191e);
  border: 1px solid rgba(201, 164, 92, 0.42);
  border-radius: 22px;
  padding: clamp(1.5rem, 4.5vw, 2.4rem);
  color: var(--cream-on-dark);
  box-shadow: 0 40px 90px rgba(6, 11, 9, 0.65);
  animation: gplayIn 0.32s var(--ease) both;
}
@keyframes gplayIn {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
body.gplay-open { overflow: hidden; }

.gplay-x {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(246, 241, 231, 0.07);
  color: rgba(240, 233, 218, 0.75);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.gplay-x:hover { color: var(--gold); background: rgba(246, 241, 231, 0.12); }
.gplay-x:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gplay-panel:focus { outline: none; }

/* ---------- Текст внутри игры ---------- */
.gp-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 2.4rem 0.8rem 0;
}
.gp-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: #f6efdf;
  margin: 0 0 0.45rem;
}
.gp-sub {
  color: var(--muted-on-dark);
  font-size: 0.96rem;
  margin: 0 0 0.4rem;
  max-width: 36em;
}

.gp-stage {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 0.4rem;
}

/* ---------- Карта: рубашка и лицо ---------- */
.gcard {
  width: min(224px, 56vw);
  aspect-ratio: 7 / 12;
  perspective: 1100px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.gcard.flipped { cursor: default; }
.gcard:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; border-radius: 18px; }
.gcard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease);
}
.gcard.flipped .gcard-inner { transform: rotateY(180deg); }

.gcard-back,
.gcard-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.gcard-back {
  background:
    radial-gradient(120% 75% at 50% 0%, rgba(201, 164, 92, 0.2), transparent 58%),
    radial-gradient(120% 75% at 50% 115%, rgba(201, 164, 92, 0.12), transparent 55%),
    linear-gradient(160deg, var(--green-deep) 8%, var(--green) 46%, var(--wine) 100%);
  border: 1px solid rgba(201, 164, 92, 0.6);
  box-shadow: 0 18px 44px rgba(6, 11, 9, 0.5), inset 0 0 0 5px rgba(201, 164, 92, 0.13);
}
.gcard-frame {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(201, 164, 92, 0.42);
  border-radius: 11px;
  pointer-events: none;
}
.gcard-frame::before,
.gcard-frame::after {
  content: "✦";
  position: absolute;
  font-size: 0.65rem;
  color: rgba(201, 164, 92, 0.75);
  line-height: 1;
}
.gcard-frame::before { top: 7px; left: 8px; }
.gcard-frame::after { bottom: 7px; right: 8px; }
.gcard-emb {
  width: 36%;
  max-width: 74px;
  opacity: 0.92;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.4));
}
.gcard-hint {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.gcard-face {
  transform: rotateY(180deg);
  background: #131d17;
  border: 1px solid rgba(201, 164, 92, 0.6);
  box-shadow: 0 18px 44px rgba(6, 11, 9, 0.5);
  padding: 5px;
}
.gcard-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

@keyframes gshuffle {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  22% { transform: translateX(-11px) rotate(-4deg); }
  48% { transform: translateX(11px) rotate(4deg); }
  74% { transform: translateX(-6px) rotate(-2deg); }
}
.gcard.shuffling .gcard-inner { animation: gshuffle 0.6s var(--ease); }

/* ---------- Чипы тем (игра B) ---------- */
.gp-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.gp-chip {
  min-height: 54px;
  padding: 0.7em 1em;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream-on-dark);
  background: rgba(246, 241, 231, 0.07);
  border: 1px solid rgba(201, 164, 92, 0.38);
  border-radius: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease),
    transform 0.2s var(--ease), color 0.2s var(--ease);
}
.gp-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(246, 241, 231, 0.1);
  transform: translateY(-2px);
}
.gp-chip:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Расклад из трёх (игра B) ---------- */
.gp-spread {
  display: flex;
  justify-content: center;
  gap: clamp(0.6rem, 3.5vw, 1.4rem);
  margin: 1.5rem 0 0.5rem;
}
.gp-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  animation: readingIn 0.5s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.12s);
}
.gp-slot-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.gp-slot.locked .gcard { opacity: 0.45; cursor: default; }
.gp-slot .gcard { transition: opacity 0.35s var(--ease); }
.gcard-sm { width: min(136px, 26vw); }
.gcard-sm .gcard-hint { display: none; }
.gcard-sm .gcard-emb { width: 42%; }
.gcard-sm .gcard-frame { inset: 6px; border-radius: 8px; }
.gcard-sm .gcard-frame::before, .gcard-sm .gcard-frame::after { display: none; }

.gp-reads { margin-top: 0.9rem; }
.gp-reads p {
  font-size: 0.93rem;
  color: rgba(240, 233, 218, 0.85);
  margin: 0 0 0.55rem;
  animation: readingIn 0.45s var(--ease);
}
.gp-reads strong { color: var(--gold); font-weight: 700; }

/* ---------- Чтение карты / результат ---------- */
.gp-reading, .gp-result, .gp-story {
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(201, 164, 92, 0.3);
  animation: readingIn 0.5s var(--ease);
}
.gp-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 0.15rem;
}
.gp-key {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 233, 218, 0.6);
  margin: 0 0 0.85rem;
}
.gp-meaning { color: var(--cream-on-dark); margin: 0 0 0.85rem; }
.gp-quest {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  color: var(--gold);
  margin: 0 0 1rem;
}
.gp-note {
  font-size: 0.84rem;
  color: rgba(240, 233, 218, 0.62);
  margin: 0 0 0.4rem;
}
.gp-tomorrow {
  font-size: 0.84rem;
  font-style: italic;
  color: rgba(240, 233, 218, 0.62);
  margin: 0.9rem 0 0;
}
.gp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

/* ---------- Вопрос «да/нет» (игра C) ---------- */
.gp-askform {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.gp-input {
  flex: 1 1 220px;
  min-height: 50px;
  padding: 0.65em 1em;
  font: inherit;
  color: var(--cream-on-dark);
  background: rgba(246, 241, 231, 0.07);
  border: 1px solid rgba(201, 164, 92, 0.4);
  border-radius: 0.85rem;
  transition: border-color 0.2s var(--ease);
}
.gp-input::placeholder { color: rgba(240, 233, 218, 0.45); }
.gp-input:focus { outline: none; border-color: var(--gold); }
.gp-input:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }
.gp-input:disabled { opacity: 0.6; }
.gp-askform .btn:disabled { opacity: 0.55; cursor: default; transform: none; }

.gp-echo {
  font-style: italic;
  color: rgba(240, 233, 218, 0.78);
  border-left: 2px solid rgba(201, 164, 92, 0.5);
  padding-left: 0.85rem;
  margin: 0 0 1rem;
  overflow-wrap: anywhere;
}
.gp-verdict {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 500;
  margin: 0 0 0.45rem;
}
.gp-verdict-yes { color: #d9b56e; }
.gp-verdict-no { color: #d8a2ab; }
.gp-verdict-pause { color: #a9c6b4; }
.gp-verdict-note {
  color: var(--cream-on-dark);
  font-size: 0.96rem;
  margin: 0 0 1.2rem;
}

/* ---------- Адаптив и reduced-motion для игр ---------- */
@media (max-width: 900px) {
  .games-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); max-width: 640px; }
}
@media (max-width: 640px) {
  .games-grid { grid-template-columns: 1fr; max-width: 420px; }
  .gplay { padding: 0.5rem; }
  .gplay-panel { max-height: 96dvh; border-radius: 18px; }
  .gp-cta .btn { width: 100%; }
  .gp-chips { grid-template-columns: 1fr 1fr; }
  .gcard-sm { width: min(120px, 27vw); }
}

@media (prefers-reduced-motion: reduce) {
  .gplay-panel { animation: none; }
  .gcard-inner { transition: none; }
  .gcard.shuffling .gcard-inner { animation: none; }
  .gp-slot, .gp-reads p, .gp-reading, .gp-result, .gp-story { animation: none; }
  .game-tile, .emb-card, .gp-chip { transition: none; }
}
