:root {
  --color-black: #030303;
  --color-black-soft: #090909;
  --color-gold: #d4af37;
  --color-gold-light: #f2d775;
  --color-gold-deep: #8e6d12;
  --color-ivory: #f3efe3;
  --color-muted: #b9b1a0;

  --header-height: 66px;
  --page-max-width: 1280px;

  --border-gold-soft: rgba(212, 175, 55, 0.34);
  --border-gold-strong: rgba(212, 175, 55, 0.68);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #030303;
  color: var(--color-ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background:
    linear-gradient(to bottom, rgba(12, 10, 8, 0.95), rgba(3, 3, 3, 0.93)),
    rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.14) 12%,
    rgba(212, 175, 55, 0.46) 50%,
    rgba(212, 175, 55, 0.14) 88%,
    transparent 100%
  );
}

.header-magic {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 48%, rgba(212, 175, 55, 0.07), transparent 9%),
    radial-gradient(circle at 86% 50%, rgba(212, 175, 55, 0.05), transparent 8%),
    radial-gradient(circle at 24% 34%, rgba(255, 226, 138, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 79% 36%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px);
  opacity: 0.72;
}

.navbar {
  position: relative;
  width: 100%;
  max-width: var(--page-max-width);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 36px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  isolation: isolate;
}

.logo::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 135px;
  height: 36px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 72%);
  filter: blur(7px);
  z-index: -1;
}

.logo-text {
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 12px rgba(212, 175, 55, 0.12),
    0 0 26px rgba(212, 175, 55, 0.08);
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.logo:hover .logo-text {
  color: var(--color-gold-light);
  text-shadow:
    0 0 14px rgba(212, 175, 55, 0.2),
    0 0 34px rgba(212, 175, 55, 0.12);
  transform: translateY(-1px);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 30px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: var(--color-ivory);
  padding: 7px 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.95) 50%,
    transparent 100%
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--color-gold-light);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-button {
  min-width: 146px;
  min-height: 42px;
  padding: 9px 16px;
  margin-left: 2px;
  justify-content: center;
  color: var(--color-gold);
  border: 1px solid var(--border-gold-strong);
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.04), rgba(212, 175, 55, 0.01));
  box-shadow:
    inset 0 0 0 1px rgba(255, 227, 145, 0.04),
    0 0 16px rgba(212, 175, 55, 0.12);
  overflow: hidden;
}

.nav-button::after {
  display: none;
}

.nav-button:hover {
  color: #0b0b0b;
  background: linear-gradient(to bottom, #dfbe56, #c99f21);
  border-color: #ebca63;
  box-shadow:
    0 0 18px rgba(212, 175, 55, 0.28),
    0 0 30px rgba(212, 175, 55, 0.16);
}

.nav-button:hover span {
  color: #0b0b0b;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.03);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-gold);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(24px, 3.2vw, 42px) 36px clamp(28px, 3.4vw, 46px);
  overflow: hidden;
  background:
    radial-gradient(circle at 46% 18%, rgba(212, 175, 55, 0.1), transparent 16%),
    radial-gradient(circle at 74% 50%, rgba(212, 175, 55, 0.07), transparent 27%),
    radial-gradient(circle at 16% 46%, rgba(255, 231, 150, 0.03), transparent 30%),
    linear-gradient(180deg, #030303 0%, #070604 55%, #030303 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 48%;
  width: clamp(230px, 24vw, 350px);
  height: clamp(230px, 24vw, 350px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.97) 0 29%, rgba(212, 175, 55, 0.18) 30%, rgba(212, 175, 55, 0.04) 43%, transparent 66%);
  opacity: 0.52;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255, 226, 138, 0.13) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 71%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 28%, rgba(255, 226, 138, 0.09) 0 1.2px, transparent 2.4px),
    radial-gradient(circle at 68% 18%, rgba(255, 226, 138, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 66%, rgba(255, 226, 138, 0.1) 0 1.4px, transparent 2.6px),
    radial-gradient(circle at 92% 39%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px);
  opacity: 0.52;
}

.hero-bg-magic {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.06), transparent 18%, transparent 82%, rgba(212, 175, 55, 0.045)),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.065), transparent 34%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--page-max-width);
  min-height: calc(100svh - var(--header-height) - 74px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 64px);
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 9px 16px;

  color: var(--color-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 0 16px rgba(212, 175, 55, 0.035),
    0 0 18px rgba(212, 175, 55, 0.07);

  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.35rem, 3.75vw, 4.35rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.018em;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(212, 175, 55, 0.12),
    0 0 40px rgba(212, 175, 55, 0.07);
}

.hero h1 span {
  display: block;
  color: var(--color-gold-light);
}

.hero-subtitle {
  max-width: 530px;
  margin: 18px 0 0;
  color: rgba(243, 239, 227, 0.86);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  line-height: 1.44;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;

  font-family: "Cinzel", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #080704;
  background: linear-gradient(to bottom, #f0d879, #cfa32c);
  border-color: rgba(255, 226, 138, 0.85);
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.24),
    inset 0 0 0 1px rgba(255, 246, 197, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(to bottom, #ffe694, #d5aa31);
  box-shadow:
    0 0 26px rgba(212, 175, 55, 0.32),
    0 0 48px rgba(212, 175, 55, 0.13);
}

.btn-secondary {
  color: var(--color-gold-light);
  background: rgba(0, 0, 0, 0.24);
  border-color: rgba(212, 175, 55, 0.56);
}

.btn-secondary:hover {
  color: var(--color-black);
  background: rgba(212, 175, 55, 0.88);
  border-color: var(--color-gold-light);
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(185, 177, 160, 0.86);
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

/* HERO VISUAL */

.hero-visual {
  position: relative;
  min-height: clamp(390px, 42vw, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trailer-card {
  position: relative;
  width: min(100%, 640px);
  margin: 0 auto;
  z-index: 1;
}

.trailer-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  display: block;

  border: 1px solid rgba(212, 175, 55, 0.52);
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 23%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.09), rgba(3, 3, 3, 0.92) 38%, rgba(14, 10, 4, 0.96));
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.04),
    0 0 30px rgba(212, 175, 55, 0.15),
    0 24px 62px rgba(0, 0, 0, 0.52);
  overflow: hidden;
  cursor: pointer;
}

.trailer-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 19%, rgba(212, 175, 55, 0.13) 23%, transparent 42%),
    linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent 26%, transparent 74%, rgba(212, 175, 55, 0.1));
  opacity: 0.68;
  pointer-events: none;
}

.trailer-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent 40%, rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.48) 100%);
  pointer-events: none;
}

.trailer-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.trailer-image.is-hidden {
  display: none;
}

.trailer-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  place-content: center;
  justify-items: center;
  text-align: center;
  padding: 28px;
}

.eclipse-symbol {
  width: clamp(95px, 10vw, 145px);
  height: clamp(95px, 10vw, 145px);
  border-radius: 999px;
  background:
    radial-gradient(circle, #030303 0 39%, rgba(212, 175, 55, 0.7) 40% 42%, rgba(212, 175, 55, 0.11) 43% 58%, transparent 68%);
  box-shadow:
    0 0 22px rgba(212, 175, 55, 0.18),
    0 0 62px rgba(212, 175, 55, 0.1);
  opacity: 0.82;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;

  width: clamp(58px, 5.8vw, 76px);
  height: clamp(58px, 5.8vw, 76px);
  transform: translate(-50%, -50%);

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 226, 138, 0.88);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(226, 186, 65, 0.92), rgba(142, 109, 18, 0.84));
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.32),
    0 0 54px rgba(212, 175, 55, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #080704;
}

.trailer-frame:hover .play-button {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 0 28px rgba(212, 175, 55, 0.45),
    0 0 70px rgba(212, 175, 55, 0.22);
}

.media-caption {
  width: min(100%, 640px);
  margin: 11px auto 0;
  color: rgba(243, 239, 227, 0.72);
  font-size: 1rem;
  line-height: 1.35;
}

.book-mockup {
  position: absolute;
  top: 12px;
  right: 8px;
  z-index: 2;
  width: clamp(135px, 13vw, 180px);
  padding: 0;
}

.book-badge {
  position: absolute;
  top: -12px;
  left: -10px;
  z-index: 3;
  padding: 5px 10px;
  color: var(--color-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.56);
  background: rgba(0, 0, 0, 0.76);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.13);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book-cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  perspective: 900px;
}

.book-cover-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -12% -5% 8%;
  background: rgba(0, 0, 0, 0.72);
  filter: blur(16px);
  transform: rotate(4deg);
}

.book-cover-image,
.book-cover-fallback {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.48);
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.18),
    16px 22px 38px rgba(0, 0, 0, 0.56);
  transform: rotateY(-8deg) rotateZ(1deg);
  transform-origin: center;
}

.book-cover-image {
  display: block;
}

.book-cover-image.is-hidden {
  display: none;
}

.book-cover-fallback {
  display: none;
  padding: 20px 14px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(212, 175, 55, 0.2), transparent 24%),
    linear-gradient(145deg, #120f08, #030303 58%, #1b1203);
}

.fallback-series,
.fallback-subtitle,
.fallback-book {
  margin: 0;
  color: rgba(243, 239, 227, 0.76);
  font-family: "Cinzel", Georgia, serif;
  text-transform: uppercase;
}

.fallback-series {
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  letter-spacing: 0.08em;
}

.fallback-title {
  margin: 4px 0 2px;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fallback-subtitle {
  font-size: clamp(0.58rem, 0.78vw, 0.74rem);
  letter-spacing: 0.12em;
}

.fallback-eclipse {
  width: 58px;
  height: 58px;
  margin: auto 0;
  border-radius: 999px;
  background:
    radial-gradient(circle, #030303 0 39%, rgba(212, 175, 55, 0.82) 40% 43%, rgba(212, 175, 55, 0.16) 44% 64%, transparent 72%);
  box-shadow:
    0 0 22px rgba(212, 175, 55, 0.22),
    0 0 60px rgba(212, 175, 55, 0.13);
}

.fallback-book {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--color-gold-light);
}

.book-note {
  margin: 8px 0 0;
  color: rgba(243, 239, 227, 0.74);
  font-size: 0.88rem;
  line-height: 1.25;
  text-align: center;
}

/* CONTENT PLACEHOLDERS */

.content-section {
  max-width: var(--page-max-width);
  margin: 0 auto;
  min-height: 58vh;
  padding: 90px 36px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.content-section h2 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* MODAL */

.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  padding: 28px;
}

.trailer-modal.is-open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.48);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 38%),
    #050505;
  box-shadow:
    0 0 42px rgba(212, 175, 55, 0.18),
    0 34px 90px rgba(0, 0, 0, 0.76);
}

.modal-dialog h2 {
  margin: 0 48px 18px 0;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(0, 0, 0, 0.38);
  color: var(--color-gold-light);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.video-shell {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
}

.video-shell iframe,
.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.14), transparent 28%),
    #030303;
}

.video-fallback p {
  margin: 0;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.video-fallback span {
  margin-top: 10px;
  color: rgba(243, 239, 227, 0.7);
  font-size: 1.1rem;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(340px, 0.88fr) minmax(460px, 1.12fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 3.55vw, 3.95rem);
  }

  .trailer-card {
    width: min(100%, 590px);
  }

  .book-mockup {
    width: clamp(130px, 12.5vw, 165px);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .navbar {
    padding: 0 22px;
  }

  .menu-toggle {
    display: block;
    flex-shrink: 0;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    padding: 34px 24px 40px;
    background: linear-gradient(to bottom, rgba(7, 7, 7, 0.98), rgba(3, 3, 3, 0.99));
    border-top: 1px solid rgba(212, 175, 55, 0.2);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    gap: 20px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 10px 0;
  }

  .nav-button {
    width: min(100%, 280px);
    min-width: 0;
    margin-left: 0;
    margin-top: 10px;
  }

  .hero {
    padding: 44px 24px 68px;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: auto;
    display: block;
  }

  .trailer-card {
    width: min(100%, 640px);
  }

  .book-mockup {
    position: absolute;
    top: 14px;
    right: 6px;
    width: min(100%, 170px);
  }
}

@media (max-width: 760px) {
  .hero-visual {
    display: block;
  }

  .trailer-card {
    width: 100%;
  }

  .book-mockup {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 240px);
    margin: 24px auto 0;
  }

  .media-caption {
    width: 100%;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 66px;
  }

  .navbar {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 1.62rem;
    letter-spacing: 0.06em;
  }

  .menu-toggle {
    width: 40px;
    height: 36px;
  }

  .hero {
    padding: 34px 18px 58px;
  }

  .eyebrow {
    padding: 8px 13px;
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11.5vw, 3.35rem);
  }

  .hero-subtitle {
    font-size: 1.12rem;
  }

  .hero-actions {
    gap: 11px;
  }

  .btn {
    width: 100%;
  }

  .hero-note {
    font-size: 0.96rem;
  }

  .media-caption,
  .book-note {
    font-size: 0.95rem;
  }

  .book-mockup {
    width: min(100%, 220px);
  }

  .content-section {
    padding: 70px 18px;
  }

  .modal-dialog {
    padding: 18px;
  }

  .trailer-modal {
    padding: 16px;
  }
}

@media (max-height: 760px) and (min-width: 981px) {
  :root {
    --header-height: 62px;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .hero-inner {
    min-height: calc(100svh - var(--header-height) - 50px);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 3.35vw, 3.75rem);
  }

  .eyebrow {
    margin-bottom: 13px;
  }

  .hero-subtitle {
    margin-top: 15px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .trailer-card {
    width: min(100%, 580px);
  }

  .book-mockup {
    width: clamp(128px, 12vw, 165px);
    top: 12px;
    right: 8px;
  }
}

/* FINAL HERO POLISH */

.hero-inner {
  gap: clamp(28px, 3.8vw, 54px);
}

.hero h1 {
  font-size: clamp(2.25rem, 3.55vw, 4.05rem);
  line-height: 1.045;
}

.hero-subtitle {
  margin-top: 16px;
  max-width: 510px;
}

.hero-actions {
  margin-top: 22px;
}

.hero-note {
  margin-top: 12px;
}

.hero-visual {
  justify-content: center;
  padding-right: clamp(18px, 3vw, 42px);
  transform: translateX(-18px);
}

.trailer-card {
  width: min(95%, 608px);
  margin-inline: auto;
}

.trailer-frame {
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.04),
    0 0 26px rgba(212, 175, 55, 0.14),
    0 22px 56px rgba(0, 0, 0, 0.5);
}

.play-button {
  width: clamp(54px, 5.2vw, 70px);
  height: clamp(54px, 5.2vw, 70px);
}

.play-button span {
  margin-left: 5px;
  border-top-width: 9px;
  border-bottom-width: 9px;
  border-left-width: 15px;
}

.media-caption {
  width: min(95%, 608px);
  margin-inline: auto;
  margin-top: 10px;
  padding-right: 92px;
  color: rgba(243, 239, 227, 0.7);
}

.book-mockup {
  top: 4px;
  right: clamp(34px, 4.2vw, 58px);
  width: clamp(122px, 11.4vw, 160px);
}

.book-cover-image,
.book-cover-fallback {
  border-radius: 7px;
  box-shadow:
    0 0 18px rgba(212, 175, 55, 0.18),
    14px 18px 32px rgba(0, 0, 0, 0.55);
  transform: rotateY(-7deg) rotateZ(1deg);
}

.book-badge {
  top: -11px;
  left: -8px;
  padding: 5px 9px;
  font-size: 0.62rem;
}

.book-note {
  position: relative;
  z-index: 4;
  width: 112%;
  margin: 9px 0 0 -6%;
  padding: 7px 8px;

  color: rgba(243, 239, 227, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.08);

  font-size: 0.78rem;
  line-height: 1.25;
  text-align: center;
}

/* Laptop height polish */
@media (max-height: 760px) and (min-width: 981px) {
  .hero h1 {
    font-size: clamp(2.1rem, 3.2vw, 3.55rem);
  }

  .hero-subtitle {
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .trailer-card {
    width: min(92%, 560px);
  }

  .media-caption {
    width: min(92%, 560px);
  }

  .book-mockup {
    top: 2px;
    right: clamp(36px, 4vw, 52px);
    width: clamp(112px, 10.4vw, 145px);
  }
}

/* Tablet */
@media (max-width: 980px) {
  .hero-visual {
    padding-right: 0;
    transform: none;
  }

  .trailer-card {
    width: min(100%, 640px);
  }

  .media-caption {
    width: min(100%, 640px);
    padding-right: 120px;
  }

  .book-mockup {
    top: 12px;
    right: 18px;
    width: min(24vw, 150px);
  }
}

/* Mobile: clean vertical stack */
@media (max-width: 760px) {
  .hero-inner {
    gap: 34px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .trailer-card {
    width: 100%;
  }

  .media-caption {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .book-mockup {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 230px);
    margin: 24px auto 0;
  }

  .book-note {
    width: 100%;
    margin-left: 0;
  }
}

/* Small mobile */
@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(2rem, 10.8vw, 3.15rem);
  }

  .hero-subtitle {
    margin-top: 15px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .book-mockup {
    width: min(100%, 210px);
  }

  .book-note {
    font-size: 0.86rem;
    border-radius: 14px;
  }
}
/* THE SEVEN MISSIONS SECTION */

.missions-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 120px) 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 30%),
    radial-gradient(circle at 12% 32%, rgba(255, 226, 138, 0.035), transparent 24%),
    radial-gradient(circle at 88% 70%, rgba(212, 175, 55, 0.055), transparent 28%),
    linear-gradient(180deg, #030303 0%, #080604 48%, #030303 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.missions-section::before {
  content: "";
  position: absolute;
  top: 72px;
  left: 50%;
  width: clamp(260px, 32vw, 480px);
  height: clamp(260px, 32vw, 480px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.98) 0 29%, rgba(212, 175, 55, 0.16) 30%, rgba(212, 175, 55, 0.035) 44%, transparent 68%);
  opacity: 0.45;
  pointer-events: none;
}

.missions-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 18%, rgba(255, 226, 138, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 76%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 47% 22%, rgba(255, 226, 138, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 73% 34%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 72%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px);
  opacity: 0.55;
}

.missions-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent 18%, transparent 82%, rgba(212, 175, 55, 0.04)),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.07), transparent 36%);
}

.missions-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  padding: 9px 16px;

  color: var(--color-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);

  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.07);
}

.section-lead {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(243, 239, 227, 0.84);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.52;
}

.section-lead strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mission-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(13, 10, 5, 0.86), rgba(3, 3, 3, 0.94));
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 22px 54px rgba(0, 0, 0, 0.42);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 231, 150, 0.08), transparent 28%, transparent 72%, rgba(212, 175, 55, 0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.13),
    0 28px 70px rgba(0, 0, 0, 0.56);
}

.mission-card:hover::before {
  opacity: 1;
}

.mission-image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 35%),
    #050505;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.mission-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent 48%, rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(0, 0, 0, 0.38) 100%);
}

