@property --glow-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  --navy-950: #03192a;
  --navy-900: #06233a;
  --navy-800: #0a3550;
  --blue: #167190;
  --cream: #f7efdf;
  --paper: #fffaf0;
  --coral: #df725f;
  --gold: #e8b76f;
  --ink: #09263a;
  --muted: #566873;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow: 0 32px 80px rgba(3, 25, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1460px;
  margin: 0 auto;
  padding: 26px clamp(24px, 5vw, 78px);
  color: var(--cream);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.31em;
  line-height: 1;
}

.wordmark i {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.site-header nav > a:not(.nav-cta) {
  position: relative;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.site-header nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: right 220ms ease;
}

.site-header nav > a:hover {
  opacity: 1;
}

.site-header nav > a:hover::after {
  right: 0;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(247, 239, 223, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  border-color: rgba(247, 239, 223, 0.65);
  background: rgba(255, 255, 255, 0.13);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(920px, 100svh);
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(20px, 4vw, 80px);
  padding: 145px clamp(24px, 7vw, 110px) 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 18%, rgba(22, 113, 144, 0.34), transparent 28%),
    radial-gradient(circle at 14% 86%, rgba(223, 114, 95, 0.18), transparent 24%),
    linear-gradient(132deg, #021521 0%, var(--navy-950) 45%, #082f4c 100%);
  color: var(--cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -46%;
  z-index: -1;
  width: 74vw;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 183, 111, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(232, 183, 111, 0.025), 0 0 0 18vw rgba(232, 183, 111, 0.018);
  content: "";
}

.aurora {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  animation: drift 10s ease-in-out infinite alternate;
}

.aurora-one {
  top: 12%;
  left: 39%;
  width: 390px;
  height: 240px;
  background: var(--blue);
}

.aurora-two {
  right: 7%;
  bottom: 6%;
  width: 290px;
  height: 290px;
  background: var(--coral);
  animation-delay: -4s;
}

@keyframes drift {
  to { transform: translate3d(44px, -28px, 0) scale(1.16); }
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 730px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.23em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: #8f4d40;
}

.hero h1,
.section-heading h2,
.brittany-copy h2,
.author-section h2,
.final-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(50px, 5.7vw, 88px);
}

.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(247, 239, 223, 0.76);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.amazon-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 15px 18px 15px 25px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--coral);
  box-shadow: 0 18px 45px rgba(223, 114, 95, 0.23);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.amazon-button::before {
  position: absolute;
  inset: -80% -30%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.24), transparent 55%);
  content: "";
  transform: translateX(-60%);
  transition: transform 500ms ease;
}

.amazon-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(223, 114, 95, 0.34);
}

.amazon-button:hover::before {
  transform: translateX(60%);
}

.button-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  font-size: 17px;
}

.button-cream {
  background: var(--cream);
  box-shadow: 0 18px 45px rgba(3,25,42,.24);
  color: var(--navy-950);
}

.text-link {
  border-bottom: 1px solid rgba(247,239,223,.24);
  color: rgba(247,239,223,.8);
  font-size: 14px;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--gold);
  color: var(--cream);
}

