html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(ellipse at 82% -8%, rgba(150, 95, 70, 0.13), transparent 38%),
    radial-gradient(ellipse at -8% 85%, rgba(70, 75, 120, 0.09), transparent 38%),
    #0c0e12;
  color: #f0e9e2;
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c5a07a;
  margin-bottom: 22px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.hero__eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: #c5a07a;
  opacity: 0.65;
  flex-shrink: 0;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.93;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f5ede6;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #9e9088;
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: linear-gradient(155deg, #d4a896 0%, #b5876a 100%);
  color: #1a100d;
  box-shadow: 0 8px 28px rgba(175, 125, 95, 0.22);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(175, 125, 95, 0.36);
}

.btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc4bc;
  background: rgba(255, 255, 255, 0.03);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 900px;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.hero__visual::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(160, 95, 65, 0.15) 0%, transparent 70%);
  filter: blur(48px);
  z-index: 0;
}

.book-mockup {
  width: 320px;
  aspect-ratio: 0.68 / 1;
  position: relative;
  z-index: 1;
  display: block;
  text-decoration: none;
  cursor: pointer;
  will-change: transform;
}

.book-mockup__cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 4px 16px 16px 4px;
  background: linear-gradient(155deg, #221d22 0%, #18161f 40%, #111520 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    -8px 16px 48px rgba(0, 0, 0, 0.55),
    0 32px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.book-mockup__cover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 100%;
  background: linear-gradient(90deg, #2e2230 0%, #1f1b26 65%, #181620 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.book-mockup__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 10%, rgba(255, 255, 255, 0.045), transparent 42%),
    radial-gradient(ellipse at 40% 95%, rgba(180, 120, 80, 0.06), transparent 38%);
  pointer-events: none;
}

.book-mockup__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 36px 28px 48px 46px;
  gap: 14px;
}

.book-mockup__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #efe5dc;
  text-align: center;
}

.book-mockup__line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 165, 135, 0.45), transparent);
  flex-shrink: 0;
}

.book-mockup__subtitle {
  font-size: 9px;
  color: rgba(220, 205, 195, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.65;
}

.book-mockup__author {
  position: absolute;
  bottom: 28px;
  font-size: 10px;
  color: rgba(220, 205, 195, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   STORY
   ============================================================ */

.story {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: center;
  gap: 96px;
}

.story__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background: linear-gradient(160deg, #1e1c22 0%, #14121a 50%, #0f0e15 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.story__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 160, 120, 0.07), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.28), transparent 50%);
}

.story__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c5a07a;
  margin-bottom: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.story__eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: #c5a07a;
  opacity: 0.65;
  flex-shrink: 0;
}

.story h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #f5ede6;
  margin-bottom: 28px;
}

.story__text {
  font-size: 16px;
  line-height: 1.85;
  color: #8e8880;
  max-width: 480px;
  margin-bottom: 40px;
}

.story__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c5a07a;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
  transition: gap 0.22s ease, opacity 0.22s ease;
}

.story__cta:hover {
  gap: 14px;
  opacity: 0.72;
}

/* ============================================================
   PREVIEW
   ============================================================ */

.preview {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.preview__header {
  text-align: center;
}

.preview__eyebrow {
  color: #c5a07a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 18px;
}

.preview h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #f5ede6;
}

