/* ============================================
   RETROAVTO — Когато колата беше мечта
   Premium vintage-modern design system
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Surfaces */
  --bg-0: #07060a;
  --bg-1: #0c0a08;
  --bg-2: #14110d;
  --bg-3: #1d1813;
  --bg-card: #15110d;

  /* Accents */
  --gold: #c9a961;
  --gold-bright: #e3c878;
  --gold-deep: #8e7437;
  --rust: #b8492e;
  --cream: #f5ebd6;

  /* Text */
  --text-1: #f5ebd6;
  --text-2: #c9bfa8;
  --text-3: #8a8270;
  --text-muted: #5a5446;

  /* Borders */
  --border-1: rgba(201, 169, 97, 0.14);
  --border-2: rgba(201, 169, 97, 0.28);
  --border-3: rgba(245, 235, 214, 0.08);

  /* Effects */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 12px 40px rgba(201, 169, 97, 0.18);
  --glow-gold: 0 0 60px rgba(201, 169, 97, 0.25);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'Bebas Neue', 'Inter', sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(80px, 10vw, 140px);
  --radius: 4px;
  --radius-lg: 12px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 0.25s;
  --t-base: 0.5s;
  --t-slow: 0.9s;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  background: var(--bg-0);
  overflow-x: hidden;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- BACKGROUND TEXTURE ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 169, 97, 0.06), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(184, 73, 46, 0.04), transparent 50%),
    var(--bg-0);
  z-index: -2;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-5%,-10%); }
  20% { transform: translate(-15%,5%); }
  30% { transform: translate(7%,-25%); }
  40% { transform: translate(-5%,25%); }
  50% { transform: translate(-15%,10%); }
  60% { transform: translate(15%,0%); }
  70% { transform: translate(0%,15%); }
  80% { transform: translate(3%,35%); }
  90% { transform: translate(-10%,10%); }
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
p { color: var(--text-2); }
strong { color: var(--text-1); font-weight: 600; }

.section { padding: var(--section) 0; position: relative; }
.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}
.section__title {
  font-size: clamp(36px, 5.5vw, 64px);
  margin-bottom: 24px;
}
.section__lead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-2);
  max-width: 56ch;
  line-height: 1.65;
  margin-bottom: 16px;
}
.section__header { margin-bottom: 64px; }
.section__header--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; margin-bottom: 80px; }
.section__header--center .section__lead { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t-fast) var(--ease-out); }
.btn--small { padding: 10px 18px; font-size: 13px; }
.btn--large { padding: 18px 32px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 50%, var(--gold-deep));
  color: var(--bg-0);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-weight: 600;
}
.btn--gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.7s var(--ease-out);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--glow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--gold:hover::before { left: 100%; }
.btn--gold:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-2);
}
.btn--ghost:hover {
  background: rgba(201, 169, 97, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-0);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.preloader.is-loaded { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.preloader__wheel {
  width: 64px;
  height: 64px;
  color: var(--gold);
  animation: spin 1.2s linear infinite;
}
.preloader__text {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.5em;
  color: var(--gold);
  padding-left: 0.5em;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- CURSOR ---------- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.25s, height 0.25s, opacity 0.25s;
  opacity: 0;
  transform: translate(-50%, -50%);
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot { opacity: 0.8; }
  .cursor-dot.is-hover { width: 32px; height: 32px; opacity: 0.4; }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--t-base) var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(7, 6, 10, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.01em;
  min-width: 0;
}
.nav__logo-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--bg-0);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 18px;
}
.nav__logo-text em { font-style: italic; color: var(--gold); font-weight: 400; }

.nav__menu { display: flex; gap: 32px; }
.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  padding: 6px 0;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-fast) var(--ease-out);
}
.nav__menu a:hover { color: var(--gold); }
.nav__menu a:hover::after { width: 100%; }

.nav__cta { flex-shrink: 0; }

.nav__burger { display: none; background: none; border: 0; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 0; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--text-1); transition: all var(--t-fast) var(--ease-out); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
}
.hero__glow--1 {
  top: -10%; left: -5%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 60%);
}
.hero__glow--2 {
  bottom: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(184, 73, 46, 0.12), transparent 60%);
}
.hero__silhouette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: 30%;
  opacity: 0.6;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  margin-bottom: 28px;
  letter-spacing: -0.025em;
}

.hero__lead {
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--text-2);
  max-width: 52ch;
  margin-bottom: 32px;
  line-height: 1.55;
}

