:root {
  --ink: #0b0909;
  --ink-soft: #14100f;
  --paper: #eee5d5;
  --paper-muted: #b9ad9a;
  --ember: #e66524;
  --ember-bright: #ff8a3c;
  --gold: #ca9b55;
  --line: rgba(238, 229, 213, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 8%, rgba(137, 50, 13, 0.14), transparent 25rem),
    var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ember), var(--gold), transparent);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.65rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-200%);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
  padding-block: 1.8rem;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 0.78;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  flex-direction: column;
}

.wordmark span:last-child {
  color: var(--gold);
  font-size: 0.72em;
  letter-spacing: 0.26em;
}

.site-header nav {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.site-header nav a,
.header-cta {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a {
  color: var(--paper-muted);
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--paper);
}

.header-cta {
  justify-self: end;
  padding-bottom: 0.25rem;
  color: var(--paper);
  border-bottom: 1px solid var(--ember);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  align-items: center;
  min-height: 100svh;
  padding: 9rem max(1.5rem, calc((100vw - var(--max-width)) / 2)) 5rem;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(11, 9, 9, 0.92) 45%, rgba(11, 9, 9, 0.36) 100%),
    radial-gradient(circle at 75% 45%, rgba(230, 101, 36, 0.22), transparent 30%);
  content: "";
}

.hero-embers {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: 1%;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(202, 155, 85, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(202, 155, 85, 0.025),
    0 0 0 10rem rgba(230, 101, 36, 0.018);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(4rem, 8.1vw, 8.1rem);
}

h1 em {
  color: var(--ember-bright);
  font-weight: 400;
}

.hero-lede {
  max-width: 590px;
  margin: 2rem 0 0;
  color: var(--paper-muted);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.7rem 1.35rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  color: var(--ink);
  background: var(--paper);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #fff8ea;
  box-shadow: 0 0 2rem rgba(230, 101, 36, 0.2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--ember-bright);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(0.3rem);
}

.hero-cover {
  position: relative;
  justify-self: center;
  width: 100%;
  margin: 0;
  transform: rotate(1.5deg);
}

.hero-cover img {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(202, 155, 85, 0.34);
  box-shadow: -2rem 2.4rem 5rem rgba(0, 0, 0, 0.72);
  height: auto;
  width: 100%;
}

.cover-glow {
  position: absolute;
  inset: 16% -20% 5%;
  background: rgba(230, 101, 36, 0.25);
  filter: blur(70px);
}

.hero-cover figcaption {
  margin-top: 1.2rem;
  color: var(--paper-muted);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.scroll-note {
  position: absolute;
  bottom: 2rem;
  left: max(1.5rem, calc((100vw - var(--max-width)) / 2));
  margin: 0;
  color: #766c60;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-note span {
  margin-left: 0.45rem;
  color: var(--ember);
}

.promise-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 2rem);
  min-height: 86px;
  padding: 1.2rem;
  color: var(--ink);
  background: var(--paper);
}

.promise-strip p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  font-style: italic;
}

.promise-strip span {
  color: var(--ember);
  font-size: 0.65rem;
}

.book-section,
.series-section,
.about-section {
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
}

.book-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: clamp(4rem, 9vw, 9rem);
  padding-block: clamp(7rem, 13vw, 12rem);
}

.section-number {
  position: absolute;
  z-index: -1;
  top: 3rem;
  left: -0.04em;
  color: rgba(238, 229, 213, 0.025);
  font-family: var(--serif);
  font-size: clamp(14rem, 33vw, 31rem);
  line-height: 1;
}

.book-intro h2,
.series-copy h2,
.about-heading h2,
.reader-list h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.hook {
  max-width: 610px;
  margin: 2rem 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.35;
}

.book-description {
  align-self: end;
  color: var(--paper-muted);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.book-description > p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--ember-bright);
  font-size: 4.3rem;
  line-height: 0.72;
}

.trope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.trope-list li {
  padding: 0.4rem 0.7rem;
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
}

