/* Blood Sisters — site stylesheet
   Self-hosted display font (Splash, by Robert E. Leuschke, SIL OFL,
   github.com/googlefonts/splash) — no external requests. */

@font-face {
  font-family: "Splash";
  src: url("../fonts/splash.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-0: #0b0b0f;
  --bg-1: #121218;
  --bg-2: #17171f;
  --ink: #ece8e2;
  --ink-dim: #b9b4ac;
  --blood: #a4161a;
  --blood-bright: #d1373b;
  --blood-deep: #6a0f12;
  /* Lighter red reserved for red TEXT on dark backgrounds. --blood-bright reads fine as a
     large-text/button-background/border color, but falls short of 4.5:1 for normal-size
     text, so anything under large-text size uses this instead. Verified against bg-0/1/2. */
  --blood-text: #e35458;
  --focus-ring: #e8c9ca;
  --font-display: "Splash", cursive, system-ui, sans-serif;
  --font-body: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1180px;
  --radius: 6px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

a {
  color: var(--blood-text);
}

a:not([class]) {
  text-underline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 {
  font-size: clamp(3.4rem, 8vw + 1.4rem, 7rem);
}

h2 {
  font-size: clamp(2.5rem, 4vw + 1.4rem, 3.9rem);
}

h3 {
  font-size: clamp(1.75rem, 2vw + 1.4rem, 2.25rem);
}

p {
  margin: 0 0 1em;
  color: var(--ink);
}

.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Focus visibility, everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--blood);
  color: #fff;
  padding: 0.6em 1em;
  border-radius: var(--radius);
  z-index: 200;
  transition: top 0.15s ease;
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Blood-red rule / drip accent under headings */
.rule-drip {
  display: block;
  width: 140px;
  height: 18px;
  margin: 0.6em 0 1.2em;
  background: url("../assets/rule-drip.svg") left center / contain no-repeat;
}

.rule-drip.center {
  margin-inline: auto;
}

/* Atmosphere: vignette + faint grain, cheap CSS/SVG only */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(164, 22, 26, 0.14), transparent 55%),
    radial-gradient(ellipse at 50% 110%, rgba(0, 0, 0, 0.9), transparent 60%),
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

@media (prefers-reduced-motion: no-preference) {
  .atmosphere::before {
    content: "";
    position: absolute;
    inset: -10%;
    background: radial-gradient(ellipse at 30% 20%, rgba(164, 22, 26, 0.06), transparent 45%);
    animation: fog-drift 26s ease-in-out infinite alternate;
  }
}

@keyframes fog-drift {
  from {
    transform: translate(-2%, -1%) scale(1);
  }
  to {
    transform: translate(3%, 2%) scale(1.06);
  }
}

/* ===== Header / nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 15, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(236, 232, 226, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--blood-bright);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.wordmark span {
  color: var(--blood-text);
}

.wordmark:focus-visible {
  outline-offset: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.6em 0.9em;
  color: var(--ink-dim);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(236, 232, 226, 0.06);
}

.nav-link[aria-current="page"] {
  color: var(--ink);
  position: relative;
}

.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.9em;
  right: 0.9em;
  bottom: 0.35em;
  height: 2px;
  background: var(--blood);
}

/* dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.6em 0.9em;
  color: var(--ink-dim);
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-dropdown-toggle:hover {
  color: var(--ink);
  background: rgba(236, 232, 226, 0.06);
}

.nav-dropdown-toggle .caret {
  font-size: 0.7em;
  transition: transform 0.15s ease;
}

.nav-dropdown[data-open="true"] .nav-dropdown-toggle .caret {
  transform: rotate(180deg);
}

.nav-dropdown[data-open="true"] .nav-dropdown-toggle {
  color: var(--ink);
  background: rgba(236, 232, 226, 0.06);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 200px;
  background: var(--bg-2);
  border: 1px solid rgba(236, 232, 226, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  padding: 0.4rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.nav-dropdown[data-open="true"] .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6em 0.8em;
  color: var(--ink-dim);
  text-decoration: none;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.nav-dropdown-menu a:hover {
  background: rgba(236, 232, 226, 0.08);
  color: var(--ink);
}

.nav-dropdown-menu a[aria-current="page"] {
  color: var(--blood-text);
}

.nav-dropdown:has(.nav-dropdown-menu a[aria-current="page"]) .nav-dropdown-toggle {
  color: var(--ink);
}

.nav-cta {
  margin-left: 0.5rem;
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(236, 232, 226, 0.2);
  border-radius: var(--radius);
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(236, 232, 226, 0.08);
  background: var(--bg-1);
}

.mobile-panel a {
  padding: 0.75em 0.5em;
  color: var(--ink-dim);
  text-decoration: none;
  font-family: var(--font-ui);
  border-radius: var(--radius);
}

.mobile-panel a:hover {
  color: var(--ink);
  background: rgba(236, 232, 226, 0.06);
}

.mobile-panel a[aria-current="page"] {
  color: var(--blood-text);
}

.mobile-panel .btn {
  margin-top: 0.5rem;
  text-align: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: transform 0.12s ease, background-color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--blood);
  color: #fff;
  box-shadow: 0 4px 18px rgba(164, 22, 26, 0.35);
}

.btn-primary:hover {
  background: var(--blood-bright);
  box-shadow: 0 6px 22px rgba(164, 22, 26, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(236, 232, 226, 0.35);
}

.btn-secondary:hover {
  background: rgba(236, 232, 226, 0.08);
  border-color: rgba(236, 232, 226, 0.6);
}

.btn-ghost {
  background: rgba(236, 232, 226, 0.04);
  color: var(--ink);
  border-color: rgba(236, 232, 226, 0.16);
}

.btn-ghost:hover {
  background: rgba(236, 232, 226, 0.09);
}

.btn-lg {
  padding: 1em 2.2em;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding-block: 3rem;
  overflow: clip;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  width: 100%;
}

.hero-copy .eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--blood-text);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  color: var(--blood-bright);
  text-shadow: 0 0 40px rgba(164, 22, 26, 0.45);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-title {
    animation: title-fade-in 1.1s ease both;
  }
}

@keyframes title-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-tagline {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--ink-dim);
  max-width: 42ch;
  margin-bottom: 0.5rem;
}

.hero-meta {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--ink-dim);
  margin-bottom: 1.75rem;
}

.preorder-date {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blood-text);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-cover-wrap {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.hero-cover {
  width: min(340px, 78vw);
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.75),
    0 10px 25px rgba(164, 22, 26, 0.18);
  transform: rotateY(-10deg) rotateX(3deg);
  transition: transform 0.4s ease;
}

.hero-cover:hover {
  transform: rotateY(-4deg) rotateX(1deg) scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
  .hero-cover {
    transform: none;
  }
}

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.section-alt {
  background: linear-gradient(180deg, transparent, var(--bg-1) 12%, var(--bg-1) 88%, transparent);
}

.section-head {
  max-width: 60ch;
  margin-bottom: 2.25rem;
}

.section-narrow {
  max-width: 70ch;
  margin-inline: auto;
}

.prose p {
  color: var(--ink-dim);
}

.placeholder-copy {
  position: relative;
  background: rgba(164, 22, 26, 0.08);
  border-left: 3px solid var(--blood);
  padding: 0.15em 0.6em;
  border-radius: 3px;
}

/* ===== About-the-book / author teaser ===== */
.author-teaser {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid rgba(236, 232, 226, 0.08);
  border-radius: 10px;
  padding: 2rem;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
  max-width: 62ch;
}

a.author-teaser:hover {
  border-color: rgba(164, 22, 26, 0.5);
  transform: translateY(-2px);
}

.photo-frame {
  display: inline-block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--blood);
  box-shadow: 0 0 0 4px rgba(164, 22, 26, 0.12);
  flex-shrink: 0;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-teaser h3 {
  margin-bottom: 0.25rem;
}

.author-teaser p {
  color: var(--ink-dim);
  margin: 0;
}

.teaser-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--blood-text);
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