.hero__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--text-2);
}
.hero__author-line { width: 32px; height: 1px; background: var(--gold); }
.hero__author strong { color: var(--gold); font-weight: 600; font-style: normal; font-family: var(--font-body); letter-spacing: 0.01em; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero__meta-item strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.hero__meta-item span { font-size: 12px; color: var(--text-3); letter-spacing: 0.05em; }
.hero__meta-divider { width: 1px; height: 32px; background: var(--border-2); }

.hero__delivery {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* ---------- BOOK ---------- */
.hero__book {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1800px;
}
.book {
  position: relative;
  width: clamp(260px, 28vw, 400px);
  aspect-ratio: 2/3;
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(6deg);
  transition: transform 0.6s var(--ease-out);
  animation: bookFloat 6s ease-in-out infinite;
}
@keyframes bookFloat {
  0%,100% { transform: rotateY(-22deg) rotateX(6deg) translateY(0); }
  50% { transform: rotateY(-22deg) rotateX(6deg) translateY(-12px); }
}

.book__shadow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.7), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  transform: translateZ(-30px);
}

.book__cover {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.book__pages {
  position: absolute;
  top: 2%; right: -6px;
  width: 14px;
  height: 96%;
  background:
    repeating-linear-gradient(to bottom,
      #f5ebd6 0, #f5ebd6 1px,
      #d4c7a4 1px, #d4c7a4 2px);
  transform: rotateY(90deg) translateZ(7px);
  border-radius: 0 2px 2px 0;
}

.book__front {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1c1612 0%, #2a1f15 50%, #14100b 100%);
  border-radius: 2px;
  box-shadow:
    inset 0 0 0 1px rgba(201, 169, 97, 0.3),
    inset 0 0 60px rgba(201, 169, 97, 0.08),
    var(--shadow-lg);
  overflow: hidden;
}
.book__front-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  position: relative;
  z-index: 2;
}
.book--photo {
  aspect-ratio: 1 / 1.4;  /* Better match for the real cover photo */
}
.book--photo .book__front {
  background: var(--bg-2);
}
.book--photo .book__front::before,
.book--photo .book__front::after { display: none; }

.book__front::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201, 169, 97, 0.15), transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(201, 169, 97, 0.015) 2px, rgba(201, 169, 97, 0.015) 4px);
}
.book__front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, transparent 8%, transparent 92%, rgba(255,255,255,0.05) 100%);
}

.book__front-inner {
  position: relative;
  height: 100%;
  padding: 12% 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--cream);
  z-index: 1;
}

.book__top-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
}

.book__brand {
  font-family: var(--font-mono);
  font-size: clamp(9px, 1vw, 12px);
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: auto;
}

.book__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 20px;
}

.book__ornament {
  color: var(--gold);
  width: 70px;
  margin-bottom: 18px;
  opacity: 0.85;
}

.book__author {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: 0.35em;
  color: var(--text-2);
  margin-top: auto;
}

.book__bottom-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-top: 14px;
}

/* ---------- SCROLL CUE ---------- */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid var(--border-2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 1px;
  animation: scroll 2s ease-in-out infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--border-3);
  border-bottom: 1px solid var(--border-3);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-1);
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- ABOUT ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  perspective: 1200px;
}
.about__visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-2);
  background: var(--bg-1);
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease-out);
}
.about__visual-frame:hover { transform: rotate(0); }
.about__visual-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--border-1);
  pointer-events: none;
}
.about__visual-inner {
  position: absolute;
  inset: 24px;
  overflow: hidden;
}
.about__visual-tag {
  position: absolute;
  bottom: -28px;
  right: -20px;
  background: var(--gold);
  color: var(--bg-0);
  padding: 12px 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  box-shadow: var(--shadow-md);
  transform: rotate(2deg);
}
.about__visual-tag-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
}
.about__visual-tag-text {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.about__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--text-1);
}
.about__list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

