:root {
  --night: #081126;
  --night-soft: #111d38;
  --ink: #17213a;
  --cream: #f3eee4;
  --paper: #fbf8f1;
  --gold: #d8b264;
  --gold-pale: #f0d997;
  --muted: #687184;
  --line: rgba(23, 33, 58, 0.16);
  --serif: "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 48px;
  color: white;
}

.wordmark {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.wordmark-star {
  color: var(--gold-pale);
  font-size: 17px;
}

.site-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-header nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-header nav a:hover {
  color: white;
}

.site-header nav .nav-cta {
  padding: 11px 17px;
  color: var(--night);
  border-radius: 999px;
  background: var(--gold-pale);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  min-height: 760px;
  padding: 150px max(7vw, 48px) 90px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 73% 44%, rgba(68, 95, 150, 0.38), transparent 28%),
    linear-gradient(145deg, #071022 0%, #0b1530 55%, #101c36 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -23vw;
  width: 57vw;
  height: 57vw;
  border: 1px solid rgba(240, 217, 151, 0.13);
  border-radius: 50%;
}

.stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-pale);
  box-shadow: 0 0 12px rgba(240, 217, 151, 0.8);
  animation: twinkle 3.8s ease-in-out infinite;
}

.s1 { left: 7%; top: 26%; }
.s2 { left: 44%; top: 18%; animation-delay: 0.8s !important; }
.s3 { right: 11%; top: 19%; animation-delay: 1.6s !important; }
.s4 { left: 55%; bottom: 15%; animation-delay: 2.4s !important; }
.s5 { left: 15%; bottom: 17%; animation-delay: 1.1s !important; }
.s6 { right: 4%; bottom: 36%; animation-delay: 2s !important; }

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.35); }
}

.hero-copy,
.book-stage {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-pale);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(56px, 6.7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--gold-pale);
  font-weight: 500;
}