.mission-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.mission-card:hover .mission-image {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.mission-content {
  position: relative;
  z-index: 1;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mission-number {
  margin: 0 0 9px;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mission-content h3 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.mission-content p:not(.mission-number) {
  margin: 14px 0 18px;
  color: rgba(243, 239, 227, 0.78);
  font-size: 1.08rem;
  line-height: 1.5;
}

.mission-trial {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 12px;
  color: rgba(243, 239, 227, 0.84);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.mission-card-featured {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
}

.mission-card-featured .mission-image-wrap {
  aspect-ratio: auto;
  min-height: 100%;
  border-bottom: 0;
  border-right: 1px solid rgba(212, 175, 55, 0.22);
}

.mission-card-featured .mission-content {
  justify-content: center;
}

.missions-closing {
  max-width: 850px;
  margin: 54px auto 0;
  text-align: center;
}

.missions-closing p {
  margin: 0 auto 24px;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.07);
}

/* MISSION RESPONSIVE */

@media (max-width: 1100px) {
  .mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-card-featured {
    grid-column: auto;
    display: flex;
  }

  .mission-card-featured .mission-image-wrap {
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  }
}

@media (max-width: 760px) {
  .missions-section {
    padding: 72px 18px;
  }

  .section-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .section-kicker {
    font-size: 0.7rem;
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .section-lead {
    font-size: 1.15rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mission-content {
    padding: 20px 18px 22px;
  }

  .mission-content p:not(.mission-number) {
    font-size: 1.02rem;
  }

  .mission-trial {
    font-size: 0.7rem;
    border-radius: 14px;
  }

  .missions-closing {
    margin-top: 42px;
  }

  .missions-closing p {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }

  .missions-closing .btn {
    width: 100%;
  }
}
/* THE FIVE COMPANIONS SECTION */

.companions-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 118px) 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.09), transparent 30%),
    radial-gradient(circle at 15% 34%, rgba(255, 214, 128, 0.045), transparent 26%),
    radial-gradient(circle at 86% 62%, rgba(212, 175, 55, 0.06), transparent 28%),
    linear-gradient(180deg, #030303 0%, #090704 50%, #030303 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.companions-section::before {
  content: "";
  position: absolute;
  top: 88px;
  left: 50%;
  width: clamp(240px, 30vw, 430px);
  height: clamp(240px, 30vw, 430px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(0, 0, 0, 0.96) 0 30%,
      rgba(212, 175, 55, 0.14) 31%,
      rgba(212, 175, 55, 0.035) 45%,
      transparent 68%
    );
  opacity: 0.38;
  pointer-events: none;
}

.companions-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 11% 18%, rgba(255, 226, 138, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 25% 73%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 46% 28%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 71% 20%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 92% 76%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px);
  opacity: 0.5;
}

.companions-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(212, 175, 55, 0.045),
      transparent 18%,
      transparent 82%,
      rgba(212, 175, 55, 0.04)
    ),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.065), transparent 36%);
}

.companions-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.companions-heading {
  margin-bottom: 48px;
}

.companions-opening {
  max-width: 800px;
  margin: 22px auto 0;
  color: rgba(243, 239, 227, 0.76);
  font-size: clamp(1.14rem, 1.65vw, 1.42rem);
  line-height: 1.55;
}

.companions-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.companion-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.075), transparent 36%),
    linear-gradient(180deg, rgba(14, 10, 5, 0.88), rgba(3, 3, 3, 0.95));
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 22px 54px rgba(0, 0, 0, 0.42);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.companion-card-featured {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
  min-height: 430px;
}

.companion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 231, 150, 0.08),
      transparent 28%,
      transparent 72%,
      rgba(212, 175, 55, 0.06)
    );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.companion-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.13),
    0 28px 70px rgba(0, 0, 0, 0.56);
}

.companion-card:hover::before {
  opacity: 1;
}

.companion-image-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.12), transparent 35%),
    #050505;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.companion-card-featured .companion-image-wrap {
  aspect-ratio: auto;
  min-height: 100%;
  border-bottom: 0;
  border-right: 1px solid rgba(212, 175, 55, 0.22);
}

.companion-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent 48%, rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(0, 0, 0, 0.38) 100%);
}

.companion-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.companion-card:hover .companion-image {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.companion-content {
  position: relative;
  z-index: 1;
  padding: 24px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.companion-card-featured .companion-content {
  justify-content: center;
  padding: 28px;
}

.companion-name {
  margin: 0 0 8px;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.companion-content h3 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.18rem, 1.65vw, 1.65rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.companion-content p:not(.companion-name) {
  margin: 15px 0 20px;
  color: rgba(243, 239, 227, 0.79);
  font-size: 1.08rem;
  line-height: 1.5;
}

.companion-role {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 12px;
  color: rgba(243, 239, 227, 0.86);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.companions-closing {
  max-width: 900px;
  margin: 54px auto 0;
  text-align: center;
}

.companions-closing > p:first-child {
  margin: 0 auto 24px;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.07);
}

.companions-bridge {
  max-width: 720px;
  margin: 26px auto 0;
  color: rgba(243, 239, 227, 0.76);
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.5;
}

/* COMPANIONS RESPONSIVE */

@media (max-width: 1100px) {
  .companions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .companion-card,
  .companion-card-featured {
    grid-column: auto;
  }

  .companion-card-featured {
    grid-template-columns: 1fr;
    min-height: 100%;
  }

  .companion-card-featured .companion-image-wrap {
    aspect-ratio: 9 / 16;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  }

  .companion-card-featured .companion-content {
    justify-content: flex-start;
    padding: 24px 22px 24px;
  }
}

@media (max-width: 760px) {
  .companions-section {
    padding: 72px 18px;
  }

  .companions-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .companions-opening {
    font-size: 1.12rem;
  }

  .companions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .companion-card,
  .companion-card-featured {
    grid-column: auto;
  }

  .companion-image-wrap,
  .companion-card-featured .companion-image-wrap {
    aspect-ratio: 9 / 16;
  }

  .companion-content,
  .companion-card-featured .companion-content {
    padding: 20px 18px 22px;
  }

  .companion-content p:not(.companion-name) {
    font-size: 1.02rem;
  }

  .companion-role {
    font-size: 0.68rem;
    border-radius: 14px;
  }

  .companions-closing {
    margin-top: 42px;
  }

  .companions-closing > p:first-child {
    font-size: clamp(1.2rem, 5.8vw, 1.65rem);
  }

  .companions-closing .btn {
    width: 100%;
  }

  .companions-bridge {
    font-size: 1.08rem;
  }
}
/* DOOR OF LIGHT VS DOOR OF DARKNESS SECTION */

.doors-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 120px) 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.09), transparent 30%),
    radial-gradient(circle at 18% 48%, rgba(88, 42, 142, 0.16), transparent 28%),
    radial-gradient(circle at 82% 48%, rgba(255, 218, 112, 0.08), transparent 30%),
    linear-gradient(180deg, #030303 0%, #070504 52%, #030303 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.doors-section::before {
  content: "";
  position: absolute;
  top: 74px;
  left: 50%;
  width: clamp(260px, 34vw, 520px);
  height: clamp(260px, 34vw, 520px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(0, 0, 0, 0.98) 0 30%,
      rgba(212, 175, 55, 0.16) 31%,
      rgba(212, 175, 55, 0.035) 45%,
      transparent 68%
    );
  opacity: 0.46;
  pointer-events: none;
}

.doors-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 19%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 23% 74%, rgba(167, 98, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 28%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 23%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 75%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px);
  opacity: 0.5;
}

.doors-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(88, 42, 142, 0.08),
      transparent 24%,
      transparent 76%,
      rgba(212, 175, 55, 0.065)
    ),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.06), transparent 36%);
}

.doors-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.doors-heading h2 span {
  display: inline-block;
  margin: 0 0.18em;
  color: rgba(243, 239, 227, 0.72);
  font-size: 0.52em;
  letter-spacing: 0.06em;
  vertical-align: middle;
  text-transform: lowercase;
}

.doors-intro {
  max-width: 860px;
  margin: 18px auto 0;
  color: rgba(243, 239, 227, 0.78);
  font-size: clamp(1.12rem, 1.65vw, 1.38rem);
  line-height: 1.55;
}

.doors-banner {
  position: relative;
  max-width: 1040px;
  margin: 44px auto 42px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: #050505;
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 0 34px rgba(212, 175, 55, 0.1),
    0 26px 70px rgba(0, 0, 0, 0.52);
}

.doors-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(3, 3, 3, 0.12), transparent 42%, rgba(3, 3, 3, 0.48)),
    linear-gradient(90deg, rgba(3, 3, 3, 0.52), transparent 36%, transparent 64%, rgba(3, 3, 3, 0.52)),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(0, 0, 0, 0.4) 100%);
}

.doors-banner-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.doors-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
}

.door-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(13, 10, 5, 0.88), rgba(3, 3, 3, 0.96));
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 24px 62px rgba(0, 0, 0, 0.48);
}

.door-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
}

.door-panel-dark::before {
  background:
    radial-gradient(circle at 50% 22%, rgba(109, 62, 180, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(103, 55, 160, 0.12), transparent 44%);
}

.door-panel-light::before {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 226, 138, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent 44%);
}

.door-image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  background: #050505;
}

.door-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent 44%, rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(0, 0, 0, 0.42) 100%);
}

.door-panel-dark .door-image-wrap {
  box-shadow: inset 0 0 34px rgba(97, 47, 156, 0.28);
}

.door-panel-light .door-image-wrap {
  box-shadow: inset 0 0 34px rgba(212, 175, 55, 0.24);
}

.door-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.door-panel:hover .door-image {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.door-content {
  position: relative;
  z-index: 1;
  padding: 28px 26px 30px;
}

.door-path {
  margin: 0 0 9px;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.door-panel-dark .door-path {
  color: #c7a6ff;
}

.door-content h3 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.door-panel-light .door-content h3 {
  color: var(--color-gold-light);
}

.door-content > p:not(.door-path):not(.door-emotion) {
  margin: 18px 0 20px;
  color: rgba(243, 239, 227, 0.8);
  font-size: 1.08rem;
  line-height: 1.52;
}

.door-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.door-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(243, 239, 227, 0.76);
  font-size: 1.02rem;
  line-height: 1.38;
}

.door-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.door-panel-dark .door-list li::before {
  background: #9d6cff;
  box-shadow: 0 0 12px rgba(157, 108, 255, 0.38);
}

.door-emotion {
  margin: 24px 0 0;
  color: rgba(243, 239, 227, 0.86);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.door-emotion span {
  display: block;
  margin-top: 4px;
  color: var(--color-gold-light);
}

.door-panel-dark .door-emotion span {
  color: #c7a6ff;
}

.doors-divider {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100%;
  text-align: center;
}

.doors-divider::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(212, 175, 55, 0.32),
      rgba(212, 175, 55, 0.58),
      rgba(212, 175, 55, 0.32),
      transparent
    );
}

.doors-eclipse {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      #030303 0 38%,
      rgba(212, 175, 55, 0.82) 39% 42%,
      rgba(212, 175, 55, 0.15) 43% 62%,
      transparent 72%
    );
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.25),
    0 0 70px rgba(212, 175, 55, 0.13);
}

.doors-divider p {
  position: relative;
  z-index: 1;
  max-width: 98px;
  margin: 18px 0 0;
  padding: 9px 8px;
  color: var(--color-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(0, 0, 0, 0.72);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.68rem;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.door-contrast {
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contrast-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 16px 14px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.075), rgba(0, 0, 0, 0.36), rgba(96, 48, 156, 0.09)),
    rgba(0, 0, 0, 0.22);
}

.contrast-light,
.contrast-dark,
.contrast-vs {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.contrast-light {
  color: var(--color-gold-light);
  text-align: right;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.14);
}

.contrast-vs {
  color: rgba(243, 239, 227, 0.52);
  font-size: 0.72rem;
}

.contrast-dark {
  color: #c7a6ff;
  text-shadow: 0 0 14px rgba(157, 108, 255, 0.15);
}

.doors-closing {
  max-width: 920px;
  margin: 54px auto 0;
  text-align: center;
}

.doors-closing > p {
  margin: 0;
  color: rgba(243, 239, 227, 0.8);
  font-size: clamp(1.16rem, 1.65vw, 1.42rem);
  line-height: 1.58;
}

.doors-final-line {
  margin: 28px auto 0;
  display: grid;
  gap: 8px;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.35rem, 2.55vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.07);
}

.doors-cta {
  margin-top: 34px;
}

.doors-cta p {
  margin: 0 0 20px;
  color: rgba(243, 239, 227, 0.82);
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
}

.doors-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* DOORS RESPONSIVE */

@media (max-width: 1100px) {
  .doors-split {
    grid-template-columns: 1fr;
  }

  .doors-divider {
    min-height: auto;
    padding: 20px 0;
  }

  .doors-divider::before {
    left: 8%;
    right: 8%;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 1px;
    transform: translateY(-50%);
    background:
      linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.32),
        rgba(212, 175, 55, 0.58),
        rgba(212, 175, 55, 0.32),
        transparent
      );
  }

  .doors-divider p {
    max-width: none;
    margin-top: 12px;
  }

  .door-contrast {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .doors-section {
    padding: 72px 18px;
  }

  .doors-heading {
    text-align: left;
  }

  .doors-heading h2 span {
    display: block;
    margin: 0.12em 0;
  }

  .doors-intro {
    font-size: 1.12rem;
  }

  .doors-banner {
    margin: 34px auto 32px;
  }

  .door-content {
    padding: 22px 18px 24px;
  }

  .door-content > p:not(.door-path):not(.door-emotion) {
    font-size: 1.02rem;
  }

  .door-list li {
    font-size: 0.98rem;
  }

  .doors-eclipse {
    width: 70px;
    height: 70px;
  }

  .door-contrast {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contrast-pair {
    padding: 14px 12px;
  }

  .doors-closing {
    margin-top: 42px;
  }

  .doors-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .doors-actions .btn {
    width: 100%;
  }
}
/* WHY READERS WILL LOVE THIS SAGA SECTION */

.love-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 116px) 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.095), transparent 30%),
    radial-gradient(circle at 18% 36%, rgba(255, 215, 132, 0.05), transparent 26%),
    radial-gradient(circle at 84% 62%, rgba(212, 175, 55, 0.055), transparent 28%),
    linear-gradient(180deg, #030303 0%, #090704 52%, #030303 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.love-section::before {
  content: "";
  position: absolute;
  top: 84px;
  left: 50%;
  width: clamp(240px, 30vw, 430px);
  height: clamp(240px, 30vw, 430px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(0, 0, 0, 0.96) 0 30%,
      rgba(212, 175, 55, 0.13) 31%,
      rgba(212, 175, 55, 0.035) 45%,
      transparent 68%
    );
  opacity: 0.34;
  pointer-events: none;
}

.love-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255, 226, 138, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 26% 76%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 26%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 22%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 74%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px);
  opacity: 0.48;
}

.love-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(212, 175, 55, 0.045),
      transparent 18%,
      transparent 82%,
      rgba(212, 175, 55, 0.04)
    ),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.055), transparent 36%);
}

.love-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.love-heading {
  margin-bottom: 48px;
}

.love-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.love-card {
  position: relative;
  min-height: 100%;
  padding: 30px 26px 28px;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.27);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.075), transparent 36%),
    linear-gradient(180deg, rgba(14, 10, 5, 0.88), rgba(3, 3, 3, 0.95));
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 22px 54px rgba(0, 0, 0, 0.38);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.love-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 231, 150, 0.08),
      transparent 30%,
      transparent 72%,
      rgba(212, 175, 55, 0.055)
    );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.love-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.12),
    0 28px 70px rgba(0, 0, 0, 0.5);
}

.love-card:hover::before {
  opacity: 1;
}

.love-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.18), rgba(0, 0, 0, 0.28));
  box-shadow:
    inset 0 0 16px rgba(255, 231, 150, 0.04),
    0 0 22px rgba(212, 175, 55, 0.12);
}

.love-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--color-gold-light);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.24));
}

.love-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.42rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.love-card p {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  color: rgba(243, 239, 227, 0.78);
  font-size: 1.08rem;
  line-height: 1.52;
}

.love-closing {
  max-width: 900px;
  margin: 54px auto 0;
  text-align: center;
}

.love-closing > p:first-child {
  margin: 0 auto;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.22rem, 2.25vw, 1.95rem);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.07);
}

.love-transition {
  max-width: 680px;
  margin: 26px auto 22px;
  color: rgba(243, 239, 227, 0.78);
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.5;
}

/* WHY READERS LOVE RESPONSIVE */

@media (max-width: 1100px) {
  .love-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .love-section {
    padding: 72px 18px;
  }

  .love-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .love-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .love-card {
    padding: 26px 20px 24px;
  }

  .love-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }

  .love-icon svg {
    width: 28px;
    height: 28px;
  }

  .love-card p {
    font-size: 1.02rem;
  }

  .love-closing {
    margin-top: 42px;
  }

  .love-closing > p:first-child {
    font-size: clamp(1.18rem, 5.6vw, 1.62rem);
  }

  .love-transition {
    font-size: 1.08rem;
  }

  .love-closing .btn {
    width: 100%;
  }
}
/* FREE LUMINARA STARTER PACK SECTION */

.starter-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 118px) 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.105), transparent 30%),
    radial-gradient(circle at 18% 42%, rgba(80, 105, 160, 0.08), transparent 28%),
    radial-gradient(circle at 82% 66%, rgba(212, 175, 55, 0.065), transparent 30%),
    linear-gradient(180deg, #030303 0%, #07090f 48%, #030303 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.starter-section::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 48%;
  width: clamp(250px, 32vw, 460px);
  height: clamp(250px, 32vw, 460px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(0, 0, 0, 0.96) 0 30%,
      rgba(212, 175, 55, 0.14) 31%,
      rgba(212, 175, 55, 0.035) 45%,
      transparent 68%
    );
  opacity: 0.38;
  pointer-events: none;
}

.starter-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 226, 138, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 25% 76%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 47% 26%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 24%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 78%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px);
  opacity: 0.5;
}

.starter-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(212, 175, 55, 0.045),
      transparent 18%,
      transparent 82%,
      rgba(212, 175, 55, 0.04)
    ),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.065), transparent 36%);
}

.starter-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max-width);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(38px, 5vw, 74px);
}

.starter-mockup {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.starter-glow-orb {
  position: absolute;
  width: min(78%, 460px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 64%);
  filter: blur(10px);
  z-index: -1;
}

.starter-pack-main,
.starter-doc {
  border: 1px solid rgba(212, 175, 55, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 232, 168, 0.14), rgba(17, 12, 5, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.18), transparent 38%);
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.04),
    0 0 26px rgba(212, 175, 55, 0.15),
    0 28px 70px rgba(0, 0, 0, 0.52);
}

.starter-pack-main {
  position: relative;
  z-index: 3;
  width: min(82%, 360px);
  min-height: 470px;
  padding: 38px 30px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;

  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 238, 190, 0.16), rgba(23, 15, 5, 0.96)),
    radial-gradient(circle at 50% 38%, rgba(212, 175, 55, 0.18), transparent 28%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.018) 0 2px,
      transparent 2px 8px
    );
}