/* ---------- STATS ---------- */
.stats {
  background: var(--bg-1);
  padding: 64px 0;
  border-top: 1px solid var(--border-3);
  border-bottom: 1px solid var(--border-3);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-variant-numeric: lining-nums tabular-nums;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ---------- INSIDE ---------- */
.inside__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.inside__grid--8 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .inside__grid--8 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .inside__grid--8 { grid-template-columns: 1fr; } }
.chapter {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-3);
  border-radius: var(--radius);
  transition: all var(--t-base) var(--ease-out);
  overflow: hidden;
}
.chapter::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-base) var(--ease-out);
}
.chapter:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  background: var(--bg-2);
  box-shadow: var(--shadow-md);
}
.chapter:hover::before { width: 100%; }
.chapter__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
  transition: opacity var(--t-base);
}
.chapter:hover .chapter__num { opacity: 1; }
.chapter h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 500;
}
.chapter p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.6;
}
.chapter--feature {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border-color: var(--border-2);
}
.chapter--feature .chapter__num { opacity: 0.85; }
.chapter__feature-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--bg-0);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* ---------- PULLQUOTE ---------- */
.pullquote {
  padding: var(--section) 0;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 97, 0.04), transparent 70%),
    var(--bg-0);
}
.pullquote__mark {
  width: 90px;
  height: 90px;
  margin: 0 auto -40px;
  color: var(--gold);
  opacity: 0.5;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-1);
  max-width: 18ch;
  margin: 0 auto 28px;
  letter-spacing: -0.01em;
}
.pullquote cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- EXCERPT ---------- */
.excerpt__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.excerpt__form { margin-top: 32px; }
.excerpt__form-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 6px;
  transition: border-color var(--t-fast) var(--ease-out);
}
.excerpt__form-row:focus-within { border-color: var(--gold); }
.excerpt__form-row input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-1);
  outline: none;
}
.excerpt__form-row input::placeholder { color: var(--text-3); }
.excerpt__form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-3);
  cursor: pointer;
}
.excerpt__form-check input { accent-color: var(--gold); margin-top: 2px; }
.excerpt__success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 14px;
}
.excerpt__success.is-shown { display: flex; }
.excerpt__success svg { width: 20px; height: 20px; }

.excerpt__visual { display: flex; justify-content: center; }
.excerpt__paper {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 0.72;
  background: linear-gradient(180deg, #f5ebd6, #e8dcc1);
  color: #2a1f15;
  padding: 40px 36px;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform 0.6s var(--ease-out);
  font-family: var(--font-display);
}
.excerpt__paper:hover { transform: rotate(0) translateY(-6px); }
.excerpt__paper::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(42, 31, 21, 0.15);
  pointer-events: none;
}
.excerpt__paper-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(42, 31, 21, 0.6);
  margin-bottom: 32px;
}
.excerpt__paper h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: #2a1f15;
  margin-bottom: 20px;
}
.excerpt__paper p {
  font-size: 15px;
  line-height: 1.7;
  color: #3a2c1a;
  margin-bottom: 14px;
}
.excerpt__paper-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, #e8dcc1 80%);
  pointer-events: none;
}

/* ---------- AUTHOR ---------- */
.author__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.author__photo { position: relative; }
.author__photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  overflow: hidden;
  transition: transform 0.6s var(--ease-out);
}
.author__photo-frame:hover { transform: translateY(-8px); }
.author__photo-frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--border-1);
  z-index: 2;
  pointer-events: none;
}
.author__badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--bg-0);
  border: 1px solid var(--gold);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
  text-align: center;
}
.author__badge span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-3);
  text-transform: uppercase;
}
.author__badge strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.author__signature {
  margin-top: 32px;
  color: var(--gold);
  width: 180px;
  opacity: 0.85;
}

/* ---------- REVIEWS ---------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-3);
  border-radius: var(--radius);
  transition: all var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.review:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  background: var(--bg-2);
  box-shadow: var(--shadow-md);
}
.review__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.review p {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-1);
  margin-bottom: 28px;
  flex: 1;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-3);
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.review__author strong { display: block; font-size: 14px; color: var(--text-1); margin-bottom: 2px; }
.review__author span { font-size: 12px; color: var(--text-3); }
.review--feature {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border-color: var(--border-2);
  transform: translateY(-12px);
}

/* ---------- AUDIENCE ---------- */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.audience-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-3);
  border-radius: var(--radius);
  transition: all var(--t-base) var(--ease-out);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.audience-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: var(--bg-2);
  box-shadow: var(--shadow-md);
}
.audience-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, rgba(201,169,97,0.18), rgba(201,169,97,0.05));
  border: 1px solid var(--border-2);
  border-radius: 50%;
  margin-bottom: 20px;
}
.audience-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}
.audience-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .audience__grid { grid-template-columns: 1fr; }
}

