:root {
  --plum: #4f1f45;
  --plum-deep: #32122d;
  --sage: #78836a;
  --sage-light: #dfe4d7;
  --gold: #e5a62e;
  --cream: #fbf8f1;
  --paper: #fffdf8;
  --ink: #2f2830;
  --line: rgba(79, 31, 69, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

a { color: inherit; }
.site-header {
  min-height: 92px;
  padding: 14px clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .92);
}
.brand {
  display: block;
  width: 250px;
  height: 74px;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
nav { display: flex; gap: clamp(20px, 4vw, 44px); }
nav a {
  color: var(--plum);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
}
nav a:hover, nav a:focus-visible { color: var(--gold); }

.hero {
  min-height: 680px;
  padding: clamp(58px, 8vw, 116px) clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .85fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -210px;
  top: -220px;
  border: 1px solid rgba(120, 131, 106, .3);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(120, 131, 106, .05), 0 0 0 76px rgba(120, 131, 106, .035);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--sage);
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2 { color: var(--plum); line-height: 1.05; }
h1 {
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -.045em;
}
.hero-title {
  position: relative;
  width: max-content;
  max-width: 100%;
}
.hero-title h1 { position: relative; z-index: 1; }
.ghost-letter {
  position: relative;
  display: inline-block;
}
.title-ghost {
  position: absolute;
  z-index: 2;
  width: 1.05em;
  height: auto;
  left: 50%;
  bottom: 58%;
  transform: translateX(-50%) rotate(1deg);
  pointer-events: none;
}
.title-line-two {
  display: inline-flex;
  align-items: flex-end;
  gap: clamp(10px, 1.4vw, 22px);
  white-space: nowrap;
}
.title-words { color: var(--sage); font-style: italic; }
.title-goose {
  width: clamp(82px, 9vw, 142px);
  height: auto;
  margin-bottom: .05em;
  transform: rotate(-3deg);
}
.lede {
  max-width: 620px;
  margin: 32px 0;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}
.story-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 5px;
  color: var(--plum);
  border-bottom: 2px solid var(--gold);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.book-stage { text-align: center; position: relative; z-index: 1; }
.book-card {
  width: min(100%, 375px);
  aspect-ratio: 2588 / 3375;
  margin: 0 auto;
  border: 8px solid white;
  border-radius: 3px 12px 12px 3px;
  box-shadow: -12px 18px 0 var(--sage-light), 0 30px 55px rgba(50, 18, 45, .22);
  transform: none;
  overflow: hidden;
  position: relative;
}
.book-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.coming-soon-stamp {
  position: absolute;
  left: -12%;
  top: 43%;
  width: 124%;
  padding: 12px 20px;
  color: #fffdf8;
  background: rgba(79, 31, 69, .92);
  border-top: 3px solid rgba(255, 253, 248, .92);
  border-bottom: 3px solid rgba(255, 253, 248, .92);
  box-shadow: 0 4px 16px rgba(50, 18, 45, .28);
  transform: rotate(-11deg);
  font-family: Arial, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(50, 18, 45, .5);
}
.stage-note { margin: 38px auto 0; max-width: 310px; color: var(--sage); font-style: italic; }

.story {
  padding: clamp(76px, 10vw, 140px) clamp(24px, 9vw, 140px);
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(45px, 9vw, 130px);
  background: var(--plum);
  color: #f9f2e7;
}
.story h2, .author h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -.03em;
}
.story h2 { color: var(--paper); }
.story .eyebrow { color: #c7d0bb; }
.story-ghost {
  display: block;
  width: min(62%, 270px);
  height: auto;
  margin: clamp(30px, 5vw, 58px) auto 0;
  filter: drop-shadow(0 16px 22px rgba(22, 7, 20, .2));
}
.story-copy { font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.story-copy p:first-child { margin-top: 0; }
.promise {
  margin-top: 36px;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
  color: #f1d9a4;
  font-style: italic;
}

.books {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 9vw, 140px);
  background: var(--paper);
}
.books-heading { max-width: 760px; margin-bottom: clamp(38px, 6vw, 72px); }
.books h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -.035em;
}
.pretty-card {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.45fr);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(79, 31, 69, .22);
  background: #f8f0fb;
  box-shadow: 18px 20px 0 var(--sage-light);
}
.pretty-cover {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3b183f, #784487 58%, #ad7cbc);
}
.pretty-cover img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(35, 11, 42, .34));
}
.pretty-copy { padding: clamp(38px, 6vw, 74px); align-self: center; font-size: 1.08rem; }
.book-credit {
  margin-top: 0;
  color: #6b4770;
  font-family: Arial, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.publishing-note { color: #604e62; }
.button-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 13px 18px;
  color: #fff;
  background: var(--plum);
  border: 2px solid var(--plum);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 800;
}
.button-link:hover, .button-link:focus-visible { color: var(--plum); background: transparent; }

.author {
  padding: clamp(80px, 11vw, 150px) clamp(24px, 14vw, 210px);
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 700px);
  gap: clamp(28px, 6vw, 75px);
  align-items: center;
}
.author-photo-frame {
  width: min(100%, 300px);
  aspect-ratio: 1;
  padding: 9px;
  background: var(--paper);
  border: 2px solid var(--gold);
  box-shadow: 13px 13px 0 var(--sage-light), 0 20px 40px rgba(50, 18, 45, .16);
}
.author-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  border: 1px solid var(--line);
}
.author h2 { margin-bottom: 22px; }
.author p:last-child { margin: 0; font-size: 1.16rem; }
.author-links { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 30px; }
.author-links a {
  color: var(--plum);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 800;
}
.author-links a:hover, .author-links a:focus-visible { color: var(--sage); }

footer {
  padding: 28px clamp(24px, 7vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: .82rem;
  color: var(--sage);
}
footer img { width: 160px; height: 74px; object-fit: contain; object-position: left center; }

@media (max-width: 820px) {
  .site-header { align-items: flex-start; }
  .brand { width: 210px; height: 62px; }
  nav { margin-top: 17px; gap: 18px; }
  .hero { grid-template-columns: 1fr; padding-top: 62px; }
  .hero-copy { text-align: center; }
  .lede { margin-left: auto; margin-right: auto; }
  .story { grid-template-columns: 1fr; }
  .story-ghost { width: min(48%, 230px); }
  .pretty-card { grid-template-columns: minmax(200px, .7fr) minmax(0, 1.3fr); }
  .author { grid-template-columns: minmax(190px, 240px) 1fr; }
}

@media (max-width: 560px) {
  .site-header { flex-direction: column; align-items: center; }
  nav { width: 100%; justify-content: center; }
  h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .hero-title { margin-left: auto; margin-right: auto; }
  .title-line-two { gap: 8px; }
  .title-goose { width: clamp(70px, 22vw, 104px); }
  .book-card { width: min(88%, 340px); }
  .story-ghost { width: min(58%, 210px); }
  .pretty-card { grid-template-columns: 1fr; }
  .pretty-cover { min-height: 300px; }
  .author { grid-template-columns: 1fr; }
  .author-photo-frame { width: min(78vw, 280px); margin: 0 auto 16px; }
  .author-copy { text-align: center; }
  footer { flex-direction: column; text-align: center; }
}

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