.starter-pack-main::before {
  content: "";
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle, #030303 0 38%, rgba(212, 175, 55, 0.78) 39% 42%, rgba(212, 175, 55, 0.14) 43% 64%, transparent 72%);
  box-shadow:
    0 0 26px rgba(212, 175, 55, 0.24),
    0 0 80px rgba(212, 175, 55, 0.14);
}

.starter-pack-kicker {
  margin: 0 0 12px;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.starter-pack-main h3 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.starter-pack-main p:not(.starter-pack-kicker) {
  margin: 20px 0 0;
  color: rgba(243, 239, 227, 0.78);
  font-size: 1.12rem;
  line-height: 1.52;
}

.starter-doc {
  position: absolute;
  z-index: 1;
  width: 185px;
  min-height: 118px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 232, 168, 0.12), rgba(8, 7, 5, 0.94)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0 1px,
      transparent 1px 7px
    );
}

.starter-doc span {
  color: rgba(243, 239, 227, 0.86);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.74rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.starter-doc-one {
  top: 72px;
  left: 22px;
  transform: rotate(-9deg);
}

.starter-doc-two {
  top: 120px;
  right: 4px;
  transform: rotate(8deg);
}

.starter-doc-three {
  bottom: 120px;
  left: 8px;
  transform: rotate(7deg);
}

.starter-doc-four {
  bottom: 76px;
  right: 24px;
  transform: rotate(-8deg);
}

.starter-content h2 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.35rem, 4.5vw, 4.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.07);
}

.starter-subtitle {
  margin: 20px 0 0;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.starter-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(243, 239, 227, 0.8);
  font-size: 1.14rem;
  line-height: 1.58;
}

.starter-copy em {
  color: rgba(243, 239, 227, 0.92);
}

.starter-includes {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.07), transparent 36%),
    rgba(0, 0, 0, 0.26);
}

.starter-includes h3,
.starter-form h3 {
  margin: 0;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.starter-includes ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.starter-includes li {
  position: relative;
  padding-left: 22px;
  color: rgba(243, 239, 227, 0.78);
  font-size: 1.02rem;
  line-height: 1.4;
}

.starter-includes li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.starter-form {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(12, 9, 5, 0.9), rgba(3, 3, 3, 0.96));
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.03),
    0 0 28px rgba(212, 175, 55, 0.12),
    0 24px 62px rgba(0, 0, 0, 0.46);
}

.form-row {
  margin-top: 18px;
}

.form-row label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: rgba(243, 239, 227, 0.86);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row label span,
.form-row label strong {
  color: rgba(212, 175, 55, 0.82);
  font-weight: 500;
}

.form-row input {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(0, 0, 0, 0.42);
  color: var(--color-ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.16rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-row input::placeholder {
  color: rgba(243, 239, 227, 0.42);
}

.form-row input:focus {
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.12);
}

.form-row input.is-invalid {
  border-color: rgba(255, 116, 116, 0.75);
  box-shadow: 0 0 18px rgba(255, 80, 80, 0.1);
}

.form-error {
  display: none;
  margin: 8px 0 0;
  color: #ffb3b3;
  font-size: 0.98rem;
}

.form-error.is-visible {
  display: block;
}

.starter-submit {
  width: 100%;
  margin-top: 22px;
}

.privacy-note {
  margin: 16px 0 0;
  color: rgba(243, 239, 227, 0.62);
  font-size: 0.98rem;
  line-height: 1.45;
  text-align: center;
}

.starter-success {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: rgba(212, 175, 55, 0.08);
  text-align: center;
}

.starter-success h4 {
  margin: 0;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.starter-success p {
  margin: 10px 0 0;
  color: rgba(243, 239, 227, 0.78);
  font-size: 1rem;
  line-height: 1.45;
}

/* STARTER PACK RESPONSIVE */

@media (max-width: 1060px) {
  .starter-inner {
    grid-template-columns: 1fr;
  }

  .starter-content {
    max-width: 820px;
    margin: 0 auto;
  }

  .starter-mockup {
    min-height: 520px;
    order: 2;
  }

  .starter-content {
    order: 1;
  }
}

@media (max-width: 760px) {
  .starter-section {
    padding: 72px 18px;
  }

  .starter-content h2 {
    font-size: clamp(2.15rem, 10vw, 3.45rem);
  }

  .starter-subtitle {
    font-size: 1rem;
  }

  .starter-copy {
    font-size: 1.08rem;
  }

  .starter-mockup {
    min-height: 460px;
    margin-top: 8px;
  }

  .starter-pack-main {
    width: min(82%, 310px);
    min-height: 400px;
    padding: 30px 22px;
  }

  .starter-pack-main::before {
    width: 92px;
    height: 92px;
    margin-bottom: 22px;
  }

  .starter-doc {
    width: 148px;
    min-height: 96px;
    padding: 14px;
  }

  .starter-doc span {
    font-size: 0.62rem;
  }

  .starter-doc-one {
    top: 58px;
    left: 0;
  }

  .starter-doc-two {
    top: 94px;
    right: 0;
  }

  .starter-doc-three {
    bottom: 96px;
    left: 0;
  }

  .starter-doc-four {
    bottom: 56px;
    right: 0;
  }

  .starter-includes,
  .starter-form {
    padding: 22px 18px;
  }
}

@media (max-width: 520px) {
  .starter-mockup {
    min-height: 430px;
  }

  .starter-pack-main {
    width: min(88%, 290px);
  }

  .starter-doc {
    width: 128px;
  }

  .starter-doc-one,
  .starter-doc-three {
    left: -4px;
  }

  .starter-doc-two,
  .starter-doc-four {
    right: -4px;
  }
}
.starter-amazon-link {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  color: rgba(243, 239, 227, 0.76);
  font-size: 1.02rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: color 0.25s ease;
}

.starter-amazon-link span {
  color: var(--color-gold-light);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.starter-amazon-link:hover {
  color: var(--color-ivory);
}

.starter-amazon-link:hover span {
  color: #ffe694;
  border-color: #ffe694;
}
/* START THE ADVENTURE WITH BOOK ONE SECTION */

.book-one-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 118px) 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 30%),
    radial-gradient(circle at 18% 40%, rgba(255, 214, 128, 0.045), transparent 26%),
    radial-gradient(circle at 82% 68%, rgba(212, 175, 55, 0.06), transparent 28%),
    linear-gradient(180deg, #030303 0%, #090704 50%, #030303 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.book-one-section::before {
  content: "";
  position: absolute;
  top: 88px;
  left: 50%;
  width: clamp(240px, 30vw, 430px);
  height: clamp(240px, 30vw, 430px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(0, 0, 0, 0.96) 0 30%,
      rgba(212, 175, 55, 0.14) 31%,
      rgba(212, 175, 55, 0.035) 45%,
      transparent 68%
    );
  opacity: 0.35;
  pointer-events: none;
}

.book-one-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 226, 138, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 76%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 46% 28%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 20%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 74%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px);
  opacity: 0.45;
}

.book-one-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(212, 175, 55, 0.045),
      transparent 18%,
      transparent 82%,
      rgba(212, 175, 55, 0.04)
    ),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.06), transparent 36%);
}

.book-one-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max-width);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(36px, 5vw, 74px);
}

.book-one-media {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.book-one-glow {
  position: absolute;
  width: min(78%, 420px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.26), transparent 62%);
  filter: blur(10px);
  z-index: -1;
}

.book-one-badge {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 8px 14px;
  color: var(--color-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow:
    0 0 18px rgba(212, 175, 55, 0.14);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.book-one-mockup {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 2 / 3;
  perspective: 1200px;
}

.book-one-mockup::before {
  content: "";
  position: absolute;
  inset: 8% -12% -4% 10%;
  background: rgba(0, 0, 0, 0.72);
  filter: blur(16px);
  transform: rotate(5deg);
}

.book-one-cover {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow:
    0 0 22px rgba(212, 175, 55, 0.18),
    18px 24px 44px rgba(0, 0, 0, 0.58);

  transform: rotateY(-10deg) rotateZ(1deg);
  transform-origin: center;
}

.book-one-content h2 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.3rem, 4.3vw, 4.65rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.07);
}

.book-one-subtitle {
  margin: 18px 0 0;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.book-one-copy {
  margin-top: 22px;
}

.book-one-copy p {
  margin: 0 0 14px;
  color: rgba(243, 239, 227, 0.8);
  font-size: 1.12rem;
  line-height: 1.58;
}

.book-one-highlight {
  color: var(--color-gold-light) !important;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.16rem) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-one-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.format-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  color: rgba(243, 239, 227, 0.84);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.book-one-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.book-one-note {
  margin: 18px 0 0;
  color: rgba(243, 239, 227, 0.68);
  font-size: 1rem;
  line-height: 1.45;
}

.book-one-urgency {
  margin: 20px 0 0;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* BOOK ONE RESPONSIVE */

@media (max-width: 1060px) {
  .book-one-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .book-one-media {
    min-height: 500px;
  }

  .book-one-content {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .book-one-section {
    padding: 72px 18px;
  }

  .book-one-media {
    min-height: 430px;
  }

  .book-one-badge {
    top: 22px;
    font-size: 0.64rem;
    padding: 7px 12px;
  }

  .book-one-mockup {
    width: min(100%, 290px);
  }

  .book-one-content h2 {
    font-size: clamp(2.05rem, 10vw, 3.35rem);
  }

  .book-one-subtitle {
    font-size: 0.96rem;
  }

  .book-one-copy p {
    font-size: 1.05rem;
  }

  .book-one-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .book-one-actions .btn {
    width: 100%;
  }

  .book-one-note {
    font-size: 0.98rem;
  }

  .book-one-urgency {
    font-size: 0.96rem;
  }
}
/* REFINED FREE LUMINARA STARTER PACK SECTION */

.starter-section {
  padding: clamp(62px, 6.4vw, 96px) 36px;
}

.starter-inner {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(440px, 1.1fr);
  grid-template-areas:
    "mockup intro"
    "mockup form"
    "mockup includes"
    "mockup footer";
  align-items: start;
  gap: 18px clamp(36px, 5vw, 68px);
}

.starter-copy-panel {
  grid-area: intro;
  max-width: 680px;
  padding-top: clamp(4px, 1.2vw, 18px);
}

.starter-copy-panel h2 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.05rem, 3.45vw, 3.75rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.07);
}

.starter-subtitle {
  margin: 16px 0 0;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
}

.starter-copy-tight {
  max-width: 620px;
  margin-top: 14px;
  font-size: 1.08rem;
  line-height: 1.52;
}

.starter-mockup {
  grid-area: mockup;
  min-height: 520px;
  align-self: start;
  transform: translateY(-8px);
}

.starter-pack-main {
  width: min(78%, 325px);
  min-height: 420px;
  padding: 32px 26px;
}

.starter-pack-main::before {
  width: 94px;
  height: 94px;
  margin-bottom: 24px;
}

.starter-pack-main h3 {
  font-size: clamp(1.65rem, 2.55vw, 2.35rem);
}

.starter-pack-main p:not(.starter-pack-kicker) {
  margin-top: 16px;
  font-size: 1.04rem;
}

.starter-doc {
  width: 158px;
  min-height: 98px;
  padding: 14px;
}

.starter-doc span {
  font-size: 0.64rem;
}

.starter-doc-one {
  top: 64px;
  left: 28px;
}

.starter-doc-two {
  top: 104px;
  right: 20px;
}

.starter-doc-three {
  bottom: 112px;
  left: 18px;
}

.starter-doc-four {
  bottom: 76px;
  right: 34px;
}

.starter-form {
  grid-area: form;
  margin-top: 0;
  padding: 24px;
}

.starter-form h3 {
  font-size: 1.02rem;
}

.form-row {
  margin-top: 15px;
}

.form-row input {
  min-height: 50px;
}

.starter-submit {
  margin-top: 20px;
}
.starter-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}
.starter-includes {
  grid-area: includes;
}

.starter-includes-compact {
  margin-top: 0;
  padding: 18px 20px;
}

.starter-includes-compact h3 {
  font-size: 0.98rem;
}

.starter-includes-compact ul {
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.starter-includes-compact li {
  font-size: 0.95rem;
  line-height: 1.34;
}

.starter-form-footer {
  grid-area: footer;
  max-width: 680px;
}

.starter-form-footer .privacy-note {
  margin: 0;
  color: rgba(243, 239, 227, 0.62);
  font-size: 0.95rem;
  line-height: 1.42;
  text-align: center;
}

.starter-form-footer .starter-amazon-link {
  margin-top: 12px;
  font-size: 0.98rem;
}

@media (max-height: 780px) and (min-width: 1061px) {
  .starter-section {
    padding-top: 46px;
    padding-bottom: 62px;
  }

  .starter-copy-panel h2 {
    font-size: clamp(1.95rem, 3.1vw, 3.25rem);
  }

  .starter-copy-tight {
    font-size: 1.02rem;
  }

  .starter-mockup {
    min-height: 470px;
  }

  .starter-pack-main {
    width: min(74%, 300px);
    min-height: 380px;
  }

  .starter-pack-main::before {
    width: 82px;
    height: 82px;
    margin-bottom: 18px;
  }

  .starter-doc {
    width: 142px;
    min-height: 86px;
  }

  .starter-includes-compact li {
    font-size: 0.9rem;
  }
}

@media (max-width: 1060px) {
  .starter-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "mockup"
      "form"
      "includes"
      "footer";
    gap: 22px;
  }

  .starter-copy-panel {
    max-width: 820px;
    margin: 0 auto;
    padding-top: 0;
  }

  .starter-mockup {
    min-height: 500px;
    order: initial;
    transform: none;
  }

  .starter-form,
  .starter-includes,
  .starter-form-footer {
    max-width: 820px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .starter-includes-compact ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .starter-section {
    padding: 64px 18px;
  }

  .starter-copy-panel h2 {
    font-size: clamp(1.9rem, 8.8vw, 3rem);
  }

  .starter-subtitle {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .starter-copy-tight {
    margin-top: 12px;
    font-size: 1.04rem;
  }

  .starter-mockup {
    min-height: 430px;
    margin-top: 2px;
  }

  .starter-pack-main {
    width: min(84%, 300px);
    min-height: 380px;
    padding: 28px 22px;
  }

  .starter-pack-main::before {
    width: 84px;
    height: 84px;
    margin-bottom: 20px;
  }

  .starter-doc {
    width: 132px;
    min-height: 86px;
  }

  .starter-doc span {
    font-size: 0.58rem;
  }

  .starter-doc-one {
    top: 52px;
    left: 0;
  }

  .starter-doc-two {
    top: 86px;
    right: 0;
  }

  .starter-doc-three {
    bottom: 92px;
    left: 0;
  }

  .starter-doc-four {
    bottom: 52px;
    right: 0;
  }

  .starter-form {
    padding: 22px 18px;
  }

  .starter-includes-compact {
    padding: 20px 18px;
  }

  .starter-includes-compact ul {
    grid-template-columns: 1fr;
  }

  .starter-form-footer .privacy-note {
    text-align: center;
  }

  .starter-form-footer .starter-amazon-link {
    width: 100%;
    max-width: 310px;
  }
}

@media (max-width: 520px) {
  .starter-mockup {
    min-height: 405px;
  }

  .starter-pack-main {
    width: min(88%, 280px);
    min-height: 360px;
  }

  .starter-pack-main h3 {
    font-size: 1.7rem;
  }

  .starter-doc {
    width: 118px;
  }

  .starter-doc-one,
  .starter-doc-three {
    left: -6px;
  }

  .starter-doc-two,
  .starter-doc-four {
    right: -6px;
  }
}
/* STARTER PACK MOCKUP REFINEMENT: MAIN CENTERPIECE + 7 MINI CARDS */

.starter-mockup {
  grid-area: mockup;
  min-height: 560px;
  align-self: start;
  transform: translateY(-6px);
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.starter-glow-orb {
  position: absolute;
  width: min(82%, 470px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 64%);
  filter: blur(12px);
  z-index: -1;
}

.starter-pack-main {
  position: relative;
  z-index: 3;
  width: min(76%, 340px);
  min-height: 450px;
  padding: 34px 26px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;

  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 8px;

  background:
    linear-gradient(135deg, rgba(255, 238, 190, 0.16), rgba(23, 15, 5, 0.96)),
    radial-gradient(circle at 50% 38%, rgba(212, 175, 55, 0.16), transparent 28%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.018) 0 2px,
      transparent 2px 8px
    );

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.04),
    0 0 28px rgba(212, 175, 55, 0.14),
    0 28px 72px rgba(0, 0, 0, 0.54);
}

.starter-pack-main::before {
  content: "";
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      #030303 0 38%,
      rgba(212, 175, 55, 0.78) 39% 42%,
      rgba(212, 175, 55, 0.14) 43% 64%,
      transparent 72%
    );
  box-shadow:
    0 0 26px rgba(212, 175, 55, 0.24),
    0 0 80px rgba(212, 175, 55, 0.14);
}

.starter-pack-kicker {
  margin: 0 0 12px;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.starter-pack-main h3 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.starter-pack-main p:not(.starter-pack-kicker) {
  margin: 18px 0 0;
  color: rgba(243, 239, 227, 0.8);
  font-size: 1.02rem;
  line-height: 1.5;
}

.starter-doc {
  position: absolute;
  z-index: 1;
  width: 156px;
  min-height: 96px;
  padding: 14px 14px 16px;
  display: flex;
  align-items: flex-end;

  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 6px;

  background:
    linear-gradient(135deg, rgba(255, 232, 168, 0.08), rgba(8, 7, 5, 0.88)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0 1px,
      transparent 1px 7px
    );

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.02),
    0 10px 28px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(1px);
}