.preview__pages {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.preview__page {
  position: relative;
  width: 148px;
  aspect-ratio: 0.7 / 1;
  border-radius: 4px 10px 10px 4px;
  background: #f0ebe5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.preview__page::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.07), transparent);
  z-index: 1;
}

.preview__page::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.preview__page--cover {
  background: linear-gradient(155deg, #221d22 0%, #18161f 40%, #111520 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    -4px 8px 28px rgba(0, 0, 0, 0.5),
    0 12px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.preview__page--cover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(90deg, #2e2230 0%, #1f1b26 65%, #181620 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 1;
}

.preview__page--cover::after {
  display: none;
}

.preview__page-cover-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
  color: #efe5dc;
  text-align: center;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.preview__page-cover-line {
  display: block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 165, 135, 0.5), transparent);
  position: relative;
  z-index: 2;
}

.preview__page-cover-author {
  font-size: 7px;
  color: rgba(220, 205, 195, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.preview__page-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 14px 28px 16px;
}

.preview__page-lines span {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.09);
}

.preview__pages .preview__page:nth-child(2) .preview__page-lines span:nth-child(1) { width: 62%; height: 9px; background: rgba(0,0,0,0.16); }
.preview__pages .preview__page:nth-child(2) .preview__page-lines span:nth-child(2) { width: 100%; }
.preview__pages .preview__page:nth-child(2) .preview__page-lines span:nth-child(3) { width: 90%; }
.preview__pages .preview__page:nth-child(2) .preview__page-lines span:nth-child(4) { width: 95%; }
.preview__pages .preview__page:nth-child(2) .preview__page-lines span:nth-child(5) { width: 78%; }
.preview__pages .preview__page:nth-child(2) .preview__page-lines span:nth-child(6) { width: 100%; }
.preview__pages .preview__page:nth-child(2) .preview__page-lines span:nth-child(7) { width: 88%; }
.preview__pages .preview__page:nth-child(2) .preview__page-lines span:nth-child(8) { width: 55%; }

.preview__pages .preview__page:nth-child(3) .preview__page-lines span:nth-child(1) { width: 100%; }
.preview__pages .preview__page:nth-child(3) .preview__page-lines span:nth-child(2) { width: 92%; }
.preview__pages .preview__page:nth-child(3) .preview__page-lines span:nth-child(3) { width: 70%; height: 9px; background: rgba(0,0,0,0.16); }
.preview__pages .preview__page:nth-child(3) .preview__page-lines span:nth-child(4) { width: 100%; }
.preview__pages .preview__page:nth-child(3) .preview__page-lines span:nth-child(5) { width: 85%; }
.preview__pages .preview__page:nth-child(3) .preview__page-lines span:nth-child(6) { width: 95%; }
.preview__pages .preview__page:nth-child(3) .preview__page-lines span:nth-child(7) { width: 76%; }
.preview__pages .preview__page:nth-child(3) .preview__page-lines span:nth-child(8) { width: 48%; }

.preview__pages .preview__page:nth-child(4) .preview__page-lines span:nth-child(1) { width: 95%; }
.preview__pages .preview__page:nth-child(4) .preview__page-lines span:nth-child(2) { width: 88%; }
.preview__pages .preview__page:nth-child(4) .preview__page-lines span:nth-child(3) { width: 100%; }
.preview__pages .preview__page:nth-child(4) .preview__page-lines span:nth-child(4) { width: 58%; height: 9px; background: rgba(0,0,0,0.16); }
.preview__pages .preview__page:nth-child(4) .preview__page-lines span:nth-child(5) { width: 100%; }
.preview__pages .preview__page:nth-child(4) .preview__page-lines span:nth-child(6) { width: 90%; }
.preview__pages .preview__page:nth-child(4) .preview__page-lines span:nth-child(7) { width: 82%; }
.preview__pages .preview__page:nth-child(4) .preview__page-lines span:nth-child(8) { width: 65%; }

/* Player */

.preview__player {
  max-width: 680px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.player__play {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(155deg, #d4a896 0%, #b5876a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(175, 125, 95, 0.28);
}

.player__play-icon {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #1a100d;
  margin-left: 3px;
}

.player__track {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.player__label {
  font-size: 13px;
  color: #8e8880;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}

.player__progress {
  position: relative;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.player__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, rgba(197, 160, 122, 0.6), #c5a07a);
  border-radius: 2px;
}

.player__dot {
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4a896;
  box-shadow: 0 0 8px rgba(212, 168, 150, 0.45);
}

.player__time {
  flex-shrink: 0;
  font-size: 13px;
  color: #5a5048;
  letter-spacing: 0.06em;
}

/* ============================================================
   AUDIENCE DLA KOGO JEST TEN
   ============================================================ */

.audience {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 48px;
}

.audience__header {
  max-width: 640px;
  margin-bottom: 72px;
}

.audience__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c5a07a;
  margin-bottom: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.audience__eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: #c5a07a;
  opacity: 0.65;
  flex-shrink: 0;
}

.audience h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #f5ede6;
  margin-bottom: 24px;
}

.audience__intro {
  font-size: 16px;
  line-height: 1.8;
  color: #8e8880;
  max-width: 420px;
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
}

.audience__item {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.audience__item-title {
  font-size: 16px;
  font-weight: 600;
  color: #f0e9e2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.audience__item-text {
  font-size: 13px;
  line-height: 1.8;
  color: #7a7268;
}

/* ============================================================
   JOURNEY
   ============================================================ */

.journey {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 48px;
  scroll-margin-top: -80px;
}

.journey__header {
  max-width: 580px;
  margin-bottom: 96px;
}

.journey__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c5a07a;
  margin-bottom: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.journey__eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: #c5a07a;
  opacity: 0.65;
  flex-shrink: 0;
}

.journey h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #f5ede6;
  margin-bottom: 24px;
}

.journey__intro {
  font-size: 16px;
  line-height: 1.8;
  color: #8e8880;
  max-width: 520px;
}

.journey__timeline {
  display: flex;
  flex-direction: column;
  gap: 88px;
}

.journey__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 72px;
}

.journey__item--flip .journey__image {
  grid-column: 2;
  grid-row: 1;
}

.journey__item--flip .journey__content {
  grid-column: 1;
  grid-row: 1;
}

.journey__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: linear-gradient(160deg, #1e1c22 0%, #14121a 50%, #0f0e15 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}

.journey__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 160, 120, 0.06), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.25), transparent 50%);
}

