:root {
  color-scheme: light;
  --ink: #1f1724;
  --muted: #65586d;
  --plum: #4a255e;
  --orchid: #8b4fa6;
  --petal: #f6eef8;
  --leaf: #52735a;
  --gold: #f4c95d;
  --paper: #f7f0fb;
  --line: #dfd1e5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  background: var(--paper);
  border-bottom: 4px solid var(--gold);
}

.brand-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px clamp(18px, 5vw, 72px);
  color: white;
  background: var(--paper);
}

.brand-banner img {
  width: 100%;
  max-width: 1120px;
  max-height: clamp(210px, 31vw, 340px);
  aspect-ratio: 3.05 / 1;
  object-fit: cover;
  object-position: center 24%;
}

.book-link,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
}

.book-link,
.primary-action {
  color: white;
  background: var(--plum);
}

.secondary-action {
  color: var(--plum);
  border: 1px solid rgba(74, 37, 94, 0.35);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 1.08fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
  align-content: start;
  padding: clamp(24px, 4vw, 48px) clamp(18px, 5vw, 72px) clamp(28px, 4vw, 54px);
}

.hero-copy {
  max-width: 640px;
}

.eyebrow,
.scene-number {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 5vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.14rem, 2.1vw, 1.42rem);
  line-height: 1.42;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-copy .actions {
  gap: 8px;
}

.hero-copy .primary-action,
.hero-copy .secondary-action {
  min-height: 40px;
  padding: 0 13px;
  font-size: 0.92rem;
}

.hero-image {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(74, 37, 94, 0.26);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.offer-band {
  padding: 18px clamp(18px, 5vw, 72px);
  color: white;
  background: var(--plum);
}

.offer-band p {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(1.12rem, 2.35vw, 1.95rem);
  font-weight: 850;
  line-height: 1.16;
  text-align: center;
}

.featured-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(12px, 2.5vw, 24px);
}

.hero-prices {
  gap: 8px;
  margin-top: 16px;
  padding: 0;
}

.price-card {
  padding: 10px clamp(10px, 1.6vw, 16px);
  border: 1px solid rgba(74, 37, 94, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(31, 23, 36, 0.08);
}

.price-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--leaf);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  color: var(--plum);
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  line-height: 1;
}

.price-card p {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.55vw, 1.12rem);
  font-weight: 800;
  white-space: nowrap;
}

.story {
  display: grid;
  gap: 0;
}

.scene {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(28px, 5vw, 76px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.scene.reverse {
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
}

.scene.reverse img {
  grid-column: 2;
}

.scene.reverse .scene-copy {
  grid-column: 1;
  grid-row: 1;
}

.scene img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(31, 23, 36, 0.16);
}

.offer-scene img {
  object-fit: contain;
  background: white;
}

.scene-copy {
  max-width: 560px;
}

.scene h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 4vw, 3.15rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.scene p:not(.scene-number) {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.footer {
  padding: 28px clamp(18px, 5vw, 72px) 38px;
  color: #f8edf9;
  background: #23172b;
  text-align: center;
}

.footer p {
  margin: 0 auto 8px;
  max-width: 980px;
}

.footer p:last-child {
  margin-bottom: 0;
  color: #d7c8dd;
  font-size: 0.92rem;
}

@media (max-width: 1050px) {
  .hero-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .hero,
  .scene,
  .scene.reverse {
    grid-template-columns: 1fr;
  }

  .featured-prices:not(.hero-prices) {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .scene.reverse img,
  .scene.reverse .scene-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-image img {
    aspect-ratio: 4 / 3;
  }

  .scene img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .book-link,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-copy .actions {
    display: flex;
  }
}