.starter-doc span {
  color: rgba(243, 239, 227, 0.84);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.62rem;
  line-height: 1.32;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* 7-card layout around the centerpiece */

.starter-doc-book {
  top: 66px;
  left: 18px;
  transform: rotate(-9deg);
}

.starter-doc-missions {
  top: 104px;
  right: 18px;
  transform: rotate(7deg);
}

.starter-doc-companions {
  top: 246px;
  left: -2px;
  transform: rotate(5deg);
}

.starter-doc-doors {
  top: 278px;
  right: -4px;
  transform: rotate(-5deg);
}

.starter-doc-map {
  bottom: 110px;
  left: 24px;
  transform: rotate(-7deg);
}

.starter-doc-author {
  bottom: 120px;
  right: 24px;
  transform: rotate(6deg);
}

.starter-doc-soundtrack {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
}

/* Better visual hierarchy for longer labels */
.starter-doc-doors span,
.starter-doc-companions span,
.starter-doc-soundtrack span,
.starter-doc-author span {
  font-size: 0.58rem;
}

/* TABLET */
@media (max-width: 1060px) {
  .starter-mockup {
    min-height: 540px;
    transform: none;
  }

  .starter-pack-main {
    width: min(74%, 320px);
    min-height: 420px;
  }

  .starter-doc {
    width: 146px;
    min-height: 90px;
  }

  .starter-doc-book {
    top: 64px;
    left: 24px;
  }

  .starter-doc-missions {
    top: 92px;
    right: 24px;
  }

  .starter-doc-companions {
    top: 232px;
    left: 8px;
  }

  .starter-doc-doors {
    top: 260px;
    right: 6px;
  }

  .starter-doc-map {
    bottom: 96px;
    left: 28px;
  }

  .starter-doc-author {
    bottom: 104px;
    right: 28px;
  }

  .starter-doc-soundtrack {
    bottom: 22px;
  }
}

/* MOBILE */
@media (max-width: 760px) {
  .starter-mockup {
    min-height: 480px;
  }

  .starter-pack-main {
    width: min(84%, 300px);
    min-height: 380px;
    padding: 28px 22px;
  }

  .starter-pack-main::before {
    width: 82px;
    height: 82px;
    margin-bottom: 20px;
  }

  .starter-pack-main h3 {
    font-size: 1.7rem;
  }

  .starter-pack-main p:not(.starter-pack-kicker) {
    font-size: 0.96rem;
  }

  .starter-doc {
    width: 118px;
    min-height: 78px;
    padding: 10px 10px 12px;
  }

  .starter-doc span {
    font-size: 0.52rem;
    line-height: 1.26;
  }

  .starter-doc-book {
    top: 58px;
    left: -2px;
  }

  .starter-doc-missions {
    top: 78px;
    right: -2px;
  }

  .starter-doc-companions {
    top: 202px;
    left: -10px;
  }

  .starter-doc-doors {
    top: 220px;
    right: -10px;
  }

  .starter-doc-map {
    bottom: 82px;
    left: 0;
  }

  .starter-doc-author {
    bottom: 92px;
    right: 0;
  }

  .starter-doc-soundtrack {
    bottom: 16px;
  }

  .starter-doc-doors span,
  .starter-doc-companions span,
  .starter-doc-soundtrack span,
  .starter-doc-author span {
    font-size: 0.5rem;
  }
}

@media (max-width: 520px) {
  .starter-mockup {
    min-height: 450px;
  }

  .starter-pack-main {
    width: min(88%, 280px);
    min-height: 350px;
  }

  .starter-doc {
    width: 108px;
    min-height: 72px;
  }

  .starter-doc-book,
  .starter-doc-map {
    left: -8px;
  }

  .starter-doc-missions,
  .starter-doc-author {
    right: -8px;
  }

  .starter-doc-companions {
    left: -12px;
  }

  .starter-doc-doors {
    right: -12px;
  }
}
/* STARTER PACK MOCKUP IMAGES */

.starter-pack-main {
  padding: 0;
  overflow: hidden;
}

.starter-pack-main::before {
  display: none;
}

.starter-pack-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.starter-doc {
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}

.starter-doc-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.starter-doc span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 9px;
  z-index: 2;

  padding: 6px 7px;
  color: rgba(243, 239, 227, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);

  text-align: center;
}

.starter-doc::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 35%, rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at 50% 50%, transparent 0 52%, rgba(0, 0, 0, 0.35) 100%);
}
/* STARTER PACK MOCKUP REFINEMENT: 8 MINI CARDS ABOVE / BEHIND */

.starter-mockup {
  grid-area: mockup;
  min-height: 560px;
  align-self: start;
  transform: translateY(-6px);
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.starter-glow-orb {
  position: absolute;
  width: min(84%, 480px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 64%);
  filter: blur(12px);
  z-index: -1;
}

.starter-pack-main {
  position: relative;
  z-index: 4;
  width: min(76%, 340px);
  min-height: 450px;
  padding: 0;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 8px;

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.04),
    0 0 28px rgba(212, 175, 55, 0.14),
    0 28px 72px rgba(0, 0, 0, 0.54);
}

.starter-pack-main::before {
  display: none;
}

.starter-pack-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.starter-doc {
  position: absolute;
  z-index: 1;
  width: 152px;
  min-height: 92px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;

  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 6px;

  background:
    linear-gradient(135deg, rgba(255, 232, 168, 0.08), rgba(8, 7, 5, 0.88)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0 1px,
      transparent 1px 7px
    );

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.02),
    0 10px 28px rgba(0, 0, 0, 0.32);

  backdrop-filter: blur(1px);
}

.starter-doc-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.starter-doc::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 34%, rgba(0, 0, 0, 0.7)),
    radial-gradient(circle at 50% 50%, transparent 0 54%, rgba(0, 0, 0, 0.3) 100%);
}

.starter-doc span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 2;

  padding: 6px 7px;
  color: rgba(243, 239, 227, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(4px);

  font-family: "Cinzel", Georgia, serif;
  font-size: 0.56rem;
  line-height: 1.26;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

/* Slightly smaller text for longer labels */
.starter-doc-companions span,
.starter-doc-doors span,
.starter-doc-author span,
.starter-doc-soundtrack span,
.starter-doc-game span {
  font-size: 0.5rem;
}

/* Premium layered arrangement:
   All mini cards are above, behind, or around the upper half.
   No mini cards sit low under the main cover.
*/

.starter-doc-book {
  top: 54px;
  left: 8px;
  transform: rotate(-10deg);
  z-index: 1;
}

.starter-doc-missions {
  top: 82px;
  right: 6px;
  transform: rotate(9deg);
  z-index: 1;
}

.starter-doc-map {
  top: 8px;
  left: 92px;
  transform: rotate(-5deg);
  z-index: 0;
}

.starter-doc-author {
  top: 18px;
  right: 88px;
  transform: rotate(5deg);
  z-index: 0;
}

.starter-doc-companions {
  top: 178px;
  left: -10px;
  transform: rotate(6deg);
  z-index: 1;
}

.starter-doc-doors {
  top: 190px;
  right: -10px;
  transform: rotate(-6deg);
  z-index: 1;
}

.starter-doc-soundtrack {
  top: 252px;
  left: 34px;
  transform: rotate(-4deg);
  z-index: 0;
}

.starter-doc-game {
  top: 260px;
  right: 38px;
  transform: rotate(4deg);
  z-index: 0;
}

/* Optional visual distinction for the Game Pack card */
.starter-doc-game {
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 0 18px rgba(212, 175, 55, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.34);
}

/* TABLET */
@media (max-width: 1060px) {
  .starter-mockup {
    min-height: 530px;
    transform: none;
  }

  .starter-pack-main {
    width: min(74%, 320px);
    min-height: 420px;
  }

  .starter-doc {
    width: 142px;
    min-height: 86px;
  }

  .starter-doc-book {
    top: 52px;
    left: 12px;
  }

  .starter-doc-missions {
    top: 76px;
    right: 12px;
  }

  .starter-doc-map {
    top: 10px;
    left: 84px;
  }

  .starter-doc-author {
    top: 18px;
    right: 80px;
  }

  .starter-doc-companions {
    top: 166px;
    left: 0;
  }

  .starter-doc-doors {
    top: 178px;
    right: 0;
  }

  .starter-doc-soundtrack {
    top: 234px;
    left: 30px;
  }

  .starter-doc-game {
    top: 240px;
    right: 32px;
  }
}

/* MOBILE */
@media (max-width: 760px) {
  .starter-mockup {
    min-height: 470px;
  }

  .starter-pack-main {
    width: min(84%, 300px);
    min-height: 380px;
  }

  .starter-doc {
    width: 114px;
    min-height: 74px;
  }

  .starter-doc span {
    left: 6px;
    right: 6px;
    bottom: 6px;
    padding: 5px 5px;
    font-size: 0.46rem;
  }

  .starter-doc-companions span,
  .starter-doc-doors span,
  .starter-doc-author span,
  .starter-doc-soundtrack span,
  .starter-doc-game span {
    font-size: 0.43rem;
  }

  .starter-doc-book {
    top: 50px;
    left: -2px;
  }

  .starter-doc-missions {
    top: 68px;
    right: -2px;
  }

  .starter-doc-map {
    top: 8px;
    left: 70px;
  }

  .starter-doc-author {
    top: 16px;
    right: 66px;
  }

  .starter-doc-companions {
    top: 154px;
    left: -10px;
  }

  .starter-doc-doors {
    top: 164px;
    right: -10px;
  }

  .starter-doc-soundtrack {
    top: 212px;
    left: 14px;
  }

  .starter-doc-game {
    top: 218px;
    right: 18px;
  }
}

@media (max-width: 520px) {
  .starter-mockup {
    min-height: 440px;
  }

  .starter-pack-main {
    width: min(88%, 280px);
    min-height: 350px;
  }

  .starter-doc {
    width: 104px;
    min-height: 68px;
  }

  .starter-doc-book {
    left: -8px;
  }

  .starter-doc-missions {
    right: -8px;
  }

  .starter-doc-companions {
    left: -12px;
  }

  .starter-doc-doors {
    right: -12px;
  }

  .starter-doc-map {
    left: 60px;
  }

  .starter-doc-author {
    right: 58px;
  }

  .starter-doc-soundtrack {
    left: 8px;
  }

  .starter-doc-game {
    right: 10px;
  }
}
/* CLEANER STARTER PACK MOCKUP */

.starter-mockup.starter-mockup-clean {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform: translateY(-4px);
}

.starter-mockup-clean .starter-glow-orb {
  position: absolute;
  width: min(78%, 430px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 64%);
  filter: blur(14px);
  z-index: -1;
}

.starter-mockup-clean .starter-pack-main {
  position: relative;
  z-index: 5;
  width: min(68%, 320px);
  min-height: 0;
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 10px;

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.04),
    0 0 26px rgba(212, 175, 55, 0.16),
    0 26px 66px rgba(0, 0, 0, 0.58);
}

.starter-mockup-clean .starter-pack-main::before {
  display: none;
}

.starter-mockup-clean .starter-pack-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.starter-mockup-clean .starter-doc {
  position: absolute;
  z-index: 2;
  width: clamp(104px, 8.8vw, 132px);
  min-height: 0;
  aspect-ratio: 13 / 8;
  padding: 0;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 7px;

  background: rgba(0, 0, 0, 0.5);

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.02),
    0 10px 26px rgba(0, 0, 0, 0.38);

  opacity: 0.82;
  filter: brightness(0.86) saturate(0.95);
}

.starter-mockup-clean .starter-doc-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.starter-mockup-clean .starter-doc::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at 50% 50%, transparent 0 55%, rgba(0, 0, 0, 0.22) 100%);
}

/* Hide HTML text labels because your card images already contain text */
.starter-mockup-clean .starter-doc span {
  display: none;
}

/* Top fan layer */
.starter-mockup-clean .starter-doc-map {
  top: 22px;
  left: 112px;
  transform: rotate(-5deg);
  z-index: 1;
}

.starter-mockup-clean .starter-doc-author {
  top: 28px;
  right: 112px;
  transform: rotate(5deg);
  z-index: 1;
}

/* Upper side layer */
.starter-mockup-clean .starter-doc-book {
  top: 92px;
  left: 28px;
  transform: rotate(-9deg);
}

.starter-mockup-clean .starter-doc-missions {
  top: 94px;
  right: 28px;
  transform: rotate(8deg);
}

/* Middle side layer */
.starter-mockup-clean .starter-doc-companions {
  top: 188px;
  left: 14px;
  transform: rotate(6deg);
}

.starter-mockup-clean .starter-doc-doors {
  top: 194px;
  right: 14px;
  transform: rotate(-6deg);
}

/* Lower-middle layer, still behind the main cover */
.starter-mockup-clean .starter-doc-soundtrack {
  top: 286px;
  left: 62px;
  transform: rotate(-4deg);
  z-index: 1;
}

.starter-mockup-clean .starter-doc-game {
  top: 288px;
  right: 62px;
  transform: rotate(4deg);
  z-index: 1;
}

/* Keep Game Pack subtly special */
.starter-mockup-clean .starter-doc-game {
  border-color: rgba(242, 215, 117, 0.34);
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 0 18px rgba(212, 175, 55, 0.09),
    0 12px 28px rgba(0, 0, 0, 0.38);
}

/* Tablet */
@media (max-width: 1060px) {
  .starter-mockup.starter-mockup-clean {
    min-height: 500px;
  }

  .starter-mockup-clean .starter-pack-main {
    width: min(66%, 305px);
  }

  .starter-mockup-clean .starter-doc {
    width: 120px;
  }

  .starter-mockup-clean .starter-doc-map {
    top: 22px;
    left: 96px;
  }

  .starter-mockup-clean .starter-doc-author {
    top: 28px;
    right: 96px;
  }

  .starter-mockup-clean .starter-doc-book {
    top: 88px;
    left: 24px;
  }

  .starter-mockup-clean .starter-doc-missions {
    top: 90px;
    right: 24px;
  }

  .starter-mockup-clean .starter-doc-companions {
    top: 180px;
    left: 10px;
  }

  .starter-mockup-clean .starter-doc-doors {
    top: 184px;
    right: 10px;
  }

  .starter-mockup-clean .starter-doc-soundtrack {
    top: 270px;
    left: 54px;
  }

  .starter-mockup-clean .starter-doc-game {
    top: 272px;
    right: 54px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .starter-mockup.starter-mockup-clean {
    min-height: 440px;
  }

  .starter-mockup-clean .starter-pack-main {
    width: min(74%, 275px);
  }

  .starter-mockup-clean .starter-doc {
    width: 96px;
    opacity: 0.76;
  }

  .starter-mockup-clean .starter-doc-map {
    top: 20px;
    left: 64px;
  }

  .starter-mockup-clean .starter-doc-author {
    top: 24px;
    right: 64px;
  }

  .starter-mockup-clean .starter-doc-book {
    top: 76px;
    left: 4px;
  }

  .starter-mockup-clean .starter-doc-missions {
    top: 78px;
    right: 4px;
  }

  .starter-mockup-clean .starter-doc-companions {
    top: 150px;
    left: -6px;
  }

  .starter-mockup-clean .starter-doc-doors {
    top: 154px;
    right: -6px;
  }

  .starter-mockup-clean .starter-doc-soundtrack {
    top: 226px;
    left: 20px;
  }

  .starter-mockup-clean .starter-doc-game {
    top: 228px;
    right: 20px;
  }
}

@media (max-width: 520px) {
  .starter-mockup.starter-mockup-clean {
    min-height: 410px;
  }

  .starter-mockup-clean .starter-pack-main {
    width: min(78%, 255px);
  }

  .starter-mockup-clean .starter-doc {
    width: 86px;
  }

  .starter-mockup-clean .starter-doc-map {
    left: 48px;
  }

  .starter-mockup-clean .starter-doc-author {
    right: 48px;
  }

  .starter-mockup-clean .starter-doc-book {
    left: -8px;
  }

  .starter-mockup-clean .starter-doc-missions {
    right: -8px;
  }

  .starter-mockup-clean .starter-doc-companions {
    left: -12px;
  }

  .starter-mockup-clean .starter-doc-doors {
    right: -12px;
  }

  .starter-mockup-clean .starter-doc-soundtrack {
    left: 8px;
  }

  .starter-mockup-clean .starter-doc-game {
    right: 8px;
  }
}
/* STARTER PACK MOCKUP: MINI CARDS ABOVE THE MAIN COVER */

.starter-mockup.starter-mockup-clean {
  position: relative;
  min-height: 650px;
  display: block;
  isolation: isolate;
  transform: translateY(-8px);
}

.starter-mockup-clean .starter-glow-orb {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(82%, 460px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 64%);
  filter: blur(14px);
  z-index: -1;
}

.starter-mockup-clean .starter-pack-main {
  position: absolute;
  left: 50%;
  top: 170px;
  z-index: 5;

  width: min(68%, 320px);
  aspect-ratio: 3 / 4;
  min-height: 0;
  padding: 0;
  overflow: hidden;

  transform: translateX(-50%);

  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 10px;

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.04),
    0 0 30px rgba(212, 175, 55, 0.18),
    0 28px 72px rgba(0, 0, 0, 0.58);
}

.starter-mockup-clean .starter-doc {
  position: absolute;
  z-index: 6;
  width: clamp(108px, 8.8vw, 138px);
  aspect-ratio: 13 / 8;
  min-height: 0;
  padding: 0;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.5);

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 0 18px rgba(212, 175, 55, 0.1),
    0 12px 30px rgba(0, 0, 0, 0.42);

  opacity: 0.96;
  filter: brightness(0.98) saturate(1.05);
}

.starter-mockup-clean .starter-doc span {
  display: none;
}

/* Top crown row */
.starter-mockup-clean .starter-doc-map {
  top: 0;
  left: 50%;
  transform: translateX(-118%) rotate(-6deg);
}

.starter-mockup-clean .starter-doc-author {
  top: 0;
  left: 50%;
  transform: translateX(18%) rotate(6deg);
}

/* Upper side row */
.starter-mockup-clean .starter-doc-book {
  top: 64px;
  left: 50%;
  transform: translateX(-185%) rotate(-10deg);
}

.starter-mockup-clean .starter-doc-missions {
  top: 64px;
  left: 50%;
  transform: translateX(85%) rotate(10deg);
}

/* Middle crown row */
.starter-mockup-clean .starter-doc-companions {
  top: 124px;
  left: 50%;
  transform: translateX(-145%) rotate(-5deg);
}

.starter-mockup-clean .starter-doc-doors {
  top: 124px;
  left: 50%;
  transform: translateX(45%) rotate(5deg);
}

/* Lower crown row, slightly tucked behind main cover */
.starter-mockup-clean .starter-doc-soundtrack {
  top: 178px;
  left: 50%;
  z-index: 4;
  transform: translateX(-102%) rotate(-4deg);
}

.starter-mockup-clean .starter-doc-game {
  top: 178px;
  left: 50%;
  z-index: 4;
  transform: translateX(2%) rotate(4deg);
}

/* Keep the Game Pack a little more special */
.starter-mockup-clean .starter-doc-game {
  border-color: rgba(242, 215, 117, 0.46);
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.03),
    0 0 22px rgba(212, 175, 55, 0.14),
    0 12px 30px rgba(0, 0, 0, 0.42);
}

/* Tablet */
@media (max-width: 1060px) {
  .starter-mockup.starter-mockup-clean {
    min-height: 620px;
  }

  .starter-mockup-clean .starter-pack-main {
    top: 164px;
    width: min(66%, 305px);
  }

  .starter-mockup-clean .starter-doc {
    width: 124px;
  }

  .starter-mockup-clean .starter-doc-book {
    transform: translateX(-172%) rotate(-9deg);
  }

  .starter-mockup-clean .starter-doc-missions {
    transform: translateX(72%) rotate(9deg);
  }

  .starter-mockup-clean .starter-doc-companions {
    transform: translateX(-132%) rotate(-5deg);
  }

  .starter-mockup-clean .starter-doc-doors {
    transform: translateX(32%) rotate(5deg);
  }
}

