:root {
  --bg: #fbfbf8;
  --bg-soft: #f2f4f6;
  --line: rgba(24, 35, 50, 0.1);
  --line-strong: rgba(24, 35, 50, 0.18);
  --text: #162332;
  --text-soft: #435366;
  --text-muted: #73849a;
  --accent: #718eab;
  --accent-strong: #243a53;
  --paper: #ffffff;
  --paper-text: #182332;
  --gold-1: #ddc88f;
  --gold-2: #ba9550;
  --radius-lg: 30px;
  --radius-md: 22px;
  --container: 1280px;
  --content-pad: clamp(32px, 4vw, 48px);
  --hero-parallax: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f7 54%, #f2f4f6 100%);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
}

body.is-reduced-motion {
  --hero-parallax: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

[id] {
  scroll-margin-top: 110px;
}

.site-shell {
  padding: 18px 0 72px;
}

.container {
  width: min(var(--container), calc(100% - (var(--content-pad) * 2)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  margin-bottom: 36px;
  padding: 0 0 14px;
  background: rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: background-color 0.18s ease, border-color 0.18s ease, backdrop-filter 0.18s ease, box-shadow 0.18s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(24, 35, 50, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(18, 29, 42, 0.06);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 1rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.76);
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  margin-bottom: 2px;
  color: var(--text);
  font-size: 1rem;
}

.brand-copy span {
  color: var(--text-muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(18, 29, 42, 0.06);
}

.nav-toggle span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-5px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(5px);
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.site-nav a {
  position: relative;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(113, 142, 171, 0), rgba(113, 142, 171, 0.9), rgba(113, 142, 171, 0));
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(24, 35, 50, 0.06);
  color: var(--text);
  outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--text);
  background: rgba(24, 35, 50, 0.06);
}

.section {
  padding: 114px 0;
}

.section-rule {
  position: relative;
  border-top: 1px solid var(--line);
}

.section-rule::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 84px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(113, 142, 171, 0.055) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero {
  padding-top: 22px;
  padding-bottom: 126px;
}

.eyebrow,
.kicker,
.overline {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--text-muted);
}

.series-line {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 22px;
  max-width: 9ch;
  color: var(--text);
  font-size: clamp(4.5rem, 8.6vw, 8rem);
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(2.7rem, 4.8vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-grid {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 54px;
  align-items: center;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(24, 35, 50, 0.06);
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 18%, rgba(204, 228, 255, 0.08), rgba(204, 228, 255, 0) 22%),
    linear-gradient(180deg, #0d1622 0%, #172536 58%, #1e2d40 100%);
  box-shadow: 0 30px 70px rgba(15, 24, 36, 0.14);
}

.hero-grid > *:not(.hero-atmosphere) {
  position: relative;
  z-index: 1;
}

.hero-atmosphere {
  position: absolute;
  inset: -8% -4%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  transform: translate3d(0, calc(var(--hero-parallax) * 0.22), 0);
}

.hero-atmosphere::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  background:
    radial-gradient(ellipse at 16% 20%, rgba(224, 239, 255, 0.2), rgba(224, 239, 255, 0) 28%),
    radial-gradient(ellipse at 72% 22%, rgba(190, 214, 242, 0.14), rgba(190, 214, 242, 0) 26%),
    radial-gradient(ellipse at 44% 80%, rgba(154, 187, 222, 0.1), rgba(154, 187, 222, 0) 34%);
  filter: blur(24px);
  opacity: 0.56;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 20% -4% -8%;
  background:
    linear-gradient(110deg, rgba(226, 240, 255, 0.08) 0%, rgba(226, 240, 255, 0.02) 22%, rgba(226, 240, 255, 0) 40%),
    radial-gradient(ellipse at 26% 52%, rgba(238, 246, 255, 0.1), rgba(238, 246, 255, 0) 36%);
  filter: blur(22px);
  opacity: 0.44;
}

.hero-parallax-plane {
  position: absolute;
  inset: -10%;
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 14% 22%, rgba(233, 244, 255, 0.24), rgba(233, 244, 255, 0) 32%),
    radial-gradient(ellipse at 82% 18%, rgba(179, 210, 244, 0.18), rgba(179, 210, 244, 0) 28%),
    radial-gradient(ellipse at 52% 74%, rgba(137, 173, 209, 0.12), rgba(137, 173, 209, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(148, 188, 228, 0.06) 46%, rgba(255, 255, 255, 0) 100%);
  filter: blur(14px);
  transform: translate3d(0, calc(var(--hero-parallax) * 0.58), 0) scale(1.12);
}

.hero-mist,
.hero-flash {
  position: absolute;
}

.hero-mist {
  --mist-depth: 0.15;
  --mist-shift-start: -1.5%;
  --mist-shift-end: 1.5%;
  border-radius: 999px;
  opacity: 0.14;
  filter: blur(34px);
  background:
    radial-gradient(circle at 35% 50%, rgba(255, 255, 255, 0.28), rgba(186, 214, 242, 0.16) 40%, rgba(255, 255, 255, 0) 78%);
  animation: mist-drift 22s ease-in-out infinite alternate;
}

.hero-mist-one {
  top: 4%;
  left: -10%;
  width: 52%;
  height: 30%;
  --mist-depth: 0.16;
}

.hero-mist-two {
  top: 14%;
  right: -8%;
  width: 48%;
  height: 34%;
  opacity: 0.11;
  animation-duration: 25s;
  --mist-depth: 0.2;
  --mist-shift-start: -2%;
  --mist-shift-end: 2%;
}

.hero-mist-three {
  bottom: -6%;
  left: 10%;
  width: 74%;
  height: 38%;
  opacity: 0.09;
  animation-duration: 28s;
  --mist-depth: 0.12;
  --mist-shift-start: -1%;
  --mist-shift-end: 1%;
}

.hero-flash {
  inset: -12%;
  opacity: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(195, 224, 255, 0.42), rgba(195, 224, 255, 0) 28%),
    linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(199, 224, 255, 0.12) 40%, rgba(255, 255, 255, 0) 68%);
  transition: opacity 0.32s ease;
}

