:root {
  --ink: #1f2835;
  --purple: #a33a2f;
  --purple-deep: #151b24;
  --lilac: #c85a38;
  --blush: #f2d3b7;
  --cream: #f7f3ec;
  --white: #fffdf8;
  --green: #f5b27f;
}

* { box-sizing: border-box; }
html { width: 100%; max-width: 100%; overflow-x: hidden; overflow-x: clip; scroll-behavior: smooth; }
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
main { width: 100%; max-width: 100%; overflow-x: hidden; overflow-x: clip; }
img, iframe { max-width: 100%; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1220px, calc(100% - 48px));
  height: 90px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.brand-icon { width: 32px; height: 32px; object-fit: contain; display: block; }
.site-header nav { display: flex; gap: 34px; font-size: 14px; color: #e7dfd6; }
.site-header nav a { padding: 10px 0; transition: color .2s ease; }
.site-header nav a:hover { color: white; }
.header-cta { display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.45); color: white; background: rgba(255,255,255,.08); border-radius: 999px; padding: 12px 20px; cursor: pointer; transition: background .2s, color .2s; }
.header-cta:hover { background: var(--white); color: var(--purple); }

.hero {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  padding: 145px max(24px, calc((100vw - 1220px) / 2)) 80px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  background:
    radial-gradient(circle at 75% 37%, rgba(255,107,38,.18), transparent 31%),
    linear-gradient(127deg, #2f3948 0%, #151b24 63%, #232b38 100%);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(to top, rgba(0,0,0,.18), transparent);
  pointer-events: none;
}
.hero-orbit { position: absolute; border: 1px solid rgba(255,107,38,.14); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 620px; height: 620px; right: -35px; top: 80px; }
.orbit-two { width: 460px; height: 460px; right: 45px; top: 155px; border-color: rgba(237,47,47,.13); }
.hero-copy { position: relative; z-index: 3; max-width: 650px; }
.eyebrow { display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; color: var(--blush); }
.eyebrow span { width: 29px; height: 1px; background: var(--blush); }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(47px, 5.1vw, 75px); font-weight: 400; letter-spacing: -.045em; line-height: .99; margin: 25px 0 24px; max-width: 700px; }
.hero-text { color: #e0e2e4; font-size: 18px; line-height: 1.65; max-width: 610px; margin: 0; }
.offer-row { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.edition-choice { display: flex; flex-direction: column; gap: 3px; padding-left: 17px; border-left: 1px solid rgba(255,255,255,.26); }
.edition-choice strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; }
.edition-choice span { color: #b9bec5; font-size: 12px; }
.primary-cta { display: inline-flex; align-items: center; justify-content: center; border: 0; background: var(--blush); color: var(--ink); font-weight: 800; border-radius: 999px; padding: 18px 25px; cursor: pointer; box-shadow: 0 10px 32px rgba(244,202,219,.15); transition: transform .2s, background .2s; }
.primary-cta:hover { transform: translateY(-2px); background: #ffe6ee; }
.hero-trust { color: #aeb4bc; font-size: 12px; margin-top: 28px; }

.book-stage { position: relative; z-index: 3; height: 580px; display: grid; place-items: center; }
.book-stage::before { content: ""; position: absolute; width: 65%; height: 24px; bottom: 33px; border-radius: 50%; background: #08000c; filter: blur(18px); opacity: .75; }
.book-stage img { position: relative; z-index: 2; width: min(100%, 525px); height: auto; max-height: 610px; object-fit: contain; filter: drop-shadow(0 32px 25px rgba(0,0,0,.38)); transform: rotate(1deg); }
.edition-tag { position: absolute; left: 3%; top: 17%; z-index: 4; width: 78px; height: 78px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: grid; place-items: center; text-align: center; color: #e7e1d9; font-size: 9px; line-height: 1.35; letter-spacing: .1em; }
.saving-pill { position: absolute; z-index: 5; left: 66%; bottom: 20%; background: var(--green); color: #3c1b0d; font-size: 12px; font-weight: 800; padding: 10px 15px; border-radius: 999px; transform: translateX(-50%) rotate(-3deg); box-shadow: 0 12px 28px rgba(0,0,0,.2); white-space: nowrap; }

.availability-strip { padding: 82px 24px 74px; text-align: center; background: var(--cream); }
.clock-kicker { margin: 0 0 17px; color: #b84531; text-transform: uppercase; letter-spacing: .19em; font-size: 10px; font-weight: 800; }
.availability-strip h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 48px); font-weight: 400; letter-spacing: -.03em; }
.availability-strip > p:not(.clock-kicker) { max-width: 650px; margin: 20px auto 0; color: #59616b; line-height: 1.65; }
.availability-strip > a { display: inline-flex; margin-top: 26px; padding-bottom: 6px; border-bottom: 1px solid var(--purple); color: var(--purple); font-size: 13px; font-weight: 800; }

.opening { padding: 68px max(24px, calc((100vw - 1120px) / 2)) 120px; background: var(--cream); }
.section-kicker { text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 800; color: #b84531; margin-bottom: 24px; }
.opening-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; }
.opening h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(36px, 4vw, 58px); line-height: 1.08; letter-spacing: -.035em; font-weight: 400; margin: 0; }
.opening-copy { color: #59616b; font-size: 17px; line-height: 1.8; }
.opening-copy p { margin: 0 0 19px; }
.opening blockquote { width: min(820px, 90%); margin: 86px auto 0; padding: 44px 30px 0; border-top: 1px solid #d8cabe; text-align: center; font-family: Georgia, "Times New Roman", serif; font-size: clamp(26px, 3vw, 40px); line-height: 1.35; color: var(--purple); }
.themes {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 90px;
  padding: 112px max(24px, calc((100vw - 1120px) / 2));
  background: #232c39;
  color: white;
}
.section-kicker.light { color: var(--blush); }
.themes-intro { align-self: start; position: sticky; top: 50px; }
.themes-intro h2, .reader-copy h2, .author-copy h2, .purchase-heading h2, .faq h2, .final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0;
}
.themes-intro h2 { font-size: clamp(37px, 4vw, 55px); }
.themes-intro > p { color: #c7cbd0; font-size: 16px; line-height: 1.75; margin: 28px 0 0; }
.themes-list article { display: grid; grid-template-columns: 50px 1fr; gap: 22px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.16); }
.themes-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.themes-list article > span { color: var(--blush); font-size: 12px; font-weight: 800; letter-spacing: .12em; padding-top: 5px; }
.themes-list h3 { font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 400; margin: 0 0 8px; }
.themes-list p { color: #bcc1c7; line-height: 1.65; margin: 0; }

.reader-fit { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 800px; background: #f2ebe2; }
.cover-panel { min-height: 800px; display: grid; place-items: center; overflow: hidden; position: relative; background: linear-gradient(145deg, #39495b, #d8b18d 55%, #f0d6be); }
.cover-panel::before, .cover-panel::after { content: ""; position: absolute; border: 1px solid rgba(255,107,38,.24); width: 570px; height: 570px; border-radius: 50%; }
.cover-panel::after { width: 420px; height: 420px; }
.cover-panel img { position: relative; z-index: 2; width: min(60%, 360px); height: auto; box-shadow: 0 35px 70px rgba(25,31,40,.35); transform: rotate(-2.5deg); }
.reader-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px clamp(35px, 7vw, 105px); }
.reader-copy h2 { font-size: clamp(40px, 4.6vw, 62px); max-width: 650px; }
.reader-lines { margin-top: 42px; border-top: 1px solid #d1c3b6; }
.reader-lines p { display: grid; grid-template-columns: 40px 1fr; gap: 15px; margin: 0; padding: 18px 0; border-bottom: 1px solid #d1c3b6; color: #4e5966; line-height: 1.55; }
.reader-lines p span { color: #c45132; font-size: 11px; font-weight: 800; letter-spacing: .1em; padding-top: 4px; }
.text-cta { align-self: flex-start; margin-top: 32px; padding: 0 0 9px; border-bottom: 1px solid var(--purple); color: var(--purple); font-weight: 800; cursor: pointer; }

.author { display: grid; grid-template-columns: .93fr 1.07fr; background: #18202b; color: white; }
.author-photo { min-height: 810px; position: relative; overflow: hidden; }
.author-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,0,26,.75), transparent 50%); pointer-events: none; }
.author-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.author-photo-caption { position: absolute; z-index: 2; left: 48px; bottom: 42px; display: flex; flex-direction: column; gap: 6px; }
.author-photo-caption strong { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 400; }
.author-photo-caption span { color: #e4e0da; font-size: 13px; }
.author-copy { padding: 98px clamp(35px, 7vw, 100px); align-self: center; }
.author-copy h2 { font-size: clamp(40px, 4.5vw, 60px); max-width: 600px; margin-bottom: 30px; }
.author-copy > p { color: #c9cdd2; font-size: 16px; line-height: 1.78; margin: 0 0 18px; }
.author-note { display: flex; flex-direction: column; gap: 8px; margin-top: 34px; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.18); }
.author-note strong { color: var(--blush); text-transform: uppercase; letter-spacing: .13em; font-size: 11px; }
.author-note span { color: #e4e0da; line-height: 1.55; }
.secondary-note { margin-top: 18px; }

.purchase { padding: 116px max(22px, calc((100vw - 1120px) / 2)) 125px; background: #8e302c; color: white; }
.purchase-heading { max-width: 830px; text-align: center; margin: 0 auto 55px; }
.purchase-heading h2 { font-size: clamp(40px, 5vw, 64px); }
.purchase-heading > p { color: #ecd9ce; line-height: 1.6; margin: 22px auto 0; }
.amazon-purchase-shell { display: grid; grid-template-columns: .9fr 1.1fr; width: min(100%, 980px); margin: auto; overflow: hidden; border-radius: 3px; background: var(--white); color: var(--ink); box-shadow: 0 28px 70px rgba(20,12,10,.3); }
.amazon-purchase-shell > * { min-width: 0; }
.amazon-book-preview { display: grid; grid-template-columns: minmax(120px, 190px) 1fr; align-items: center; gap: 30px; padding: 52px 46px; background: #eee7dd; }
.amazon-book-preview img { width: 100%; height: auto; filter: drop-shadow(0 20px 16px rgba(31,40,53,.24)); }
.amazon-book-preview > div { display: flex; flex-direction: column; gap: 7px; }
.amazon-book-preview span { color: #8a5c44; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 800; }
.amazon-book-preview strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 3vw, 39px); font-weight: 400; }
.amazon-book-preview small { color: #655f59; line-height: 1.55; }
.amazon-availability { display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 43px 48px; }
.amazon-availability > p { margin: 0 0 5px; color: #4a4f55; font-family: Georgia, "Times New Roman", serif; font-size: 29px; }
.amazon-option { position: relative; min-height: 128px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 5px 18px; padding: 22px 25px; border: 1px solid #d9d0c8; border-radius: 13px; background: #fff; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.amazon-option:hover { transform: translateY(-2px); border-color: #d28b63; box-shadow: 0 14px 32px rgba(31,40,53,.11); }
.amazon-option::after { content: "↗"; grid-column: 2; grid-row: 1 / span 3; color: #c44b31; font-size: 23px; }
.edition-label { color: #8a5c44; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 800; }
.amazon-option small { color: #655f59; font-size: 11px; }
.amazon-wordmark, .kindle-wordmark { position: relative; display: inline-flex; align-items: baseline; width: max-content; color: #111; font-family: Arial, Helvetica, sans-serif; font-size: 35px; font-weight: 700; letter-spacing: -2px; line-height: 1; }
.amazon-wordmark i, .kindle-wordmark i { position: absolute; left: 22px; bottom: -9px; width: 71px; height: 14px; border-bottom: 4px solid #ff9900; border-radius: 0 0 70% 70%; transform: rotate(4deg); }
.kindle-wordmark { gap: 2px; font-size: 28px; }
.kindle-wordmark b { font-weight: 700; }
.kindle-wordmark em { color: #ff9900; font-style: normal; font-weight: 400; letter-spacing: -1.5px; }
.kindle-wordmark i { left: 17px; bottom: -8px; width: 57px; height: 12px; border-bottom-width: 3px; }
.amazon-note { margin-top: 3px; color: #766f69; font-size: 10px; line-height: 1.55; text-align: center; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 95px; padding: 115px max(24px, calc((100vw - 1080px) / 2)); background: var(--cream); }
.faq-heading h2 { font-size: clamp(40px, 4.8vw, 60px); }
.faq-list details { border-top: 1px solid #d9cec4; }
.faq-list details:last-child { border-bottom: 1px solid #d9cec4; }
.faq-list summary { list-style: none; position: relative; padding: 24px 42px 24px 0; cursor: pointer; font-family: Georgia, "Times New Roman", serif; font-size: 21px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 21px; font-family: Arial, sans-serif; font-size: 24px; font-weight: 300; color: #c34a31; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: #645f5b; line-height: 1.7; margin: -6px 0 24px; padding-right: 35px; }

.final-cta { padding: 105px 24px 115px; text-align: center; background: linear-gradient(135deg, #18202b, #8f322c); color: white; }
.final-cta > span { color: var(--blush); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 800; }
.final-cta h2 { font-size: clamp(41px, 5vw, 65px); max-width: 960px; margin: 22px auto 37px; }
.final-cta .primary-cta { min-width: 275px; }
footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 35px; padding: 28px max(24px, calc((100vw - 1120px) / 2)); background: #111720; color: #9fa5ac; font-size: 11px; }
.footer-brand { color: white; }
footer p { margin: 0; }
.mobile-buy { display: none; }

@media (max-width: 900px) {
  .site-header { width: calc(100% - 36px); }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr 1fr; padding-top: 130px; min-height: 710px; }
  .book-stage { height: 490px; }
  .opening-grid { gap: 45px; }
  .themes { gap: 50px; }
  .reader-fit { grid-template-columns: .75fr 1.25fr; }
  .reader-copy { padding-inline: 50px; }
  .author-copy { padding-inline: 55px; }
  .amazon-purchase-shell { grid-template-columns: .8fr 1.2fr; }
  .amazon-book-preview { grid-template-columns: 130px 1fr; padding: 40px 32px; }
  .amazon-availability { padding: 36px 32px; }
  .faq { gap: 50px; }
  footer { grid-template-columns: 1fr auto; }
  footer p:last-child { display: none; }
}

@media (max-width: 720px) {
  .site-header { height: 76px; }
  .brand { font-size: 11px; }
  .header-cta { padding: 10px 14px; font-size: 12px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 116px 22px 50px; text-align: left; }
  .hero-copy { order: 1; }
  .book-stage { order: 2; height: 430px; margin-top: 18px; }
  .book-stage img { max-height: 450px; }
  .edition-tag { left: 0; top: 16%; }
  .saving-pill { left: 67%; bottom: 13%; }
  h1 { font-size: clamp(42px, 12vw, 57px); }
  .hero-text { font-size: 16px; }
  .offer-row { align-items: stretch; flex-direction: column; gap: 20px; }
  .edition-choice { align-self: flex-start; }
  .primary-cta { width: 100%; }
  .hero-trust { align-items: flex-start; flex-wrap: wrap; line-height: 1.4; }
  .availability-strip { padding: 66px 20px 58px; }
  .availability-strip h2 { font-size: 36px; }
  .opening { padding: 55px 22px 84px; }
  .opening-grid { grid-template-columns: 1fr; gap: 32px; }
  .opening h2 { font-size: 39px; }
  .opening-copy { font-size: 16px; }
  .opening blockquote { width: 100%; margin-top: 54px; padding-inline: 0; font-size: 27px; }
  .themes { grid-template-columns: 1fr; gap: 38px; padding: 78px 22px 85px; }
  .themes-intro { position: static; }
  .themes-intro h2 { font-size: 40px; }
  .themes-list article { grid-template-columns: 36px 1fr; gap: 10px; }
  .themes-list h3 { font-size: 24px; }
  .reader-fit { grid-template-columns: 1fr; }
  .cover-panel { min-height: 570px; }
  .cover-panel img { width: min(56%, 310px); }
  .reader-copy { padding: 76px 22px 85px; }
  .reader-copy h2 { font-size: 41px; }
  .author { grid-template-columns: 1fr; }
  .author-photo { min-height: 600px; }
  .author-photo-caption { left: 24px; bottom: 24px; }
  .author-copy { padding: 76px 22px 84px; }
  .author-copy h2 { font-size: 41px; }
  .purchase { width: 100%; padding: 78px 12px 88px; overflow: hidden; }
  .purchase-heading { padding: 0 8px; }
  .purchase-heading h2 { font-size: 40px; }
  .amazon-purchase-shell { width: 100%; max-width: 100%; grid-template-columns: minmax(0, 1fr); }
  .amazon-book-preview { grid-template-columns: 108px minmax(0, 1fr); gap: 22px; padding: 30px 24px; }
  .amazon-availability { padding: 30px 20px 34px; }
  .amazon-option { min-height: 120px; padding: 20px; }
  .faq { grid-template-columns: 1fr; gap: 38px; padding: 78px 22px 84px; }
  .faq-heading h2 { font-size: 43px; }
  .final-cta { padding: 82px 22px 100px; }
  .final-cta h2 { font-size: 40px; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; padding-bottom: 100px; }
  .mobile-buy { position: fixed; z-index: 50; left: 12px; right: 12px; bottom: 12px; display: flex; justify-content: space-between; align-items: center; border: 0; border-radius: 999px; padding: 12px 19px; background: var(--blush); color: var(--ink); box-shadow: 0 10px 35px rgba(12,18,24,.3); cursor: pointer; }
  .mobile-buy span { text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
  .mobile-buy strong { font-size: 13px; }
}

@media (max-width: 520px) {
  .purchase { padding-inline: 10px; }
  .amazon-book-preview { grid-template-columns: 92px minmax(0, 1fr); padding: 26px 18px; }
  .amazon-book-preview strong { font-size: 27px; }
  .amazon-availability { padding: 27px 17px 30px; }
  .amazon-option { grid-template-columns: 1fr auto; padding: 19px 17px; }
  .amazon-wordmark { font-size: 31px; }
  .kindle-wordmark { font-size: 25px; }
}

@media (max-width: 380px) {
  .header-cta { display: none; }
  .site-header { justify-content: center; }
}