/* Mobile */
@media (max-width: 760px) {
  .starter-mockup.starter-mockup-clean {
    min-height: 540px;
  }

  .starter-mockup-clean .starter-pack-main {
    top: 142px;
    width: min(74%, 275px);
  }

  .starter-mockup-clean .starter-doc {
    width: 92px;
    border-radius: 6px;
  }

  .starter-mockup-clean .starter-doc-map {
    top: 0;
    transform: translateX(-110%) rotate(-6deg);
  }

  .starter-mockup-clean .starter-doc-author {
    top: 0;
    transform: translateX(10%) rotate(6deg);
  }

  .starter-mockup-clean .starter-doc-book {
    top: 52px;
    transform: translateX(-165%) rotate(-9deg);
  }

  .starter-mockup-clean .starter-doc-missions {
    top: 52px;
    transform: translateX(65%) rotate(9deg);
  }

  .starter-mockup-clean .starter-doc-companions {
    top: 98px;
    transform: translateX(-122%) rotate(-5deg);
  }

  .starter-mockup-clean .starter-doc-doors {
    top: 98px;
    transform: translateX(22%) rotate(5deg);
  }

  .starter-mockup-clean .starter-doc-soundtrack {
    top: 140px;
    transform: translateX(-92%) rotate(-4deg);
  }

  .starter-mockup-clean .starter-doc-game {
    top: 140px;
    transform: translateX(-2%) rotate(4deg);
  }
}

@media (max-width: 520px) {
  .starter-mockup.starter-mockup-clean {
    min-height: 500px;
  }

  .starter-mockup-clean .starter-pack-main {
    top: 128px;
    width: min(78%, 255px);
  }

  .starter-mockup-clean .starter-doc {
    width: 82px;
  }
}
/* STARTER PACK MOCKUP: ALL MINI CARDS TOUCH THE MAIN COVER */

.starter-mockup.starter-mockup-clean {
  --pack-top: 170px;
  --pack-width: 320px;
  --pack-half: 160px;
  --mini-w: 124px;
  --mini-h: calc(var(--mini-w) * 8 / 13);
  --touch-overlap: 10px;

  position: relative;
  min-height: 660px;
  display: block;
  isolation: isolate;
  transform: translateY(-8px);
}

.starter-mockup-clean .starter-glow-orb {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(82%, 460px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 64%);
  filter: blur(14px);
  z-index: -1;
}

.starter-mockup-clean .starter-pack-main {
  position: absolute;
  left: 50%;
  top: var(--pack-top);
  z-index: 5;

  width: var(--pack-width);
  aspect-ratio: 3 / 4;
  min-height: 0;
  padding: 0;
  overflow: hidden;

  transform: translateX(-50%);

  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 10px;

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.04),
    0 0 30px rgba(212, 175, 55, 0.18),
    0 28px 72px rgba(0, 0, 0, 0.58);
}

.starter-mockup-clean .starter-pack-main::before {
  display: none;
}

.starter-mockup-clean .starter-pack-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.starter-mockup-clean .starter-doc {
  position: absolute;
  z-index: 6;
  width: var(--mini-w);
  aspect-ratio: 13 / 8;
  min-height: 0;
  padding: 0;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.5);

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 0 18px rgba(212, 175, 55, 0.1),
    0 12px 30px rgba(0, 0, 0, 0.42);

  opacity: 0.97;
  filter: brightness(0.98) saturate(1.05);
}

.starter-mockup-clean .starter-doc-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.starter-mockup-clean .starter-doc::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at 50% 50%, transparent 0 55%, rgba(0, 0, 0, 0.22) 100%);
}

/* Hide HTML labels because your card images already contain text */
.starter-mockup-clean .starter-doc span {
  display: none;
}

/* ===== TOP CARDS: bottom edge touches the top edge of the main cover ===== */

.starter-mockup-clean .starter-doc-book,
.starter-mockup-clean .starter-doc-map,
.starter-mockup-clean .starter-doc-author,
.starter-mockup-clean .starter-doc-missions {
  top: calc(var(--pack-top) - var(--mini-h) + var(--touch-overlap));
}

.starter-mockup-clean .starter-doc-book {
  left: calc(50% - (var(--mini-w) * 1.95));
  transform: rotate(-9deg);
}

.starter-mockup-clean .starter-doc-map {
  left: calc(50% - (var(--mini-w) * 0.95));
  transform: rotate(-4deg);
}

.starter-mockup-clean .starter-doc-author {
  left: calc(50% + (var(--mini-w) * 0.02));
  transform: rotate(4deg);
}

.starter-mockup-clean .starter-doc-missions {
  left: calc(50% + (var(--mini-w) * 1.02));
  transform: rotate(8deg);
}

/* ===== UPPER SIDE CARDS: one side touches the main cover ===== */

.starter-mockup-clean .starter-doc-companions {
  top: calc(var(--pack-top) + 42px);
  left: calc(50% - var(--pack-half) - var(--mini-w) + var(--touch-overlap));
  transform: rotate(4deg);
}

.starter-mockup-clean .starter-doc-doors {
  top: calc(var(--pack-top) + 42px);
  left: calc(50% + var(--pack-half) - var(--touch-overlap));
  transform: rotate(-4deg);
}

/* ===== LOWER SIDE CARDS: also touch the main cover and stay visible ===== */

.starter-mockup-clean .starter-doc-soundtrack {
  top: calc(var(--pack-top) + 150px);
  left: calc(50% - var(--pack-half) - var(--mini-w) + var(--touch-overlap));
  transform: rotate(-3deg);
  z-index: 4;
}

.starter-mockup-clean .starter-doc-game {
  top: calc(var(--pack-top) + 150px);
  left: calc(50% + var(--pack-half) - var(--touch-overlap));
  transform: rotate(3deg);
  z-index: 4;
}

/* Slight premium emphasis for Game Pack */
.starter-mockup-clean .starter-doc-game {
  border-color: rgba(242, 215, 117, 0.46);
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.03),
    0 0 22px rgba(212, 175, 55, 0.14),
    0 12px 30px rgba(0, 0, 0, 0.42);
}

/* ===== TABLET ===== */

@media (max-width: 1060px) {
  .starter-mockup.starter-mockup-clean {
    --pack-top: 164px;
    --pack-width: 305px;
    --pack-half: 152.5px;
    --mini-w: 116px;

    min-height: 630px;
    transform: none;
  }
}

/* ===== MOBILE ===== */

@media (max-width: 760px) {
  .starter-mockup.starter-mockup-clean {
    --pack-top: 142px;
    --pack-width: 275px;
    --pack-half: 137.5px;
    --mini-w: 88px;
    --touch-overlap: 8px;

    min-height: 540px;
  }
}

@media (max-width: 520px) {
  .starter-mockup.starter-mockup-clean {
    --pack-top: 128px;
    --pack-width: 255px;
    --pack-half: 127.5px;
    --mini-w: 80px;
    --touch-overlap: 7px;

    min-height: 500px;
  }
}
/* =========================================================
   FINAL STARTER PACK MOCKUP LAYOUT
   Mini cards all around the main cover
   ========================================================= */

.starter-mockup.starter-mockup-clean {
  --pack-top: 150px;
  --pack-width: 330px;
  --pack-half: 165px;
  --mini-w: 128px;
  --mini-h: calc(var(--mini-w) * 8 / 13);

  position: relative;
  min-height: 690px;
  display: block;
  isolation: isolate;
  overflow: visible;
  transform: translateY(-6px);
}

.starter-mockup-clean .starter-glow-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(82%, 470px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 64%);
  filter: blur(16px);
  z-index: -1;
}

/* MAIN COVER */
.starter-mockup-clean .starter-pack-main {
  position: absolute;
  left: 50%;
  top: var(--pack-top);
  z-index: 5;

  width: var(--pack-width);
  aspect-ratio: 3 / 4;
  min-height: 0;
  padding: 0;
  overflow: hidden;

  transform: translateX(-50%);

  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 10px;

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.04),
    0 0 30px rgba(212, 175, 55, 0.18),
    0 28px 72px rgba(0, 0, 0, 0.58);
}

.starter-mockup-clean .starter-pack-main::before {
  display: none;
}

.starter-mockup-clean .starter-pack-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

/* MINI CARDS */
.starter-mockup-clean .starter-doc {
  position: absolute;
  z-index: 6;
  width: var(--mini-w);
  aspect-ratio: 13 / 8;
  min-height: 0;
  padding: 0;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.52);

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 0 18px rgba(212, 175, 55, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.42);

  opacity: 0.98;
}

.starter-mockup-clean .starter-doc-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.starter-mockup-clean .starter-doc::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at 50% 50%, transparent 0 56%, rgba(0, 0, 0, 0.14) 100%);
}

/* Hide HTML text labels because your images already contain text */
.starter-mockup-clean .starter-doc span {
  display: none;
}

/* =========================================================
   AROUND THE MAIN COVER — like your uploaded example
   ========================================================= */

/* TOP CENTER */
.starter-mockup-clean .starter-doc-author {
  top: calc(var(--pack-top) - 82px);
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  z-index: 7;
}

/* TOP LEFT */
.starter-mockup-clean .starter-doc-map {
  top: calc(var(--pack-top) - 40px);
  left: calc(50% - var(--pack-half) - 62px);
  transform: rotate(-11deg);
}

/* TOP RIGHT */
.starter-mockup-clean .starter-doc-missions {
  top: calc(var(--pack-top) - 22px);
  left: calc(50% + var(--pack-half) - 34px);
  transform: rotate(9deg);
}

/* MIDDLE LEFT */
.starter-mockup-clean .starter-doc-book {
  top: calc(var(--pack-top) + 94px);
  left: calc(50% - var(--pack-half) - 92px);
  transform: rotate(-14deg);
}

/* MIDDLE RIGHT */
.starter-mockup-clean .starter-doc-doors {
  top: calc(var(--pack-top) + 104px);
  left: calc(50% + var(--pack-half) - 22px);
  transform: rotate(-5deg);
}

/* BOTTOM LEFT */
.starter-mockup-clean .starter-doc-companions {
  top: calc(var(--pack-top) + 288px);
  left: calc(50% - var(--pack-half) - 74px);
  transform: rotate(-10deg);
}

/* BOTTOM CENTER */
.starter-mockup-clean .starter-doc-soundtrack {
  top: calc(var(--pack-top) + 378px);
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  z-index: 7;
}

/* BOTTOM RIGHT */
.starter-mockup-clean .starter-doc-game {
  top: calc(var(--pack-top) + 300px);
  left: calc(50% + var(--pack-half) - 6px);
  transform: rotate(2deg);
  z-index: 7;
}

/* Slight premium emphasis for the Game Pack */
.starter-mockup-clean .starter-doc-game {
  border-color: rgba(242, 215, 117, 0.46);
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.03),
    0 0 22px rgba(212, 175, 55, 0.14),
    0 12px 30px rgba(0, 0, 0, 0.42);
}

/* Slight visibility boost for soundtrack */
.starter-mockup-clean .starter-doc-soundtrack {
  filter: brightness(1.04);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1060px) {
  .starter-mockup.starter-mockup-clean {
    --pack-top: 146px;
    --pack-width: 305px;
    --pack-half: 152.5px;
    --mini-w: 118px;

    min-height: 650px;
    transform: none;
  }

  .starter-mockup-clean .starter-doc-author {
    top: calc(var(--pack-top) - 76px);
  }

  .starter-mockup-clean .starter-doc-map {
    top: calc(var(--pack-top) - 34px);
    left: calc(50% - var(--pack-half) - 56px);
  }

  .starter-mockup-clean .starter-doc-missions {
    top: calc(var(--pack-top) - 18px);
    left: calc(50% + var(--pack-half) - 28px);
  }

  .starter-mockup-clean .starter-doc-book {
    top: calc(var(--pack-top) + 88px);
    left: calc(50% - var(--pack-half) - 84px);
  }

  .starter-mockup-clean .starter-doc-doors {
    top: calc(var(--pack-top) + 96px);
    left: calc(50% + var(--pack-half) - 18px);
  }

  .starter-mockup-clean .starter-doc-companions {
    top: calc(var(--pack-top) + 268px);
    left: calc(50% - var(--pack-half) - 66px);
  }

  .starter-mockup-clean .starter-doc-soundtrack {
    top: calc(var(--pack-top) + 350px);
  }

  .starter-mockup-clean .starter-doc-game {
    top: calc(var(--pack-top) + 280px);
    left: calc(50% + var(--pack-half) - 2px);
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
  .starter-mockup.starter-mockup-clean {
    --pack-top: 136px;
    --pack-width: 275px;
    --pack-half: 137.5px;
    --mini-w: 90px;

    min-height: 560px;
  }

  .starter-mockup-clean .starter-doc {
    border-radius: 6px;
  }

  .starter-mockup-clean .starter-doc-author {
    top: calc(var(--pack-top) - 62px);
  }

  .starter-mockup-clean .starter-doc-map {
    top: calc(var(--pack-top) - 26px);
    left: calc(50% - var(--pack-half) - 42px);
  }

  .starter-mockup-clean .starter-doc-missions {
    top: calc(var(--pack-top) - 12px);
    left: calc(50% + var(--pack-half) - 22px);
  }

  .starter-mockup-clean .starter-doc-book {
    top: calc(var(--pack-top) + 74px);
    left: calc(50% - var(--pack-half) - 58px);
  }

  .starter-mockup-clean .starter-doc-doors {
    top: calc(var(--pack-top) + 82px);
    left: calc(50% + var(--pack-half) - 10px);
  }

  .starter-mockup-clean .starter-doc-companions {
    top: calc(var(--pack-top) + 232px);
    left: calc(50% - var(--pack-half) - 42px);
  }

  .starter-mockup-clean .starter-doc-soundtrack {
    top: calc(var(--pack-top) + 304px);
  }

  .starter-mockup-clean .starter-doc-game {
    top: calc(var(--pack-top) + 244px);
    left: calc(50% + var(--pack-half) - 2px);
  }
}

@media (max-width: 520px) {
  .starter-mockup.starter-mockup-clean {
    --pack-top: 126px;
    --pack-width: 255px;
    --pack-half: 127.5px;
    --mini-w: 80px;

    min-height: 520px;
  }

  .starter-mockup-clean .starter-doc-author {
    top: calc(var(--pack-top) - 56px);
  }

  .starter-mockup-clean .starter-doc-map {
    left: calc(50% - var(--pack-half) - 34px);
  }

  .starter-mockup-clean .starter-doc-missions {
    left: calc(50% + var(--pack-half) - 18px);
  }

  .starter-mockup-clean .starter-doc-book {
    left: calc(50% - var(--pack-half) - 48px);
  }

  .starter-mockup-clean .starter-doc-doors {
    left: calc(50% + var(--pack-half) - 8px);
  }

  .starter-mockup-clean .starter-doc-companions {
    left: calc(50% - var(--pack-half) - 36px);
  }

  .starter-mockup-clean .starter-doc-game {
    left: calc(50% + var(--pack-half) - 2px);
  }
}
/* STARTER PACK INTERNAL VALUE LINK */

.starter-inside-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 14px;

  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.9rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;

  border-bottom: 1px solid rgba(212, 175, 55, 0.48);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.starter-inside-link span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.starter-inside-link:hover {
  color: #ffe694;
  border-color: #ffe694;
  transform: translateY(-1px);
}

.starter-inside-link:hover span {
  transform: translateY(2px);
}

/* Makes anchor scroll land nicely below sticky header */
#inside-starter-pack {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

@media (max-width: 760px) {
  .starter-inside-link {
    margin-top: 12px;
    font-size: 0.82rem;
  }
}
/* LOWER LEFT STARTER PACK MINI-CARD ARRAY */

@media (min-width: 1061px) {
  .starter-inner {
    grid-template-areas:
      "mockup intro"
      "mockup form"
      "sidegallery includes"
      "sidegallery footer";
  }
}

.starter-side-gallery {
  grid-area: sidegallery;
  position: relative;
  min-height: 340px;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.24);
  background:
    radial-gradient(circle at 45% 35%, rgba(212, 175, 55, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(12, 9, 5, 0.52), rgba(3, 3, 3, 0.82));
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.02),
    0 22px 54px rgba(0, 0, 0, 0.34);
}

.starter-side-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 226, 138, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 68%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 34%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px);
  opacity: 0.55;
}

.starter-side-gallery-kicker {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 3;
  margin: 0;

  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.starter-side-card {
  position: absolute;
  margin: 0;
  width: clamp(118px, 9.2vw, 158px);
  aspect-ratio: 13 / 8;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.5);

  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 0 18px rgba(212, 175, 55, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.4);

  opacity: 0.92;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.28s ease;
}

.starter-side-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.starter-side-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 48%, rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 50% 50%, transparent 0 58%, rgba(0, 0, 0, 0.16) 100%);
}

.starter-side-card:hover {
  opacity: 1;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.035),
    0 0 22px rgba(212, 175, 55, 0.14),
    0 18px 38px rgba(0, 0, 0, 0.48);
}

/* Card positions inside the lower-left empty area */

.starter-side-card-map {
  top: 58px;
  left: 34%;
  width: clamp(146px, 12vw, 190px);
  transform: rotate(-4deg);
  z-index: 2;
}

.starter-side-card-book {
  top: 86px;
  left: 4%;
  transform: rotate(-9deg);
  z-index: 3;
}

.starter-side-card-author {
  top: 66px;
  right: 5%;
  transform: rotate(6deg);
  z-index: 3;
}

.starter-side-card-missions {
  top: 158px;
  right: 4%;
  transform: rotate(8deg);
  z-index: 4;
}

.starter-side-card-companions {
  top: 188px;
  left: 8%;
  width: clamp(132px, 10.5vw, 174px);
  transform: rotate(-6deg);
  z-index: 4;
}

.starter-side-card-doors {
  top: 226px;
  left: 39%;
  transform: rotate(4deg);
  z-index: 5;
}

.starter-side-card-album {
  top: 260px;
  left: 2%;
  transform: rotate(3deg);
  z-index: 2;
}

.starter-side-card-game {
  top: 254px;
  right: 8%;
  transform: rotate(-5deg);
  z-index: 5;
  border-color: rgba(242, 215, 117, 0.44);
}

/* Tablet/mobile: keep usability clean */

@media (max-width: 1060px) {
  .starter-side-gallery {
    display: none;
  }
}
/* =========================================================
   REFINED LOWER-LEFT STARTER PACK ARRAY
   Larger cards, fuller composition, Game + Sounds in middle
   ========================================================= */

@media (min-width: 1061px) {
  .starter-inner {
    grid-template-areas:
      "mockup intro"
      "mockup form"
      "sidegallery includes"
      "sidegallery footer";
  }
}

.starter-side-gallery {
  grid-area: sidegallery;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background:
    radial-gradient(circle at 50% 38%, rgba(212, 175, 55, 0.12), transparent 34%),
    radial-gradient(circle at 26% 72%, rgba(212, 175, 55, 0.05), transparent 24%),
    radial-gradient(circle at 78% 24%, rgba(212, 175, 55, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.58), rgba(3, 3, 3, 0.88));
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.02),
    0 22px 54px rgba(0, 0, 0, 0.34);
}

.starter-side-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 16% 18%, rgba(255, 226, 138, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 32% 46%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 54% 20%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 71% 64%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 28%, rgba(255, 226, 138, 0.1) 0 1px, transparent 2px);
  opacity: 0.56;
}