.hero-lead {
  max-width: 500px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.button-gold {
  color: var(--night);
  background: var(--gold-pale);
  transition: transform 160ms ease, background 160ms ease;
}

.button-gold:hover {
  background: #f6e5b0;
  transform: translateY(-2px);
}

.text-link {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  text-underline-offset: 5px;
}

.book-stage {
  display: grid;
  justify-items: center;
  padding-left: 9vw;
}

.book-cover {
  position: relative;
  z-index: 2;
  display: block;
  width: min(310px, 75vw);
  height: auto;
  border: 1px solid rgba(240, 217, 151, 0.45);
  box-shadow: -18px 25px 54px rgba(0, 0, 0, 0.38), inset 6px 0 0 rgba(255, 255, 255, 0.035);
  transform: perspective(900px) rotateY(-7deg) rotateZ(1deg);
}

.book-placeholder {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(310px, 75vw);
  aspect-ratio: 0.67;
  padding: 28px;
  color: white;
  border: 1px solid rgba(240, 217, 151, 0.48);
  background:
    radial-gradient(circle at 50% 38%, rgba(216, 178, 100, 0.3), transparent 23%),
    linear-gradient(155deg, #101c3b, #070e20);
  box-shadow: -18px 25px 54px rgba(0, 0, 0, 0.38), inset 6px 0 0 rgba(255, 255, 255, 0.035);
  transform: perspective(900px) rotateY(-7deg) rotateZ(1deg);
}

.placeholder-kicker {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cover-star {
  align-self: center;
  color: var(--gold-pale);
  font-size: 46px;
  text-shadow: 0 0 28px rgba(240, 217, 151, 0.7);
}

.book-placeholder strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
}

.cover-author {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(240, 217, 151, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 430px;
  height: 430px;
  top: 6%;
}

.orbit-two {
  width: 510px;
  height: 250px;
  top: 24%;
  transform: rotate(-27deg);
}

.missing-note {
  max-width: 320px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.book-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  padding: 130px max(7vw, 48px);
  overflow: hidden;
  background: var(--paper);
}

.section-number {
  position: absolute;
  top: 58px;
  left: max(7vw, 48px);
  color: #b7ae9e;
  font-family: var(--serif);
  font-size: 13px;
}

.book-intro h2,
.reviews-heading h2,
.buy-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.book-details {
  padding-top: 33px;
}

.book-statement {
  max-width: 630px;
  margin: 0;
  color: #384154;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.55;
}

.author-story {
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.author-story summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  list-style: none;
  cursor: pointer;
}

.author-story summary::-webkit-details-marker {
  display: none;
}

.summary-icon {
  color: #8f6a29;
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.author-story[open] .summary-icon {
  transform: rotate(45deg);
}

.story-body {
  padding: 3px 2px 26px;
}

.story-body h3 {
  margin: 8px 0 22px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.story-body p {
  margin: 0 0 19px;
  color: #515b6c;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.72;
}

.story-body .story-signature {
  margin: 27px 0 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 58px 0 0;
  border-top: 1px solid var(--line);
}

.facts div {
  padding: 22px 10px 22px 0;
  border-bottom: 1px solid var(--line);
}

.facts div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.facts div:nth-child(even) {
  padding-left: 28px;
}

.facts dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-size: 15px;
}

.reviews-section {
  padding: 120px max(7vw, 48px);
  color: white;
  background: var(--night);
}

.reviews-heading {
  display: flex;
  gap: 50px;
  align-items: end;
  justify-content: space-between;
}

.reviews-context {
  max-width: 390px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.review-carousel {
  margin-top: 70px;
}

.review-track {
  position: relative;
  min-height: 245px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: 2vw;
  align-items: center;
  padding: 34px 0;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease;
}

.review-card.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.review-mark {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 110px;
  line-height: 0.8;
  text-align: center;
}

.review-card p {
  max-width: 830px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 44px);
  font-style: italic;
  line-height: 1.35;
}

.review-card footer {
  grid-column: 2;
  margin-top: -24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 28px;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.carousel-button:hover {
  color: var(--night);
  border-color: var(--gold-pale);
  background: var(--gold-pale);
}

.carousel-status {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.current-review {
  color: white;
}

.status-line {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.buy-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
  padding: 130px max(7vw, 48px);
  background: var(--cream);
}

.buy-copy > p:not(.eyebrow):not(.copy-feedback) {
  max-width: 540px;
  margin: 30px 0 0;
  color: #5c6472;
  line-height: 1.75;
}

.copy-button {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 310px);
  margin-top: 34px;
  padding: 15px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(23, 33, 58, 0.5);
  background: transparent;
  font: 600 13px var(--sans);
  cursor: pointer;
}

.copy-feedback {
  min-height: 20px;
  margin: 8px 0 0;
  color: #6f541f;
  font-size: 12px;
}

.retailers {
  border-top: 1px solid var(--line);
}

.retailer {
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  gap: 20px;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 180ms ease, background 180ms ease;
}

.retailer:hover {
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.42);
}

.retailer-index {
  color: #9c9486;
  font-family: var(--serif);
  font-size: 13px;
}

.retailer strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
}

.retailer-arrow {
  font-size: 19px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px max(7vw, 48px);
  color: rgba(255, 255, 255, 0.62);
  background: #050b17;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.footer-pages {
  display: flex;
  gap: 22px;
}

.footer-pages a {
  color: rgba(255, 255, 255, 0.68);
  text-underline-offset: 4px;
}

.site-footer span {
  margin-right: 7px;
  color: var(--gold-pale);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.letter-page {
  background: var(--night);
}

.letter-hero {
  position: relative;
  min-height: calc(100vh - 81px);
  padding: 150px max(7vw, 48px) 110px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 24%, rgba(68, 95, 150, 0.36), transparent 28%),
    radial-gradient(circle at 13% 80%, rgba(216, 178, 100, 0.1), transparent 24%),
    linear-gradient(145deg, #071022 0%, #0b1530 57%, #101c36 100%);
}

.letter-hero::before {
  content: "";
  position: absolute;
  top: 160px;
  right: -180px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(240, 217, 151, 0.12);
  border-radius: 50%;
}

.letter-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1050px);
  margin: 0 auto;
}

.letter-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 58px;
}

.letter-heading .eyebrow {
  margin-bottom: 11px;
}

.letter-heading h1 {
  font-size: clamp(52px, 6.8vw, 96px);
}

.letter-card {
  position: relative;
  max-width: 820px;
  margin-left: auto;
  padding: 54px 58px 50px;
  color: var(--ink);
  border: 1px solid rgba(240, 217, 151, 0.34);
  background: rgba(251, 248, 241, 0.97);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.letter-layout {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.letter-layout .letter-card {
  max-width: none;
  margin-left: 0;
}

.author-portrait {
  margin: 48px 0 0;
}

.author-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(240, 217, 151, 0.32);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.author-portrait figcaption {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.letter-star {
  position: absolute;
  top: -19px;
  left: 51px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--night);
  border-radius: 50%;
  background: var(--gold-pale);
  box-shadow: 0 0 28px rgba(240, 217, 151, 0.38);
}

.letter-card p {
  margin: 0 0 22px;
  color: #465063;
  font-family: var(--serif);
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.75;
}

.letter-card .letter-lead {
  margin-bottom: 25px;
  color: var(--ink);
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 500;
}

.letter-card .letter-signature {
  margin: 33px 0 0;
  color: #8f6a29;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.letter-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 34px;
}

.media-section {
  margin-top: 82px;
}

.media-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 34px;
}

.media-heading .eyebrow {
  margin-bottom: 9px;
}

.media-heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.media-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(240, 217, 151, 0.25);
  background: rgba(255, 255, 255, 0.045);
}

.media-card + .media-card {
  margin-top: 28px;
}

.video-frame {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(240, 217, 151, 0.35);
  background: #030711;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame-wide {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.media-copy {
  max-width: 540px;
}

.media-copy .media-name {
  margin: 0 0 15px;
  color: var(--gold-pale);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-copy h3 {
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.1;
}

.media-copy > p:not(.media-name) {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
}

.media-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 29px;
  padding-bottom: 8px;
  color: white;
  border-bottom: 1px solid rgba(240, 217, 151, 0.7);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.gallery-page {
  background: var(--night);
}

.gallery-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px max(7vw, 48px) 110px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 72% 12%, rgba(68, 95, 150, 0.32), transparent 24%),
    linear-gradient(150deg, #071022 0%, #0a142c 55%, #101c36 100%);
}

.gallery-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 70px;
}