.hero-grid.is-flashing .hero-flash {
  opacity: 0.56;
}

@keyframes mist-drift {
  0% {
    transform: translate3d(var(--mist-shift-start), calc(var(--hero-parallax) * var(--mist-depth)), 0);
  }

  100% {
    transform: translate3d(var(--mist-shift-end), calc(var(--hero-parallax) * var(--mist-depth)), 0);
  }
}

.hero .eyebrow {
  color: rgba(195, 210, 226, 0.7);
}

.hero .kicker {
  color: #9ab9d8;
}

.hero .series-line {
  color: rgba(237, 244, 251, 0.88);
}

.hero h1 {
  color: #f5f8fc;
}

.hero-copy {
  align-self: center;
  max-width: 740px;
  padding: clamp(18px, 2.8vw, 28px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7, 14, 22, 0.18) 0%, rgba(7, 14, 22, 0.08) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  margin-bottom: 28px;
}

.hero-subtitle,
.lede,
.section-head p,
.body-copy,
.fact-row span,
.fact-row strong,
.field-group label,
.field-group input,
.form-note,
.helper-text,
.world-row p,
.newsletter-body {
  font-family: "Manrope", Arial, sans-serif;
}

.hero-subtitle {
  margin: 0;
  color: rgba(237, 244, 251, 0.9);
  font-size: clamp(1.15rem, 2.25vw, 1.44rem);
  line-height: 1.76;
}

.lede {
  margin: 0;
  color: rgba(195, 210, 226, 0.76);
  font-size: 1rem;
  line-height: 1.92;
}