.starter-side-gallery-kicker {
  position: absolute;
  top: 22px;
  left: 34px;
  z-index: 10;
  margin: 0;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.starter-side-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.56);
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 0 16px rgba(212, 175, 55, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.42);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    opacity 0.28s ease;
  opacity: 0.96;
}

.starter-side-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.starter-side-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 48%, rgba(0, 0, 0, 0.14)),
    radial-gradient(circle at 50% 50%, transparent 0 60%, rgba(0, 0, 0, 0.1) 100%);
}

.starter-side-card:hover {
  border-color: rgba(212, 175, 55, 0.56);
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.03),
    0 0 24px rgba(212, 175, 55, 0.14),
    0 18px 38px rgba(0, 0, 0, 0.48);
}

/* =========================================================
   LAYOUT — inspired by your reference image
   Top row: Author / Book / Doors
   Middle row: Game / Sounds
   Bottom row: Companions / Map / Missions
   ========================================================= */

/* TOP ROW */
.starter-side-card-author {
  width: 190px;
  aspect-ratio: 13 / 8;
  top: 34px;
  left: 24px;
  transform: rotate(-1deg);
  z-index: 4;
}

.starter-side-card-book {
  width: 176px;
  aspect-ratio: 13 / 8;
  top: 34px;
  left: 228px;
  transform: rotate(1deg);
  z-index: 4;
}

.starter-side-card-doors {
  width: 208px;
  aspect-ratio: 13 / 8;
  top: 34px;
  right: 22px;
  transform: rotate(1deg);
  z-index: 4;
}

/* MIDDLE ROW — bigger cards */
.starter-side-card-game {
  width: 292px;
  aspect-ratio: 13 / 8;
  top: 164px;
  left: 22px;
  transform: rotate(0deg);
  z-index: 5;
  border-color: rgba(242, 215, 117, 0.42);
}

.starter-side-card-album {
  width: 292px;
  aspect-ratio: 13 / 8;
  top: 164px;
  right: 22px;
  transform: rotate(0deg);
  z-index: 5;
}

/* BOTTOM ROW */
.starter-side-card-companions {
  width: 214px;
  aspect-ratio: 13 / 8;
  top: 374px;
  left: 26px;
  transform: rotate(0deg);
  z-index: 4;
}

.starter-side-card-map {
  width: 214px;
  aspect-ratio: 13 / 8;
  top: 374px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.starter-side-card-missions {
  width: 214px;
  aspect-ratio: 13 / 8;
  top: 374px;
  right: 26px;
  transform: rotate(0deg);
  z-index: 4;
}

/* =========================================================
   LARGE LAPTOP / SMALLER DESKTOP
   ========================================================= */

@media (max-width: 1360px) and (min-width: 1061px) {
  .starter-side-gallery {
    min-height: 520px;
  }

  .starter-side-gallery-kicker {
    top: 18px;
    left: 24px;
    font-size: 0.76rem;
  }

  .starter-side-card-author {
    width: 170px;
    top: 34px;
    left: 18px;
  }

  .starter-side-card-book {
    width: 160px;
    top: 34px;
    left: 200px;
  }

  .starter-side-card-doors {
    width: 186px;
    top: 34px;
    right: 18px;
  }

  .starter-side-card-game {
    width: 258px;
    top: 150px;
    left: 18px;
  }

  .starter-side-card-album {
    width: 258px;
    top: 150px;
    right: 18px;
  }

  .starter-side-card-companions {
    width: 188px;
    top: 342px;
    left: 18px;
  }

  .starter-side-card-map {
    width: 188px;
    top: 342px;
  }

  .starter-side-card-missions {
    width: 188px;
    top: 342px;
    right: 18px;
  }
}

/* =========================================================
   TABLET / MOBILE
   Hide the lower-left array to keep the form clean
   ========================================================= */

@media (max-width: 1060px) {
  .starter-side-gallery {
    display: none;
  }
}
/* =========================================================
   FINAL LOWER-LEFT STARTER PACK ARRAY
   All 8 cards visible, equal spacing, softer glow
   ========================================================= */

@media (min-width: 1061px) {
  .starter-inner {
    grid-template-areas:
      "mockup intro"
      "mockup form"
      "sidegallery includes"
      "sidegallery footer";
  }

  .starter-side-gallery {
    grid-area: sidegallery;
    position: relative;
    min-height: 0;
    overflow: hidden;
    padding: 76px 22px 22px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;

    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 14px;

    background:
      radial-gradient(circle at 50% 28%, rgba(212, 175, 55, 0.12), transparent 30%),
      radial-gradient(circle at 26% 72%, rgba(212, 175, 55, 0.05), transparent 24%),
      radial-gradient(circle at 78% 24%, rgba(212, 175, 55, 0.05), transparent 22%),
      linear-gradient(180deg, rgba(8, 7, 5, 0.56), rgba(3, 3, 3, 0.88));

    box-shadow:
      0 0 0 1px rgba(255, 231, 150, 0.02),
      0 18px 44px rgba(0, 0, 0, 0.28);
  }

  .starter-side-gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      radial-gradient(circle at 14% 18%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
      radial-gradient(circle at 31% 46%, rgba(255, 226, 138, 0.07) 0 1px, transparent 2px),
      radial-gradient(circle at 54% 21%, rgba(255, 226, 138, 0.07) 0 1px, transparent 2px),
      radial-gradient(circle at 72% 65%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
      radial-gradient(circle at 88% 28%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px);
    opacity: 0.5;
  }

  .starter-side-gallery-kicker {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 2;
    margin: 0;

    color: var(--color-gold-light);
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  /* Reset old absolute layout */
  .starter-side-card,
  .starter-side-card-book,
  .starter-side-card-missions,
  .starter-side-card-companions,
  .starter-side-card-doors,
  .starter-side-card-map,
  .starter-side-card-author,
  .starter-side-card-album,
  .starter-side-card-game {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    width: 100% !important;
    transform: none !important;
  }

  .starter-side-card {
    overflow: hidden;
    aspect-ratio: 13 / 8;

    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.52);

    box-shadow:
      0 0 0 1px rgba(255, 231, 150, 0.02),
      0 0 12px rgba(212, 175, 55, 0.06),
      0 10px 24px rgba(0, 0, 0, 0.28);

    opacity: 0.98;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .starter-side-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.48);
    box-shadow:
      0 0 0 1px rgba(255, 231, 150, 0.025),
      0 0 18px rgba(212, 175, 55, 0.1),
      0 14px 28px rgba(0, 0, 0, 0.34);
  }

  .starter-side-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .starter-side-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(to bottom, transparent 52%, rgba(0, 0, 0, 0.12)),
      radial-gradient(circle at 50% 50%, transparent 0 60%, rgba(0, 0, 0, 0.08) 100%);
  }

  /* ======================================================
     3-row layout
     Top row: Author / Book / Doors
     Middle row: Game / Album
     Bottom row: Companions / Map / Missions
     ====================================================== */

  .starter-side-card-author {
    grid-column: span 2;
  }

  .starter-side-card-book {
    grid-column: span 2;
  }

  .starter-side-card-doors {
    grid-column: span 2;
  }

  .starter-side-card-game {
    grid-column: span 3;
    border-color: rgba(242, 215, 117, 0.4);
  }

  .starter-side-card-album {
    grid-column: span 3;
  }

  .starter-side-card-companions {
    grid-column: span 2;
  }

  .starter-side-card-map {
    grid-column: span 2;
  }

  .starter-side-card-missions {
    grid-column: span 2;
  }
}

/* =========================================================
   Tablet / Mobile
   Keep the lower-left gallery hidden for clarity
   ========================================================= */

@media (max-width: 1060px) {
  .starter-side-gallery {
    display: none;
  }
}
/* STARTER PACK LOWER CTA */

.starter-detail-cta {
  width: fit-content;
  min-width: 280px;
  margin: 0 auto 28px;
  display: flex;
}

.starter-form-footer {
  text-align: center;
}

.starter-form-footer .privacy-note {
  margin-top: 0;
}

@media (max-width: 760px) {
  .starter-detail-cta {
    width: 100%;
    min-width: 0;
    margin-bottom: 22px;
  }
}
/* Stronger Starter Pack spacing cleanup */

.starter-inner {
  row-gap: 6px;
}

.starter-copy-panel {
  padding-bottom: 0;
  margin-bottom: -6px;
}

.starter-inside-link {
  margin-top: 8px;
  margin-bottom: 0;
}

.starter-form {
  margin-top: -8px;
}
/* MAKE UPPER STARTER PACK MOCKUP SMALLER */

.starter-mockup.starter-mockup-clean {
  transform: translateY(-8px) scale(0.86);
  transform-origin: top center;
  min-height: 590px;
}

.starter-mockup-clean .starter-glow-orb {
  width: min(72%, 400px);
}

/* Laptop / smaller desktop */
@media (max-width: 1360px) and (min-width: 1061px) {
  .starter-mockup.starter-mockup-clean {
    transform: translateY(-6px) scale(0.82);
    min-height: 560px;
  }
}

/* Tablet */
@media (max-width: 1060px) {
  .starter-mockup.starter-mockup-clean {
    transform: scale(0.86);
    transform-origin: top center;
    min-height: 540px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .starter-mockup.starter-mockup-clean {
    transform: scale(0.88);
    transform-origin: top center;
    min-height: 470px;
  }
}

@media (max-width: 520px) {
  .starter-mockup.starter-mockup-clean {
    transform: scale(0.86);
    min-height: 440px;
  }
}
/* PARENT-FRIENDLY YOUNG READERS SECTION */

.young-readers-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 118px) 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.09), transparent 30%),
    radial-gradient(circle at 18% 42%, rgba(255, 214, 128, 0.055), transparent 28%),
    radial-gradient(circle at 84% 64%, rgba(212, 175, 55, 0.055), transparent 30%),
    linear-gradient(180deg, #030303 0%, #080604 52%, #030303 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.young-readers-section::before {
  content: "";
  position: absolute;
  top: 92px;
  left: 48%;
  width: clamp(240px, 30vw, 430px);
  height: clamp(240px, 30vw, 430px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(0, 0, 0, 0.95) 0 30%,
      rgba(212, 175, 55, 0.13) 31%,
      rgba(212, 175, 55, 0.035) 45%,
      transparent 68%
    );
  opacity: 0.34;
  pointer-events: none;
}

.young-readers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 226, 138, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 26% 76%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 26%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 22%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 74%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px);
  opacity: 0.46;
}

.young-readers-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(212, 175, 55, 0.045),
      transparent 18%,
      transparent 82%,
      rgba(212, 175, 55, 0.04)
    ),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.055), transparent 36%);
}

.young-readers-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max-width);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 5vw, 74px);
}

.young-readers-image-panel {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.young-readers-image-glow {
  position: absolute;
  width: min(82%, 460px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 64%);
  filter: blur(14px);
  z-index: -1;
}

.young-readers-image-frame {
  position: relative;
  width: min(100%, 460px);
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.12), transparent 34%),
    #050505;
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 0 30px rgba(212, 175, 55, 0.14),
    0 28px 72px rgba(0, 0, 0, 0.54);
}

.young-readers-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent 46%, rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(0, 0, 0, 0.32) 100%);
}

.young-readers-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.young-readers-content h2 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.25rem, 4.1vw, 4.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.07);
}

.young-readers-copy {
  margin-top: 24px;
}

.young-readers-copy p {
  margin: 0 0 16px;
  color: rgba(243, 239, 227, 0.8);
  font-size: 1.1rem;
  line-height: 1.58;
}

.young-readers-copy strong {
  color: rgba(243, 239, 227, 0.94);
  font-weight: 600;
}

.young-readers-age {
  margin: 22px 0 0;
  padding: 14px 18px;
  color: var(--color-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);

  font-family: "Cinzel", Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.young-readers-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.young-reader-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 20px;

  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.075), transparent 36%),
    linear-gradient(180deg, rgba(14, 10, 5, 0.78), rgba(3, 3, 3, 0.9));
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.02),
    0 18px 40px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.young-reader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.1),
    0 22px 48px rgba(0, 0, 0, 0.38);
}

.young-reader-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.18), rgba(0, 0, 0, 0.28));
  box-shadow:
    inset 0 0 14px rgba(255, 231, 150, 0.04),
    0 0 18px rgba(212, 175, 55, 0.1);
}

.young-reader-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--color-gold-light);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(212, 175, 55, 0.22));
}

.young-reader-card h3 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.young-reader-card p {
  margin: 12px 0 0;
  color: rgba(243, 239, 227, 0.76);
  font-size: 1rem;
  line-height: 1.46;
}

.young-readers-audience {
  margin: 28px 0 0;
  color: rgba(243, 239, 227, 0.76);
  font-size: 1.08rem;
  line-height: 1.52;
}

.young-readers-closing {
  margin: 24px 0 0;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.16rem, 2vw, 1.62rem);
  line-height: 1.36;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.07);
}

/* RESPONSIVE */