/* ===== Newsletter strip ===== */
.newsletter-strip {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border-top: 1px solid rgba(236, 232, 226, 0.08);
  border-bottom: 1px solid rgba(236, 232, 226, 0.08);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.newsletter-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter-strip-copy {
  max-width: 44ch;
}

.newsletter-strip-copy h2 {
  margin-bottom: 0.35rem;
}

.newsletter-strip-copy p {
  color: var(--ink-dim);
  margin: 0;
}

/* ===== Forms ===== */
.form-card {
  background: var(--bg-2);
  border: 1px solid rgba(236, 232, 226, 0.08);
  border-radius: 10px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 560px;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--ink-dim);
  margin-bottom: 0.4em;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg-0);
  border: 1px solid rgba(236, 232, 226, 0.18);
  border-radius: var(--radius);
  padding: 0.75em 0.9em;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blood-bright);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.inline-form .field {
  flex: 1 1 220px;
  margin-bottom: 0;
}

.form-note {
  margin-top: 1rem;
  padding: 0.85em 1em;
  border-radius: var(--radius);
  background: rgba(164, 22, 26, 0.1);
  border: 1px solid rgba(164, 22, 26, 0.3);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  color: var(--ink);
  display: none;
}

.form-note.is-visible {
  display: block;
}