/* ---------- EXCERPT EXTRA ---------- */
.excerpt__source {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---------- PROMO COUNTDOWN ---------- */
.promo {
  margin-bottom: 22px;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(184, 73, 46, 0.16), rgba(201, 169, 97, 0.10)),
    var(--bg-1);
  border: 1px solid rgba(184, 73, 46, 0.4);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 30%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: rotate(20deg);
  animation: promoShine 4s linear infinite;
  pointer-events: none;
}
@keyframes promoShine {
  0%   { transform: translateX(-100%) rotate(20deg); }
  100% { transform: translateX(450%) rotate(20deg); }
}
.promo__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.promo__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 0 rgba(184, 73, 46, 0.6);
  animation: promoPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 73, 46, 0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(184, 73, 46, 0); }
}
.promo__label { color: var(--rust); font-weight: 700; letter-spacing: 0.3em; }
.promo__until { color: var(--text-3); margin-left: auto; letter-spacing: 0.1em; text-transform: none; font-size: 11px; }
.promo__until strong { color: var(--gold); font-weight: 600; text-transform: capitalize; }

.promo__timer {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-display);
}
.promo__unit {
  flex: 1;
  background: rgba(7, 6, 10, 0.5);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  padding: 8px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.promo__unit strong {
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.01em;
  font-style: italic;
}
.promo__unit span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-3);
  text-transform: uppercase;
}
.promo__sep {
  font-size: 22px;
  color: var(--gold);
  align-self: center;
  font-weight: 600;
  opacity: 0.5;
  animation: promoBlink 1s ease-in-out infinite;
}
@keyframes promoBlink {
  0%, 100% { opacity: 0.2; }
  50%      { opacity: 0.7; }
}

@media (max-width: 720px) {
  .promo { padding: 14px 14px; }
  .promo__head { font-size: 10px; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
  .promo__until { width: 100%; margin-left: 18px; margin-top: 4px; }
  .promo__unit strong { font-size: 22px; }
  .promo__unit span { font-size: 8px; }
  .promo__sep { font-size: 18px; }
}
@media (max-width: 380px) {
  .promo__sep { display: none; }
  .promo__timer { gap: 6px; }
}

/* ---------- ORDER GUARANTEE ---------- */
.order__guarantee {
  margin-top: 32px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(201,169,97,0.06), rgba(201,169,97,0.02));
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.order__guarantee-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.order__guarantee strong {
  display: block;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.order__guarantee p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.order__trust {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  gap: 4px;
}

/* ---------- ORDER ---------- */
.order {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
}
.order__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.order__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.order__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text-1);
}
.order__list svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.order__card {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.order__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-deep));
}
.order__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  background: rgba(201, 169, 97, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-2);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.order__price { margin-bottom: 28px; }
.order__price-old {
  font-size: 28px;
  color: var(--text-3);
  text-decoration: line-through;
  text-decoration-color: var(--rust);
  text-decoration-thickness: 2px;
  margin-bottom: 8px;
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}
.order__price-now {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 6px;
}
.order__currency { font-size: 22px; font-weight: 500; }
.order__amount {
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-style: normal;
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-variant-numeric: lining-nums tabular-nums;
}
.order__cents {
  font-size: 28px;
  font-style: normal;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.order__price-note { font-size: 13px; color: var(--text-3); }

.order__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order__field { display: flex; flex-direction: column; gap: 6px; }
.order__field span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-3);
  text-transform: uppercase;
}
.order__field input {
  background: var(--bg-1);
  border: 1px solid var(--border-1);
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--text-1);
  font-size: 15px;
  outline: none;
  transition: border-color var(--t-fast) var(--ease-out);
}
.order__field input:focus { border-color: var(--gold); }
.order__field--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.order__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  overflow: hidden;
}
.order__qty button {
  width: 40px;
  height: 40px;
  background: var(--bg-1);
  border: 0;
  color: var(--text-1);
  font-size: 18px;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-out);
}
.order__qty button:hover { background: var(--bg-2); color: var(--gold); }
.order__qty input {
  width: 50px;
  height: 40px;
  background: var(--bg-2);
  border: 0;
  text-align: center;
  color: var(--text-1);
  font-weight: 600;
  -moz-appearance: textfield;
}
.order__qty input::-webkit-outer-spin-button,
.order__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.order__trust {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border-3);
  padding: 4px 0;
  transition: border-color var(--t-base);
}
.faq__item[open] { border-color: var(--border-2); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--text-1);
  font-weight: 500;
  transition: color var(--t-fast) var(--ease-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }
.faq__item summary svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease-out);
}
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__item p {
  padding: 0 0 24px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 70ch;
}