.button-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-row {
  margin: 0 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.button-primary {
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  color: #15110b;
  box-shadow: 0 10px 24px rgba(186, 149, 80, 0.18);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: #edf4fb;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 30px rgba(186, 149, 80, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 0 14px 30px rgba(7, 15, 27, 0.22);
}

.hero-caption-inline {
  margin: 0;
  color: rgba(195, 210, 226, 0.84);
  font-size: 0.95rem;
  line-height: 1.72;
  max-width: 32rem;
}

.hero-stage {
  position: relative;
  min-height: 720px;
  padding: 0 0 0 8px;
  z-index: 1;
}

.cover-column {
  position: relative;
  margin: 0 0 0 auto;
  width: min(76%, 540px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cover-column-reveal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(88%, 620px);
  min-height: 720px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.book-cover {
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.book-cover-secondary {
  max-width: 360px;
}

.cover-column:hover,
.cover-column:focus-within,
.editorial-frame:hover,
.editorial-frame:focus-within {
  transform: translateY(-2px);
  border-color: rgba(129, 164, 206, 0.28);
  box-shadow: 0 18px 40px rgba(18, 29, 42, 0.12);
}

.cover-column:hover .book-cover,
.cover-column:focus-within .book-cover,
.editorial-frame:hover .book-cover,
.editorial-frame:focus-within .book-cover {
  transform: scale(1.02);
  box-shadow: 0 26px 58px rgba(72, 130, 204, 0.18), 0 30px 60px rgba(0, 0, 0, 0.2);
  filter: saturate(1.02);
}

.section-index {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.announcement-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.announcement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  min-height: 86px;
  color: var(--text-muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

.announcement-grid span,
.announcement-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.announcement-grid span:first-child,
.announcement-grid span:nth-child(2) {
  color: var(--accent-strong);
}

.announcement-link {
  position: relative;
  justify-self: center;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid rgba(186, 149, 80, 0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(221, 200, 143, 0.16) 0%, rgba(186, 149, 80, 0.12) 100%);
  color: #795b22;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.announcement-link::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-140%);
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.52) 48%,
    rgba(255, 255, 255, 0.08) 61%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: announcement-shimmer 3.6s ease-in-out infinite;
}

.announcement-link:hover,
.announcement-link:focus-visible {
  transform: translateY(-2px);
  color: #5f4516;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54), 0 14px 24px rgba(186, 149, 80, 0.14);
  outline: none;
}

@keyframes announcement-shimmer {
  0%,
  18% {
    transform: translateX(-140%);
  }

  42% {
    transform: translateX(140%);
  }

  100% {
    transform: translateX(140%);
  }
}

.editorial-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 46px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-head-wide {
  max-width: 860px;
}

.section-head p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.82;
}

.book-layout,
.about-layout,
.newsletter-grid {
  display: grid;
  gap: 34px;
}

.book-layout {
  grid-template-columns: minmax(320px, 0.54fr) minmax(0, 1.46fr);
  align-items: start;
}

.editorial-frame {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(18, 29, 42, 0.06);
}

.cover-reveal-frame {
  width: min(100%, 360px);
  min-height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-reveal-placeholder {
  width: 100%;
  aspect-ratio: 2 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px dashed rgba(36, 58, 83, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 249, 251, 0.9) 0%, rgba(238, 242, 246, 0.9) 100%);
  text-align: center;
}

.cover-reveal-kicker {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cover-reveal-placeholder h3 {
  margin: 0;
  max-width: 10ch;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.book-cover-reveal {
  width: min(100%, 470px);
  max-width: none;
  border-radius: 22px;
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.34);
}

@supports not (aspect-ratio: 2 / 3) {
  .cover-reveal-placeholder {
    min-height: 460px;
  }
}

.fact-list {
  margin-top: 24px;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.fact-row span,
.fact-row strong {
  font-size: 0.92rem;
  line-height: 1.6;
}

.fact-row span {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fact-row strong {
  color: var(--text);
  text-align: right;
  font-weight: 700;
}

.body-copy {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.88;
}

.body-copy-large {
  font-size: 1.04rem;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.highlight {
  color: var(--text);
}

.world-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
}

.world-intro p {
  margin: 0;
  color: var(--text-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.86;
}

.world-list {
  display: grid;
}

.world-row {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.world-row:last-child {
  padding-top: 28px;
}

.world-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.15rem;
}

.world-row:last-child strong {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.world-row p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.world-row:last-child p {
  color: var(--text);
}

.reviews-placeholder {
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.reviews-placeholder p {
  margin: 0;
  color: var(--text-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

.about-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
}

.portrait-stage {
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(18, 29, 42, 0.05);
}

.portrait-placeholder {
  width: 100%;
  max-width: 500px;
  min-height: 520px;
  padding: 30px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, #fbfcfd 0%, #f5f7f9 100%);
}

.logo-placeholder {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 0 auto 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.logo-placeholder span {
  color: var(--accent-strong);
  font-size: 2.6rem;
}

.portrait-placeholder p {
  margin: 0;
  color: var(--text-muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.72;
}

.newsletter-shell {
  border: 1px solid rgba(205, 214, 225, 0.44);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.newsletter-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 0;
}

.newsletter-copy,
.newsletter-form-column {
  padding: 40px 32px;
}

.newsletter-copy {
  border-right: 1px solid rgba(24, 35, 50, 0.08);
}

.newsletter-copy h2,
.newsletter-copy p,
.newsletter-copy .kicker,
.newsletter-copy .body-copy {
  color: var(--paper-text);
}

.newsletter-copy .section-head p,
.newsletter-body {
  color: rgba(24, 35, 50, 0.8);
}

.divider {
  width: 84px;
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(90deg, rgba(24, 35, 50, 0), rgba(24, 35, 50, 0.46), rgba(24, 35, 50, 0));
}

.form-frame {
  padding: 24px;
  border: 1px solid rgba(24, 35, 50, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
}

.newsletter-form {
  display: grid;
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: rgba(24, 35, 50, 0.86);
  font-size: 0.9rem;
  font-weight: 600;
}

.field-group input {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(24, 35, 50, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--paper-text);
  font-size: 1rem;
}

.field-group input::placeholder {
  color: rgba(24, 35, 50, 0.46);
}

.field-group input:focus {
  outline: 0;
  border-color: #8aaed2;
  box-shadow: 0 0 0 3px rgba(138, 174, 210, 0.14);
}

.form-note {
  color: rgba(24, 35, 50, 0.68);
  font-size: 0.9rem;
  line-height: 1.7;
}

.helper-text {
  margin: 16px 0 0;
  color: rgba(24, 35, 50, 0.62);
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.7;
}

.helper-text a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.helper-text a:hover,
.helper-text a:focus-visible {
  color: var(--text);
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mailerlite-inline-shell {
  width: 100%;
}

.mailerlite-inline-shell .ml-form-embedContainer,
.mailerlite-inline-shell .ml-form-embedContainer * {
  box-sizing: border-box;
}

.mailerlite-inline-shell .ml-form-embedContainer {
  width: 100%;
  margin: 0;
}

.mailerlite-inline-shell .ml-form-embedWrapper {
  width: 100%;
  background: transparent !important;
}

.mailerlite-inline-shell .ml-form-embedBody,
.mailerlite-inline-shell .ml-form-successBody {
  padding: 0 !important;
}

.mailerlite-inline-shell .ml-form-embedContent,
.mailerlite-inline-shell .ml-form-successContent {
  margin: 0 0 22px !important;
}

.mailerlite-inline-shell .ml-form-embedContent h4,
.mailerlite-inline-shell .ml-form-successContent h4 {
  margin: 0 0 10px !important;
  color: var(--paper-text) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
  font-weight: 600 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.04em !important;
}

.mailerlite-inline-shell .ml-form-embedContent p,
.mailerlite-inline-shell .ml-form-successContent p,
.mailerlite-inline-shell .ml-form-embedPermissionsContent p,
.mailerlite-inline-shell .ml-form-embedPermissionsContent a,
.mailerlite-inline-shell .ml-form-checkboxRow label,
.mailerlite-inline-shell .ml-form-checkboxRow p {
  margin: 0 !important;
  color: rgba(24, 35, 50, 0.76) !important;
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
}

.mailerlite-inline-shell .ml-form-embedPermissionsContent {
  margin: 0 0 18px !important;
}

.mailerlite-inline-shell .ml-form-embedPermissionsContent a,
.mailerlite-inline-shell .ml-form-checkboxRow label a {
  color: var(--accent-strong) !important;
  text-decoration: underline !important;
  text-underline-offset: 0.16em !important;
}

.mailerlite-inline-shell .ml-form-formContent {
  display: grid !important;
  gap: 14px !important;
  margin: 0 0 18px !important;
}

.mailerlite-inline-shell .ml-form-fieldRow {
  margin: 0 !important;
}

.mailerlite-inline-shell .ml-field-group {
  width: 100% !important;
}

.mailerlite-inline-shell input[type="text"],
.mailerlite-inline-shell input[type="email"] {
  width: 100% !important;
  min-height: 56px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(24, 35, 50, 0.12) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: var(--paper-text) !important;
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
}

.mailerlite-inline-shell input[type="text"]::placeholder,
.mailerlite-inline-shell input[type="email"]::placeholder {
  color: rgba(24, 35, 50, 0.46) !important;
}

.mailerlite-inline-shell input[type="text"]:focus,
.mailerlite-inline-shell input[type="email"]:focus {
  outline: 0 !important;
  border-color: #8aaed2 !important;
  box-shadow: 0 0 0 3px rgba(138, 174, 210, 0.14) !important;
}

.mailerlite-inline-shell .ml-form-recaptcha {
  margin: 0 0 20px !important;
  overflow: hidden !important;
}

.mailerlite-inline-shell .g-recaptcha {
  transform-origin: 0 0 !important;
}

.mailerlite-inline-shell .ml-form-embedSubmit,
.mailerlite-inline-shell .ml-form-embedSubmit button {
  width: 100% !important;
}

.mailerlite-inline-shell .ml-form-embedSubmit .primary,
.mailerlite-inline-shell .ml-form-embedSubmit button {
  min-height: 56px !important;
  padding: 14px 24px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%) !important;
  color: #15110b !important;
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: 0 14px 28px rgba(186, 149, 80, 0.2) !important;
}

.mailerlite-inline-shell .ml-form-successBody {
  padding-top: 2px !important;
}

#mlb2-38377814.ml-form-embedContainer {
  width: 100%;
  margin: 0;
}

#mlb2-38377814 .ml-form-align-center,
#mlb2-38377814 .ml-form-embedWrapper,
#mlb2-38377814 .row-form,
#mlb2-38377814 .row-success {
  width: 100%;
}

#mlb2-38377814 .ml-form-embedWrapper,
#mlb2-38377814 .ml-form-embedWrapper * {
  box-sizing: border-box;
}

#mlb2-38377814 .ml-form-embedWrapper {
  background: transparent;
}

#mlb2-38377814 .ml-form-embedBody,
#mlb2-38377814 .ml-form-successBody {
  padding: 0;
}

#mlb2-38377814 .row-success {
  display: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#mlb2-38377814 .ml-form-embedContent,
#mlb2-38377814 .ml-form-successContent {
  margin: 0 0 22px;
}

#mlb2-38377814 .mailerlite-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

#mlb2-38377814 .ml-form-embedContent h4,
#mlb2-38377814 .ml-form-successContent h4 {
  margin: 0 0 10px;
  color: var(--paper-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

#mlb2-38377814 .ml-form-embedContent p,
#mlb2-38377814 .ml-form-successContent p,
#mlb2-38377814 .ml-form-embedPermissionsContent p,
#mlb2-38377814 .ml-form-embedPermissionsContent a,
#mlb2-38377814 .ml-form-checkboxRow label,
#mlb2-38377814 .ml-form-checkboxRow p {
  margin: 0;
  color: rgba(24, 35, 50, 0.76);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}

#mlb2-38377814 .ml-form-embedPermissionsContent {
  margin: 0 0 18px;
}

#mlb2-38377814 .ml-form-embedPermissionsContent a,
#mlb2-38377814 .ml-form-checkboxRow label a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

#mlb2-38377814 .ml-form-formContent {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
}

#mlb2-38377814 .ml-form-fieldRow {
  margin: 0;
}

#mlb2-38377814 .ml-field-group {
  width: 100%;
}

#mlb2-38377814 input[type="text"],
#mlb2-38377814 input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(24, 35, 50, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--paper-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#mlb2-38377814 input[type="text"]::placeholder,
#mlb2-38377814 input[type="email"]::placeholder {
  color: rgba(24, 35, 50, 0.46);
}

#mlb2-38377814 input[type="text"]:focus,
#mlb2-38377814 input[type="email"]:focus {
  outline: 0;
  border-color: #8aaed2;
  box-shadow: 0 0 0 3px rgba(138, 174, 210, 0.14);
}

#mlb2-38377814 .ml-form-recaptcha {
  margin: 0 0 20px;
  overflow: hidden;
}

#mlb2-38377814 .g-recaptcha {
  transform-origin: 0 0;
}