@media (max-width: 1060px) {
  .young-readers-inner {
    grid-template-columns: 1fr;
  }

  .young-readers-image-panel {
    min-height: auto;
    order: 2;
  }

  .young-readers-content {
    order: 1;
    max-width: 840px;
    margin: 0 auto;
  }

  .young-readers-image-frame {
    width: min(100%, 720px);
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .young-readers-section {
    padding: 72px 18px;
  }

  .young-readers-content h2 {
    font-size: clamp(2rem, 9.5vw, 3.2rem);
  }

  .young-readers-copy {
    margin-top: 22px;
  }

  .young-readers-copy p {
    font-size: 1.04rem;
  }

  .young-readers-age {
    border-radius: 16px;
    font-size: 0.78rem;
  }

  .young-readers-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .young-readers-image-frame {
    aspect-ratio: 4 / 5;
  }

  .young-readers-audience {
    font-size: 1.02rem;
  }

  .young-readers-closing {
    font-size: clamp(1.12rem, 5.5vw, 1.55rem);
  }
}
/* =========================================================
   BOOK ONE SECTION REFINEMENT
   Match Starter Pack sizing and keep section visible sooner
   ========================================================= */

.book-one-section {
  padding: clamp(58px, 6vw, 92px) 36px;
}

.book-one-inner {
  align-items: center;
  gap: clamp(34px, 4.5vw, 64px);
}

/* Make Book One title same visual scale as Starter Pack */
.book-one-content h2 {
  font-size: clamp(2.05rem, 3.45vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0.035em;
}

/* Tighten subtitle */
.book-one-subtitle {
  margin-top: 16px;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.42;
}

/* Make paragraph copy closer to Starter Pack text size */
.book-one-copy {
  margin-top: 18px;
}

.book-one-copy p {
  margin-bottom: 11px;
  font-size: 1.06rem;
  line-height: 1.5;
}

/* Keep the highlight elegant but compact */
.book-one-highlight {
  margin-top: 14px !important;
  font-size: 1rem !important;
  line-height: 1.35 !important;
}

/* Compact format badges */
.book-one-formats {
  margin-top: 20px;
  gap: 8px;
}

.format-badge {
  min-height: 32px;
  padding: 6px 11px;
  font-size: 0.68rem;
}

/* Bring CTAs higher */
.book-one-actions {
  margin-top: 22px;
}

.book-one-note {
  margin-top: 14px;
  font-size: 0.95rem;
}

.book-one-urgency {
  margin-top: 16px;
  font-size: 0.98rem;
}

/* Make the book mockup less vertically dominant */
.book-one-media {
  min-height: 500px;
}

.book-one-mockup {
  width: min(100%, 310px);
}

.book-one-badge {
  top: 34px;
}

/* Laptop height optimization */
@media (max-height: 780px) and (min-width: 1061px) {
  .book-one-section {
    padding-top: 46px;
    padding-bottom: 58px;
  }

  .book-one-content h2 {
    font-size: clamp(1.95rem, 3.1vw, 3.25rem);
  }

  .book-one-subtitle {
    margin-top: 13px;
  }

  .book-one-copy {
    margin-top: 15px;
  }

  .book-one-copy p {
    margin-bottom: 9px;
    font-size: 1.01rem;
    line-height: 1.44;
  }

  .book-one-formats {
    margin-top: 16px;
  }

  .book-one-actions {
    margin-top: 18px;
  }

  .book-one-media {
    min-height: 440px;
  }

  .book-one-mockup {
    width: min(100%, 280px);
  }

  .book-one-badge {
    top: 24px;
  }
}

/* Tablet */
@media (max-width: 1060px) {
  .book-one-section {
    padding: 68px 24px;
  }

  .book-one-inner {
    gap: 32px;
  }

  .book-one-media {
    min-height: 460px;
  }

  .book-one-mockup {
    width: min(100%, 290px);
  }
}

/* Mobile */
@media (max-width: 760px) {
  .book-one-section {
    padding: 64px 18px;
  }

  .book-one-media {
    min-height: 410px;
  }

  .book-one-mockup {
    width: min(100%, 255px);
  }

  .book-one-content h2 {
    font-size: clamp(1.9rem, 8.8vw, 3rem);
  }

  .book-one-subtitle {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .book-one-copy p {
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .book-one-actions {
    margin-top: 20px;
  }
}
/* MOVE TRAILER MODAL SLIGHTLY UP */

.trailer-modal.is-open {
  align-items: start;
  padding-top: max(18px, 3vh);
}

.modal-dialog {
  transform: translateY(-18px);
}

/* Keep trailer controls visible on shorter screens */
@media (max-height: 760px) {
  .trailer-modal.is-open {
    padding-top: 10px;
  }

  .modal-dialog {
    transform: translateY(-24px);
  }

  .modal-dialog h2 {
    margin-bottom: 12px;
    font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  }

  .video-shell {
    max-height: calc(100vh - 150px);
  }
}
/* HERO SAGA TITLE ABOVE TRAILER */

.hero-media-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-saga-title {
  width: min(95%, 608px);
  margin: 0 auto 14px;

  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.055em;
  text-align: center;
  text-transform: uppercase;

  text-shadow:
    0 0 10px rgba(212, 175, 55, 0.22),
    0 0 24px rgba(212, 175, 55, 0.14),
    0 2px 0 rgba(0, 0, 0, 0.65);
}

.hero-saga-title span {
  display: block;
  margin-top: 4px;
  color: var(--color-gold-light);
  font-size: 0.58em;
  letter-spacing: 0.1em;
}

/* Move the book mockup down so it overlaps the trailer, not the title */
.book-mockup {
  top: clamp(78px, 7vw, 104px);
}

/* Keep laptop height comfortable */
@media (max-height: 760px) and (min-width: 981px) {
  .hero-saga-title {
    margin-bottom: 10px;
    font-size: clamp(1.2rem, 2vw, 2rem);
  }

  .book-mockup {
    top: clamp(62px, 6vw, 84px);
  }
}

/* Mobile */
@media (max-width: 760px) {
  .hero-saga-title {
    width: 100%;
    font-size: clamp(1.35rem, 7vw, 2.1rem);
    margin-bottom: 14px;
  }

  .book-mockup {
    top: auto;
  }
}
/* HERO TITLE IMAGE ABOVE TRAILER */

.hero-saga-title-image-wrap {
  width: min(92%, 560px);
  margin: 0 auto 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-saga-title-image {
  width: 100%;
  max-height: 96px;
  display: block;
  object-fit: contain;

  filter:
    drop-shadow(0 0 10px rgba(212, 175, 55, 0.24))
    drop-shadow(0 0 26px rgba(212, 175, 55, 0.12));
}

/* Hide old text title style if still present */
.hero-saga-title {
  display: none;
}

@media (max-height: 760px) and (min-width: 981px) {
  .hero-saga-title-image-wrap {
    width: min(88%, 500px);
    margin-bottom: 10px;
  }

  .hero-saga-title-image {
    max-height: 76px;
  }
}

@media (max-width: 760px) {
  .hero-saga-title-image-wrap {
    width: min(100%, 420px);
    margin-bottom: 14px;
  }

  .hero-saga-title-image {
    max-height: 82px;
  }
}
/* HERO TITLE IMAGE FULL WIDTH ABOVE TRAILER */

.hero-saga-title-image-wrap {
  width: min(95%, 608px);
  max-width: 608px;
  margin: 0 auto 14px;
}

.hero-saga-title-image {
  width: 100%;
  max-height: none;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Match the title width to trailer width */
.trailer-card,
.media-caption,
.hero-saga-title-image-wrap {
  width: min(95%, 608px);
}

/* Laptop height polish */
@media (max-height: 760px) and (min-width: 981px) {
  .hero-saga-title-image-wrap {
    width: min(92%, 560px);
    margin-bottom: 10px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .hero-saga-title-image-wrap {
    width: 100%;
    max-width: 100%;
  }

  .trailer-card,
  .media-caption,
  .hero-saga-title-image-wrap {
    width: 100%;
  }
}
/* HERO TITLE IMAGE: WIDER ONLY, HEIGHT CONTROLLED */

.hero-saga-title-image-wrap {
  width: min(100%, 608px);
  max-width: 608px;
  margin: 0 auto 14px;
}

.hero-saga-title-image {
  width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  object-position: center;
}
/* =========================================================
   SEVEN MISSIONS FINAL CARD + CLOSING POLISH
   ========================================================= */

/* Desktop: center Mission VII and make it feel important */
@media (min-width: 1101px) {
  .mission-card-featured {
    grid-column: 1 / -1;
    width: min(100%, 1040px);
    margin: 10px auto 0;

    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  }

  .mission-card-featured .mission-image-wrap {
    min-height: 340px;
  }

  .mission-card-featured .mission-content {
    padding: 34px 34px 36px;
  }
}

/* Make the closing line smaller so the button is visible sooner */
.missions-closing {
  margin-top: 42px;
}

.missions-closing p {
  max-width: 880px;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.32;
}

.missions-closing .btn {
  margin-top: 0;
}

/* Laptop-height optimization */
@media (max-height: 780px) and (min-width: 1101px) {
  .mission-card-featured {
    width: min(100%, 980px);
  }

  .mission-card-featured .mission-image-wrap {
    min-height: 300px;
  }

  .mission-card-featured .mission-content {
    padding: 28px 30px;
  }

  .missions-closing {
    margin-top: 32px;
  }

  .missions-closing p {
    font-size: clamp(1.05rem, 1.65vw, 1.42rem);
    margin-bottom: 18px;
  }
}

/* Tablet and mobile: keep the existing stacked/card behavior */
@media (max-width: 1100px) {
  .mission-card-featured {
    width: 100%;
    margin: 0;
  }

  .missions-closing p {
    font-size: clamp(1.15rem, 5.5vw, 1.6rem);
  }
}
/* =========================================================
   FIVE COMPANIONS SECTION: MAKE LOWER 3 CARDS MORE COMPACT
   ========================================================= */

/* Desktop only: reduce image height for the 3 smaller companion cards */
@media (min-width: 1101px) {
  .companions-grid .companion-card:not(.companion-card-featured) .companion-image-wrap {
    aspect-ratio: 4 / 3;
    max-height: 260px;
  }

  .companions-grid .companion-card:not(.companion-card-featured) .companion-image {
    object-fit: cover;
    object-position: center top;
  }

  .companions-grid .companion-card:not(.companion-card-featured) .companion-content {
    padding: 20px 20px 22px;
  }

  .companions-grid .companion-card:not(.companion-card-featured) .companion-content p:not(.companion-name) {
    font-size: 1rem;
    line-height: 1.42;
    margin: 12px 0 16px;
  }
}

/* Laptop height optimization */
@media (max-height: 780px) and (min-width: 1101px) {
  .companions-grid .companion-card:not(.companion-card-featured) .companion-image-wrap {
    max-height: 220px;
  }

  .companions-grid .companion-card:not(.companion-card-featured) .companion-content {
    padding: 18px 18px 20px;
  }
}

/* Tablet: also reduce the portrait height slightly */
@media (max-width: 1100px) and (min-width: 761px) {
  .companion-image-wrap,
  .companion-card-featured .companion-image-wrap {
    aspect-ratio: 4 / 3;
    max-height: 320px;
  }

  .companion-image {
    object-fit: cover;
    object-position: center top;
  }
}
/* =========================================================
   DOORS SECTION COMPACT HEADER POLISH
   Make title + text + banner visible sooner
   ========================================================= */

.doors-section {
  padding-top: clamp(48px, 5.4vw, 78px);
}

.doors-heading {
  margin-bottom: 28px;
}

.doors-heading .section-kicker {
  margin-bottom: 12px;
  padding: 7px 14px;
  font-size: 0.72rem;
}

.doors-heading h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
  line-height: 0.98;
}

.doors-heading h2 span {
  font-size: 0.44em;
}

.doors-heading .section-lead {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.42;
}

.doors-intro {
  max-width: 900px;
  margin-top: 14px;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.45;
}

.doors-banner {
  max-width: 980px;
  margin: 30px auto 36px;
  aspect-ratio: 16 / 7.2;
}

/* Laptop height optimization */
@media (max-height: 780px) and (min-width: 981px) {
  .doors-section {
    padding-top: 36px;
  }

  .doors-heading {
    margin-bottom: 22px;
  }

  .doors-heading h2 {
    font-size: clamp(2.1rem, 3.55vw, 3.75rem);
  }

  .doors-heading .section-lead {
    margin-top: 14px;
    font-size: 1.05rem;
    line-height: 1.36;
  }

  .doors-intro {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.36;
  }

  .doors-banner {
    max-width: 920px;
    margin-top: 24px;
    margin-bottom: 30px;
    aspect-ratio: 16 / 6.8;
  }
}

/* Mobile keeps readability */
@media (max-width: 760px) {
  .doors-section {
    padding-top: 64px;
  }

  .doors-heading h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
    line-height: 1.02;
  }

  .doors-heading .section-lead,
  .doors-intro {
    font-size: 1.05rem;
    line-height: 1.48;
  }

  .doors-banner {
    margin: 28px auto 32px;
    aspect-ratio: 16 / 9;
  }
}
/* =========================================================
   YOUNG READERS SECTION REORGANIZED
   Upper: image + text
   Lower: cards + closing lines
   ========================================================= */

.young-readers-inner {
  display: block;
}

.young-readers-top {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(38px, 5vw, 74px);
}

.young-readers-image-panel {
  min-height: auto;
}

.young-readers-image-frame {
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
}

.young-readers-content h2 {
  font-size: clamp(2.05rem, 3.45vw, 3.75rem);
  line-height: 1.03;
}

.young-readers-copy {
  margin-top: 20px;
}

.young-readers-copy p {
  margin-bottom: 14px;
  font-size: 1.06rem;
  line-height: 1.52;
}

.young-readers-age {
  margin-top: 20px;
}

.young-readers-bottom {
  margin-top: clamp(44px, 5vw, 68px);
  text-align: center;
}

.young-readers-card-grid {
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.young-reader-card {
  text-align: left;
}

.young-readers-audience {
  max-width: 920px;
  margin: 34px auto 0;
  text-align: center;
}

.young-readers-closing {
  max-width: 960px;
  margin: 24px auto 0;
  text-align: center;
}

/* Laptop height polish */
@media (max-height: 780px) and (min-width: 1061px) {
  .young-readers-section {
    padding-top: 56px;
    padding-bottom: 70px;
  }

  .young-readers-content h2 {
    font-size: clamp(1.95rem, 3.1vw, 3.25rem);
  }

  .young-readers-copy p {
    font-size: 1.01rem;
    line-height: 1.46;
    margin-bottom: 11px;
  }

  .young-readers-image-frame {
    width: min(100%, 460px);
  }

  .young-readers-bottom {
    margin-top: 42px;
  }
}

/* Tablet */
@media (max-width: 1060px) {
  .young-readers-top {
    grid-template-columns: 1fr;
  }

  .young-readers-content {
    order: 1;
  }

  .young-readers-image-panel {
    order: 2;
  }

  .young-readers-image-frame {
    width: min(100%, 720px);
    aspect-ratio: 16 / 10;
  }

  .young-readers-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 760px) {
  .young-readers-top {
    gap: 30px;
  }

  .young-readers-content h2 {
    font-size: clamp(1.9rem, 8.8vw, 3rem);
  }

  .young-readers-image-frame {
    aspect-ratio: 4 / 5;
  }

  .young-readers-bottom {
    margin-top: 38px;
  }

  .young-readers-card-grid {
    grid-template-columns: 1fr;
  }

  .young-readers-audience,
  .young-readers-closing {
    text-align: left;
  }
}
/* =========================================================
   REVIEW INVITATION SECTION
   ========================================================= */

.review-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 8vw, 118px) 24px 96px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(212, 175, 55, 0.04), transparent 26%),
    radial-gradient(circle at 84% 32%, rgba(255, 214, 128, 0.04), transparent 24%),
    linear-gradient(180deg, #020202 0%, #060403 48%, #020202 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}

.review-section::before {
  content: "";
  position: absolute;
  top: 92px;
  left: 50%;
  width: clamp(220px, 28vw, 400px);
  height: clamp(220px, 28vw, 400px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(0, 0, 0, 0.96) 0 30%,
      rgba(212, 175, 55, 0.12) 31%,
      rgba(212, 175, 55, 0.03) 48%,
      transparent 70%
    );
  opacity: 0.34;
  pointer-events: none;
}

.review-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 26% 76%, rgba(255, 226, 138, 0.07) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 24%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 18%, rgba(255, 226, 138, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 66%, rgba(255, 226, 138, 0.09) 0 1px, transparent 2px);
  opacity: 0.44;
}

.review-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(212, 175, 55, 0.035),
      transparent 16%,
      transparent 84%,
      rgba(212, 175, 55, 0.035)
    );
}

.review-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.review-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.16), rgba(0, 0, 0, 0.28));
  box-shadow:
    inset 0 0 14px rgba(255, 231, 150, 0.04),
    0 0 18px rgba(212, 175, 55, 0.1);
}

.review-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--color-gold-light);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(212, 175, 55, 0.2));
}

.review-section h2 {
  margin: 0;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.05rem, 3.6vw, 4rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.12),
    0 0 42px rgba(212, 175, 55, 0.07);
}

.review-copy {
  max-width: 780px;
  margin: 26px auto 0;
}

.review-copy p {
  margin: 0 0 16px;
  color: rgba(243, 239, 227, 0.8);
  font-size: 1.08rem;
  line-height: 1.58;
}

.review-visual {
  position: relative;
  width: fit-content;
  margin: 34px auto 0;
  padding: 14px;
}

.review-visual-glow {
  position: absolute;
  inset: 10% 14%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 64%);
  filter: blur(14px);
  z-index: -1;
}

.review-cover-frame {
  position: relative;
  margin: 0;
  width: min(100%, 240px);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.08), transparent 34%),
    #050505;
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.025),
    0 0 28px rgba(212, 175, 55, 0.14),
    0 24px 56px rgba(0, 0, 0, 0.48);
}

.review-cover-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.review-star {
  position: absolute;
  color: var(--color-gold-light);
  font-size: 1.15rem;
  text-shadow:
    0 0 10px rgba(212, 175, 55, 0.3),
    0 0 22px rgba(212, 175, 55, 0.16);
  opacity: 0.92;
}

.review-star-1 {
  top: 10px;
  left: 10px;
}

.review-star-2 {
  top: 26px;
  right: 8px;
  font-size: 1rem;
}

.review-star-3 {
  top: 50%;
  left: -8px;
}

.review-star-4 {
  bottom: 26px;
  right: -4px;
}

.review-star-5 {
  bottom: 8px;
  left: 22px;
  font-size: 0.95rem;
}

.review-actions {
  margin-top: 34px;
}

.review-cta {
  width: fit-content;
  min-width: 320px;
  margin: 0 auto;
  display: inline-flex;
  justify-content: center;
}

.review-thanks {
  margin: 18px 0 0;
  color: rgba(243, 239, 227, 0.74);
  font-size: 0.98rem;
  line-height: 1.45;
}

.review-closing-line {
  margin: 42px auto 0;
  max-width: 760px;
  color: var(--color-gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.18rem, 2.1vw, 1.75rem);
  line-height: 1.36;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(212, 175, 55, 0.12),
    0 0 36px rgba(212, 175, 55, 0.06);
}