.availability p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.75rem;
}

.availability > p::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 0.8rem var(--ember);
  content: "";
}

.series-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 10vw, 9rem);
  padding-block: clamp(7rem, 12vw, 11rem);
  border-top: 1px solid var(--line);
}

.series-copy {
  position: sticky;
  top: 3rem;
  align-self: start;
}

.series-copy > p:last-child {
  max-width: 470px;
  margin: 2rem 0 0;
  color: var(--paper-muted);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.series-books {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: books;
}

.series-books li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
}

.series-books li:last-child {
  border-bottom: 1px solid var(--line);
}

.series-books .current {
  border-top-color: var(--ember);
}

.book-number {
  color: var(--ember);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.book-state,
.series-books li p {
  margin: 0;
}

.series-books .book-state {
  margin-bottom: 0.25rem;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.series-books h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
}

.series-books h3 + p {
  margin-top: 0.45rem;
  color: var(--paper-muted);
  font-family: var(--serif);
}

.series-books .unannounced {
  opacity: 0.55;
}

.reader-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
  padding: clamp(5rem, 10vw, 9rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

.reader-list .eyebrow {
  color: #97502a;
}

.reader-list-copy {
  position: relative;
  z-index: 1;
}

.reader-list-copy > p:last-child {
  max-width: 570px;
  margin: 1.7rem 0 0;
  color: #60564b;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.sigil {
  position: absolute;
  top: 50%;
  left: 14%;
  width: 22rem;
  aspect-ratio: 1;
  border: 1px solid rgba(151, 80, 42, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.sigil::before,
.sigil::after {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(151, 80, 42, 0.12);
  content: "";
  transform: rotate(45deg);
}

.sigil::after {
  transform: rotate(22.5deg);
}

/*.signup-form {*/
/*  position: relative;*/
/*  z-index: 1;*/
/*}*/

/*.signup-form label {*/
/*  display: block;*/
/*  margin-bottom: 0.6rem;*/
/*  font-size: 0.65rem;*/
/*  font-weight: 750;*/
/*  letter-spacing: 0.17em;*/
/*  text-transform: uppercase;*/
/*}*/

/*.signup-row {*/
/*  display: grid;*/
/*  grid-template-columns: 1fr auto;*/
/*  border-bottom: 1px solid #7f7468;*/
/*}*/

/*.signup-row input,*/
/*.signup-row button {*/
/*  min-height: 3.8rem;*/
/*  border: 0;*/
/*}*/

/*.signup-row input {*/
/*  min-width: 0;*/
/*  padding: 0.6rem 0;*/
/*  color: var(--ink);*/
/*  background: transparent;*/
/*  font-family: var(--serif);*/
/*  font-size: 1.1rem;*/
/*}*/

/*.signup-row input::placeholder {*/
/*  color: #897d70;*/
/*}*/

/*.signup-row button {*/
/*  padding: 0.6rem 1.2rem;*/
/*  color: var(--paper);*/
/*  background: var(--ink);*/
/*  font-size: 0.67rem;*/
/*  font-weight: 750;*/
/*  letter-spacing: 0.11em;*/
/*  text-transform: uppercase;*/
/*}*/

/*.signup-row input:disabled,*/
/*.signup-row button:disabled {*/
/*  opacity: 1;*/
/*  cursor: not-allowed;*/
/*}*/

/*.signup-form > p {*/
/*  margin: 0.75rem 0 0;*/
/*  color: #776c60;*/
/*  font-size: 0.7rem;*/
/*}*/

#mc-embedded-subscribe-form {
  position: relative;
  z-index: 1;
}

#mc-embedded-subscribe-form label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.mc-field-group {
  margin-bottom: 2rem;
}
#mc_embed_signup_scroll .indicates-required {
    text-align: right;
}
#mc_embed_signup_scroll .asterisk {
    color: #97502a;
}
#mc_embed_signup_scroll .clear.foot {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
#mc_embed_signup_scroll .clear.foot .refferal_badge {
    display: none !important;
}
.mc-field-group input {
    width: 100%;
    min-height: 48px;
    border-width: 1px 1px 2px 1px;
    background: transparent;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: #0b0909;
    transition: background .4s;
}
.mc-field-group input:hover {
    background: #ffffff80;
}
.mc-field-group input:focus {
    background: #ffffff;
}
.mc-field-group .helper_text {
    display: block;
    padding-top: .25rem;
    font-style:italic;
}
/*.mc-field-group {*/
/*  display: grid;*/
/*  grid-template-columns: 1fr auto;*/
/*  border-bottom: 1px solid #7f7468;*/
/*}*/