.journey__content {
  min-width: 0;
}

.journey__year {
  display: block;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: rgba(197, 160, 122, 0.45);
  line-height: 1;
  margin-bottom: 10px;
}

.journey__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #f0e9e2;
  margin-bottom: 14px;
  line-height: 1.1;
}

.journey__text {
  font-size: 15px;
  line-height: 1.85;
  color: #8e8880;
  max-width: 440px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-final {
  position: relative;
  padding: 140px 48px;
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at 50% 30%, rgba(150, 95, 70, 0.1), transparent 65%);
  filter: blur(48px);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final__eyebrow {
  color: #c5a07a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 24px;
}

.cta-final h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f5ede6;
  margin-bottom: 28px;
}

.cta-final__text {
  font-size: 16px;
  line-height: 1.8;
  color: #8e8880;
  max-width: 460px;
  margin: 0 auto 48px;
}

.cta-final__action {
  margin-bottom: 32px;
}

.btn--lg {
  min-height: 58px;
  padding: 0 40px;
  font-size: 16px;
  border-radius: 14px;
}

.cta-final__meta {
  font-size: 12px;
  color: #524840;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 48px 48px;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.site-footer__brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 500;
  color: #e2d8ce;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.site-footer__tagline {
  font-size: 13px;
  color: #4e4640;
  line-height: 1.6;
  max-width: 280px;
}

.site-footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding-top: 2px;
}

.site-footer__link {
  font-size: 13px;
  color: #8a8078;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.22s ease;
}

.site-footer__link:hover {
  color: #c5a07a;
}

.site-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 40px 0 32px;
}

.site-footer__bottom {
  display: flex;
  justify-content: flex-end;
}

.site-footer__signature {
  font-size: 12px;
  color: #3e3830;
  letter-spacing: 0.04em;
}

/* ============================================================
   ANIMACJE WEJŚCIA
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__content {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ============================================================
   BOOK — HOVER GLOW
   ============================================================ */

.book-mockup__cover {
  transition: box-shadow 0.4s ease;
}

@media (hover: hover) {
  .book-mockup:hover .book-mockup__cover {
    box-shadow:
      -8px 16px 48px rgba(0, 0, 0, 0.55),
      0 32px 80px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 64px rgba(155, 95, 60, 0.22);
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal,
.reveal-left,
.reveal-right {
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal       { opacity: 0; transform: translateY(22px); }
.reveal-left  { opacity: 0; transform: translateX(-20px); }
.reveal-right { opacity: 0; transform: translateX(20px); }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 64px 24px 80px;
    gap: 56px;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__eyebrow::before {
    display: none;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__visual::before {
    width: 260px;
    height: 340px;
  }

  .book-mockup {
    width: 240px;
  }

  .book-mockup__title {
    font-size: 26px;
  }

  .story {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 24px;
    gap: 48px;
  }

  .story__image {
    aspect-ratio: 4 / 3;
    max-width: 400px;
    margin: 0 auto;
  }

  .story__eyebrow {
    justify-content: center;
  }

  .story__eyebrow::before {
    display: none;
  }

  .story__text {
    margin-left: auto;
    margin-right: auto;
  }

  .story__cta {
    justify-content: center;
  }

  .preview {
    padding: 80px 24px;
    gap: 48px;
  }

  .preview__pages {
    overflow-x: auto;
    padding-bottom: 8px;
    align-self: stretch;
    justify-content: flex-start;
  }

  .preview__page {
    flex-shrink: 0;
    width: 130px;
  }

  .preview__player {
    gap: 14px;
    padding: 16px 20px;
  }

  .player__label {
    font-size: 12px;
  }

  .audience {
    padding: 80px 24px;
  }

  .audience__header {
    margin-bottom: 48px;
  }

  .audience__grid {
    grid-template-columns: 1fr;
  }

  .journey {
    padding: 80px 24px;
  }

  .journey__header {
    margin-bottom: 56px;
  }

  .journey__timeline {
    gap: 64px;
  }

  .journey__item {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .journey__item--flip .journey__image,
  .journey__item--flip .journey__content {
    grid-column: 1;
    grid-row: auto;
  }

  .journey__image {
    aspect-ratio: 3 / 2;
  }

  .journey__text {
    max-width: 100%;
  }

  .cta-final {
    padding: 96px 24px;
  }

  .cta-final__text {
    font-size: 15px;
  }

  .site-footer__inner {
    padding: 48px 24px 40px;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .site-footer__links {
    justify-content: flex-start;
    gap: 16px 28px;
  }

  .site-footer__bottom {
    justify-content: flex-start;
  }
}