/* Tablet */
@media (max-width: 1060px) {
  .review-section {
    padding: 78px 24px 88px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .review-section {
    padding: 70px 18px 82px;
  }

  .review-section h2 {
    font-size: clamp(1.9rem, 8.8vw, 3rem);
  }

  .review-copy p {
    font-size: 1.03rem;
    line-height: 1.52;
  }

  .review-cover-frame {
    width: min(100%, 210px);
  }

  .review-cta {
    width: 100%;
    min-width: 0;
  }

  .review-closing-line {
    font-size: clamp(1.08rem, 5.5vw, 1.45rem);
  }
}
/* =========================================================
   REVIEW SECTION COMPACT + CENTERED IMAGE
   ========================================================= */

.review-section {
  padding: clamp(54px, 5.4vw, 82px) 24px 72px;
}

.review-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.review-icon svg {
  width: 23px;
  height: 23px;
}

.review-section .section-kicker {
  margin-bottom: 14px;
  padding: 7px 14px;
  font-size: 0.72rem;
}

.review-section h2 {
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1.02;
}

.review-copy {
  max-width: 820px;
  margin-top: 22px;
}

.review-copy p {
  margin-bottom: 12px;
  font-size: 1.03rem;
  line-height: 1.5;
}

/* Center the image and keep it visible under the text */
.review-visual {
  width: 100%;
  margin: 26px auto 0;
  padding: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.review-cover-frame {
  width: min(100%, 380px);
  aspect-ratio: 16 / 9;
  border-radius: 14px;
}

.review-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keep stars close to the centered image */
.review-star-1 {
  top: -10px;
  left: calc(50% - 220px);
}

.review-star-2 {
  top: 12px;
  right: calc(50% - 225px);
}

.review-star-3 {
  top: 48%;
  left: calc(50% - 245px);
}

.review-star-4 {
  bottom: 8px;
  right: calc(50% - 245px);
}

.review-star-5 {
  bottom: -8px;
  left: calc(50% - 205px);
}

.review-actions {
  margin-top: 28px;
}

.review-thanks {
  margin-top: 14px;
}

.review-closing-line {
  margin-top: 32px;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
}

/* Laptop height polish */
@media (max-height: 780px) and (min-width: 981px) {
  .review-section {
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .review-section h2 {
    font-size: clamp(1.9rem, 2.8vw, 3rem);
  }

  .review-copy {
    margin-top: 18px;
  }

  .review-copy p {
    margin-bottom: 9px;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .review-visual {
    margin-top: 20px;
  }

  .review-cover-frame {
    width: min(100%, 320px);
  }

  .review-actions {
    margin-top: 22px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .review-section {
    padding: 62px 18px 70px;
  }

  .review-section h2 {
    font-size: clamp(1.85rem, 8.4vw, 2.8rem);
  }

  .review-copy p {
    font-size: 1rem;
  }

  .review-cover-frame {
    width: min(100%, 320px);
  }

  .review-star {
    display: none;
  }
}
/* =========================================================
   FINAL HEADER NAVIGATION
   ========================================================= */

:root {
  --header-height: 82px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  min-height: var(--header-height);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  background:
    radial-gradient(circle at 8% 50%, rgba(212, 175, 55, 0.08), transparent 28%),
    rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 0 1px rgba(255, 231, 150, 0.02),
    0 16px 42px rgba(0, 0, 0, 0.36);
}

.header-inner {
  width: min(100% - 48px, var(--page-max-width, 1500px));
  min-height: var(--header-height);
  margin: 0 auto;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.site-logo {
  color: var(--color-gold, #d4af37);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;

  text-shadow:
    0 0 12px rgba(212, 175, 55, 0.18),
    0 0 30px rgba(212, 175, 55, 0.08);

  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

.site-logo:hover {
  color: var(--color-gold-light, #f5d76e);
  text-shadow:
    0 0 14px rgba(212, 175, 55, 0.24),
    0 0 38px rgba(212, 175, 55, 0.14);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a {
  position: relative;
  color: rgba(243, 239, 227, 0.9);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.78rem, 0.95vw, 0.98rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;

  transition:
    color 0.25s ease,
    transform 0.25s ease,
    text-shadow 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 1px;
  transform: translateX(-50%);
  background: var(--color-gold-light, #f5d76e);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  transition: width 0.25s ease;
}

.site-nav a:hover {
  color: var(--color-gold-light, #f5d76e);
  transform: translateY(-1px);
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.16);
}

.site-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 12px 22px;

  color: var(--color-gold-light, #f5d76e);
  border: 1px solid rgba(212, 175, 55, 0.68);
  background: rgba(0, 0, 0, 0.24);

  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;

  box-shadow:
    inset 0 0 18px rgba(212, 175, 55, 0.04),
    0 0 18px rgba(212, 175, 55, 0.08);

  transition:
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.header-cta:hover {
  color: #050505;
  background: linear-gradient(180deg, #ffe88a, #d4af37);
  box-shadow:
    0 0 22px rgba(212, 175, 55, 0.2),
    0 12px 30px rgba(0, 0, 0, 0.32);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

/* Compact laptop header */
@media (max-width: 1220px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    width: min(100% - 34px, var(--page-max-width, 1500px));
    gap: 22px;
  }

  .site-logo {
    font-size: clamp(1.75rem, 2.6vw, 2.65rem);
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .header-cta {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.78rem;
  }
}

/* Mobile navigation */
@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-logo {
    font-size: clamp(1.75rem, 7vw, 2.55rem);
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;

    width: 46px;
    height: 46px;
    padding: 0;

    display: grid;
    place-items: center;

    border: 1px solid rgba(212, 175, 55, 0.48);
    background: rgba(0, 0, 0, 0.36);
    cursor: pointer;
  }

  .nav-toggle span {
    width: 22px;
    height: 1px;
    display: block;
    background: var(--color-gold-light, #f5d76e);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.22);
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .nav-toggle span + span {
    margin-top: -12px;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    z-index: 1001;

    display: grid;
    justify-content: stretch;
    gap: 0;

    padding: 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    background:
      radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 32%),
      rgba(0, 0, 0, 0.96);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.52);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.13);
    font-size: 0.92rem;
    text-align: center;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a[href="#starter-pack"],
  .site-nav a[href="#read"] {
    color: var(--color-gold-light, #f5d76e);
  }

  .header-cta {
    position: fixed;
    left: 18px;
    right: 18px;
    top: calc(var(--header-height) + 328px);
    z-index: 1001;

    min-height: 50px;
    display: flex;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .header-cta.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: min(100% - 28px, var(--page-max-width, 1500px));
  }

  .site-logo {
    letter-spacing: 0.075em;
  }
}
/* EMAIL FORM RESULT MESSAGE */

.form-result {
  min-height: 24px;
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.45;
  text-align: center;
}

.form-result.is-success {
  padding: 16px;
  color: var(--color-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: rgba(212, 175, 55, 0.08);
}

.form-result.is-error {
  color: #ffb3b3;
}

#email.is-invalid {
  border-color: rgba(255, 116, 116, 0.75);
  box-shadow: 0 0 18px rgba(255, 80, 80, 0.1);
}
.form-privacy-note {
  margin: 1rem 0 0;
  color: rgba(241, 220, 171, 0.86);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.form-result {
  margin-top: 0.9rem;
  min-height: 1.5rem;
  text-align: center;
}

.form-result.is-info {
  color: rgba(241, 220, 171, 0.92);
}

.form-result.is-success {
  color: #f3d996;
  text-shadow: 0 0 12px rgba(230, 184, 84, 0.2);
}

.form-result.is-error {
  color: #f1b3a7;
}

.starter-form.is-submitting .starter-submit {
  opacity: 0.82;
  cursor: wait;
}

.starter-form.is-success {
  box-shadow:
    0 0 0 1px rgba(214, 174, 84, 0.32),
    0 0 24px rgba(214, 174, 84, 0.12);
}

.starter-form.is-success .starter-submit {
  box-shadow: 0 0 18px rgba(214, 174, 84, 0.2);
}

body.starter-pack-modal-open {
  overflow: hidden;
}

.starter-pack-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.starter-pack-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.starter-pack-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(218, 170, 76, 0.12), transparent 35%),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.starter-pack-dialog {
  position: relative;
  width: min(92vw, 42rem);
  margin: min(8vh, 4rem) auto;
  padding: 2.2rem 1.5rem 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(215, 176, 91, 0.7);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top, rgba(224, 181, 79, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(14, 10, 6, 0.98), rgba(4, 4, 4, 0.98));
  box-shadow:
    0 0 0 1px rgba(215, 176, 91, 0.18) inset,
    0 0 30px rgba(215, 176, 91, 0.1),
    0 1.5rem 4rem rgba(0, 0, 0, 0.5);
  color: #f8f0e2;
  outline: none;
}

.starter-pack-dialog::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(215, 176, 91, 0.24);
  border-radius: 1rem;
  pointer-events: none;
}

.starter-pack-dialog-glow {
  position: absolute;
  left: 50%;
  bottom: -9rem;
  width: 20rem;
  height: 20rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 188, 92, 0.24), transparent 66%);
  filter: blur(18px);
  pointer-events: none;
}

.starter-pack-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.starter-pack-particles span {
  position: absolute;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 236, 189, 0.95), rgba(231, 188, 92, 0.08));
  box-shadow: 0 0 12px rgba(255, 219, 134, 0.52);
  opacity: 0.72;
  animation: starterPackFloat 10s linear infinite, starterPackPulse 3s ease-in-out infinite;
}

.starter-pack-particles span:nth-child(1)  { left: 10%; top: 78%; animation-delay: 0s;   animation-duration: 11s; }
.starter-pack-particles span:nth-child(2)  { left: 19%; top: 18%; animation-delay: 1.2s; animation-duration: 9s; }
.starter-pack-particles span:nth-child(3)  { left: 27%; top: 70%; animation-delay: 0.5s; animation-duration: 12s; }
.starter-pack-particles span:nth-child(4)  { left: 35%; top: 24%; animation-delay: 1.6s; animation-duration: 8.8s; }
.starter-pack-particles span:nth-child(5)  { left: 46%; top: 82%; animation-delay: 0.2s; animation-duration: 12.5s; }
.starter-pack-particles span:nth-child(6)  { left: 55%; top: 26%; animation-delay: 1.1s; animation-duration: 9.6s; }
.starter-pack-particles span:nth-child(7)  { left: 63%; top: 74%; animation-delay: 0.8s; animation-duration: 10.5s; }
.starter-pack-particles span:nth-child(8)  { left: 72%; top: 20%; animation-delay: 1.4s; animation-duration: 11.4s; }
.starter-pack-particles span:nth-child(9)  { left: 79%; top: 68%; animation-delay: 0.4s; animation-duration: 8.9s; }
.starter-pack-particles span:nth-child(10) { left: 87%; top: 30%; animation-delay: 1.8s; animation-duration: 12.2s; }
.starter-pack-particles span:nth-child(11) { left: 23%; top: 48%; animation-delay: 1s;   animation-duration: 10.8s; }
.starter-pack-particles span:nth-child(12) { left: 77%; top: 50%; animation-delay: 0.6s; animation-duration: 9.8s; }

.starter-pack-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.starter-pack-kicker {
  margin: 0 0 0.75rem;
  color: #dfbd76;
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.starter-pack-content h2 {
  margin: 0 0 1rem;
  color: #f4dfaa;
  font-family: "Cinzel", serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
  text-wrap: balance;
}

.starter-pack-copy,
.starter-pack-fallback-copy,
.starter-pack-download-status {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.55;
}

.starter-pack-fallback-copy {
  margin-top: 0.8rem;
  color: rgba(242, 219, 162, 0.92);
}

.starter-pack-download-status {
  min-height: 1.7rem;
  margin-top: 0.8rem;
  color: #f0d38e;
}

.starter-pack-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.starter-pack-actions .btn {
  min-width: 15rem;
}

.starter-pack-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
}

@keyframes starterPackFloat {
  0% {
    transform: translateY(0) scale(0.82);
    opacity: 0;
  }

  12% {
    opacity: 0.72;
  }

  88% {
    opacity: 0.72;
  }

  100% {
    transform: translateY(-8rem) scale(1.12);
    opacity: 0;
  }
}

@keyframes starterPackPulse {
  0%, 100% {
    filter: brightness(0.9);
  }

  50% {
    filter: brightness(1.18);
  }
}

@media (max-width: 680px) {
  .starter-pack-dialog {
    width: min(94vw, 42rem);
    margin: 4vh auto;
    padding: 2rem 1rem 1.2rem;
  }

  .starter-pack-actions {
    flex-direction: column;
  }

  .starter-pack-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .starter-pack-copy,
  .starter-pack-fallback-copy,
  .starter-pack-download-status {
    font-size: 1.12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .starter-pack-modal,
  .starter-pack-particles span {
    transition: none !important;
    animation: none !important;
  }
}
/* =========================================================
   STARTER PACK FORM POSITION FIX
   Prevent form from overlapping the inside link/text
   ========================================================= */

.starter-copy-panel {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.starter-inside-link {
  display: inline-flex;
  margin-top: 14px !important;
  margin-bottom: 20px !important;
}

.starter-form {
  margin-top: 0 !important;
  transform: none !important;
}

/* Restore safe vertical spacing in the Starter Pack grid */
.starter-inner {
  row-gap: 24px !important;
}

/* Desktop: keep form comfortably below the text/link */
@media (min-width: 1061px) {
  .starter-inner {
    grid-template-areas:
      "mockup intro"
      "mockup form"
      "sidegallery includes"
      "sidegallery footer";
    align-items: start;
  }
}

/* Mobile/tablet spacing */
@media (max-width: 1060px) {
  .starter-inner {
    row-gap: 22px !important;
  }

  .starter-inside-link {
    margin-bottom: 18px !important;
  }
}
/* EMAIL FORM CONSENT CHECKBOX */

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 0;

  color: rgba(243, 239, 227, 0.74);
  font-size: 0.98rem;
  line-height: 1.42;
  cursor: pointer;
}

.form-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;

  accent-color: var(--color-gold);
  cursor: pointer;
}

.form-consent span {
  display: block;
}

.form-privacy-note {
  margin: 12px 0 0;
  color: rgba(243, 239, 227, 0.58);
  font-size: 0.92rem;
  line-height: 1.42;
  text-align: center;
}

@media (max-width: 760px) {
  .form-consent {
    font-size: 0.95rem;
  }
}
.starter-form.is-success {
  animation: starterFormSuccessPulse 900ms ease-out;
}

.starter-submit.is-celebrating {
  animation:
    starterButtonSuccessFlash 900ms ease-out,
    starterButtonSuccessLift 900ms ease-out;
}

.starter-pack-modal.is-opening .starter-pack-backdrop {
  animation: starterModalBackdropFade 300ms ease-out;
}

.starter-pack-modal.is-opening .starter-pack-dialog {
  animation: starterModalReveal 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.starter-pack-modal.is-opening .starter-pack-dialog-glow {
  animation: starterModalGlowBloom 1200ms ease-out;
}

.starter-pack-modal.is-opening .starter-pack-content {
  animation: starterModalContentRise 520ms ease-out 80ms both;
}

.starter-pack-modal.is-opening .starter-pack-actions .btn {
  animation: starterModalActionsRise 520ms ease-out 140ms both;
}

@keyframes starterFormSuccessPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(214, 174, 84, 0.18),
      0 0 0 rgba(214, 174, 84, 0);
  }

  40% {
    transform: scale(1.008);
    box-shadow:
      0 0 0 1px rgba(214, 174, 84, 0.34),
      0 0 34px rgba(214, 174, 84, 0.2);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(214, 174, 84, 0.32),
      0 0 24px rgba(214, 174, 84, 0.12);
  }
}

@keyframes starterButtonSuccessFlash {
  0% {
    box-shadow:
      0 0 0 rgba(212, 175, 55, 0),
      inset 0 0 0 1px rgba(255, 246, 197, 0.2);
    filter: saturate(1);
  }

  35% {
    box-shadow:
      0 0 30px rgba(255, 224, 140, 0.45),
      0 0 64px rgba(212, 175, 55, 0.24),
      inset 0 0 0 1px rgba(255, 248, 214, 0.35);
    filter: saturate(1.12) brightness(1.05);
  }

  100% {
    box-shadow:
      0 0 18px rgba(214, 174, 84, 0.22),
      inset 0 0 0 1px rgba(255, 246, 197, 0.2);
    filter: saturate(1);
  }
}

@keyframes starterButtonSuccessLift {
  0% {
    transform: translateY(0) scale(1);
  }

  35% {
    transform: translateY(-2px) scale(1.03);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes starterModalBackdropFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes starterModalReveal {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  65% {
    opacity: 1;
    transform: translateY(-4px) scale(1.012);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes starterModalGlowBloom {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.7);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@keyframes starterModalContentRise {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes starterModalActionsRise {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .starter-form.is-success,
  .starter-submit.is-celebrating,
  .starter-pack-modal.is-opening .starter-pack-backdrop,
  .starter-pack-modal.is-opening .starter-pack-dialog,
  .starter-pack-modal.is-opening .starter-pack-dialog-glow,
  .starter-pack-modal.is-opening .starter-pack-content,
  .starter-pack-modal.is-opening .starter-pack-actions .btn {
    animation: none !important;
  }
}
/* =========================================================
   RESPONSIVE FIX PACK — Esmeralda Landing Page
   Add this at the END of style.css
   ========================================================= */

/* Safety: prevent horizontal scrolling on phones */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* Fix HTML/CSS class mismatch in the header */
.site-header {
  overflow: visible;
}

.header-inner {
  position: relative;
  width: 100%;
  max-width: var(--page-max-width);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 36px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-logo {
  position: relative;
  z-index: 1002;
  color: var(--color-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  position: relative;
  color: var(--color-ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.95),
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--color-gold-light);
  transform: translateY(-1px);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 42px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.62);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.12);

  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.header-cta:hover {
  color: #080704;
  background: linear-gradient(to bottom, #f0d879, #cfa32c);
  transform: translateY(-1px);
}

.nav-toggle {
  position: relative;
  z-index: 1002;
  display: none;
  width: 44px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-gold-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Make hero safe on all screens */
.hero,
.missions-section,
.companions-section,
.doors-section,
.content-section {
  padding-left: clamp(16px, 5vw, 36px);
  padding-right: clamp(16px, 5vw, 36px);
}

.hero-inner,
.hero-copy,
.hero-visual,
.hero-media-stack,
.trailer-card,
.hero-saga-title-image-wrap,
.book-mockup {
  min-width: 0;
  max-width: 100%;
}

.hero-saga-title-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.hero h1,
.section-heading h2 {
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-subtitle,
.section-lead {
  max-width: 100%;
}

/* Buttons must not overflow on small screens */
.btn,
.header-cta {
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

/* Desktop/tablet cleanup */
@media (max-width: 1180px) {
  .header-inner {
    gap: 16px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .header-cta {
    font-size: 0.76rem;
    padding-inline: 12px;
  }
}

/* Main mobile navigation */
@media (max-width: 980px) {
  .header-inner {
    padding-inline: 18px;
  }

  .nav-toggle {
    display: block;
    flex-shrink: 0;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;

    height: calc(100svh - var(--header-height));
    padding: 34px 22px 44px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 22px;

    background:
      radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 32%),
      linear-gradient(to bottom, rgba(7, 7, 7, 0.99), rgba(3, 3, 3, 1));

    border-top: 1px solid rgba(212, 175, 55, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1.05rem;
    white-space: normal;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 64px;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: auto;
    padding-right: 0;
    transform: none;
  }

  .mission-grid,
  .companions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doors-split {
    grid-template-columns: 1fr;
  }
}

/* Phone layout */
@media (max-width: 760px) {
  .site-logo {
    font-size: 1.18rem;
    letter-spacing: 0.055em;
  }

  .hero-copy {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.8vw, 3rem);
    line-height: 1.07;
    letter-spacing: 0.01em;
  }

  .hero-subtitle {
    font-size: clamp(1.05rem, 5vw, 1.24rem);
    line-height: 1.45;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .trailer-card,
  .media-caption {
    width: 100%;
  }

  .media-caption {
    padding-right: 0;
    text-align: center;
  }

  .book-mockup {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 230px);
    margin: 24px auto 0;
  }

  .book-note {
    width: 100%;
    margin-left: 0;
  }

  .mission-grid,
  .companions-grid,
  .door-contrast {
    grid-template-columns: 1fr;
  }

  .mission-card,
  .companion-card,
  .door-panel {
    width: 100%;
  }
}

/* Small phones */
@media (max-width: 480px) {
  :root {
    --header-height: 64px;
  }

  .header-inner {
    padding-inline: 14px;
  }

  .site-logo {
    font-size: 1rem;
    letter-spacing: 0.045em;
  }

  .nav-toggle {
    width: 40px;
    height: 38px;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 54px;
  }

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.45;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 11.4vw, 2.55rem);
  }

  .hero-subtitle {
    font-size: 1.06rem;
  }

  .section-heading h2 {
    font-size: clamp(2.05rem, 12vw, 3.1rem);
  }

  .section-lead {
    font-size: 1.08rem;
  }

  .mission-content,
  .companion-content,
  .door-content {
    padding: 20px 18px;
  }
}

/* =========================================================
   MOBILE RESPONSIVE GUARDRAILS
   Keeps the desktop design while preventing phone overflow.
   ========================================================= */

html,
body {
  min-width: 0;
  overflow-x: hidden;
}

.site-header,
main,
section {
  max-width: 100%;
}

.hero-inner > *,
.hero-visual > *,
.starter-inner > *,
.book-one-inner > *,
.young-readers-top > *,
.doors-split > *,
.mission-grid > *,
.companions-grid > * {
  min-width: 0;
}

.hero,
.missions-section,
.companions-section,
.doors-section,
.love-section,
.starter-section,
.book-one-section,
.young-readers-section,
.review-section {
  padding-left: clamp(16px, 5vw, 36px);
  padding-right: clamp(16px, 5vw, 36px);
}

@media (max-width: 980px) {
  .site-header {
    overflow: visible;
  }

  .header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100svh - var(--header-height));
    padding: 34px 22px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-inner,
  .starter-inner,
  .book-one-inner,
  .young-readers-top,
  .doors-split {
    grid-template-columns: 1fr !important;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    align-items: start;
  }

  .hero-visual {
    min-height: auto;
    transform: none;
    padding-right: 0;
  }

  .mission-grid,
  .companions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-logo {
    max-width: calc(100vw - 92px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 54px;
  }

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    white-space: normal;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 10.8vw, 2.85rem);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .hero-subtitle,
  .section-lead {
    font-size: clamp(1.04rem, 4.7vw, 1.22rem);
    line-height: 1.48;
  }

  .hero-actions,
  .book-one-actions,
  .review-actions,
  .starter-pack-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .starter-submit,
  .book-one-actions .btn,
  .review-actions .btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-inline: 16px;
    white-space: normal;
  }

  .hero-media-stack,
  .hero-saga-title-image-wrap,
  .trailer-card,
  .media-caption {
    width: 100%;
  }

  .book-mockup {
    position: relative;
    top: auto;
    right: auto;
    width: min(72vw, 230px);
    margin: 24px auto 0;
  }

  .book-note {
    width: 100%;
    margin-left: 0;
  }

  .mission-grid,
  .companions-grid,
  .door-contrast,
  .young-readers-card-grid {
    grid-template-columns: 1fr !important;
  }

  .mission-card-featured,
  .companion-card,
  .companion-card-featured {
    grid-column: auto !important;
    display: flex;
    flex-direction: column;
  }

  .mission-image-wrap,
  .companion-image-wrap,
  .door-image-wrap,
  .young-readers-image-frame {
    aspect-ratio: 16 / 10;
  }

  .starter-form,
  .starter-includes,
  .starter-side-gallery,
  .book-one-content,
  .young-readers-content {
    width: 100%;
    max-width: 100%;
  }

  .starter-mockup {
    max-width: 100%;
    transform: none;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 64px;
  }

  .header-inner {
    padding-inline: 14px;
  }

  .site-logo {
    font-size: 1rem;
    letter-spacing: 0.045em;
  }

  .section-heading h2,
  .starter-copy-panel h2,
  .book-one-content h2,
  .young-readers-content h2,
  .review-inner h2 {
    font-size: clamp(2rem, 11.5vw, 3.05rem);
    line-height: 1.04;
  }

  .mission-content,
  .companion-content,
  .door-content,
  .young-reader-card,
  .starter-form,
  .starter-includes {
    padding-inline: 18px;
  }
}

/* Final mobile menu icon normalization */
@media (max-width: 980px) {
  .nav-toggle {
    position: relative;
    width: 44px;
    height: 40px;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .nav-toggle span,
  .nav-toggle span + span {
    width: 22px;
    height: 2px;
    margin: 0 !important;
    display: block;
    transform-origin: center;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