#mlb2-38377814 .ml-form-embedSubmit {
  width: 100%;
}

#mlb2-38377814 .ml-form-embedSubmit button {
  width: 100%;
}

#mlb2-38377814 .ml-form-embedSubmit .primary {
  min-height: 56px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  color: #15110b;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(186, 149, 80, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#mlb2-38377814 .ml-form-embedSubmit .primary:hover,
#mlb2-38377814 .ml-form-embedSubmit .primary:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 34px rgba(186, 149, 80, 0.24);
  outline: none;
}

#mlb2-38377814 .ml-form-embedSubmit .loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  color: #15110b;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#mlb2-38377814.is-loading .ml-form-embedSubmit .primary {
  display: none;
}

#mlb2-38377814.is-loading .ml-form-embedSubmit .loading {
  display: inline-flex;
}

#mlb2-38377814.is-loading input[type="text"],
#mlb2-38377814.is-loading input[type="email"] {
  opacity: 0.76;
}

#mlb2-38377814.is-success .row-form {
  display: none;
}

#mlb2-38377814.is-success .row-success {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

#mlb2-38377814.is-success .ml-form-successContent {
  padding: 2px 0;
}

.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.ml-form-embedSubmitLoad::after {
  content: " ";
  display: block;
  width: 12px;
  height: 12px;
  margin: 1px;
  border: 3px solid rgba(21, 17, 11, 0.92);
  border-color: rgba(21, 17, 11, 0.92) rgba(21, 17, 11, 0.92) rgba(21, 17, 11, 0.92) transparent;
  border-radius: 50%;
  animation: ml-form-embedSubmitLoad 1.1s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#mlb2-38377814 .ml-error input,
#mlb2-38377814 .ml-error textarea,
#mlb2-38377814 .ml-error select {
  border-color: #cf4a4a !important;
}