/* ---------- FINAL CTA ---------- */
.finalcta {
  padding: var(--section) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.12), transparent 60%),
    var(--bg-0);
  border-top: 1px solid var(--border-3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  max-width: 800px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.05), transparent 60%);
  pointer-events: none;
}
.finalcta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.finalcta h2 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.finalcta p {
  font-size: clamp(17px, 1.6vw, 20px);
  margin-bottom: 36px;
  color: var(--text-2);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-3);
  padding: 80px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 18px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-3);
  max-width: 36ch;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-3);
  padding: 5px 0;
}
.footer__col a:hover { color: var(--gold); }
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-1);
  border-radius: 50%;
  color: var(--text-3);
  transition: all var(--t-fast) var(--ease-out);
}
.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 97, 0.08);
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer__bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__bottom-links a:hover, .footer__bottom-link-btn:hover { color: var(--gold); }
.footer__bottom-link-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease-out);
}

/* ---------- ORDER SUCCESS MODAL ---------- */
.success {
  position: fixed;
  inset: 0;
  z-index: 9996;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.success.is-open { display: flex; }
.success__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: successFade 0.4s var(--ease-out);
}
.success__inner {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 56px 44px 36px;
  text-align: center;
  animation: successPop 0.6s var(--ease-out);
  box-shadow: var(--shadow-lg), var(--glow-gold);
}
.success__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-deep));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.success__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 235, 214, 0.06);
  border: 1px solid var(--border-3);
  border-radius: 50%;
  color: var(--text-3);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
  padding: 0;
}
.success__close svg { width: 16px; height: 16px; }
.success__close:hover { color: var(--gold); border-color: var(--gold); }

.success__check {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  color: var(--gold);
  position: relative;
}
.success__check svg { width: 100%; height: 100%; display: block; }
.success__check::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.25), transparent 60%);
  z-index: -1;
}
.success__circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: successCircle 0.6s 0.1s var(--ease-out) forwards;
}
.success__tick {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: successTick 0.4s 0.6s var(--ease-out) forwards;
}

.success__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.success__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-1);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.success__title em { color: var(--gold); font-style: italic; }
.success__lead {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}
.success__lead strong { color: var(--gold); font-weight: 600; }

.success__steps {
  text-align: left;
  border-top: 1px solid var(--border-3);
  border-bottom: 1px solid var(--border-3);
  padding: 24px 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.success__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.success__step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(201, 169, 97, 0.06);
}
.success__step strong {
  display: block;
  color: var(--text-1);
  font-size: 14px;
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-weight: 600;
}
.success__step p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
}

.success__total {
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 28px;
}
.success__total > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 4px;
}
.success__total span { font-size: 14px; color: var(--text-2); }
.success__total strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
}
.success__total-note {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.success__actions {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}
.success__actions .btn { flex: 1; }

.success__contact {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
}
.success__contact a { color: var(--gold); }

@keyframes successFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes successPop {
  0%   { opacity: 0; transform: translateY(20px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes successCircle { to { stroke-dashoffset: 0; } }
@keyframes successTick   { to { stroke-dashoffset: 0; } }

@media (max-width: 720px) {
  .success { padding: 12px; }
  .success__inner { padding: 44px 24px 24px; max-height: 96vh; }
  .success__check { width: 80px; height: 80px; margin-bottom: 20px; }
  .success__title { font-size: 26px; }
  .success__lead { font-size: 14px; margin-bottom: 24px; }
  .success__steps { padding: 20px 0; gap: 14px; margin-bottom: 20px; }
  .success__step-num { width: 32px; height: 32px; font-size: 10px; }
  .success__total strong { font-size: 20px; }
  .success__actions { flex-direction: column; gap: 8px; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 95;
  background: rgba(20, 17, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.cookie.is-shown { transform: translateY(0); opacity: 1; }
.cookie__icon {
  flex-shrink: 0;
  font-size: 28px;
  line-height: 1;
}
.cookie__inner {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 70ch;
}
.cookie__text strong { color: var(--gold); font-weight: 600; }
.cookie__text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie__actions .btn { padding: 11px 20px; font-size: 14px; }
.cookie__actions .btn--ghost { background: rgba(245, 235, 214, 0.04); }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(7, 6, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal__inner {
  width: 100%;
  max-width: 560px;
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal h3 { font-size: 28px; margin-bottom: 8px; }
.cookie-modal__intro { color: var(--text-3); font-size: 14px; margin-bottom: 24px; }
.cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border-3);
}
.cookie-row:last-of-type { border-bottom: 1px solid var(--border-3); margin-bottom: 24px; }
.cookie-row strong { display: block; font-size: 15px; color: var(--text-1); margin-bottom: 4px; }
.cookie-row p { font-size: 13px; color: var(--text-3); line-height: 1.5; margin: 0; }
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--bg-3);
  border: 1px solid var(--border-1);
  border-radius: 100px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--t-fast) var(--ease-out);
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: var(--text-3);
  border-radius: 50%;
  transition: all var(--t-fast) var(--ease-out);
}
.cookie-toggle.is-on { background: var(--gold); border-color: var(--gold); }
.cookie-toggle.is-on::after { left: 22px; background: var(--bg-0); }
.cookie-toggle.is-locked { opacity: 0.6; cursor: not-allowed; background: var(--gold-deep); border-color: var(--gold-deep); }
.cookie-toggle.is-locked::after { left: 22px; background: var(--cream); }
.cookie-modal__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-modal__actions .btn { flex: 1; min-width: 140px; }
@media (max-width: 720px) {
  .cookie {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .cookie__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie__actions { width: 100%; flex-direction: column; }
  .cookie__actions .btn { width: 100%; }
}

/* ---------- LEGAL PAGES ---------- */
.legal {
  padding-top: calc(var(--section) + 50px);
  padding-bottom: var(--section);
}
.legal__container { max-width: 820px; margin: 0 auto; padding: 0 var(--gutter); }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}
.legal__back svg { width: 14px; height: 14px; }
.legal__back:hover { color: var(--gold-bright); }
.legal h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.legal__updated {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-3);
}
.legal h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-top: 56px;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
}
.legal h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 10px;
  font-family: var(--font-body);
  color: var(--text-1);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.legal p, .legal li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 14px;
}
.legal ul, .legal ol {
  padding-left: 1.4em;
  margin-bottom: 18px;
}
.legal ul li { list-style: '— '; padding-left: 6px; }
.legal ol li { list-style: decimal; padding-left: 6px; }
.legal strong { color: var(--text-1); }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--gold-bright); }
.legal__company {
  margin-top: 18px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--text-2);
}
.legal__company strong { color: var(--gold); }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 14px;
}
.legal table th, .legal table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-3);
  vertical-align: top;
}
.legal table th {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  background: var(--bg-1);
}
.legal table td:first-child { font-weight: 600; color: var(--text-1); white-space: nowrap; }