.form-note.success {
  background: rgba(58, 120, 82, 0.12);
  border-color: rgba(58, 120, 82, 0.35);
}

.beehiiv-embed {
  margin-top: 2rem;
  min-height: 120px;
}

.beehiiv-embed iframe {
  max-width: 100%;
}

.newsletter-alt {
  margin-top: 1.25rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
}

/* ===== Pre-order page ===== */
.preorder-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.preorder-cover {
  width: min(320px, 100%);
  margin-inline: auto;
  border-radius: 8px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.75), 0 10px 25px rgba(164, 22, 26, 0.18);
  transform: rotateY(8deg) rotateX(2deg);
}

@media (prefers-reduced-motion: reduce) {
  .preorder-cover {
    transform: none;
  }
}

.format-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-block: 2rem;
}

.format-card {
  background: var(--bg-2);
  border: 1px solid rgba(236, 232, 226, 0.08);
  border-radius: 10px;
  padding: 1.75rem;
}

.format-card .format-name {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--blood-text);
  margin-bottom: 0.6rem;
}

.format-card .format-price {
  font-family: var(--font-display);
  font-size: 2.9rem;
  margin-bottom: 0.4rem;
}

.format-card p {
  color: var(--ink-dim);
  font-size: 0.92rem;
  margin: 0;
}

.format-card .format-buy {
  margin-top: 1.25rem;
  width: 100%;
  text-align: center;
}

.retailer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.retailer-row .btn {
  flex: 0 1 auto;
}

/* ===== About page ===== */
.about-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--blood);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 0 6px rgba(164, 22, 26, 0.08);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pull-quote {
  border-left: 3px solid var(--blood);
  padding-left: 1.25rem;
  margin: 2rem 0;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
}

.pull-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--ink-dim);
}

/* ===== Contact page ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-alt {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(236, 232, 226, 0.1);
}

.contact-alt a {
  font-family: var(--font-ui);
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-2);
  border: 1px solid rgba(164, 22, 26, 0.45);
  color: var(--ink);
  padding: 0.85em 1.4em;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 300;
  max-width: min(90vw, 360px);
  text-align: center;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(236, 232, 226, 0.08);
  padding-block: 2.5rem;
  margin-top: 3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  color: var(--ink-dim);
  font-family: var(--font-ui);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--ink-dim);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .mobile-panel.is-open {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-tagline {
    margin-inline: auto;
  }

  .hero-cover-wrap {
    order: -1;
  }

  .about-layout,
  .contact-layout,
  .preorder-hero {
    grid-template-columns: 1fr;
  }

  .about-photo-frame {
    position: static;
    max-width: 280px;
    margin-inline: auto;
  }

  .author-teaser {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .retailer-row {
    flex-direction: column;
  }

  .retailer-row .btn {
    width: 100%;
  }
}