#mlb2-38377814 .ml-error .label-description,
#mlb2-38377814 .ml-error .label-description p,
#mlb2-38377814 .ml-error label:first-child {
  color: #cf4a4a !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(113, 142, 171, 0.75);
  outline-offset: 3px;
}

.site-footer {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-nav a {
  color: var(--text-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
  outline: none;
}

.policy-main {
  padding-top: 8px;
}

.prelude-page .site-shell {
  padding-top: 10px;
}

.prelude-header {
  margin-bottom: 28px;
}

.prelude-brand {
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.prelude-hero {
  padding-top: 10px;
  padding-bottom: 96px;
}

.prelude-stack {
  max-width: 980px;
}

.prelude-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 38px;
  padding: clamp(30px, 5vw, 60px);
}

.prelude-copy {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.prelude-copy h1 {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3.8rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.prelude-copy-block {
  max-width: 620px;
  margin: 0 auto 18px;
}

.prelude-copy .hero-columns {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 0;
}

.prelude-copy .hero-subtitle {
  font-size: 1.06rem;
  line-height: 1.72;
}

.prelude-copy .button-row {
  margin-bottom: 14px;
  justify-content: center;
}

.prelude-copy .hero-caption-inline {
  margin-left: auto;
  margin-right: auto;
}

.prelude-stage {
  min-height: auto;
  padding: 0;
}

.prelude-cover-frame {
  margin: 0 auto;
  width: min(100%, 380px);
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18);
}

.prelude-story {
  padding-top: 92px;
}

.prelude-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.76fr);
  gap: 34px;
  align-items: start;
}

.prelude-story-copy .section-intro {
  margin: 0 0 26px;
  color: var(--text-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.8;
}

.prelude-facts {
  max-width: 360px;
  margin-left: auto;
}

.prelude-newsletter-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.prelude-newsletter-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
}

.policy-hero {
  padding-top: 18px;
  padding-bottom: 44px;
}

.policy-intro {
  max-width: 880px;
  margin: 0 auto;
}

.policy-intro h1 {
  max-width: none;
  margin-bottom: 18px;
}

.policy-meta {
  margin: 0;
  color: var(--text-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

.policy-section {
  padding-top: 54px;
}

.policy-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(24, 35, 50, 0.1);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(18, 29, 42, 0.06);
}

.policy-block + .policy-block {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(24, 35, 50, 0.08);
}

.policy-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
}

.policy-card p,
.policy-card li,
.policy-card a {
  color: var(--text-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.9;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-grid,
  .editorial-grid,
  .book-layout,
  .world-layout,
  .reviews-layout,
  .about-layout,
  .newsletter-grid,
  .prelude-story-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .cover-column,
  .hero-stage {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }

  .hero-columns,
  .book-layout,
  .world-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 32px;
  }

  .newsletter-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(24, 35, 50, 0.08);
  }

  .prelude-facts {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 72px 0;
  }

  .site-header {
    margin-bottom: 24px;
    padding-bottom: 10px;
  }

  .hero {
    padding-top: 6px;
    padding-bottom: 72px;
  }

  .prelude-hero {
    padding-bottom: 64px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.4rem, 13vw, 5.6rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
  }

  .hero-grid,
  .prelude-hero-grid {
    gap: 28px;
    padding: 28px 24px;
    border-radius: 32px;
  }

  .hero-copy {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-stage,
  .prelude-stage {
    order: -1;
    padding: 0;
    min-height: auto;
  }

  .cover-column-reveal {
    width: min(100%, 420px);
    min-height: auto;
    margin: 0 auto 6px;
  }

  .book-cover-reveal,
  .book-cover {
    width: min(100%, 360px);
  }

  .hero-copy,
  .prelude-copy {
    max-width: none;
  }

  .hero-columns {
    gap: 16px;
    margin-bottom: 30px;
  }

  .announcement-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .section-rule::before {
    height: 58px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 10px 0 38px;
  }

  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  [id] {
    scroll-margin-top: 104px;
  }

  .site-header {
    margin-bottom: 10px;
    padding-bottom: 3px;
  }

  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding-top: 4px;
  }

  .brand {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(24, 35, 50, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(18, 29, 42, 0.08);
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-nav a {
    width: 100%;
    min-height: 40px;
    text-align: left;
    padding: 10px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .button-row,
  .pill-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  #mlb2-38377814 .g-recaptcha {
    transform: scale(0.9);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .section-head,
  .section-head-wide {
    margin-bottom: 30px;
  }

  .section-head p,
  .body-copy,
  .world-intro p,
  .reviews-placeholder p,
  .newsletter-body,
  .policy-card p,
  .policy-card li,
  .policy-card a {
    font-size: 0.98rem;
    line-height: 1.76;
  }

  .editorial-frame,
  .newsletter-copy,
  .newsletter-form-column,
  .form-frame,
  .cover-column,
  .portrait-placeholder,
  .portrait-stage,
  .hero-stage {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .hero-grid,
  .prelude-hero-grid {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .hero-copy {
    padding: 14px 12px 6px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(7, 14, 22, 0.18) 0%, rgba(7, 14, 22, 0.06) 100%);
  }

  .hero-columns {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.68;
  }

  .lede,
  .hero-caption-inline {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .hero-stage,
  .prelude-stage {
    padding: 0;
  }

  .cover-column-reveal,
  .prelude-cover-frame {
    width: min(100%, 300px);
  }

  .cover-column-reveal,
  .prelude-cover-frame {
    padding: 12px;
    border-radius: 24px;
  }

  .book-cover-reveal,
  .book-cover,
  .book-cover-secondary {
    width: 100%;
    max-width: none;
  }

  .book-layout,
  .about-layout,
  .world-layout,
  .prelude-story-grid {
    gap: 22px;
  }

  .section-rail {
    margin-bottom: 4px;
  }

  .fact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .fact-row strong {
    text-align: left;
  }

  .newsletter-copy,
  .newsletter-form-column,
  .form-frame {
    padding: 22px 18px;
  }

  #mlb2-38377814 .ml-form-embedContent h4,
  #mlb2-38377814 .ml-form-successContent h4 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
    line-height: 1.02;
  }

  #mlb2-38377814 .ml-form-embedPermissionsContent p,
  #mlb2-38377814 .ml-form-embedContent p,
  #mlb2-38377814 .ml-form-successContent p {
    font-size: 0.92rem;
  }

  .hero-columns {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  :root {
    --content-pad: 12px;
  }

  .site-header {
    margin-bottom: 8px;
    padding-bottom: 2px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 0.76rem;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy span {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 15vw, 4.2rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
  }

  h2 {
    font-size: clamp(1.84rem, 11vw, 2.7rem);
    line-height: 1;
  }

  .eyebrow,
  .kicker,
  .overline,
  .series-line,
  .section-index {
    letter-spacing: 0.18em;
  }

  .hero-grid,
  .prelude-hero-grid,
  .newsletter-shell,
  .policy-card {
    border-radius: 24px;
  }

  .hero-grid,
  .prelude-hero-grid {
    gap: 20px;
    padding: 22px 16px;
  }

  .hero-copy {
    padding: 12px 10px 4px;
  }

  .announcement-grid {
    min-height: auto;
    gap: 2px;
    padding: 14px 0;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .announcement-link {
    width: 100%;
    padding: 0 14px;
  }

  .site-nav a {
    min-height: 38px;
    padding: 9px 10px;
  }

  .button {
    min-height: 52px;
    font-size: 0.84rem;
    letter-spacing: 0.1em;
  }

  .hero-subtitle,
  .lede,
  .hero-caption-inline,
  .section-head p,
  .body-copy,
  .world-intro p,
  .world-row p,
  .reviews-placeholder p,
  .helper-text,
  .policy-card p,
  .policy-card li,
  .policy-card a {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .world-row strong {
    font-size: 1.02rem;
  }

  .world-row:last-child {
    padding-top: 22px;
  }

  .world-row:last-child strong {
    font-size: 1.08rem;
  }

  .portrait-stage {
    min-height: 440px;
  }

  .portrait-placeholder {
    min-height: 360px;
  }

  .cover-column-reveal,
  .prelude-cover-frame {
    width: min(100%, 250px);
  }

  .book-cover-reveal {
    border-radius: 18px;
  }

  #mlb2-38377814 .g-recaptcha {
    transform: scale(0.78);
  }

  #mlb2-38377814 .ml-form-recaptcha {
    width: 304px;
    max-width: 100%;
  }

  #mlb2-38377814 input[type="text"],
  #mlb2-38377814 input[type="email"],
  #mlb2-38377814 .ml-form-embedSubmit .primary,
  #mlb2-38377814 .ml-form-embedSubmit .loading {
    min-height: 52px;
  }

  .site-footer-inner {
    gap: 12px;
  }

  .footer-nav {
    gap: 10px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .announcement-link::after {
    animation: none;
  }

  .section-link::after {
    animation: none;
  }

  .hero-mist,
  .hero-flash,
  .cover-column,
  .book-cover,
  .button,
  .announcement-link {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