.gallery-heading .eyebrow {
  margin-bottom: 11px;
}

.gallery-heading h1 {
  font-size: clamp(58px, 7.6vw, 108px);
}

.gallery-heading > p:last-child {
  grid-column: 2;
  max-width: 520px;
  margin: -16px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--serif);
  font-size: 19px;
}

.gallery-grid {
  display: grid;
  gap: 20px;
}

.gallery-row {
  display: grid;
  gap: 20px;
  align-items: start;
}

.gallery-row-first {
  grid-template-columns: 0.43fr 0.57fr;
}

.gallery-row-second {
  grid-template-columns: 0.61fr 0.39fr;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 217, 151, 0.2);
  background: #050b17;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.02);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.gallery-item:hover img {
  transform: scale(1.018);
}

.gallery-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 36px;
}

.gallery-credit {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    padding: 24px 26px;
  }

  .site-header nav .nav-cta {
    display: none;
  }

  .site-header nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 80px;
    min-height: auto;
    padding: 138px 26px 78px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .book-stage {
    padding-left: 0;
  }

  .book-section,
  .buy-section {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 100px 26px;
  }

  .section-number {
    top: 45px;
    left: 26px;
  }

  .reviews-section {
    padding: 100px 26px;
  }

  .letter-hero {
    padding: 138px 26px 90px;
  }

  .letter-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 48px;
  }

  .letter-card {
    max-width: none;
    padding: 48px 42px 42px;
  }

  .letter-layout {
    grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
    gap: 24px;
  }

  .media-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .media-card {
    grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr);
    padding: 28px;
  }

  .gallery-hero {
    padding: 138px 26px 90px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 48px;
  }

  .gallery-heading > p:last-child {
    grid-column: 1;
    margin: 8px 0 0;
  }

  .reviews-heading {
    display: block;
  }

  .reviews-context {
    margin-top: 26px;
  }

  .buy-copy > p:not(.eyebrow):not(.copy-feedback) {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 20px;
  }

  .site-header nav {
    gap: 10px;
    max-width: calc(100vw - 75px);
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .site-header nav::-webkit-scrollbar {
    display: none;
  }

  .site-header nav .nav-page {
    font-size: 10px;
  }

  .wordmark {
    font-size: 13px;
  }

  .wordmark span:last-child {
    display: none;
  }

  .hero {
    gap: 66px;
    padding: 124px 20px 68px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 66px);
    line-height: 0.98;
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .book-placeholder {
    width: 238px;
    padding: 22px;
  }

  .book-cover {
    width: 238px;
  }

  .book-placeholder strong {
    font-size: 27px;
  }

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    width: 350px;
    height: 180px;
  }

  .book-section,
  .buy-section,
  .reviews-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-number {
    left: 20px;
  }

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

  .facts div:nth-child(odd) {
    border-right: 0;
  }

  .facts div:nth-child(even) {
    padding-left: 0;
  }

  .review-carousel {
    margin-top: 48px;
  }

  .review-track {
    min-height: 320px;
  }

  .review-card {
    display: block;
    padding: 32px 0;
  }

  .review-mark {
    display: block;
    height: 63px;
    font-size: 85px;
    text-align: left;
  }

  .review-card p {
    font-size: 28px;
  }

  .review-card footer {
    margin-top: 25px;
  }

  .carousel-controls {
    justify-content: space-between;
  }

  .carousel-status {
    order: -1;
    margin-right: auto;
  }

  .retailer {
    min-height: 92px;
  }

  .site-footer {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
    padding: 30px 20px;
  }

  .footer-pages {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .letter-hero {
    padding: 124px 20px 70px;
  }

  .letter-heading h1 {
    font-size: 49px;
  }

  .letter-card {
    padding: 42px 24px 34px;
  }

  .letter-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .author-portrait {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .letter-star {
    left: 23px;
  }

  .letter-actions .button {
    width: 100%;
  }

  .media-section {
    margin-top: 58px;
  }

  .media-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .video-frame {
    width: 100%;
  }

  .gallery-hero {
    padding: 124px 20px 70px;
  }

  .gallery-heading h1 {
    font-size: 50px;
  }

  .gallery-row,
  .gallery-row-first,
  .gallery-row-second {
    grid-template-columns: 1fr;
  }

  .gallery-actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