.hero-notes {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  color: rgba(247,239,223,.46);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-notes span {
  position: relative;
}

.hero-notes span + span::before {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.cover-stage {
  position: relative;
  z-index: 3;
  min-height: 650px;
  perspective: 1400px;
}

.hero-cover {
  position: absolute;
  top: 48%;
  left: 50%;
  width: clamp(230px, 20vw, 330px);
  height: auto;
  border-radius: 3px 8px 8px 3px;
  box-shadow: 0 40px 90px rgba(0,0,0,.4), -10px 0 22px rgba(0,0,0,.18) inset;
  transform-origin: center bottom;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.cover-front {
  z-index: 3;
  transform: translate(-50%, -50%) rotateY(-7deg) rotateZ(-1deg);
  animation: coverFloat 5.2s ease-in-out infinite;
}

.cover-back-left {
  z-index: 1;
  transform: translate(-88%, -43%) rotateY(14deg) rotateZ(-11deg) scale(.86);
  filter: saturate(.8) brightness(.72);
}

.cover-back-right {
  z-index: 2;
  transform: translate(-14%, -42%) rotateY(-14deg) rotateZ(9deg) scale(.88);
  filter: saturate(.85) brightness(.78);
}

.cover-stage:hover .cover-back-left {
  transform: translate(-100%, -45%) rotateY(14deg) rotateZ(-14deg) scale(.86);
}

.cover-stage:hover .cover-back-right {
  transform: translate(-2%, -44%) rotateY(-14deg) rotateZ(12deg) scale(.88);
}

@keyframes coverFloat {
  50% { transform: translate(-50%, calc(-50% - 10px)) rotateY(-4deg) rotateZ(.5deg); }
}

.sun-disc {
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(28vw, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #ffe2ad 0, var(--gold) 30%, rgba(223,114,95,.64) 63%, transparent 67%);
  box-shadow: 0 0 90px rgba(232,183,111,.26);
  opacity: .72;
  transform: translateX(-50%);
}

.vinyl-lines {
  position: absolute;
  right: -22%;
  bottom: 3%;
  width: 340px;
  aspect-ratio: 1;
  border: 1px solid rgba(247,239,223,.1);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 15px, rgba(247,239,223,.05) 16px 17px);
  opacity: .65;
}

.cover-caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 4;
  margin: 0;
  color: rgba(247,239,223,.55);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.cover-caption strong {
  color: var(--cream);
  font-weight: 600;
}

.marquee-band {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: var(--navy-950);
  color: var(--cream);
}

.marquee-band > div {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 17px 0;
  animation: marquee 34s linear infinite;
}

.marquee-band span {
  padding: 0 28px;
  color: rgba(247,239,223,.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
}

.marquee-band i {
  color: var(--coral);
  font-size: 9px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-shell {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(90px, 11vw, 160px) clamp(24px, 6vw, 80px);
}

.series-facts,
.world-section,
.quote-section,
.books-section,
.brittany-section,
.mood-section,
.author-section,
.faq-section,
.final-section {
  content-visibility: auto;
  contain-intrinsic-block-size: auto 820px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.author-section h2 {
  color: var(--ink);
  font-size: clamp(46px, 5.2vw, 78px);
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.series-facts {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
  background:
    radial-gradient(circle at 8% 16%, rgba(232, 183, 111, 0.18), transparent 28%),
    var(--paper);
}

.series-facts-heading {
  min-width: 0;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(9, 38, 58, 0.12);
  border-radius: 24px;
  background: rgba(9, 38, 58, 0.12);
  box-shadow: 0 28px 70px rgba(3, 25, 42, 0.1);
}

.fact-grid > div {
  min-width: 0;
  padding: 24px 26px;
  background: rgba(255, 250, 240, 0.96);
}

.fact-grid dt {
  margin-bottom: 8px;
  color: #a35d4d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fact-grid dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 68px;
}

.promise-card {
  position: relative;
  min-height: 390px;
  padding: 32px;
  border: 1px solid rgba(9,38,58,.1);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.promise-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 200px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,.035), 0 0 0 58px rgba(255,255,255,.025);
  content: "";
  opacity: .17;
}

.promise-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.promise-card-light { background: #f2e7d2; }
.promise-card-coral { background: #a94838; color: white; }
.promise-card-blue { background: #0a3c59; color: white; }

.card-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 16px;
  opacity: 1;
}

.card-kicker {
  margin: 74px 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  opacity: 1;
  text-transform: uppercase;
}

.promise-card h3 {
  max-width: 310px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 2.5vw, 39px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.07;
}

.promise-card > p:last-of-type {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.75;
  opacity: 1;
}

.quote-section {
  position: relative;
  display: grid;
  min-height: 570px;
  place-content: center;
  padding: 90px 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(3,25,42,.56), rgba(3,25,42,.72)),
    url("covers/01-absolute-beginners.jpg") center 57% / cover;
  background-attachment: fixed;
  color: var(--cream);
  text-align: center;
}

.quote-section::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0, rgba(3,25,42,.32) 70%);
  content: "";
}

.quote-section > p {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(35px, 5vw, 72px);
  letter-spacing: -.035em;
  line-height: 1.12;
}

.quote-section > span {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  color: rgba(247,239,223,.64);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.quote-orbit,
.quote-orbit::before,
.quote-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(232,183,111,.15);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.quote-orbit { width: 420px; height: 420px; animation: orbit 24s linear infinite; }
.quote-orbit::before { width: 620px; height: 620px; }
.quote-orbit::after { width: 820px; height: 820px; }
.quote-orbit span { position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 25px var(--gold); }
.quote-orbit span:nth-child(2) { top: 50%; right: -4px; left: auto; background: var(--coral); }
.quote-orbit span:nth-child(3) { top: auto; bottom: -4px; left: 50%; }

@keyframes orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }

.books-section {
  max-width: none;
  padding-right: 0;
  background: #f2eadb;
}

.books-heading {
  display: grid;
  max-width: 1280px;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 60px;
  padding-right: clamp(24px, 6vw, 80px);
}

.books-heading > p:last-child {
  margin: 0 0 4px;
  font-size: 16px;
}

.swipe-hint {
  margin: 42px 0 16px;
  color: #735342;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.book-rail {
  display: grid;
  grid-auto-columns: clamp(240px, 24vw, 340px);
  grid-auto-flow: column;
  gap: 22px;
  padding: 10px clamp(24px, 7vw, 110px) 38px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--coral) rgba(9,38,58,.1);
  scrollbar-width: thin;
  scroll-padding: 20px;
  scroll-snap-type: inline mandatory;
}

.book-card {
  scroll-snap-align: start;
}

.book-cover-wrap {
  position: relative;
  aspect-ratio: 5 / 8;
  border-radius: 4px 11px 11px 4px;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 26px 44px rgba(3,25,42,.2);
  transform: perspective(900px) rotateY(0deg);
  transform-origin: left center;
  transition: transform 400ms cubic-bezier(.2,.8,.2,1), box-shadow 400ms ease;
}

.book-card:hover .book-cover-wrap {
  box-shadow: 14px 30px 54px rgba(3,25,42,.27);
  transform: perspective(900px) rotateY(-6deg) translateY(-5px);
}

.book-cover-wrap::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4%;
  background: linear-gradient(90deg, rgba(0,0,0,.35), transparent);
  content: "";
  mix-blend-mode: multiply;
}

.book-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-cover-wrap span {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(3,25,42,.48);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.book-info {
  padding: 22px 6px 0;
}

.book-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.025em;
}

.book-info > p:not(.book-meta) {
  min-height: 76px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.book-info .book-meta {
  margin: 7px 0 0;
  color: #8f4d40;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.book-card {
  scroll-margin-top: 110px;
}

.book-info a {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(9,38,58,.22);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.brittany-section {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(340px, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
  background: linear-gradient(130deg, var(--navy-950), #0a3b57);
  color: var(--cream);
}

.brittany-visual {
  position: relative;
  max-width: 570px;
  justify-self: end;
}

.portrait-frame {
  position: relative;
  border-radius: 260px 260px 16px 16px;
  overflow: hidden;
  box-shadow: 0 44px 90px rgba(0,0,0,.36);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: inherit;
  box-shadow: 0 0 0 12px rgba(255,255,255,.025) inset;
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: 690px;
  max-height: 690px;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: -38px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(3,25,42,.7);
  box-shadow: 0 20px 50px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.floating-note:hover {
  border-color: rgba(232,183,111,.58);
  background: rgba(3,25,42,.86);
  transform: translateY(-4px);
}

.floating-note p { margin: 0; color: rgba(247,239,223,.68); font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .09em; }
.floating-note strong { color: var(--cream); }
.floating-note-arrow { color: var(--gold); font-size: 15px; }
.sound-bars { display: flex; height: 28px; align-items: center; gap: 3px; }
.sound-bars i { display: block; width: 3px; border-radius: 2px; background: var(--coral); animation: sound 1s ease-in-out infinite alternate; }
.sound-bars i:nth-child(1) { height: 9px; }
.sound-bars i:nth-child(2) { height: 21px; animation-delay: -.3s; }
.sound-bars i:nth-child(3) { height: 28px; animation-delay: -.6s; }
.sound-bars i:nth-child(4) { height: 16px; animation-delay: -.2s; }
.sound-bars i:nth-child(5) { height: 7px; animation-delay: -.8s; }
@keyframes sound { to { transform: scaleY(.45); } }

.brittany-copy {
  max-width: 650px;
}

.brittany-copy h2 {
  font-size: clamp(43px, 5vw, 72px);
}

.brittany-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 25px 0 0;
  color: rgba(247,239,223,.67);
  font-size: 17px;
  line-height: 1.75;
}

.brittany-copy .amazon-button {
  margin-top: 34px;
}

.centered {
  margin: 0 auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 66px;
  border-top: 1px solid rgba(9,38,58,.13);
  border-bottom: 1px solid rgba(9,38,58,.13);
}

.mood-grid article {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid rgba(9,38,58,.13);
}

.mood-grid article:last-child { border-right: 0; }
.mood-grid span { color: #9a493d; font-family: var(--serif); font-style: italic; }
.mood-grid h3 { margin: 70px 0 12px; font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -.035em; }
.mood-grid p { max-width: 330px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.author-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 80px;
  padding-top: 50px;
}

.author-monogram {
  position: relative;
  display: grid;
  width: min(320px, 28vw);
  aspect-ratio: 1;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(9,38,58,.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223,114,95,.16), transparent 66%);
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(74px, 9vw, 132px);
  letter-spacing: -.12em;
  text-indent: -.12em;
}

.author-monogram::before,
.author-monogram::after {
  position: absolute;
  border: 1px solid rgba(9,38,58,.08);
  border-radius: 50%;
  content: "";
}
.author-monogram::before { inset: 9%; }
.author-monogram::after { inset: 19%; }

.author-section > div { max-width: 670px; }
.author-section h2 { margin-bottom: 24px; }
.author-section > div > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.8; }

.author-source-link {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(9, 38, 58, 0.22);
  font-size: 12px;
  font-weight: 700;
}

.faq-section {
  max-width: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(22, 113, 144, 0.3), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #0a3550);
  color: var(--cream);
}

.faq-heading {
  max-width: 920px;
}

.faq-heading h2 {
  color: var(--cream);
}

.faq-heading > p:last-child {
  color: rgba(247, 239, 223, 0.68);
}

.faq-grid {
  display: grid;
  max-width: 1200px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.faq-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(247, 239, 223, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.faq-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.faq-card p {
  margin: 16px 0 0;
  color: rgba(247, 239, 223, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.faq-card a {
  display: inline-block;
  margin-top: 17px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(232, 183, 111, 0.45);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.final-section {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 690px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 110px 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(3,25,42,.85), rgba(3,25,42,.6)),
    url("og.jpg") center / cover;
  color: var(--cream);
  text-align: center;
}

.final-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--navy-950), transparent 32%, transparent 68%, var(--navy-950));
  content: "";
}

.final-section .eyebrow { justify-content: center; }
.final-section h2 { max-width: 900px; font-size: clamp(48px, 7vw, 90px); }
.final-section > p:not(.eyebrow) { max-width: 660px; margin: 27px auto 34px; color: rgba(247,239,223,.72); font-size: 18px; }
.final-section small { margin-top: 18px; color: rgba(247,239,223,.43); font-size: 11px; letter-spacing: .05em; }
.final-glow { position: absolute; top: 50%; left: 50%; z-index: -1; width: 660px; height: 360px; border-radius: 50%; background: rgba(223,114,95,.2); filter: blur(90px); transform: translate(-50%,-50%); }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px clamp(24px, 6vw, 80px);
  background: #02131f;
  color: rgba(247,239,223,.52);
  font-size: 11px;
}

.footer-wordmark { color: var(--cream); }
footer p { margin: 0; }
.footer-links {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 5px;
}
.footer-links a:first-child { color: var(--cream); }
.footer-links .music-link {
  color: rgba(247,239,223,.72);
  font-size: 10px;
  transition: color 180ms ease;
}
.footer-links .music-link:hover { color: var(--gold); }
.footer-links a:not(:first-child):not(.music-link) {
  min-height: 24px;
  color: rgba(247,239,223,.72);
  font-size: 10px;
  line-height: 24px;
}
.footer-links a:hover { color: var(--gold); }

.mobile-buy {
  display: none;
}

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 150px;
  }
  .hero-copy { max-width: 820px; }
  .hero h1 { font-size: clamp(58px, 9vw, 92px); }
  .cover-stage { min-height: 690px; }
  .hero-cover { width: min(34vw, 320px); }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .promise-card:last-child { grid-column: 1 / -1; min-height: 320px; }
  .promise-card:last-child .card-kicker { margin-top: 45px; }
  .brittany-section { grid-template-columns: .8fr 1.2fr; gap: 55px; }
  .floating-note { right: -16px; }
  .series-facts { grid-template-columns: 1fr; }
  .fact-grid { max-width: 760px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 30px; }
  .site-header { padding: 22px 20px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 11px; }
  .wordmark { gap: 5px; font-size: 9px; letter-spacing: .2em; }
  .wordmark i { font-size: 16px; }
  .hero { gap: 18px; padding: 120px 20px 60px; }
  .hero h1 { font-size: clamp(49px, 14vw, 70px); }
  .hero-lead { margin-top: 24px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .amazon-button { width: 100%; justify-content: space-between; }
  .hero-notes { flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; }
  .cover-stage { min-height: 520px; }
  .cover-stage {
    content-visibility: auto;
    contain-intrinsic-block-size: 520px;
  }
  .hero-cover { width: min(54vw, 270px); }
  .cover-back-left { transform: translate(-86%, -43%) rotateY(14deg) rotateZ(-11deg) scale(.78); }
  .cover-back-right { transform: translate(-14%, -42%) rotateY(-14deg) rotateZ(9deg) scale(.8); }
  .sun-disc { top: 16%; width: 62vw; }
  .vinyl-lines { display: none; }
  .section-shell { padding: 86px 20px; }
  .section-heading h2, .author-section h2 { font-size: clamp(43px, 13vw, 62px); }
  .section-heading > p:last-child { font-size: 16px; }
  .fact-grid, .faq-grid { grid-template-columns: 1fr; }
  .fact-grid > div { padding: 21px 20px; }
  .faq-grid { margin-top: 42px; }
  .faq-card { padding: 24px 22px; }
  .promise-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .promise-card, .promise-card:last-child { min-height: 350px; grid-column: auto; }
  .promise-card:last-child .card-kicker, .card-kicker { margin-top: 60px; }
  .quote-section { min-height: 520px; background-attachment: scroll; }
  .books-section { padding-right: 0; }
  .books-heading { grid-template-columns: 1fr; gap: 24px; padding-right: 20px; }
  .book-rail { grid-auto-columns: min(76vw, 310px); }
  .brittany-section { grid-template-columns: 1fr; gap: 64px; }
  .brittany-visual { max-width: 86vw; justify-self: center; }
  .floating-note { right: -12px; bottom: 24px; }
  .brittany-copy h2 { font-size: clamp(42px, 12vw, 60px); }
  .mood-grid { grid-template-columns: 1fr; }
  .mood-grid article { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(9,38,58,.13); }
  .mood-grid article:last-child { border-bottom: 0; }
  .mood-grid h3 { margin-top: 40px; }
  .author-section { grid-template-columns: 1fr; gap: 50px; }
  .author-monogram { width: 230px; }
  .final-section { min-height: 650px; padding: 100px 20px 130px; background-position: 36% center; }
  .final-section h2 { font-size: clamp(48px, 14vw, 70px); }
  footer { align-items: flex-start; flex-direction: column; padding-bottom: 105px; }
  .footer-links { align-items: flex-start; }
  .mobile-buy {
    position: fixed;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 100;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 12px 22px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    background: rgba(207,91,73,.94);
    box-shadow: 0 16px 42px rgba(3,25,42,.32);
    backdrop-filter: blur(16px);
    color: white;
    font-size: 13px;
    font-weight: 700;
  }
  .mobile-buy span:last-child { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .quote-section { background-attachment: scroll; }
}