/*.mc-field-group input,*/
/*.mc-field-group button {*/
/*  min-height: 3.8rem;*/
/*  border: 0;*/
/*}*/

/*.mc-field-group input {*/
/*  min-width: 0;*/
/*  padding: 0.6rem 0;*/
/*  color: var(--ink);*/
/*  background: transparent;*/
/*  font-family: var(--serif);*/
/*  font-size: 1.1rem;*/
/*}*/

/*.mc-field-group input::placeholder {*/
/*  color: #897d70;*/
/*}*/

/*.mc-field-group button {*/
/*  padding: 0.6rem 1.2rem;*/
/*  color: var(--paper);*/
/*  background: var(--ink);*/
/*  font-size: 0.67rem;*/
/*  font-weight: 750;*/
/*  letter-spacing: 0.11em;*/
/*  text-transform: uppercase;*/
/*}*/

/*.mc-field-group input:disabled,*/
/*.mc-field-group button:disabled {*/
/*  opacity: 1;*/
/*  cursor: not-allowed;*/
/*}*/

/*#mc-embedded-subscribe-form > p {*/
/*  margin: 0.75rem 0 0;*/
/*  color: #776c60;*/
/*  font-size: 0.7rem;*/
/*}*/



.about-section {
  display: grid;
  grid-template-columns: 0.8fr 1.15fr;
  gap: clamp(4rem, 12vw, 11rem);
  padding-block: clamp(7rem, 13vw, 12rem);
}

.about-heading h2 {
  color: var(--paper);
  font-size: clamp(5rem, 10vw, 9rem);
}

.about-heading h2::first-line {
  color: var(--gold);
}

.about-copy {
  align-self: end;
  max-width: 580px;
  color: var(--paper-muted);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.about-copy .about-lede {
  margin-top: 0;
  color: var(--paper);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.content-notes {
  margin-top: 2.5rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-notes summary {
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  cursor: pointer;
  text-transform: uppercase;
}

.content-notes p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
  padding-block: 2.2rem;
  color: #70675d;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
}

.site-footer p {
  margin: 0;
}

.site-footer > p:not(.copyright) {
  font-family: var(--serif);
  font-style: italic;
}

.footer-wordmark {
  color: var(--paper-muted);
}

.copyright {
  justify-self: end;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 230px;
    gap: 2rem;
  }

  .hero-cover {
    width: 100%;
  }

  .book-section,
  .series-section,
  .about-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .book-description {
    max-width: 670px;
  }

  .series-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header,
  .book-section,
  .series-section,
  .about-section,
  .site-footer {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 8.5rem 1rem 4rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, var(--ink) 0%, rgba(11, 9, 9, 0.82) 58%, var(--ink) 100%),
      radial-gradient(circle at 75% 65%, rgba(230, 101, 36, 0.22), transparent 40%);
  }

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

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.6rem);
  }

  .hero-cover {
    width: min(72vw, 310px);
    margin-top: 2rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-note {
    display: none;
  }

  .promise-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding-block: 1.4rem;
    text-align: center;
  }

  .promise-strip span {
    display: none;
  }

  .availability {
    align-items: flex-start;
    flex-direction: column;
  }

  .reader-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-inline: 1rem;
  }

  .signup-row {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .signup-row input {
    border-bottom: 1px solid #7f7468;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .copyright {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