/* ---------- TO TOP ---------- */
.totop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  color: var(--gold);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--t-fast) var(--ease-out);
}
.totop svg { width: 18px; height: 18px; }
.totop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.totop:hover {
  background: var(--gold);
  color: var(--bg-0);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Hero is above the fold — show immediately, don't depend on scroll observer */
.hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
/* If JS is blocked / slow, show everything after a fallback delay */
.no-js .reveal,
html.reveal-fallback .reveal { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */

/* Tablets and small laptops */
@media (max-width: 1024px) {
  .hero__inner,
  .about__inner,
  .excerpt__inner,
  .author__inner,
  .order__inner {
    grid-template-columns: 1fr;
  }
  .hero__book { order: -1; max-width: 320px; margin: 0 auto; }
  .about__visual { max-width: 480px; margin: 0 auto; }
  .author__photo { max-width: 420px; margin: 0 auto; }
  .inside__grid,
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .order__card { position: static; }
}

/* Phones (large) */
@media (max-width: 720px) {
  :root {
    --section: 64px;
    --gutter: 18px;
  }

  /* Disable expensive effects */
  .grain { animation: none; opacity: 0.04; }
  .cursor-dot { display: none !important; }
  .hero__glow { filter: blur(80px); opacity: 0.4; }

  /* Nav — premium balanced layout matching desktop quality */
  .nav { padding: 26px 0 16px; }
  .nav.is-scrolled {
    padding: 14px 0 12px;
    background: rgba(7, 6, 10, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .nav__inner { gap: 12px; }
  .nav__logo {
    font-size: 19px;
    gap: 10px;
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
  }
  .nav__logo-mark {
    width: 38px; height: 38px;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.18);
  }
  .nav__burger {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 6px;
  }
  .nav__burger span {
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
  }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav__menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(7, 6, 10, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px var(--gutter);
    gap: 4px;
    transform: translateY(-110%);
    transition: transform var(--t-base) var(--ease-out);
    z-index: 99;
  }
  .nav__menu a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-3);
  }
  .nav__menu a:last-child { border-bottom: 0; }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero { padding: 110px 0 50px; min-height: auto; }
  .hero__inner { gap: 36px; }
  .hero__book { max-width: 240px; }
  .book { animation: none; transform: rotateY(-15deg) rotateX(4deg); }
  .book--photo { aspect-ratio: 1 / 1.4; }
  .hero__title { font-size: clamp(40px, 11vw, 56px); margin-bottom: 20px; }
  .hero__lead { font-size: 16px; margin-bottom: 22px; line-height: 1.6; }
  .hero__author { margin-bottom: 26px; font-size: 16px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 36px; }
  .hero__cta .btn { width: 100%; min-height: 52px; }
  .hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
    padding: 16px;
    background: rgba(20, 17, 13, 0.5);
    border: 1px solid var(--border-3);
    border-radius: var(--radius);
  }
  .hero__meta-item { gap: 4px; }
  .hero__meta-item strong { font-size: 18px; }
  .hero__meta-item span { font-size: 10px; letter-spacing: 0.04em; }
  .hero__meta-divider { display: none; }
  .hero__delivery { font-size: 10px; letter-spacing: 0.12em; padding-top: 18px; margin-top: 22px; }
  .hero__scroll { display: none; }
  .hero__silhouette { height: 22%; }

  /* Section header centered always tighter */
  .section__header--center { margin-bottom: 48px; }
  .section__title { font-size: clamp(30px, 8vw, 44px); margin-bottom: 18px; }
  .section__lead { font-size: 16px; }

  /* Marquee */
  .marquee { padding: 16px 0; }
  .marquee__track { animation-duration: 30s; gap: 28px; }
  .marquee__track span { font-size: 16px; }

  /* About */
  .about__visual { max-width: 360px; }
  .about__visual-tag { padding: 10px 16px; bottom: -22px; right: -10px; }
  .about__visual-tag-num { font-size: 22px; }
  .about__visual-tag-text { font-size: 10px; letter-spacing: 0.2em; }
  .about__list li { font-size: 15px; gap: 10px; }
  .about__list svg { width: 18px; height: 18px; }

  /* Stats — single column visual was 1fr; restore 2x2 grid for compactness */
  .stats { padding: 44px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat__num { font-size: clamp(40px, 11vw, 60px); }
  .stat__label { font-size: 11px; letter-spacing: 0.18em; }

  /* Inside chapters */
  .inside__grid { grid-template-columns: 1fr; gap: 14px; }
  .inside__grid--8 { grid-template-columns: 1fr; }
  .chapter { padding: 24px 22px; }
  .chapter__num { font-size: 40px; margin-bottom: 6px; }
  .chapter h3 { font-size: 19px; }
  .chapter p { font-size: 14px; }
  .chapter__feature-tag { top: 16px; right: 16px; font-size: 9px; padding: 3px 8px; }

  /* Pullquote */
  .pullquote { padding: 60px 0; }
  .pullquote__mark { width: 64px; height: 64px; margin-bottom: -28px; }
  .pullquote blockquote { font-size: clamp(22px, 6.5vw, 32px); line-height: 1.35; }
  .pullquote cite { font-size: 11px; }

  /* Audience */
  .audience__grid { grid-template-columns: 1fr; gap: 14px; }
  .audience-card { padding: 24px 22px; flex-direction: row; text-align: left; gap: 18px; }
  .audience-card__icon { width: 52px; height: 52px; font-size: 24px; margin-bottom: 0; flex-shrink: 0; }
  .audience-card h3 { font-size: 17px; margin-bottom: 4px; }
  .audience-card p { font-size: 13px; }

  /* Excerpt */
  .excerpt__inner { gap: 32px; }
  .excerpt__paper { transform: rotate(0); padding: 28px 24px; max-width: 320px; }
  .excerpt__paper:hover { transform: translateY(-4px); }
  .excerpt__paper h4 { font-size: 19px; }
  .excerpt__paper p { font-size: 13px; line-height: 1.6; }
  .excerpt__source { font-size: 11px; letter-spacing: 0.2em; margin-top: 24px; }

  /* Order */
  .order__list li { font-size: 15px; }
  .order__list svg { width: 18px; height: 18px; }
  .order__guarantee { padding: 18px 20px; gap: 14px; margin-top: 24px; }
  .order__guarantee-icon { font-size: 22px; }
  .order__guarantee strong { font-size: 14px; }
  .order__guarantee p { font-size: 13px; }
  .order__card { padding: 26px 20px; border-radius: var(--radius); }
  .order__price-old { font-size: 16px; }
  .order__amount { font-size: 64px; }
  .order__cents { font-size: 22px; }
  .order__currency { font-size: 24px; }
  .order__field input { padding: 13px 14px; font-size: 16px; min-height: 48px; }
  .order__field span { font-size: 10px; letter-spacing: 0.18em; }
  .order__qty button { width: 44px; height: 44px; font-size: 20px; }
  .order__qty input { width: 56px; height: 44px; }
  .order__form .btn--full { min-height: 54px; font-size: 15px; }
  .order__trust { font-size: 11px; flex-direction: column; gap: 4px; align-items: center; }
  .order__trust span:nth-child(2)::before { content: ''; }
  .order__trust span:nth-child(2) { padding-left: 0; }

  /* FAQ */
  .faq__item summary { padding: 18px 0; font-size: 17px; gap: 14px; }
  .faq__item summary svg { width: 18px; height: 18px; }
  .faq__item p { padding-bottom: 18px; font-size: 15px; line-height: 1.65; }

  /* Final CTA */
  .finalcta { padding: 70px 0; }
  .finalcta h2 { font-size: clamp(32px, 9vw, 48px); margin-bottom: 18px; }
  .finalcta p { font-size: 16px; margin-bottom: 26px; }
  .finalcta .btn { width: 100%; min-height: 54px; }

  /* Footer */
  .footer { padding: 60px 0 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .footer__col h5 { font-size: 11px; margin-bottom: 14px; }
  .footer__col a { font-size: 13px; padding: 4px 0; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
    line-height: 1.5;
  }
  .footer__bottom-links { gap: 16px 18px; font-size: 12px; }

  /* Floating */
  .totop { right: 14px; bottom: 14px; width: 42px; height: 42px; }
  .totop svg { width: 16px; height: 16px; }

  /* Cookie banner */
  .cookie {
    left: 10px; right: 10px; bottom: 10px;
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 14px;
    border-radius: var(--radius);
  }
  .cookie__inner { flex-direction: row; align-items: flex-start; gap: 12px; }
  .cookie__icon { font-size: 22px; }
  .cookie__text { font-size: 13px; line-height: 1.5; }
  .cookie__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .cookie__actions .btn { padding: 11px 12px; font-size: 13px; min-height: 42px; width: 100%; }
  .cookie__actions #cookieAccept { grid-column: 1 / -1; }

  /* Cookie modal */
  .cookie-modal__inner { padding: 24px 22px; }
  .cookie-modal h3 { font-size: 22px; }
  .cookie-row { padding: 14px 0; gap: 12px; }
  .cookie-row strong { font-size: 14px; }
  .cookie-row p { font-size: 12px; }
  .cookie-modal__actions { flex-direction: column; gap: 8px; }
  .cookie-modal__actions .btn { width: 100%; min-height: 46px; }

  /* Legal pages */
  .legal { padding-top: calc(var(--section) + 30px); }
  .legal h1 { font-size: clamp(28px, 9vw, 40px); }
  .legal h2 { font-size: clamp(20px, 6vw, 26px); margin-top: 40px; }
  .legal h3 { font-size: 16px; }
  .legal p, .legal li { font-size: 15px; line-height: 1.7; }
  .legal__company { padding: 18px 20px; font-size: 12px; line-height: 1.85; }
  .legal table { font-size: 13px; }
  .legal table th, .legal table td { padding: 10px 12px; }
}

/* Small phones (≤ 380px) */
@media (max-width: 380px) {
  :root {
    --gutter: 12px;
    --section: 52px;
  }
  .nav__inner { gap: 6px; }
  .nav__logo { font-size: 14px; gap: 6px; }
  .nav__logo-mark { width: 26px; height: 26px; font-size: 13px; }
  .hero { padding: 84px 0 48px; }
  .hero__title { font-size: 36px; }
  .hero__meta-item strong { font-size: 16px; }
  .hero__meta-item span { font-size: 9px; }
  .order__amount { font-size: 54px; }
  .order__card { padding: 22px 16px; }
  .audience-card { padding: 20px 18px; gap: 14px; }
  .audience-card__icon { width: 44px; height: 44px; font-size: 22px; }
  .footer__bottom-links { font-size: 11px; gap: 10px 14px; }
}

/* Touch devices — disable hover lifts that look broken without hover */
@media (hover: none) and (pointer: coarse) {
  .chapter:hover,
  .audience-card:hover,
  .review:hover,
  .author__photo-frame:hover,
  .about__visual-frame:hover,
  .excerpt__paper:hover {
    transform: none;
  }
  .book:hover { transform: rotateY(-15deg) rotateX(4deg); }
}

/* Landscape phones — keep hero compact */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { padding: 80px 0 40px; min-height: auto; }
  .hero__book { max-width: 180px; }
  .hero__title { font-size: 36px; }
  .hero__cta { flex-direction: row; }
  .hero__cta .btn { width: auto; }
}

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