:root {
  --ink: #211b18;
  --charcoal: #171312;
  --oxblood: #5b1f1c;
  --ember: #b85c2c;
  --gold: #b99858;
  --parchment: #eee0c2;
  --cream: #f7efdd;
  --smoke: #a99d8c;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 0.7rem 1rem;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #d99054;
  outline-offset: 4px;
}
.site-header {
  height: 82px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid #ffffff2c;
  transition: 0.25s;
}
.site-header.is-scrolled {
  position: fixed;
  background: #1b1311f2;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px #0003;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}
.brand svg {
  width: 35px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}
.brand strong {
  display: block;
  font: 600 1.2rem var(--display);
  letter-spacing: 0.06em;
}
.brand small {
  display: block;
  margin-top: 6px;
  color: #d9c8ac;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.19em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.site-nav a:not(.nav-cta):after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.site-nav a:hover:after {
  transform: scaleX(1);
}
.nav-cta {
  padding: 0.65rem 1.1rem;
  border: 1px solid #b9985888;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
}
.nav-toggle i {
  display: block;
  width: 24px;
  border-top: 1px solid white;
  margin: 5px;
  transition: 0.25s;
}
.hero {
  min-height: 760px;
  height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #17110f;
  color: white;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 11, 10, 0.88) 0%,
      rgba(23, 13, 12, 0.6) 34%,
      rgba(20, 12, 10, 0.1) 70%
    ),
    linear-gradient(0deg, #17100eaa 0%, transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 70px auto 0;
}
.eyebrow,
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
}
.eyebrow {
  color: #d4b775;
}
.hero h1 {
  font: 600 clamp(5rem, 11vw, 9.5rem)/0.7 var(--display);
  letter-spacing: -0.045em;
  margin: 0.34em 0 0.25em;
  text-shadow: 0 3px 30px #000;
}
.hero h1 span {
  font-size: 0.41em;
  display: block;
  line-height: 1.1;
  letter-spacing: 0.08em;
  font-style: italic;
  font-weight: 500;
}
.hero-hook {
  font: 500 clamp(1.15rem, 2vw, 1.45rem)/1.5 var(--display);
  color: #eee2ca;
  margin: 0 0 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  text-decoration: none;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font: 600 0.72rem var(--sans);
  transition: 0.2s;
}
.button-light {
  color: #fff;
  background: #5b1f1ccc;
}
.button-light:hover {
  background: #762b26;
  transform: translateY(-2px);
}
.hero-credit {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  font: italic 1rem/1.5 var(--display);
  text-align: right;
  color: #ead9b9;
}
.embers i {
  position: absolute;
  z-index: 1;
  width: 3px;
  height: 3px;
  background: #e0672f;
  border-radius: 50%;
  box-shadow: 0 0 8px #ef7138;
  animation: rise 8s linear infinite;
}
.embers i:nth-child(1) {
  left: 8%;
  bottom: 8%;
  animation-delay: -2s;
}
.embers i:nth-child(2) {
  left: 19%;
  bottom: 25%;
  animation-delay: -5s;
}
.embers i:nth-child(3) {
  left: 32%;
  bottom: 12%;
  animation-delay: -1s;
}
.embers i:nth-child(4) {
  left: 4%;
  bottom: 48%;
  animation-delay: -7s;
}
.embers i:nth-child(5) {
  left: 39%;
  bottom: 48%;
  animation-delay: -4s;
}
@keyframes rise {
  to {
    transform: translate(35px, -400px);
    opacity: 0;
  }
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: clamp(5rem, 10vw, 9rem) 24px;
}
.book-intro {
  position: relative;
}
.section-mark {
  position: absolute;
  right: 24px;
  top: 1rem;
  color: #5b1f1c0b;
  font: 600 15rem var(--display);
}
.kicker {
  color: var(--oxblood);
  margin: 0 0 1rem;
}
.book-heading h2,
.world h2,
.author h2,
.purchase h2 {
  font: 600 clamp(2.8rem, 5.5vw, 5rem)/0.98 var(--display);
  margin: 0;
}
.book-heading h2 em {
  color: var(--oxblood);
  font-weight: 500;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 8vw, 7rem);
  margin-top: 5rem;
}
.book-facts {
  border-top: 1px solid #826d4c;
}
.book-facts div {
  padding: 1.25rem 0;
  border-bottom: 1px solid #c7b894;
}
.book-facts span {
  display: block;
  color: #796b5d;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.book-facts strong {
  font: 600 1.18rem var(--display);
}
.blurb {
  font-size: 1.02rem;
}
.blurb .lead,
.author .lead {
  font: 600 1.65rem/1.35 var(--display);
  color: var(--oxblood);
}
.blurb blockquote {
  margin: 3rem 0 0;
  padding: 1rem 0 1rem 2rem;
  border-left: 2px solid var(--ember);
  font: italic 1.65rem var(--display);
}
.world {
  position: relative;
  overflow: hidden;
  background: #211916;
  color: #eadfc9;
}
.world:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, #69332644, transparent 37%),
    linear-gradient(135deg, #110e0dcc, #2a1c18);
}
.world-map {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}
.world-map svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #d2b678;
  stroke-width: 1;
}
.world-map circle {
  fill: #d2b678;
}
.world-inner {
  position: relative;
}
.world-copy {
  max-width: 700px;
}
.world .kicker {
  color: #d7af6c;
}
.world-copy p:last-child {
  color: #cfc2ad;
  max-width: 600px;
}
.places {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  border-top: 1px solid #ae8d573b;
  border-bottom: 1px solid #ae8d573b;
}
.place {
  padding: 2.5rem 2rem;
  border-right: 1px solid #ae8d573b;
}
.place:first-child {
  padding-left: 0;
}
.place:last-child {
  border: 0;
}
.place span {
  font: italic 1rem var(--display);
  color: #b78654;
}
.place h3 {
  font: 600 2rem var(--display);
  margin: 0.6rem 0;
}
.place p {
  color: #bcafa0;
  font-size: 0.92rem;
}
.place.featured {
  background: #6b2b222e;
}
.author {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}
.author-sigil {
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #e7d5b2 0 46%, transparent 47%),
    repeating-radial-gradient(circle, #a68d5e19 0 1px, transparent 1px 8px);
}
.author-sigil span {
  font: 600 clamp(7rem, 16vw, 13rem)/1 var(--display);
  color: var(--oxblood);
  text-shadow: 4px 4px 0 #b9985844;
}
.author-sigil svg {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  fill: none;
  stroke: #73572e;
  stroke-width: 0.7;
  opacity: 0.35;
}
.author-copy p:not(.kicker) {
  max-width: 620px;
}
.privacy-line {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d4c39f;
  color: #675d52;
  font-size: 0.8rem;
}
.privacy-line svg {
  width: 24px;
  min-width: 24px;
  fill: none;
  stroke: var(--oxblood);
  stroke-width: 1.5;
}
.purchase {
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: #d9c7a3;
  background-image:
    linear-gradient(90deg, #5b1f1c0a 1px, transparent 1px),
    linear-gradient(#5b1f1c0a 1px, transparent 1px);
  background-size: 30px 30px;
}
.purchase-card {
  position: relative;
  max-width: 920px;
  margin: auto;
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem);
  border: 1px solid #8e6b38;
  background: #f2e5ca;
  box-shadow: 0 18px 50px #49341c22;
}
.purchase-card p {
  max-width: 600px;
  margin: 1.3rem auto 2rem;
}
.purchase-button {
  min-width: 230px;
  color: #9f8b74;
  background: #ded2ba;
  border-color: #b6a78d;
  cursor: not-allowed;
  flex-direction: column;
  gap: 1px;
}
.purchase-button small {
  font-size: 0.55rem;
  letter-spacing: 0.16em;
}
.purchase-card .honest-note {
  margin: 1rem auto 0;
  font-size: 0.72rem;
  color: #72685b;
}
.corner {
  position: absolute;
  width: 35px;
  height: 35px;
  border-color: #8e6b38;
}
.corner-a {
  top: 12px;
  left: 12px;
  border-top: 1px solid;
  border-left: 1px solid;
}
.corner-b {
  right: 12px;
  bottom: 12px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.site-footer {
  padding: 4rem max(24px, calc((100vw - var(--max)) / 2)) 1.5rem;
  background: #171312;
  color: #a99d8c;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.footer-brand {
  color: #eadfc9;
  font: 600 2rem var(--display);
  text-decoration: none;
}
.site-footer p {
  margin: 0.35rem 0;
  font-size: 0.8rem;
}
.footer-note h2 {
  margin: 0;
  color: #d7c7a9;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #ffffff1c;
}
.footer-bottom a {
  font-size: 0.72rem;
  color: #d2b678;
  text-decoration: none;
}
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }
  .site-header {
    height: 70px;
    padding: 0 18px;
  }
  .brand small {
    display: none;
  }
  .nav-toggle {
    display: block;
    z-index: 2;
    position: absolute;
    top: 15px;
    right: 10px;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    background: #1a1110;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    visibility: hidden;
    opacity: 0;
    transition: 0.25s;
  }
  .site-nav a {
    font: 600 1.8rem var(--display);
    text-transform: none;
  }
  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
  }
  .nav-open .nav-toggle i:first-child {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-open .nav-toggle i:nth-child(2) {
    opacity: 0;
  }
  .nav-open .nav-toggle i:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }
  .hero {
    min-height: 680px;
    width: 100vw;
    max-width: 100vw;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #160f0ed9 0%, #1a100ead 60%, #160f0e40),
      linear-gradient(0deg, #17100edb, transparent 50%);
  }
  .hero-content {
    width: auto;
    min-width: 0;
    max-width: none;
    margin: 160px 18px 0;
    align-self: flex-start;
  }
  .eyebrow {
    max-width: 100%;
    font-size: 0.64rem;
    line-height: 1.6;
    letter-spacing: 0.17em;
  }
  .hero h1 {
    font-size: clamp(4.8rem, 23vw, 7rem);
  }
  .hero-hook {
    max-width: 340px;
  }
  .hero-credit {
    display: none;
  }
  .book-grid,
  .author {
    grid-template-columns: 1fr;
  }
  .book-grid {
    margin-top: 3rem;
    gap: 2rem;
  }
  .places {
    grid-template-columns: 1fr;
  }
  .place,
  .place:first-child {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid #ae8d573b;
  }
  .place.featured {
    margin: 0 -24px;
    padding: 1.5rem 24px;
  }
  .author-sigil {
    max-width: 380px;
    margin: auto;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom a {
    display: inline-block;
    margin-top: 1rem;
  }
}
@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
